diff --git a/.github/workflows/cd_android.yml b/.github/workflows/cd_android.yml
index d955d0d..fddf7b5 100644
--- a/.github/workflows/cd_android.yml
+++ b/.github/workflows/cd_android.yml
@@ -29,6 +29,11 @@ jobs:
path: ~/.gradle/wrapper
key: ${{ runner.os }}-gradle-wrapper-${{ hashFiles('gradle/wrapper/gradle-wrapper.properties') }}
+ # https://github.com/zoontek/react-native-permissions/issues/759
+ - name: Workaround to remove old RN permissions
+ run: |
+ rm -r node_modules/comms-app-react-native-videocall/node_modules/react-native-qrcode-scanner/node_modules/react-native-permissions
+
- name: Install the signing certificate
env:
DISTRIBUTION_CERTIFICATE_ANDROID_BASE64: ${{ secrets.RELEASE_KEYSTORE_BASE64 }}
diff --git a/.github/workflows/cd_ios.yml b/.github/workflows/cd_ios.yml
index 90aa9e9..ee9884d 100644
--- a/.github/workflows/cd_ios.yml
+++ b/.github/workflows/cd_ios.yml
@@ -4,6 +4,7 @@ on:
push:
branches:
- main
+ - upgrade/rn-0-71-3
tags:
- '*'
@@ -59,6 +60,11 @@ jobs:
- name: Install modules
run: yarn install
+ # https://github.com/zoontek/react-native-permissions/issues/759
+ - name: Workaround to remove old RN permissions
+ run: |
+ rm -r node_modules/comms-app-react-native-videocall/node_modules/react-native-qrcode-scanner/node_modules/react-native-permissions
+
- name: Setup Ruby
uses: ruby/setup-ruby@v1.126.0
with:
@@ -105,6 +111,11 @@ jobs:
- name: Install modules
run: yarn install
+ # https://github.com/zoontek/react-native-permissions/issues/759
+ - name: Workaround to remove old RN permissions
+ run: |
+ rm -r node_modules/comms-app-react-native-videocall/node_modules/react-native-qrcode-scanner/node_modules/react-native-permissions
+
- name: Setup Ruby
uses: ruby/setup-ruby@v1.126.0
with:
diff --git a/.node-version b/.node-version
new file mode 100644
index 0000000..25bf17f
--- /dev/null
+++ b/.node-version
@@ -0,0 +1 @@
+18
\ No newline at end of file
diff --git a/examples/mobile/android/app/build.gradle b/examples/mobile/android/app/build.gradle
index ebdab4f..6a575c4 100644
--- a/examples/mobile/android/app/build.gradle
+++ b/examples/mobile/android/app/build.gradle
@@ -1,5 +1,6 @@
plugins {
id 'com.android.application'
+ id "com.facebook.react"
id 'com.google.firebase.appdistribution'
id "com.github.triplet.play"
}
@@ -7,127 +8,86 @@ plugins {
import com.android.build.OutputFile
/**
- * The react.gradle file registers a task for each build variant (e.g. bundleDebugJsAndAssets
- * and bundleReleaseJsAndAssets).
- * These basically call `react-native bundle` with the correct arguments during the Android build
- * cycle. By default, bundleDebugJsAndAssets is skipped, as in debug/dev mode we prefer to load the
- * bundle directly from the development server. Below you can see all the possible configurations
- * and their defaults. If you decide to add a configuration block, make sure to add it before the
- * `apply from: "../../node_modules/react-native/react.gradle"` line.
- *
- * project.ext.react = [
- * // the name of the generated asset file containing your JS bundle
- * bundleAssetName: "index.android.bundle",
- *
- * // the entry file for bundle generation. If none specified and
- * // "index.android.js" exists, it will be used. Otherwise "index.js" is
- * // default. Can be overridden with ENTRY_FILE environment variable.
- * entryFile: "index.android.js",
- *
- * // https://reactnative.dev/docs/performance#enable-the-ram-format
- * bundleCommand: "ram-bundle",
- *
- * // whether to bundle JS and assets in debug mode
- * bundleInDebug: false,
- *
- * // whether to bundle JS and assets in release mode
- * bundleInRelease: true,
- *
- * // whether to bundle JS and assets in another build variant (if configured).
- * // See http://tools.android.com/tech-docs/new-build-system/user-guide#TOC-Build-Variants
- * // The configuration property can be in the following formats
- * // 'bundleIn${productFlavor}${buildType}'
- * // 'bundleIn${buildType}'
- * // bundleInFreeDebug: true,
- * // bundleInPaidRelease: true,
- * // bundleInBeta: true,
- *
- * // whether to disable dev mode in custom build variants (by default only disabled in release)
- * // for example: to disable dev mode in the staging build type (if configured)
- * devDisabledInStaging: true,
- * // The configuration property can be in the following formats
- * // 'devDisabledIn${productFlavor}${buildType}'
- * // 'devDisabledIn${buildType}'
- *
- * // the root of your project, i.e. where "package.json" lives
- * root: "../../",
- *
- * // where to put the JS bundle asset in debug mode
- * jsBundleDirDebug: "$buildDir/intermediates/assets/debug",
- *
- * // where to put the JS bundle asset in release mode
- * jsBundleDirRelease: "$buildDir/intermediates/assets/release",
- *
- * // where to put drawable resources / React Native assets, e.g. the ones you use via
- * // require('./image.png')), in debug mode
- * resourcesDirDebug: "$buildDir/intermediates/res/merged/debug",
- *
- * // where to put drawable resources / React Native assets, e.g. the ones you use via
- * // require('./image.png')), in release mode
- * resourcesDirRelease: "$buildDir/intermediates/res/merged/release",
- *
- * // by default the gradle tasks are skipped if none of the JS files or assets change; this means
- * // that we don't look at files in android/ or ios/ to determine whether the tasks are up to
- * // date; if you have any other folders that you want to ignore for performance reasons (gradle
- * // indexes the entire tree), add them here. Alternatively, if you have JS files in android/
- * // for example, you might want to remove it from here.
- * inputExcludes: ["android/**", "ios/**"],
- *
- * // override which node gets called and with what additional arguments
- * nodeExecutableAndArgs: ["node"],
- *
- * // supply additional arguments to the packager
- * extraPackagerArgs: []
- * ]
+ * This is the configuration block to customize your React Native Android app.
+ * By default you don't need to apply any configuration, just uncomment the lines you need.
*/
-
-project.ext.react = [
- enableHermes: true, // clean and rebuild if changing
-]
-
-apply from: "../../node_modules/react-native/react.gradle"
+react {
+ /* Folders */
+ // The root of your project, i.e. where "package.json" lives. Default is '..'
+ // root = file("../")
+ // The folder where the react-native NPM package is. Default is ../node_modules/react-native
+ // reactNativeDir = file("../node_modules/react-native")
+ // The folder where the react-native Codegen package is. Default is ../node_modules/react-native-codegen
+ // codegenDir = file("../node_modules/react-native-codegen")
+ // The cli.js file which is the React Native CLI entrypoint. Default is ../node_modules/react-native/cli.js
+ // cliFile = file("../node_modules/react-native/cli.js")
+ /* Variants */
+ // The list of variants to that are debuggable. For those we're going to
+ // skip the bundling of the JS bundle and the assets. By default is just 'debug'.
+ // If you add flavors like lite, prod, etc. you'll have to list your debuggableVariants.
+ // debuggableVariants = ["liteDebug", "prodDebug"]
+ /* Bundling */
+ // A list containing the node command and its flags. Default is just 'node'.
+ // nodeExecutableAndArgs = ["node"]
+ //
+ // The command to run when bundling. By default is 'bundle'
+ // bundleCommand = "ram-bundle"
+ //
+ // The path to the CLI configuration file. Default is empty.
+ // bundleConfig = file(../rn-cli.config.js)
+ //
+ // The name of the generated asset file containing your JS bundle
+ // bundleAssetName = "MyApplication.android.bundle"
+ //
+ // The entry file for bundle generation. Default is 'index.android.js' or 'index.js'
+ // entryFile = file("../js/MyApplication.android.js")
+ //
+ // A list of extra flags to pass to the 'bundle' commands.
+ // See https://github.com/react-native-community/cli/blob/main/docs/commands.md#bundle
+ // extraPackagerArgs = []
+ /* Hermes Commands */
+ // The hermes compiler command to run. By default it is 'hermesc'
+ // hermesCommand = "$rootDir/my-custom-hermesc/bin/hermesc"
+ //
+ // The list of flags to pass to the Hermes compiler. By default is "-O", "-output-source-map"
+ // hermesFlags = ["-O", "-output-source-map"]
+}
/**
- * Set this to true to create two separate APKs instead of one:
- * - An APK that only works on ARM devices
- * - An APK that only works on x86 devices
- * The advantage is the size of the APK is reduced by about 4MB.
- * Upload all the APKs to the Play Store and people will download
- * the correct one based on the CPU architecture of their device.
+ * Set this to true to create four separate APKs instead of one,
+ * one for each native architecture. This is useful if you don't
+ * use App Bundles (https://developer.android.com/guide/app-bundle/)
+ * and want to have separate APKs to upload to the Play Store.
*/
def enableSeparateBuildPerCPUArchitecture = false
/**
- * Run Proguard to shrink the Java bytecode in release builds.
+ * Set this to true to Run Proguard on Release builds to minify the Java bytecode.
*/
def enableProguardInReleaseBuilds = false
/**
- * The preferred build flavor of JavaScriptCore.
+ * The preferred build flavor of JavaScriptCore (JSC)
*
* For example, to use the international variant, you can use:
* `def jscFlavor = 'org.webkit:android-jsc-intl:+'`
*
* The international variant includes ICU i18n library and necessary data
* allowing to use e.g. `Date.toLocaleString` and `String.localeCompare` that
- * give correct results when using with locales other than en-US. Note that
+ * give correct results when using with locales other than en-US. Note that
* this variant is about 6MiB larger per architecture than default.
*/
def jscFlavor = 'org.webkit:android-jsc:+'
/**
- * Whether to enable the Hermes VM.
- *
- * This should be set on project.ext.react and that value will be read here. If it is not set
- * on project.ext.react, JavaScript will not be compiled to Hermes Bytecode
- * and the benefits of using Hermes will therefore be sharply reduced.
- */
-def enableHermes = project.ext.react.get("enableHermes", false);
-
-/**
- * Architectures to build native code for in debug.
+ * Private function to get the list of Native Architectures you want to build.
+ * This reads the value from reactNativeArchitectures in your gradle.properties
+ * file and works together with the --active-arch-only flag of react-native run-android.
*/
-def nativeArchitectures = project.getProperties().get("reactNativeDebugArchitectures")
+def reactNativeArchitectures() {
+ def value = project.getProperties().get("reactNativeArchitectures")
+ return value ? value.split(",") : ["armeabi-v7a", "x86", "x86_64", "arm64-v8a"]
+}
def appVersionCode = Integer.valueOf(System.env.VERSION_CODE ?: 1)
def appVersionName = System.env.VERSION_NAME ?: "1.0"
@@ -138,6 +98,8 @@ android {
compileSdkVersion rootProject.ext.compileSdkVersion
+ namespace "io.dolby.videocall"
+
defaultConfig {
applicationId "io.dolby.videocall"
minSdkVersion rootProject.ext.minSdkVersion
@@ -151,7 +113,7 @@ android {
reset()
enable enableSeparateBuildPerCPUArchitecture
universalApk false // If true, also generate a universal APK
- include "armeabi-v7a", "x86", "arm64-v8a", "x86_64"
+ include (*reactNativeArchitectures())
}
}
packagingOptions {
@@ -169,13 +131,6 @@ android {
}
}
buildTypes {
- debug {
- if (nativeArchitectures) {
- ndk {
- abiFilters nativeArchitectures.split(',')
- }
- }
- }
release {
// Caution! In production, you need to generate your own keystore file.
// see https://reactnative.dev/docs/signed-apk-android.
@@ -225,9 +180,8 @@ android {
}
dependencies {
- implementation fileTree(dir: "libs", include: ["*.jar"])
- //noinspection GradleDynamicVersion
- implementation "com.facebook.react:react-native:+" // From node_modules
+ // The version of react-native is set by the React Native Gradle Plugin
+ implementation("com.facebook.react:react-android")
implementation 'androidx.core:core-splashscreen:1.0.0'
implementation "androidx.swiperefreshlayout:swiperefreshlayout:1.0.0"
@@ -245,21 +199,14 @@ dependencies {
exclude group:'com.facebook.flipper'
}
- if (enableHermes) {
- def hermesPath = "../../node_modules/hermes-engine/android/";
- debugImplementation files(hermesPath + "hermes-debug.aar")
- releaseImplementation files(hermesPath + "hermes-release.aar")
+ debugImplementation("com.facebook.flipper:flipper-fresco-plugin:${FLIPPER_VERSION}")
+ if (hermesEnabled.toBoolean()) {
+ implementation("com.facebook.react:hermes-android")
} else {
implementation jscFlavor
}
- implementation platform('com.google.firebase:firebase-bom:30.3.2')
-}
-// Run this once to be able to run the application with BUCK
-// puts all compile dependencies into folder libs for BUCK to use
-task copyDownloadableDepsToLibs(type: Copy) {
- from configurations.implementation
- into 'libs'
+ implementation platform('com.google.firebase:firebase-bom:30.3.2')
}
apply from: file("../../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesAppBuildGradle(project)
diff --git a/examples/mobile/android/app/src/debug/java/io/dolby/videocall/ReactNativeFlipper.java b/examples/mobile/android/app/src/debug/java/io/dolby/videocall/ReactNativeFlipper.java
index 1f1a635..65ef3ba 100644
--- a/examples/mobile/android/app/src/debug/java/io/dolby/videocall/ReactNativeFlipper.java
+++ b/examples/mobile/android/app/src/debug/java/io/dolby/videocall/ReactNativeFlipper.java
@@ -1,5 +1,5 @@
/**
- * Copyright (c) Facebook, Inc. and its affiliates.
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
*
*
This source code is licensed under the MIT license found in the LICENSE file in the root
* directory of this source tree.
@@ -18,12 +18,16 @@
import com.facebook.flipper.plugins.network.FlipperOkhttpInterceptor;
import com.facebook.flipper.plugins.network.NetworkFlipperPlugin;
import com.facebook.flipper.plugins.react.ReactFlipperPlugin;
+import com.facebook.react.ReactInstanceEventListener;
import com.facebook.flipper.plugins.sharedpreferences.SharedPreferencesFlipperPlugin;
import com.facebook.react.ReactInstanceManager;
import com.facebook.react.bridge.ReactContext;
import com.facebook.react.modules.network.NetworkingModule;
import okhttp3.OkHttpClient;
-
+/**
+ * Class responsible of loading Flipper inside your React Native application. This is the debug
+ * flavor of it. Here you can add your own plugins and customize the Flipper setup.
+ */
public class ReactNativeFlipper {
public static void initializeFlipper(Context context, ReactInstanceManager reactInstanceManager) {
if (FlipperUtils.shouldEnableFlipper(context)) {
@@ -51,7 +55,7 @@ public void apply(OkHttpClient.Builder builder) {
ReactContext reactContext = reactInstanceManager.getCurrentReactContext();
if (reactContext == null) {
reactInstanceManager.addReactInstanceEventListener(
- new ReactInstanceManager.ReactInstanceEventListener() {
+ new ReactInstanceEventListener() {
@Override
public void onReactContextInitialized(ReactContext reactContext) {
reactInstanceManager.removeReactInstanceEventListener(this);
diff --git a/examples/mobile/android/app/src/main/java/io/dolby/videocall/MainActivity.java b/examples/mobile/android/app/src/main/java/io/dolby/videocall/MainActivity.java
index a2b4f00..a66bb0c 100644
--- a/examples/mobile/android/app/src/main/java/io/dolby/videocall/MainActivity.java
+++ b/examples/mobile/android/app/src/main/java/io/dolby/videocall/MainActivity.java
@@ -1,6 +1,9 @@
package io.dolby.videocall;
import com.facebook.react.ReactActivity;
+import com.facebook.react.ReactActivityDelegate;
+import com.facebook.react.defaults.DefaultNewArchitectureEntryPoint;
+import com.facebook.react.defaults.DefaultReactActivityDelegate;
import android.os.Bundle;
@@ -22,4 +25,21 @@ protected void onCreate(Bundle savedInstanceState) {
super.onCreate(null);
}
+
+ /**
+ * Returns the instance of the {@link ReactActivityDelegate}. Here we use a util class {@link
+ * DefaultReactActivityDelegate} which allows you to easily enable Fabric and Concurrent React
+ * (aka React 18) with two boolean flags.
+ */
+ @Override
+ protected ReactActivityDelegate createReactActivityDelegate() {
+ return new DefaultReactActivityDelegate(
+ this,
+ getMainComponentName(),
+ // If you opted-in for the New Architecture, we enable the Fabric Renderer.
+ DefaultNewArchitectureEntryPoint.getFabricEnabled(), // fabricEnabled
+ // If you opted-in for the New Architecture, we enable Concurrent React (i.e. React 18).
+ DefaultNewArchitectureEntryPoint.getConcurrentReactEnabled() // concurrentRootEnabled
+ );
+ }
}
diff --git a/examples/mobile/android/app/src/main/java/io/dolby/videocall/MainApplication.java b/examples/mobile/android/app/src/main/java/io/dolby/videocall/MainApplication.java
index da2a4e7..15f1b4c 100644
--- a/examples/mobile/android/app/src/main/java/io/dolby/videocall/MainApplication.java
+++ b/examples/mobile/android/app/src/main/java/io/dolby/videocall/MainApplication.java
@@ -1,14 +1,15 @@
package io.dolby.videocall;
import android.app.Application;
-import android.content.Context;
+
import com.facebook.react.PackageList;
import com.facebook.react.ReactApplication;
-import com.facebook.react.ReactInstanceManager;
import com.facebook.react.ReactNativeHost;
import com.facebook.react.ReactPackage;
+import com.facebook.react.defaults.DefaultNewArchitectureEntryPoint;
+import com.facebook.react.defaults.DefaultReactNativeHost;
import com.facebook.soloader.SoLoader;
-import java.lang.reflect.InvocationTargetException;
+
import java.util.List;
import com.facebook.react.bridge.JSIModulePackage;
@@ -17,30 +18,41 @@
public class MainApplication extends Application implements ReactApplication {
private final ReactNativeHost mReactNativeHost =
- new ReactNativeHost(this) {
- @Override
- public boolean getUseDeveloperSupport() {
- return BuildConfig.DEBUG;
- }
+ new DefaultReactNativeHost(this) {
+ @Override
+ public boolean getUseDeveloperSupport() {
+ return BuildConfig.DEBUG;
+ }
+
+ @Override
+ protected List getPackages() {
+ @SuppressWarnings("UnnecessaryLocalVariable")
+ List packages = new PackageList(this).getPackages();
+ // Packages that cannot be autolinked yet can be added manually here, for example:
+ // packages.add(new MyReactNativePackage());
+ return packages;
+ }
+
+ @Override
+ protected String getJSMainModuleName() {
+ return "index";
+ }
- @Override
- protected List getPackages() {
- @SuppressWarnings("UnnecessaryLocalVariable")
- List packages = new PackageList(this).getPackages();
- // Packages that cannot be autolinked yet can be added manually here, for example:
- // packages.add(new MyReactNativePackage());
- return packages;
- }
+ @Override
+ protected JSIModulePackage getJSIModulePackage() {
+ return new ReanimatedJSIModulePackage();
+ }
+
+ @Override
+ protected boolean isNewArchEnabled() {
+ return BuildConfig.IS_NEW_ARCHITECTURE_ENABLED;
+ }
- @Override
- protected String getJSMainModuleName() {
- return "index";
- }
- @Override
- protected JSIModulePackage getJSIModulePackage() {
- return new ReanimatedJSIModulePackage();
- }
- };
+ @Override
+ protected Boolean isHermesEnabled() {
+ return BuildConfig.IS_HERMES_ENABLED;
+ }
+ };
@Override
public ReactNativeHost getReactNativeHost() {
@@ -51,37 +63,10 @@ public ReactNativeHost getReactNativeHost() {
public void onCreate() {
super.onCreate();
SoLoader.init(this, /* native exopackage */ false);
- initializeFlipper(this, getReactNativeHost().getReactInstanceManager());
- }
-
- /**
- * Loads Flipper in React Native templates. Call this in the onCreate method with something like
- * initializeFlipper(this, getReactNativeHost().getReactInstanceManager());
- *
- * @param context
- * @param reactInstanceManager
- */
- private static void initializeFlipper(
- Context context, ReactInstanceManager reactInstanceManager) {
- if (BuildConfig.DEBUG) {
- try {
- /*
- We use reflection here to pick up the class that initializes Flipper,
- since Flipper library is not available in release mode
- */
- Class> aClass = Class.forName("io.dolby.videocall.ReactNativeFlipper");
- aClass
- .getMethod("initializeFlipper", Context.class, ReactInstanceManager.class)
- .invoke(null, context, reactInstanceManager);
- } catch (ClassNotFoundException e) {
- e.printStackTrace();
- } catch (NoSuchMethodException e) {
- e.printStackTrace();
- } catch (IllegalAccessException e) {
- e.printStackTrace();
- } catch (InvocationTargetException e) {
- e.printStackTrace();
- }
+ if (BuildConfig.IS_NEW_ARCHITECTURE_ENABLED) {
+ // If you opted-in for the New Architecture, we load the native entry point for this app.
+ DefaultNewArchitectureEntryPoint.load();
}
+ ReactNativeFlipper.initializeFlipper(this, getReactNativeHost().getReactInstanceManager());
}
}
diff --git a/examples/mobile/android/app/src/release/java/io/dolby/videocall/ReactNativeFlipper.java b/examples/mobile/android/app/src/release/java/io/dolby/videocall/ReactNativeFlipper.java
new file mode 100644
index 0000000..883345c
--- /dev/null
+++ b/examples/mobile/android/app/src/release/java/io/dolby/videocall/ReactNativeFlipper.java
@@ -0,0 +1,20 @@
+/**
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
+ *
+ * This source code is licensed under the MIT license found in the LICENSE file in the root
+ * directory of this source tree.
+ */
+package io.dolby.videocall;
+
+import android.content.Context;
+import com.facebook.react.ReactInstanceManager;
+
+/**
+ * Class responsible of loading Flipper inside your React Native application. This is the release
+ * flavor of it so it's empty as we don't want to load Flipper.
+ */
+public class ReactNativeFlipper {
+ public static void initializeFlipper(Context context, ReactInstanceManager reactInstanceManager) {
+ // Do nothing as we don't want to initialize Flipper on Release.
+ }
+}
diff --git a/examples/mobile/android/build.gradle b/examples/mobile/android/build.gradle
index a868233..338e1fb 100644
--- a/examples/mobile/android/build.gradle
+++ b/examples/mobile/android/build.gradle
@@ -2,7 +2,6 @@
buildscript {
ext {
- buildToolsVersion = "30.0.2"
minSdkVersion = 21
compileSdkVersion = 33
targetSdkVersion = 33
@@ -13,11 +12,12 @@ buildscript {
mavenCentral()
}
dependencies {
- classpath("com.android.tools.build:gradle:4.2.2")
+ classpath("com.android.tools.build:gradle:7.3.1")
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
classpath 'com.google.firebase:firebase-appdistribution-gradle:3.1.0'
- classpath("com.github.triplet.gradle:play-publisher:3.7.0-agp4.2")
+ classpath("com.github.triplet.gradle:play-publisher:3.8.3")
+ classpath("com.facebook.react:react-native-gradle-plugin")
}
}
diff --git a/examples/mobile/android/gradle.properties b/examples/mobile/android/gradle.properties
index c4a25c7..c89aa72 100644
--- a/examples/mobile/android/gradle.properties
+++ b/examples/mobile/android/gradle.properties
@@ -27,4 +27,18 @@ android.useAndroidX=true
android.enableJetifier=true
# Version of flipper SDK to use with React Native
-FLIPPER_VERSION=0.99.0
+FLIPPER_VERSION=0.125.0
+# Use this property to specify which architecture you want to build.
+# You can also override it from the CLI using
+# ./gradlew -PreactNativeArchitectures=x86_64
+reactNativeArchitectures=armeabi-v7a,arm64-v8a,x86,x86_64
+# Use this property to enable support to the new architecture.
+# This will allow you to use TurboModules and the Fabric render in
+# your application. You should enable this flag either if you want
+# to write custom TurboModules/Fabric components OR use libraries that
+# are providing them.
+newArchEnabled=false
+# Use this property to enable or disable the Hermes JS engine.
+# If set to false, you will be using JSC instead.
+hermesEnabled=true
+
diff --git a/examples/mobile/android/gradle/wrapper/gradle-wrapper.jar b/examples/mobile/android/gradle/wrapper/gradle-wrapper.jar
index e708b1c..249e583 100644
Binary files a/examples/mobile/android/gradle/wrapper/gradle-wrapper.jar and b/examples/mobile/android/gradle/wrapper/gradle-wrapper.jar differ
diff --git a/examples/mobile/android/gradle/wrapper/gradle-wrapper.properties b/examples/mobile/android/gradle/wrapper/gradle-wrapper.properties
index a0f7639..8fad3f5 100644
--- a/examples/mobile/android/gradle/wrapper/gradle-wrapper.properties
+++ b/examples/mobile/android/gradle/wrapper/gradle-wrapper.properties
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
-distributionUrl=https\://services.gradle.org/distributions/gradle-7.2-all.zip
+distributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-all.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
diff --git a/examples/mobile/android/gradlew b/examples/mobile/android/gradlew
index 4f906e0..a69d9cb 100755
--- a/examples/mobile/android/gradlew
+++ b/examples/mobile/android/gradlew
@@ -1,7 +1,7 @@
-#!/usr/bin/env sh
+#!/bin/sh
#
-# Copyright 2015 the original author or authors.
+# Copyright © 2015-2021 the original authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -17,67 +17,101 @@
#
##############################################################################
-##
-## Gradle start up script for UN*X
-##
+#
+# Gradle start up script for POSIX generated by Gradle.
+#
+# Important for running:
+#
+# (1) You need a POSIX-compliant shell to run this script. If your /bin/sh is
+# noncompliant, but you have some other compliant shell such as ksh or
+# bash, then to run this script, type that shell name before the whole
+# command line, like:
+#
+# ksh Gradle
+#
+# Busybox and similar reduced shells will NOT work, because this script
+# requires all of these POSIX shell features:
+# * functions;
+# * expansions «$var», «${var}», «${var:-default}», «${var+SET}»,
+# «${var#prefix}», «${var%suffix}», and «$( cmd )»;
+# * compound commands having a testable exit status, especially «case»;
+# * various built-in commands including «command», «set», and «ulimit».
+#
+# Important for patching:
+#
+# (2) This script targets any POSIX shell, so it avoids extensions provided
+# by Bash, Ksh, etc; in particular arrays are avoided.
+#
+# The "traditional" practice of packing multiple parameters into a
+# space-separated string is a well documented source of bugs and security
+# problems, so this is (mostly) avoided, by progressively accumulating
+# options in "$@", and eventually passing that to Java.
+#
+# Where the inherited environment variables (DEFAULT_JVM_OPTS, JAVA_OPTS,
+# and GRADLE_OPTS) rely on word-splitting, this is performed explicitly;
+# see the in-line comments for details.
+#
+# There are tweaks for specific operating systems such as AIX, CygWin,
+# Darwin, MinGW, and NonStop.
+#
+# (3) This script is generated from the Groovy template
+# https://github.com/gradle/gradle/blob/master/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
+# within the Gradle project.
+#
+# You can find Gradle at https://github.com/gradle/gradle/.
+#
##############################################################################
# Attempt to set APP_HOME
+
# Resolve links: $0 may be a link
-PRG="$0"
-# Need this for relative symlinks.
-while [ -h "$PRG" ] ; do
- ls=`ls -ld "$PRG"`
- link=`expr "$ls" : '.*-> \(.*\)$'`
- if expr "$link" : '/.*' > /dev/null; then
- PRG="$link"
- else
- PRG=`dirname "$PRG"`"/$link"
- fi
+app_path=$0
+
+# Need this for daisy-chained symlinks.
+while
+ APP_HOME=${app_path%"${app_path##*/}"} # leaves a trailing /; empty if no leading path
+ [ -h "$app_path" ]
+do
+ ls=$( ls -ld "$app_path" )
+ link=${ls#*' -> '}
+ case $link in #(
+ /*) app_path=$link ;; #(
+ *) app_path=$APP_HOME$link ;;
+ esac
done
-SAVED="`pwd`"
-cd "`dirname \"$PRG\"`/" >/dev/null
-APP_HOME="`pwd -P`"
-cd "$SAVED" >/dev/null
+
+APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit
APP_NAME="Gradle"
-APP_BASE_NAME=`basename "$0"`
+APP_BASE_NAME=${0##*/}
# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
# Use the maximum available, or set MAX_FD != -1 to use that value.
-MAX_FD="maximum"
+MAX_FD=maximum
warn () {
echo "$*"
-}
+} >&2
die () {
echo
echo "$*"
echo
exit 1
-}
+} >&2
# OS specific support (must be 'true' or 'false').
cygwin=false
msys=false
darwin=false
nonstop=false
-case "`uname`" in
- CYGWIN* )
- cygwin=true
- ;;
- Darwin* )
- darwin=true
- ;;
- MINGW* )
- msys=true
- ;;
- NONSTOP* )
- nonstop=true
- ;;
+case "$( uname )" in #(
+ CYGWIN* ) cygwin=true ;; #(
+ Darwin* ) darwin=true ;; #(
+ MSYS* | MINGW* ) msys=true ;; #(
+ NONSTOP* ) nonstop=true ;;
esac
CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
@@ -87,9 +121,9 @@ CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
if [ -n "$JAVA_HOME" ] ; then
if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
# IBM's JDK on AIX uses strange locations for the executables
- JAVACMD="$JAVA_HOME/jre/sh/java"
+ JAVACMD=$JAVA_HOME/jre/sh/java
else
- JAVACMD="$JAVA_HOME/bin/java"
+ JAVACMD=$JAVA_HOME/bin/java
fi
if [ ! -x "$JAVACMD" ] ; then
die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
@@ -98,7 +132,7 @@ Please set the JAVA_HOME variable in your environment to match the
location of your Java installation."
fi
else
- JAVACMD="java"
+ JAVACMD=java
which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
Please set the JAVA_HOME variable in your environment to match the
@@ -106,80 +140,101 @@ location of your Java installation."
fi
# Increase the maximum file descriptors if we can.
-if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then
- MAX_FD_LIMIT=`ulimit -H -n`
- if [ $? -eq 0 ] ; then
- if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
- MAX_FD="$MAX_FD_LIMIT"
- fi
- ulimit -n $MAX_FD
- if [ $? -ne 0 ] ; then
- warn "Could not set maximum file descriptor limit: $MAX_FD"
- fi
- else
- warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT"
- fi
+if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then
+ case $MAX_FD in #(
+ max*)
+ MAX_FD=$( ulimit -H -n ) ||
+ warn "Could not query maximum file descriptor limit"
+ esac
+ case $MAX_FD in #(
+ '' | soft) :;; #(
+ *)
+ ulimit -n "$MAX_FD" ||
+ warn "Could not set maximum file descriptor limit to $MAX_FD"
+ esac
fi
-# For Darwin, add options to specify how the application appears in the dock
-if $darwin; then
- GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
-fi
+# Collect all arguments for the java command, stacking in reverse order:
+# * args from the command line
+# * the main class name
+# * -classpath
+# * -D...appname settings
+# * --module-path (only if needed)
+# * DEFAULT_JVM_OPTS, JAVA_OPTS, and GRADLE_OPTS environment variables.
# For Cygwin or MSYS, switch paths to Windows format before running java
-if [ "$cygwin" = "true" -o "$msys" = "true" ] ; then
- APP_HOME=`cygpath --path --mixed "$APP_HOME"`
- CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
-
- JAVACMD=`cygpath --unix "$JAVACMD"`
-
- # We build the pattern for arguments to be converted via cygpath
- ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`
- SEP=""
- for dir in $ROOTDIRSRAW ; do
- ROOTDIRS="$ROOTDIRS$SEP$dir"
- SEP="|"
- done
- OURCYGPATTERN="(^($ROOTDIRS))"
- # Add a user-defined pattern to the cygpath arguments
- if [ "$GRADLE_CYGPATTERN" != "" ] ; then
- OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)"
- fi
+if "$cygwin" || "$msys" ; then
+ APP_HOME=$( cygpath --path --mixed "$APP_HOME" )
+ CLASSPATH=$( cygpath --path --mixed "$CLASSPATH" )
+
+ JAVACMD=$( cygpath --unix "$JAVACMD" )
+
# Now convert the arguments - kludge to limit ourselves to /bin/sh
- i=0
- for arg in "$@" ; do
- CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -`
- CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option
-
- if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition
- eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"`
- else
- eval `echo args$i`="\"$arg\""
+ for arg do
+ if
+ case $arg in #(
+ -*) false ;; # don't mess with options #(
+ /?*) t=${arg#/} t=/${t%%/*} # looks like a POSIX filepath
+ [ -e "$t" ] ;; #(
+ *) false ;;
+ esac
+ then
+ arg=$( cygpath --path --ignore --mixed "$arg" )
fi
- i=`expr $i + 1`
+ # Roll the args list around exactly as many times as the number of
+ # args, so each arg winds up back in the position where it started, but
+ # possibly modified.
+ #
+ # NB: a `for` loop captures its iteration list before it begins, so
+ # changing the positional parameters here affects neither the number of
+ # iterations, nor the values presented in `arg`.
+ shift # remove old arg
+ set -- "$@" "$arg" # push replacement arg
done
- case $i in
- 0) set -- ;;
- 1) set -- "$args0" ;;
- 2) set -- "$args0" "$args1" ;;
- 3) set -- "$args0" "$args1" "$args2" ;;
- 4) set -- "$args0" "$args1" "$args2" "$args3" ;;
- 5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
- 6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
- 7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
- 8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
- 9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
- esac
fi
-# Escape application args
-save () {
- for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done
- echo " "
-}
-APP_ARGS=`save "$@"`
+# Collect all arguments for the java command;
+# * $DEFAULT_JVM_OPTS, $JAVA_OPTS, and $GRADLE_OPTS can contain fragments of
+# shell script including quotes and variable substitutions, so put them in
+# double quotes to make sure that they get re-expanded; and
+# * put everything else in single quotes, so that it's not re-expanded.
+
+set -- \
+ "-Dorg.gradle.appname=$APP_BASE_NAME" \
+ -classpath "$CLASSPATH" \
+ org.gradle.wrapper.GradleWrapperMain \
+ "$@"
+
+# Stop when "xargs" is not available.
+if ! command -v xargs >/dev/null 2>&1
+then
+ die "xargs is not available"
+fi
+
+# Use "xargs" to parse quoted args.
+#
+# With -n1 it outputs one arg per line, with the quotes and backslashes removed.
+#
+# In Bash we could simply go:
+#
+# readarray ARGS < <( xargs -n1 <<<"$var" ) &&
+# set -- "${ARGS[@]}" "$@"
+#
+# but POSIX shell has neither arrays nor command substitution, so instead we
+# post-process each arg (as a line of input to sed) to backslash-escape any
+# character that might be a shell metacharacter, then use eval to reverse
+# that process (while maintaining the separation between arguments), and wrap
+# the whole thing up as a single "set" statement.
+#
+# This will of course break if any of these variables contains a newline or
+# an unmatched quote.
+#
-# Collect all arguments for the java command, following the shell quoting and substitution rules
-eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS"
+eval "set -- $(
+ printf '%s\n' "$DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS" |
+ xargs -n1 |
+ sed ' s~[^-[:alnum:]+,./:=@_]~\\&~g; ' |
+ tr '\n' ' '
+ )" '"$@"'
exec "$JAVACMD" "$@"
diff --git a/examples/mobile/android/gradlew.bat b/examples/mobile/android/gradlew.bat
index ac1b06f..53a6b23 100644
--- a/examples/mobile/android/gradlew.bat
+++ b/examples/mobile/android/gradlew.bat
@@ -14,7 +14,7 @@
@rem limitations under the License.
@rem
-@if "%DEBUG%" == "" @echo off
+@if "%DEBUG%"=="" @echo off
@rem ##########################################################################
@rem
@rem Gradle startup script for Windows
@@ -25,7 +25,7 @@
if "%OS%"=="Windows_NT" setlocal
set DIRNAME=%~dp0
-if "%DIRNAME%" == "" set DIRNAME=.
+if "%DIRNAME%"=="" set DIRNAME=.
set APP_BASE_NAME=%~n0
set APP_HOME=%DIRNAME%
@@ -40,7 +40,7 @@ if defined JAVA_HOME goto findJavaFromJavaHome
set JAVA_EXE=java.exe
%JAVA_EXE% -version >NUL 2>&1
-if "%ERRORLEVEL%" == "0" goto execute
+if %ERRORLEVEL% equ 0 goto execute
echo.
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
@@ -75,13 +75,15 @@ set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
:end
@rem End local scope for the variables with windows NT shell
-if "%ERRORLEVEL%"=="0" goto mainEnd
+if %ERRORLEVEL% equ 0 goto mainEnd
:fail
rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
rem the _cmd.exe /c_ return code!
-if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
-exit /b 1
+set EXIT_CODE=%ERRORLEVEL%
+if %EXIT_CODE% equ 0 set EXIT_CODE=1
+if not ""=="%GRADLE_EXIT_CONSOLE%" exit %EXIT_CODE%
+exit /b %EXIT_CODE%
:mainEnd
if "%OS%"=="Windows_NT" endlocal
diff --git a/examples/mobile/android/settings.gradle b/examples/mobile/android/settings.gradle
index e2a14bb..bf8bcc4 100644
--- a/examples/mobile/android/settings.gradle
+++ b/examples/mobile/android/settings.gradle
@@ -1,3 +1,5 @@
rootProject.name = 'mobile'
apply from: file("../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesSettingsGradle(settings)
include ':app'
+includeBuild('../node_modules/react-native-gradle-plugin')
+includeBuild('../node_modules/react-native-gradle-plugin')
diff --git a/examples/mobile/ios/.ruby-version b/examples/mobile/ios/.ruby-version
new file mode 100644
index 0000000..ef538c2
--- /dev/null
+++ b/examples/mobile/ios/.ruby-version
@@ -0,0 +1 @@
+3.1.2
diff --git a/examples/mobile/ios/.xcode.env b/examples/mobile/ios/.xcode.env
new file mode 100644
index 0000000..772b339
--- /dev/null
+++ b/examples/mobile/ios/.xcode.env
@@ -0,0 +1 @@
+export NODE_BINARY=$(command -v node)
diff --git a/examples/mobile/ios/DolbyIOVideoCall.xcodeproj/project.pbxproj b/examples/mobile/ios/DolbyIOVideoCall.xcodeproj/project.pbxproj
index 0875e86..96563ff 100644
--- a/examples/mobile/ios/DolbyIOVideoCall.xcodeproj/project.pbxproj
+++ b/examples/mobile/ios/DolbyIOVideoCall.xcodeproj/project.pbxproj
@@ -630,7 +630,7 @@
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
+ CLANG_CXX_LANGUAGE_STANDARD = "c++17";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_OBJC_ARC = YES;
@@ -657,7 +657,7 @@
COPY_PHASE_STRIP = NO;
ENABLE_STRICT_OBJC_MSGSEND = YES;
ENABLE_TESTABILITY = YES;
- "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "";
+ "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = i386;
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_DYNAMIC_NO_PIC = NO;
GCC_NO_COMMON_BLOCKS = YES;
@@ -685,6 +685,7 @@
);
MTL_ENABLE_DEBUG_INFO = YES;
ONLY_ACTIVE_ARCH = YES;
+ REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
SDKROOT = iphoneos;
};
name = Debug;
@@ -695,7 +696,7 @@
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
+ CLANG_CXX_LANGUAGE_STANDARD = "c++17";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_OBJC_ARC = YES;
@@ -722,7 +723,7 @@
COPY_PHASE_STRIP = YES;
ENABLE_NS_ASSERTIONS = NO;
ENABLE_STRICT_OBJC_MSGSEND = YES;
- "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "";
+ "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = i386;
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_NO_COMMON_BLOCKS = YES;
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
@@ -742,6 +743,7 @@
"\"$(inherited)\"",
);
MTL_ENABLE_DEBUG_INFO = NO;
+ REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
SDKROOT = iphoneos;
VALIDATE_PRODUCT = YES;
};
diff --git a/examples/mobile/ios/DolbyIOVideoCall/AppDelegate.h b/examples/mobile/ios/DolbyIOVideoCall/AppDelegate.h
index ef1de86..bc4c02e 100644
--- a/examples/mobile/ios/DolbyIOVideoCall/AppDelegate.h
+++ b/examples/mobile/ios/DolbyIOVideoCall/AppDelegate.h
@@ -1,8 +1,7 @@
-#import
+#import
#import
-@interface AppDelegate : UIResponder
-@property (nonatomic, strong) UIWindow *window;
+@interface AppDelegate : RCTAppDelegate
@end
diff --git a/examples/mobile/ios/DolbyIOVideoCall/AppDelegate.m b/examples/mobile/ios/DolbyIOVideoCall/AppDelegate.m
index e86ed6d..dc2ca82 100644
--- a/examples/mobile/ios/DolbyIOVideoCall/AppDelegate.m
+++ b/examples/mobile/ios/DolbyIOVideoCall/AppDelegate.m
@@ -1,100 +1,36 @@
#import "AppDelegate.h"
-#import
#import
-#import
-#import
-
-#ifdef FB_SONARKIT_ENABLED
-#import
-#import
-#import
-#import
-#import
-#import
-
-static void InitializeFlipper(UIApplication *application) {
- FlipperClient *client = [FlipperClient sharedClient];
- SKDescriptorMapper *layoutDescriptorMapper = [[SKDescriptorMapper alloc] initWithDefaults];
- [client addPlugin:[[FlipperKitLayoutPlugin alloc] initWithRootNode:application withDescriptorMapper:layoutDescriptorMapper]];
- [client addPlugin:[[FKUserDefaultsPlugin alloc] initWithSuiteName:nil]];
- [client addPlugin:[FlipperKitReactPlugin new]];
- [client addPlugin:[[FlipperKitNetworkPlugin alloc] initWithNetworkAdapter:[SKIOSNetworkAdapter new]]];
- [client start];
-}
-#endif
@implementation AppDelegate
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
- [self clearKeychainIfNecessary];
-
-#ifdef FB_SONARKIT_ENABLED
- InitializeFlipper(application);
-#endif
-
- RCTBridge *bridge = [[RCTBridge alloc] initWithDelegate:self launchOptions:launchOptions];
- RCTRootView *rootView = [[RCTRootView alloc] initWithBridge:bridge
- moduleName:@"mobile"
- initialProperties:nil];
-
- rootView.backgroundColor = [UIColor colorWithRed:0.078431372549019607 green:0.078431372549019607 blue:0.10196078431372549 alpha:1];
+ self.moduleName = @"RnDiffApp";
+ // You can add your custom initial props in the dictionary below.
+ // They will be passed down to the ViewController used by React Native.
+ self.initialProps = @{};
- self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];
- UIViewController *rootViewController = [UIViewController new];
- rootViewController.view = rootView;
- self.window.rootViewController = rootViewController;
- [self.window makeKeyAndVisible];
- [NSThread sleepForTimeInterval:0.500];
- return YES;
+ return [super application:application didFinishLaunchingWithOptions:launchOptions];
}
- (NSURL *)sourceURLForBridge:(RCTBridge *)bridge
{
#if DEBUG
- return [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index" fallbackResource:nil];
+ return [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index"];
#else
return [[NSBundle mainBundle] URLForResource:@"main" withExtension:@"jsbundle"];
#endif
}
-- (BOOL)application:(UIApplication *)application
- openURL:(NSURL *)url
- options:(NSDictionary *)options
-{
- return [RCTLinkingManager application:application openURL:url options:options];
-}
-
-- (BOOL)application:(UIApplication *)application continueUserActivity:(NSUserActivity *)userActivity restorationHandler:(void (^)(NSArray> * _Nullable))restorationHandler
-{
- return [RCTLinkingManager application:application continueUserActivity:userActivity restorationHandler:restorationHandler];
-}
-
-// MARK: Keychain Utility
-
-/// Deletes all Keychain items accessible by this app if this is the first time the user launches the app
-- (void)clearKeychainIfNecessary
+/// This method controls whether the `concurrentRoot`feature of React18 is turned on or off.
+///
+/// @see: https://reactjs.org/blog/2022/03/29/react-v18.html
+/// @note: This requires to be rendering on Fabric (i.e. on the New Architecture).
+/// @return: `true` if the `concurrentRoot` feature is enabled. Otherwise, it returns `false`.
+- (BOOL)concurrentRootEnabled
{
- // Checks wether or not this is the first time the app is run
- if ([[NSUserDefaults standardUserDefaults] boolForKey:@"FIRST_RUN"] == NO) {
- // Set the appropriate value so we don't clear next time the app is launched
- [[NSUserDefaults standardUserDefaults] setBool:YES forKey:@"FIRST_RUN"];
-
- NSArray *secItemClasses = @[
- (__bridge id)kSecClassGenericPassword,
- (__bridge id)kSecClassInternetPassword,
- (__bridge id)kSecClassCertificate,
- (__bridge id)kSecClassKey,
- (__bridge id)kSecClassIdentity
- ];
-
- // Maps through all Keychain classes and deletes all items that match
- for (id secItemClass in secItemClasses) {
- NSDictionary *spec = @{(__bridge id)kSecClass: secItemClass};
- SecItemDelete((__bridge CFDictionaryRef)spec);
- }
- }
+ return true;
}
-@end
+@end
\ No newline at end of file
diff --git a/examples/mobile/ios/DolbyIOVideoCall/main.m b/examples/mobile/ios/DolbyIOVideoCall/main.m
index b1df44b..1e0c071 100644
--- a/examples/mobile/ios/DolbyIOVideoCall/main.m
+++ b/examples/mobile/ios/DolbyIOVideoCall/main.m
@@ -2,7 +2,7 @@
#import "AppDelegate.h"
-int main(int argc, char * argv[]) {
+int main(int argc, char *argv[]) {
@autoreleasepool {
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
}
diff --git a/examples/mobile/ios/Gemfile b/examples/mobile/ios/Gemfile
index c954e78..709b441 100644
--- a/examples/mobile/ios/Gemfile
+++ b/examples/mobile/ios/Gemfile
@@ -1,10 +1,10 @@
source "https://rubygems.org"
-ruby '3.1.2'
+ruby File.read(File.join(__dir__, '.ruby-version')).strip
gem "fastlane"
gem "xcode-install"
-gem 'cocoapods', :git => 'https://github.com/CocoaPods/CocoaPods.git'
+gem 'cocoapods', '~> 1.11', '>= 1.11.3'
gem 'cocoapods-core', :git => 'https://github.com/CocoaPods/Core.git'
plugins_path = File.join(File.dirname(__FILE__), 'fastlane', 'Pluginfile')
diff --git a/examples/mobile/ios/Gemfile.lock b/examples/mobile/ios/Gemfile.lock
index ee727ce..b2b54ef 100644
--- a/examples/mobile/ios/Gemfile.lock
+++ b/examples/mobile/ios/Gemfile.lock
@@ -1,26 +1,3 @@
-GIT
- remote: https://github.com/CocoaPods/CocoaPods.git
- revision: f5ea2cf05f562428830d7d9288020c01f46628bc
- specs:
- cocoapods (1.11.3)
- addressable (~> 2.8)
- claide (>= 1.0.2, < 2.0)
- cocoapods-core (= 1.11.3)
- cocoapods-deintegrate (>= 1.0.3, < 2.0)
- cocoapods-downloader (>= 1.6.0, < 2.0)
- cocoapods-plugins (>= 1.0.0, < 2.0)
- cocoapods-search (>= 1.0.0, < 2.0)
- cocoapods-trunk (>= 1.6.0, < 2.0)
- cocoapods-try (>= 1.1.0, < 2.0)
- colored2 (~> 3.1)
- escape (~> 0.0.4)
- fourflusher (>= 2.3.0, < 3.0)
- gh_inspector (~> 1.0)
- molinillo (~> 0.8.0)
- nap (~> 1.0)
- ruby-macho (>= 2.3.0, < 3.0)
- xcodeproj (>= 1.21.0, < 2.0)
-
GIT
remote: https://github.com/CocoaPods/Core.git
revision: c6ac388ee43f0782fdb8e32386f41f96dbe29082
@@ -72,6 +49,24 @@ GEM
aws-eventstream (~> 1, >= 1.0.2)
babosa (1.0.4)
claide (1.1.0)
+ cocoapods (1.11.3)
+ addressable (~> 2.8)
+ claide (>= 1.0.2, < 2.0)
+ cocoapods-core (= 1.11.3)
+ cocoapods-deintegrate (>= 1.0.3, < 2.0)
+ cocoapods-downloader (>= 1.4.0, < 2.0)
+ cocoapods-plugins (>= 1.0.0, < 2.0)
+ cocoapods-search (>= 1.0.0, < 2.0)
+ cocoapods-trunk (>= 1.4.0, < 2.0)
+ cocoapods-try (>= 1.1.0, < 2.0)
+ colored2 (~> 3.1)
+ escape (~> 0.0.4)
+ fourflusher (>= 2.3.0, < 3.0)
+ gh_inspector (~> 1.0)
+ molinillo (~> 0.8.0)
+ nap (~> 1.0)
+ ruby-macho (>= 1.0, < 3.0)
+ xcodeproj (>= 1.21.0, < 2.0)
cocoapods-deintegrate (1.0.5)
cocoapods-downloader (1.6.3)
cocoapods-plugins (1.0.0)
@@ -289,9 +284,10 @@ GEM
PLATFORMS
universal-darwin-21
+ x86_64-darwin-22
DEPENDENCIES
- cocoapods!
+ cocoapods (~> 1.11, >= 1.11.3)
cocoapods-core!
fastlane
fastlane-plugin-firebase_app_distribution
diff --git a/examples/mobile/ios/Podfile b/examples/mobile/ios/Podfile
index 8c8bc9d..25e060e 100644
--- a/examples/mobile/ios/Podfile
+++ b/examples/mobile/ios/Podfile
@@ -1,43 +1,65 @@
require_relative '../node_modules/react-native/scripts/react_native_pods'
require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules'
-platform :ios, '14.0'
+platform :ios, '12.4'
+prepare_react_native_project!
+
+# If you are using a `react-native-flipper` your iOS build will fail when `NO_FLIPPER=1` is set.
+# because `react-native-flipper` depends on (FlipperKit,...) that will be excluded
+#
+# To fix this you can also exclude `react-native-flipper` using a `react-native.config.js`
+# ```js
+# module.exports = {
+# dependencies: {
+# ...(process.env.NO_FLIPPER ? { 'react-native-flipper': { platforms: { ios: null } } } : {}),
+# ```
+flipper_config = ENV['NO_FLIPPER'] == "1" ? FlipperConfiguration.disabled : FlipperConfiguration.enabled
+
+linkage = ENV['USE_FRAMEWORKS']
+if linkage != nil
+ Pod::UI.puts "Configuring Pod with #{linkage}ally linked Frameworks".green
+ use_frameworks! :linkage => linkage.to_sym
+end
target 'DolbyIOVideoCall' do
config = use_native_modules!
+ # Flags change depending on the env values.
+ flags = get_default_flags()
+
use_react_native!(
:path => config[:reactNativePath],
- # to enable hermes on iOS, change `false` to `true` and then install pods
- :hermes_enabled => false
+ # Hermes is now enabled by default. Disable by setting this flag to false.
+ # Upcoming versions of React Native may rely on get_default_flags(), but
+ # we make it explicit here to aid in the React Native upgrade process.
+ :hermes_enabled => flags[:hermes_enabled],
+ :fabric_enabled => flags[:fabric_enabled],
+ # Enables Flipper.
+ #
+ # Note that if you have use_frameworks! enabled, Flipper will not work and
+ # you should disable the next line.
+ :flipper_configuration => flipper_config,
+ # An absolute path to your application root.
+ :app_path => "#{Pod::Config.instance.installation_root}/.."
)
-
+
permissions_path = '../node_modules/react-native-permissions/ios'
pod 'Permission-Camera', :path => "#{permissions_path}/Camera"
- pod 'FirebaseAppDistribution'
+ # pod 'FirebaseAppDistribution'
target 'DolbyIOVideoCallTests' do
inherit! :complete
# Pods for testing
end
- # Enables Flipper.
- #
- # Note that if you have use_frameworks! enabled, Flipper will not work and
- # you should disable the next line.
- use_flipper!()
-
post_install do |installer|
- react_native_post_install(installer)
+ react_native_post_install(
+ installer,
+ # Set `mac_catalyst_enabled` to `true` in order to apply patches
+ # necessary for Mac Catalyst builds
+ :mac_catalyst_enabled => false
+ )
__apply_Xcode_12_5_M1_post_install_workaround(installer)
-
- installer.pods_project.targets.each do |target|
- if target.respond_to?(:product_type) and target.product_type == "com.apple.product-type.bundle"
- target.build_configurations.each do |config|
- config.build_settings['CODE_SIGNING_ALLOWED'] = 'NO'
- end
- end
- end
end
end
diff --git a/examples/mobile/ios/Podfile.lock b/examples/mobile/ios/Podfile.lock
deleted file mode 100644
index 64c8232..0000000
--- a/examples/mobile/ios/Podfile.lock
+++ /dev/null
@@ -1,711 +0,0 @@
-PODS:
- - boost (1.76.0)
- - BVLinearGradient (2.6.2):
- - React-Core
- - CocoaAsyncSocket (7.6.5)
- - DoubleConversion (1.1.6)
- - FBLazyVector (0.67.2)
- - FBReactNativeSpec (0.67.2):
- - RCT-Folly (= 2021.06.28.00-v2)
- - RCTRequired (= 0.67.2)
- - RCTTypeSafety (= 0.67.2)
- - React-Core (= 0.67.2)
- - React-jsi (= 0.67.2)
- - ReactCommon/turbomodule/core (= 0.67.2)
- - FirebaseAppDistribution (0.9.3):
- - FirebaseCore (~> 6.10)
- - FirebaseInstallations (~> 1.6)
- - GoogleDataTransport (~> 7.2)
- - GoogleUtilities/AppDelegateSwizzler (~> 6.7)
- - GoogleUtilities/UserDefaults (~> 6.7)
- - FirebaseCore (6.10.4):
- - FirebaseCoreDiagnostics (~> 1.6)
- - GoogleUtilities/Environment (~> 6.7)
- - GoogleUtilities/Logger (~> 6.7)
- - FirebaseCoreDiagnostics (1.7.0):
- - GoogleDataTransport (~> 7.4)
- - GoogleUtilities/Environment (~> 6.7)
- - GoogleUtilities/Logger (~> 6.7)
- - nanopb (~> 1.30906.0)
- - FirebaseInstallations (1.7.0):
- - FirebaseCore (~> 6.10)
- - GoogleUtilities/Environment (~> 6.7)
- - GoogleUtilities/UserDefaults (~> 6.7)
- - PromisesObjC (~> 1.2)
- - Flipper (0.99.0):
- - Flipper-Folly (~> 2.6)
- - Flipper-RSocket (~> 1.4)
- - Flipper-Boost-iOSX (1.76.0.1.11)
- - Flipper-DoubleConversion (3.1.7)
- - Flipper-Fmt (7.1.7)
- - Flipper-Folly (2.6.7):
- - Flipper-Boost-iOSX
- - Flipper-DoubleConversion
- - Flipper-Fmt (= 7.1.7)
- - Flipper-Glog
- - libevent (~> 2.1.12)
- - OpenSSL-Universal (= 1.1.180)
- - Flipper-Glog (0.3.6)
- - Flipper-PeerTalk (0.0.4)
- - Flipper-RSocket (1.4.3):
- - Flipper-Folly (~> 2.6)
- - FlipperKit (0.99.0):
- - FlipperKit/Core (= 0.99.0)
- - FlipperKit/Core (0.99.0):
- - Flipper (~> 0.99.0)
- - FlipperKit/CppBridge
- - FlipperKit/FBCxxFollyDynamicConvert
- - FlipperKit/FBDefines
- - FlipperKit/FKPortForwarding
- - FlipperKit/CppBridge (0.99.0):
- - Flipper (~> 0.99.0)
- - FlipperKit/FBCxxFollyDynamicConvert (0.99.0):
- - Flipper-Folly (~> 2.6)
- - FlipperKit/FBDefines (0.99.0)
- - FlipperKit/FKPortForwarding (0.99.0):
- - CocoaAsyncSocket (~> 7.6)
- - Flipper-PeerTalk (~> 0.0.4)
- - FlipperKit/FlipperKitHighlightOverlay (0.99.0)
- - FlipperKit/FlipperKitLayoutHelpers (0.99.0):
- - FlipperKit/Core
- - FlipperKit/FlipperKitHighlightOverlay
- - FlipperKit/FlipperKitLayoutTextSearchable
- - FlipperKit/FlipperKitLayoutIOSDescriptors (0.99.0):
- - FlipperKit/Core
- - FlipperKit/FlipperKitHighlightOverlay
- - FlipperKit/FlipperKitLayoutHelpers
- - YogaKit (~> 1.18)
- - FlipperKit/FlipperKitLayoutPlugin (0.99.0):
- - FlipperKit/Core
- - FlipperKit/FlipperKitHighlightOverlay
- - FlipperKit/FlipperKitLayoutHelpers
- - FlipperKit/FlipperKitLayoutIOSDescriptors
- - FlipperKit/FlipperKitLayoutTextSearchable
- - YogaKit (~> 1.18)
- - FlipperKit/FlipperKitLayoutTextSearchable (0.99.0)
- - FlipperKit/FlipperKitNetworkPlugin (0.99.0):
- - FlipperKit/Core
- - FlipperKit/FlipperKitReactPlugin (0.99.0):
- - FlipperKit/Core
- - FlipperKit/FlipperKitUserDefaultsPlugin (0.99.0):
- - FlipperKit/Core
- - FlipperKit/SKIOSNetworkPlugin (0.99.0):
- - FlipperKit/Core
- - FlipperKit/FlipperKitNetworkPlugin
- - fmt (6.2.1)
- - glog (0.3.5)
- - GoogleDataTransport (7.5.1):
- - nanopb (~> 1.30906.0)
- - GoogleUtilities/AppDelegateSwizzler (6.7.2):
- - GoogleUtilities/Environment
- - GoogleUtilities/Logger
- - GoogleUtilities/Network
- - GoogleUtilities/Environment (6.7.2):
- - PromisesObjC (~> 1.2)
- - GoogleUtilities/Logger (6.7.2):
- - GoogleUtilities/Environment
- - GoogleUtilities/Network (6.7.2):
- - GoogleUtilities/Logger
- - "GoogleUtilities/NSData+zlib"
- - GoogleUtilities/Reachability
- - "GoogleUtilities/NSData+zlib (6.7.2)"
- - GoogleUtilities/Reachability (6.7.2):
- - GoogleUtilities/Logger
- - GoogleUtilities/UserDefaults (6.7.2):
- - GoogleUtilities/Logger
- - libevent (2.1.12)
- - lottie-ios (3.4.3)
- - lottie-react-native (5.1.4):
- - lottie-ios (~> 3.4.0)
- - React-Core
- - nanopb (1.30906.0):
- - nanopb/decode (= 1.30906.0)
- - nanopb/encode (= 1.30906.0)
- - nanopb/decode (1.30906.0)
- - nanopb/encode (1.30906.0)
- - OpenSSL-Universal (1.1.180)
- - Permission-Camera (3.6.1):
- - RNPermissions
- - PromisesObjC (1.2.12)
- - RCT-Folly (2021.06.28.00-v2):
- - boost
- - DoubleConversion
- - fmt (~> 6.2.1)
- - glog
- - RCT-Folly/Default (= 2021.06.28.00-v2)
- - RCT-Folly/Default (2021.06.28.00-v2):
- - boost
- - DoubleConversion
- - fmt (~> 6.2.1)
- - glog
- - RCTRequired (0.67.2)
- - RCTTypeSafety (0.67.2):
- - FBLazyVector (= 0.67.2)
- - RCT-Folly (= 2021.06.28.00-v2)
- - RCTRequired (= 0.67.2)
- - React-Core (= 0.67.2)
- - React (0.67.2):
- - React-Core (= 0.67.2)
- - React-Core/DevSupport (= 0.67.2)
- - React-Core/RCTWebSocket (= 0.67.2)
- - React-RCTActionSheet (= 0.67.2)
- - React-RCTAnimation (= 0.67.2)
- - React-RCTBlob (= 0.67.2)
- - React-RCTImage (= 0.67.2)
- - React-RCTLinking (= 0.67.2)
- - React-RCTNetwork (= 0.67.2)
- - React-RCTSettings (= 0.67.2)
- - React-RCTText (= 0.67.2)
- - React-RCTVibration (= 0.67.2)
- - React-callinvoker (0.67.2)
- - React-Core (0.67.2):
- - glog
- - RCT-Folly (= 2021.06.28.00-v2)
- - React-Core/Default (= 0.67.2)
- - React-cxxreact (= 0.67.2)
- - React-jsi (= 0.67.2)
- - React-jsiexecutor (= 0.67.2)
- - React-perflogger (= 0.67.2)
- - Yoga
- - React-Core/CoreModulesHeaders (0.67.2):
- - glog
- - RCT-Folly (= 2021.06.28.00-v2)
- - React-Core/Default
- - React-cxxreact (= 0.67.2)
- - React-jsi (= 0.67.2)
- - React-jsiexecutor (= 0.67.2)
- - React-perflogger (= 0.67.2)
- - Yoga
- - React-Core/Default (0.67.2):
- - glog
- - RCT-Folly (= 2021.06.28.00-v2)
- - React-cxxreact (= 0.67.2)
- - React-jsi (= 0.67.2)
- - React-jsiexecutor (= 0.67.2)
- - React-perflogger (= 0.67.2)
- - Yoga
- - React-Core/DevSupport (0.67.2):
- - glog
- - RCT-Folly (= 2021.06.28.00-v2)
- - React-Core/Default (= 0.67.2)
- - React-Core/RCTWebSocket (= 0.67.2)
- - React-cxxreact (= 0.67.2)
- - React-jsi (= 0.67.2)
- - React-jsiexecutor (= 0.67.2)
- - React-jsinspector (= 0.67.2)
- - React-perflogger (= 0.67.2)
- - Yoga
- - React-Core/RCTActionSheetHeaders (0.67.2):
- - glog
- - RCT-Folly (= 2021.06.28.00-v2)
- - React-Core/Default
- - React-cxxreact (= 0.67.2)
- - React-jsi (= 0.67.2)
- - React-jsiexecutor (= 0.67.2)
- - React-perflogger (= 0.67.2)
- - Yoga
- - React-Core/RCTAnimationHeaders (0.67.2):
- - glog
- - RCT-Folly (= 2021.06.28.00-v2)
- - React-Core/Default
- - React-cxxreact (= 0.67.2)
- - React-jsi (= 0.67.2)
- - React-jsiexecutor (= 0.67.2)
- - React-perflogger (= 0.67.2)
- - Yoga
- - React-Core/RCTBlobHeaders (0.67.2):
- - glog
- - RCT-Folly (= 2021.06.28.00-v2)
- - React-Core/Default
- - React-cxxreact (= 0.67.2)
- - React-jsi (= 0.67.2)
- - React-jsiexecutor (= 0.67.2)
- - React-perflogger (= 0.67.2)
- - Yoga
- - React-Core/RCTImageHeaders (0.67.2):
- - glog
- - RCT-Folly (= 2021.06.28.00-v2)
- - React-Core/Default
- - React-cxxreact (= 0.67.2)
- - React-jsi (= 0.67.2)
- - React-jsiexecutor (= 0.67.2)
- - React-perflogger (= 0.67.2)
- - Yoga
- - React-Core/RCTLinkingHeaders (0.67.2):
- - glog
- - RCT-Folly (= 2021.06.28.00-v2)
- - React-Core/Default
- - React-cxxreact (= 0.67.2)
- - React-jsi (= 0.67.2)
- - React-jsiexecutor (= 0.67.2)
- - React-perflogger (= 0.67.2)
- - Yoga
- - React-Core/RCTNetworkHeaders (0.67.2):
- - glog
- - RCT-Folly (= 2021.06.28.00-v2)
- - React-Core/Default
- - React-cxxreact (= 0.67.2)
- - React-jsi (= 0.67.2)
- - React-jsiexecutor (= 0.67.2)
- - React-perflogger (= 0.67.2)
- - Yoga
- - React-Core/RCTSettingsHeaders (0.67.2):
- - glog
- - RCT-Folly (= 2021.06.28.00-v2)
- - React-Core/Default
- - React-cxxreact (= 0.67.2)
- - React-jsi (= 0.67.2)
- - React-jsiexecutor (= 0.67.2)
- - React-perflogger (= 0.67.2)
- - Yoga
- - React-Core/RCTTextHeaders (0.67.2):
- - glog
- - RCT-Folly (= 2021.06.28.00-v2)
- - React-Core/Default
- - React-cxxreact (= 0.67.2)
- - React-jsi (= 0.67.2)
- - React-jsiexecutor (= 0.67.2)
- - React-perflogger (= 0.67.2)
- - Yoga
- - React-Core/RCTVibrationHeaders (0.67.2):
- - glog
- - RCT-Folly (= 2021.06.28.00-v2)
- - React-Core/Default
- - React-cxxreact (= 0.67.2)
- - React-jsi (= 0.67.2)
- - React-jsiexecutor (= 0.67.2)
- - React-perflogger (= 0.67.2)
- - Yoga
- - React-Core/RCTWebSocket (0.67.2):
- - glog
- - RCT-Folly (= 2021.06.28.00-v2)
- - React-Core/Default (= 0.67.2)
- - React-cxxreact (= 0.67.2)
- - React-jsi (= 0.67.2)
- - React-jsiexecutor (= 0.67.2)
- - React-perflogger (= 0.67.2)
- - Yoga
- - React-CoreModules (0.67.2):
- - FBReactNativeSpec (= 0.67.2)
- - RCT-Folly (= 2021.06.28.00-v2)
- - RCTTypeSafety (= 0.67.2)
- - React-Core/CoreModulesHeaders (= 0.67.2)
- - React-jsi (= 0.67.2)
- - React-RCTImage (= 0.67.2)
- - ReactCommon/turbomodule/core (= 0.67.2)
- - React-cxxreact (0.67.2):
- - boost (= 1.76.0)
- - DoubleConversion
- - glog
- - RCT-Folly (= 2021.06.28.00-v2)
- - React-callinvoker (= 0.67.2)
- - React-jsi (= 0.67.2)
- - React-jsinspector (= 0.67.2)
- - React-logger (= 0.67.2)
- - React-perflogger (= 0.67.2)
- - React-runtimeexecutor (= 0.67.2)
- - React-jsi (0.67.2):
- - boost (= 1.76.0)
- - DoubleConversion
- - glog
- - RCT-Folly (= 2021.06.28.00-v2)
- - React-jsi/Default (= 0.67.2)
- - React-jsi/Default (0.67.2):
- - boost (= 1.76.0)
- - DoubleConversion
- - glog
- - RCT-Folly (= 2021.06.28.00-v2)
- - React-jsiexecutor (0.67.2):
- - DoubleConversion
- - glog
- - RCT-Folly (= 2021.06.28.00-v2)
- - React-cxxreact (= 0.67.2)
- - React-jsi (= 0.67.2)
- - React-perflogger (= 0.67.2)
- - React-jsinspector (0.67.2)
- - React-logger (0.67.2):
- - glog
- - react-native-camera (4.2.1):
- - React-Core
- - react-native-camera/RCT (= 4.2.1)
- - react-native-camera/RN (= 4.2.1)
- - react-native-camera/RCT (4.2.1):
- - React-Core
- - react-native-camera/RN (4.2.1):
- - React-Core
- - react-native-comms-sdk (3.8.0):
- - React-Core
- - VoxeetSDK (~> 3.8.0)
- - react-native-encrypted-storage (4.0.3):
- - React-Core
- - react-native-safe-area-context (4.4.1):
- - RCT-Folly
- - RCTRequired
- - RCTTypeSafety
- - React-Core
- - ReactCommon/turbomodule/core
- - React-perflogger (0.67.2)
- - React-RCTActionSheet (0.67.2):
- - React-Core/RCTActionSheetHeaders (= 0.67.2)
- - React-RCTAnimation (0.67.2):
- - FBReactNativeSpec (= 0.67.2)
- - RCT-Folly (= 2021.06.28.00-v2)
- - RCTTypeSafety (= 0.67.2)
- - React-Core/RCTAnimationHeaders (= 0.67.2)
- - React-jsi (= 0.67.2)
- - ReactCommon/turbomodule/core (= 0.67.2)
- - React-RCTBlob (0.67.2):
- - FBReactNativeSpec (= 0.67.2)
- - RCT-Folly (= 2021.06.28.00-v2)
- - React-Core/RCTBlobHeaders (= 0.67.2)
- - React-Core/RCTWebSocket (= 0.67.2)
- - React-jsi (= 0.67.2)
- - React-RCTNetwork (= 0.67.2)
- - ReactCommon/turbomodule/core (= 0.67.2)
- - React-RCTImage (0.67.2):
- - FBReactNativeSpec (= 0.67.2)
- - RCT-Folly (= 2021.06.28.00-v2)
- - RCTTypeSafety (= 0.67.2)
- - React-Core/RCTImageHeaders (= 0.67.2)
- - React-jsi (= 0.67.2)
- - React-RCTNetwork (= 0.67.2)
- - ReactCommon/turbomodule/core (= 0.67.2)
- - React-RCTLinking (0.67.2):
- - FBReactNativeSpec (= 0.67.2)
- - React-Core/RCTLinkingHeaders (= 0.67.2)
- - React-jsi (= 0.67.2)
- - ReactCommon/turbomodule/core (= 0.67.2)
- - React-RCTNetwork (0.67.2):
- - FBReactNativeSpec (= 0.67.2)
- - RCT-Folly (= 2021.06.28.00-v2)
- - RCTTypeSafety (= 0.67.2)
- - React-Core/RCTNetworkHeaders (= 0.67.2)
- - React-jsi (= 0.67.2)
- - ReactCommon/turbomodule/core (= 0.67.2)
- - React-RCTSettings (0.67.2):
- - FBReactNativeSpec (= 0.67.2)
- - RCT-Folly (= 2021.06.28.00-v2)
- - RCTTypeSafety (= 0.67.2)
- - React-Core/RCTSettingsHeaders (= 0.67.2)
- - React-jsi (= 0.67.2)
- - ReactCommon/turbomodule/core (= 0.67.2)
- - React-RCTText (0.67.2):
- - React-Core/RCTTextHeaders (= 0.67.2)
- - React-RCTVibration (0.67.2):
- - FBReactNativeSpec (= 0.67.2)
- - RCT-Folly (= 2021.06.28.00-v2)
- - React-Core/RCTVibrationHeaders (= 0.67.2)
- - React-jsi (= 0.67.2)
- - ReactCommon/turbomodule/core (= 0.67.2)
- - React-runtimeexecutor (0.67.2):
- - React-jsi (= 0.67.2)
- - ReactCommon/turbomodule/core (0.67.2):
- - DoubleConversion
- - glog
- - RCT-Folly (= 2021.06.28.00-v2)
- - React-callinvoker (= 0.67.2)
- - React-Core (= 0.67.2)
- - React-cxxreact (= 0.67.2)
- - React-jsi (= 0.67.2)
- - React-logger (= 0.67.2)
- - React-perflogger (= 0.67.2)
- - RNCAsyncStorage (1.17.11):
- - React-Core
- - RNGestureHandler (2.8.0):
- - React-Core
- - RNPermissions (3.6.1):
- - React-Core
- - RNReanimated (2.12.0):
- - DoubleConversion
- - FBLazyVector
- - FBReactNativeSpec
- - glog
- - RCT-Folly
- - RCTRequired
- - RCTTypeSafety
- - React-callinvoker
- - React-Core
- - React-Core/DevSupport
- - React-Core/RCTWebSocket
- - React-CoreModules
- - React-cxxreact
- - React-jsi
- - React-jsiexecutor
- - React-jsinspector
- - React-RCTActionSheet
- - React-RCTAnimation
- - React-RCTBlob
- - React-RCTImage
- - React-RCTLinking
- - React-RCTNetwork
- - React-RCTSettings
- - React-RCTText
- - ReactCommon/turbomodule/core
- - Yoga
- - RNScreens (3.18.2):
- - React-Core
- - React-RCTImage
- - RNSVG (12.4.4):
- - React-Core
- - VoxeetSDK (3.8.3)
- - Yoga (1.14.0)
- - YogaKit (1.18.1):
- - Yoga (~> 1.14)
-
-DEPENDENCIES:
- - boost (from `../node_modules/react-native/third-party-podspecs/boost.podspec`)
- - BVLinearGradient (from `../node_modules/react-native-linear-gradient`)
- - 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`)
- - FirebaseAppDistribution
- - Flipper (= 0.99.0)
- - Flipper-Boost-iOSX (= 1.76.0.1.11)
- - Flipper-DoubleConversion (= 3.1.7)
- - Flipper-Fmt (= 7.1.7)
- - Flipper-Folly (= 2.6.7)
- - Flipper-Glog (= 0.3.6)
- - Flipper-PeerTalk (= 0.0.4)
- - Flipper-RSocket (= 1.4.3)
- - FlipperKit (= 0.99.0)
- - FlipperKit/Core (= 0.99.0)
- - FlipperKit/CppBridge (= 0.99.0)
- - FlipperKit/FBCxxFollyDynamicConvert (= 0.99.0)
- - FlipperKit/FBDefines (= 0.99.0)
- - FlipperKit/FKPortForwarding (= 0.99.0)
- - FlipperKit/FlipperKitHighlightOverlay (= 0.99.0)
- - FlipperKit/FlipperKitLayoutPlugin (= 0.99.0)
- - FlipperKit/FlipperKitLayoutTextSearchable (= 0.99.0)
- - FlipperKit/FlipperKitNetworkPlugin (= 0.99.0)
- - FlipperKit/FlipperKitReactPlugin (= 0.99.0)
- - FlipperKit/FlipperKitUserDefaultsPlugin (= 0.99.0)
- - FlipperKit/SKIOSNetworkPlugin (= 0.99.0)
- - glog (from `../node_modules/react-native/third-party-podspecs/glog.podspec`)
- - lottie-react-native (from `../node_modules/lottie-react-native`)
- - OpenSSL-Universal (= 1.1.180)
- - Permission-Camera (from `../node_modules/react-native-permissions/ios/Camera`)
- - 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-logger (from `../node_modules/react-native/ReactCommon/logger`)
- - react-native-camera (from `../node_modules/react-native-camera`)
- - "react-native-comms-sdk (from `../node_modules/@dolbyio/comms-sdk-react-native`)"
- - react-native-encrypted-storage (from `../node_modules/react-native-encrypted-storage`)
- - 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`)
- - "RNCAsyncStorage (from `../node_modules/@react-native-async-storage/async-storage`)"
- - RNGestureHandler (from `../node_modules/react-native-gesture-handler`)
- - RNPermissions (from `../node_modules/react-native-permissions`)
- - RNReanimated (from `../node_modules/react-native-reanimated`)
- - RNScreens (from `../node_modules/react-native-screens`)
- - RNSVG (from `../node_modules/react-native-svg`)
- - Yoga (from `../node_modules/react-native/ReactCommon/yoga`)
-
-SPEC REPOS:
- trunk:
- - CocoaAsyncSocket
- - FirebaseAppDistribution
- - FirebaseCore
- - FirebaseCoreDiagnostics
- - FirebaseInstallations
- - Flipper
- - Flipper-Boost-iOSX
- - Flipper-DoubleConversion
- - Flipper-Fmt
- - Flipper-Folly
- - Flipper-Glog
- - Flipper-PeerTalk
- - Flipper-RSocket
- - FlipperKit
- - fmt
- - GoogleDataTransport
- - GoogleUtilities
- - libevent
- - lottie-ios
- - nanopb
- - OpenSSL-Universal
- - PromisesObjC
- - VoxeetSDK
- - YogaKit
-
-EXTERNAL SOURCES:
- boost:
- :podspec: "../node_modules/react-native/third-party-podspecs/boost.podspec"
- BVLinearGradient:
- :path: "../node_modules/react-native-linear-gradient"
- 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"
- lottie-react-native:
- :path: "../node_modules/lottie-react-native"
- Permission-Camera:
- :path: "../node_modules/react-native-permissions/ios/Camera"
- 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-logger:
- :path: "../node_modules/react-native/ReactCommon/logger"
- react-native-camera:
- :path: "../node_modules/react-native-camera"
- react-native-comms-sdk:
- :path: "../node_modules/@dolbyio/comms-sdk-react-native"
- react-native-encrypted-storage:
- :path: "../node_modules/react-native-encrypted-storage"
- 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"
- RNCAsyncStorage:
- :path: "../node_modules/@react-native-async-storage/async-storage"
- RNGestureHandler:
- :path: "../node_modules/react-native-gesture-handler"
- RNPermissions:
- :path: "../node_modules/react-native-permissions"
- RNReanimated:
- :path: "../node_modules/react-native-reanimated"
- RNScreens:
- :path: "../node_modules/react-native-screens"
- RNSVG:
- :path: "../node_modules/react-native-svg"
- Yoga:
- :path: "../node_modules/react-native/ReactCommon/yoga"
-
-SPEC CHECKSUMS:
- boost: a7c83b31436843459a1961bfd74b96033dc77234
- BVLinearGradient: 34a999fda29036898a09c6a6b728b0b4189e1a44
- CocoaAsyncSocket: 065fd1e645c7abab64f7a6a2007a48038fdc6a99
- DoubleConversion: 831926d9b8bf8166fd87886c4abab286c2422662
- FBLazyVector: 244195e30d63d7f564c55da4410b9a24e8fbceaa
- FBReactNativeSpec: c94002c1d93da3658f4d5119c6994d19961e3d52
- FirebaseAppDistribution: 3b615c5fba5953351c5c96ca03217d15b0ee85d2
- FirebaseCore: d3a978a3cfa3240bf7e4ba7d137fdf5b22b628ec
- FirebaseCoreDiagnostics: 770ac5958e1372ce67959ae4b4f31d8e127c3ac1
- FirebaseInstallations: 466c7b4d1f58fe16707693091da253726a731ed2
- Flipper: 30e8eeeed6abdc98edaf32af0cda2f198be4b733
- Flipper-Boost-iOSX: fd1e2b8cbef7e662a122412d7ac5f5bea715403c
- Flipper-DoubleConversion: 57ffbe81ef95306cc9e69c4aa3aeeeeb58a6a28c
- Flipper-Fmt: 60cbdd92fc254826e61d669a5d87ef7015396a9b
- Flipper-Folly: 83af37379faa69497529e414bd43fbfc7cae259a
- Flipper-Glog: 1dfd6abf1e922806c52ceb8701a3599a79a200a6
- Flipper-PeerTalk: 116d8f857dc6ef55c7a5a75ea3ceaafe878aadc9
- Flipper-RSocket: d9d9ade67cbecf6ac10730304bf5607266dd2541
- FlipperKit: d8d346844eca5d9120c17d441a2f38596e8ed2b9
- fmt: ff9d55029c625d3757ed641535fd4a75fedc7ce9
- glog: 85ecdd10ee8d8ec362ef519a6a45ff9aa27b2e85
- GoogleDataTransport: f56af7caa4ed338dc8e138a5d7c5973e66440833
- GoogleUtilities: 7f2f5a07f888cdb145101d6042bc4422f57e70b3
- libevent: 4049cae6c81cdb3654a443be001fb9bdceff7913
- lottie-ios: 9ae750cdc7820fecbd3c2f0cfc493038208fcdc4
- lottie-react-native: b702fab740cdb952a8e2354713d3beda63ff97b0
- nanopb: 59317e09cf1f1a0af72f12af412d54edf52603fc
- OpenSSL-Universal: 1aa4f6a6ee7256b83db99ec1ccdaa80d10f9af9b
- Permission-Camera: bf6791b17c7f614b6826019fcfdcc286d3a107f6
- PromisesObjC: 3113f7f76903778cf4a0586bd1ab89329a0b7b97
- RCT-Folly: 803a9cfd78114b2ec0f140cfa6fa2a6bafb2d685
- RCTRequired: cd47794163052d2b8318c891a7a14fcfaccc75ab
- RCTTypeSafety: 393bb40b3e357b224cde53d3fec26813c52428b1
- React: dec6476bc27155b250eeadfc11ea779265f53ebf
- React-callinvoker: e5047929e80aea942e6fdd96482504ef0189ca63
- React-Core: e382655566b2b9a6e3b4f641d777b7bfdbe52358
- React-CoreModules: cf262e82fa101c0aee022b6f90d1a5b612038b64
- React-cxxreact: 69d53de3b30c7c161ba087ca1ecdffed9ccb1039
- React-jsi: ce9a2d804adf75809ce2fe2374ba3fbbf5d59b03
- React-jsiexecutor: 52beb652bbc61201bd70cbe4f0b8edb607e8da4f
- React-jsinspector: 595f76eba2176ebd8817a1fffd47b84fbdab9383
- React-logger: 23de8ea0f44fa00ee77e96060273225607fd4d78
- react-native-camera: 3eae183c1d111103963f3dd913b65d01aef8110f
- react-native-comms-sdk: dac394af5ca49ff536484b1da5901f98b3aaf331
- react-native-encrypted-storage: db300a3f2f0aba1e818417c1c0a6be549038deb7
- react-native-safe-area-context: 99b24a0c5acd0d5dcac2b1a7f18c49ea317be99a
- React-perflogger: 3c9bb7372493e49036f07a82c44c8cf65cbe88db
- React-RCTActionSheet: 052606483045a408693aa7e864410b4a052f541a
- React-RCTAnimation: 08d4cac13222bb1348c687a0158dfd3b577cdb63
- React-RCTBlob: 928ad1df65219c3d9e2ac80983b943a75b5c3629
- React-RCTImage: 524d7313b142a39ee0e20fa312b67277917fe076
- React-RCTLinking: 44036ea6f13a2e46238be07a67566247fee35244
- React-RCTNetwork: 9b6faacf1e0789253e319ca53b1f8d92c2ac5455
- React-RCTSettings: ecd8094f831130a49581d5112a8607220e5d12a5
- React-RCTText: 14ba976fb48ed283cfdb1a754a5d4276471e0152
- React-RCTVibration: 99c7f67fba7a5ade46e98e870c6ff2444484f995
- React-runtimeexecutor: 2450b43df7ffe8e805a0b3dcb2abd4282f1f1836
- ReactCommon: d98c6c96b567f9b3a15f9fd4cc302c1eda8e3cf2
- RNCAsyncStorage: 8616bd5a58af409453ea4e1b246521bb76578d60
- RNGestureHandler: 62232ba8f562f7dea5ba1b3383494eb5bf97a4d3
- RNPermissions: dcdb7b99796bbeda6975a6e79ad519c41b251b1c
- RNReanimated: 3dd02d6e115cb20bb999a07cd1ce19369c59afb8
- RNScreens: 34cc502acf1b916c582c60003dc3089fa01dc66d
- RNSVG: ecd661f380a07ba690c9c5929c475a44f432d674
- VoxeetSDK: 164aa55773192104d4a57a6952507722330d15f1
- Yoga: 9b6696970c3289e8dea34b3eda93f23e61fb8121
- YogaKit: f782866e155069a2cca2517aafea43200b01fd5a
-
-PODFILE CHECKSUM: b3a763e9d1507087860dc2e5549fbf01c7c58d9d
-
-COCOAPODS: 1.12.1
diff --git a/examples/mobile/package.json b/examples/mobile/package.json
index 3ce0f0c..d9ad4ea 100644
--- a/examples/mobile/package.json
+++ b/examples/mobile/package.json
@@ -11,7 +11,7 @@
},
"dependencies": {
"@dolbyio/comms-sdk-react-native": "^3.8.0",
- "@dolbyio/comms-uikit-react-native": "1.0.0",
+ "@dolbyio/comms-uikit-react-native": "1.1.0",
"@gorhom/bottom-sheet": "^4",
"@react-native-async-storage/async-storage": "^1.17.0",
"@react-navigation/native": "^6.0.8",
@@ -19,35 +19,49 @@
"@types/color": "3.0.3",
"axios": "^0.27.2",
"color": "4.2.3",
+ "deprecated-react-native-prop-types": "^4.1.0",
"jwt-decode": "^3.1.2",
"lottie-react-native": "^5.0.1",
"react": "18.2.0",
"react-intl": "~6.1.1",
- "react-native": "0.67.2",
+ "react-native": "0.71.3",
"react-native-camera": "^4.2.1",
"react-native-encrypted-storage": "^4.0.2",
- "react-native-gesture-handler": "^2.3.2",
- "react-native-permissions": "^3.6.1",
+ "react-native-gesture-handler": "^2.10.2",
+ "react-native-permissions": "^3.8.0",
"react-native-qrcode-scanner": "^1.5.5",
"react-native-reanimated": "^2.12.0",
"react-native-safe-area-context": "^4.2.2",
- "react-native-screens": "^3.13.1"
+ "react-native-screens": "^3.13.1",
+ "react-native-svg": "^13.9.0"
+ },
+ "resolutions": {
+ "react-native-permissions": "^3.8.0"
+ },
+ "overrides": {
+ "react-native-qrcode-scanner": {
+ "react-native-permissions": "^3.8.0"
+ }
},
"devDependencies": {
- "@babel/core": "^7.12.9",
- "@babel/runtime": "^7.12.5",
- "@types/react": "18.0.18",
- "@types/react-native": "0.64.1",
- "babel-plugin-module-resolver": "^4.0.0",
- "metro-react-native-babel-preset": "^0.66.2",
- "react-native-linear-gradient": "^2.5.6",
- "react-native-svg": "^12.3.0",
+ "@babel/core": "^7.20.0",
+ "@babel/preset-env": "^7.20.0",
+ "@babel/runtime": "^7.20.0",
+ "@react-native-community/eslint-config": "^3.2.0",
+ "@tsconfig/react-native": "^2.0.2",
+ "@types/jest": "^29.2.1",
+ "@types/react": "^18.0.24",
+ "@types/react-test-renderer": "^18.0.0",
+ "babel-jest": "^29.2.1",
+ "eslint": "^8.19.0",
+ "jest": "^29.2.1",
+ "metro-react-native-babel-preset": "0.73.7",
+ "prettier": "^2.4.1",
"react-native-svg-transformer": "^1.0.0",
- "react-test-renderer": "18.2.0"
+ "react-test-renderer": "18.2.0",
+ "typescript": "4.8.4"
},
- "rnpm": {
- "assets": [
- "./assets/fonts/"
- ]
+ "jest": {
+ "preset": "react-native"
}
}
diff --git a/examples/mobile/tsconfig.json b/examples/mobile/tsconfig.json
index 35a5721..03b2b64 100644
--- a/examples/mobile/tsconfig.json
+++ b/examples/mobile/tsconfig.json
@@ -21,5 +21,6 @@
"babel.config.js",
"metro.config.js",
"jest.config.js"
- ]
+ ],
+ "extends": "@tsconfig/react-native/tsconfig.json"
}
diff --git a/package.json b/package.json
index f31631a..9c97db2 100644
--- a/package.json
+++ b/package.json
@@ -20,14 +20,14 @@
"reset": "find . -type dir -name node_modules | xargs rm -rf && rm -rf yarn.lock"
},
"devDependencies": {
- "@babel/core": "^7.17.7",
- "@babel/preset-env": "^7.16.11",
- "@types/jest": "^27.4.1",
+ "@babel/core": "^7.20.0",
+ "@babel/preset-env": "^7.20.0",
+ "@types/jest": "^29.2.1",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
- "babel-jest": "^27.5.1",
+ "babel-jest": "^29.2.1",
"babel-plugin-module-resolver": "^4.1.0",
- "eslint": "^8.23.0",
+ "eslint": "^8.19.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-babel-module": "^5.3.1",
@@ -37,9 +37,9 @@
"eslint-plugin-react": "^7.31.7",
"eslint-plugin-react-hooks": "^4.6.0",
"license-checker": "^25.0.1",
- "prettier": "2.7.1",
- "ts-jest": "^27.1.3",
- "typescript": "4.8.3"
+ "prettier": "^2.4.1",
+ "ts-jest": "^29.1.0",
+ "typescript": "4.8.4"
},
"workspaces": {
"packages": [
diff --git a/packages/common/package.json b/packages/common/package.json
index facfa4d..7170b49 100644
--- a/packages/common/package.json
+++ b/packages/common/package.json
@@ -1,6 +1,6 @@
{
"name": "@dolbyio/comms-uikit-common",
- "version": "1.0.0",
+ "version": "1.1.0",
"main": "src/index.ts",
"license": "LicenseRef-LICENSE",
"scripts": {
@@ -15,13 +15,13 @@
"react": "18.2.0"
},
"devDependencies": {
- "@babel/runtime": "^7.18.6",
- "jest": "^27.5.1",
- "@types/react": "18.0.18",
+ "@babel/runtime": "^7.20.0",
+ "jest": "^29.2.1",
+ "@types/react": "^18.0.24",
"rollup": "^2.66.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-terser": "^7.0.2",
- "ts-jest": "^27.1.3"
+ "ts-jest": "^29.1.0"
},
"eslintConfig": {
"env": {
diff --git a/packages/common/src/theme/types.ts b/packages/common/src/theme/types.ts
index 1926dcb..e27a065 100644
--- a/packages/common/src/theme/types.ts
+++ b/packages/common/src/theme/types.ts
@@ -28,7 +28,7 @@ export type Colors = Record | string>;
export type Theme = {
colors: Colors;
- spaces: typeof defaultTheme['spaces'];
+ spaces: (typeof defaultTheme)['spaces'];
avatars: string[];
// SHADOWS
shadowColor?: string; // mobile only
@@ -49,6 +49,6 @@ export type test = CustomThemes['dark'];
export type ThemeMode = keyof typeof customThemes;
-export type SpaceValues = keyof typeof defaultTheme['spaces'];
+export type SpaceValues = keyof (typeof defaultTheme)['spaces'];
export type Sizes = 'xxs' | 'xs' | 's' | 'm' | 'l' | 'xl' | 'xxl' | 'xxxl';
diff --git a/packages/mobile/package.json b/packages/mobile/package.json
index 063b47f..3194c57 100644
--- a/packages/mobile/package.json
+++ b/packages/mobile/package.json
@@ -1,6 +1,6 @@
{
"name": "@dolbyio/comms-uikit-react-native",
- "version": "1.0.0",
+ "version": "1.1.0",
"description": "Dolby.IO UIKit React Native",
"main": "src/index.ts",
"files": [
@@ -49,16 +49,17 @@
},
"dependencies": {
"@dolbyio/comms-sdk-react-native": "^3.8.0",
- "@dolbyio/comms-uikit-common": "1.0.0",
+ "@dolbyio/comms-uikit-common": "1.1.0",
"@gorhom/bottom-sheet": "^4",
"@react-native-async-storage/async-storage": "^1.17.0",
"@types/color": "3.0.3",
"color": "4.2.3",
- "lodash.merge": "^4.6.2",
+ "lodash.merge": "^4.6.1",
"lottie-react-native": "^5.0.1",
"react": "18.2.0",
"react-intl": "~6.1.1",
- "react-native": "0.67.2",
+ "react-native": "0.71.3",
+ "react-native-gesture-handler": "^2.10.2",
"react-native-linear-gradient": "^2.5.6",
"react-native-reanimated": "^2.12.0"
},
@@ -66,11 +67,11 @@
"@release-it/conventional-changelog": "^2.0.0",
"@testing-library/jest-native": "^4.0.4",
"@testing-library/react-native": "^9.1.0",
- "@types/lodash.merge": "^4.6.2",
- "@types/react": "18.0.18",
- "@types/react-native": "0.67.2",
+ "@types/lodash.merge": "^4.6.1",
+ "@types/react": "^18.0.24",
+ "@types/react-native": "0.71.3",
"babel-plugin-module-resolver": "^4.0.0",
- "jest": "^27.5.1",
+ "jest": "^29.2.1",
"pod-install": "^0.1.0",
"react-test-renderer": "18.2.0"
},
diff --git a/ruby-version b/ruby-version
new file mode 100644
index 0000000..5b013b9
--- /dev/null
+++ b/ruby-version
@@ -0,0 +1 @@
+2.7.6
\ No newline at end of file
diff --git a/third-party-licenses.json b/third-party-licenses.json
index 48adbda..9ef4175 100644
--- a/third-party-licenses.json
+++ b/third-party-licenses.json
@@ -1,5 +1,5 @@
{
- "@ampproject/remapping@2.2.0": {
+ "@ampproject/remapping@2.2.1": {
"licenses": "Apache-2.0",
"repository": "https://github.com/ampproject/remapping",
"publisher": "Justin Ridgewell",
@@ -7,7 +7,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/@ampproject/remapping",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/@ampproject/remapping/LICENSE"
},
- "@babel/code-frame@7.18.6": {
+ "@babel/code-frame@7.21.4": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel",
"publisher": "The Babel Team",
@@ -15,7 +15,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/@babel/code-frame",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/@babel/code-frame/LICENSE"
},
- "@babel/compat-data@7.20.1": {
+ "@babel/compat-data@7.22.3": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel",
"publisher": "The Babel Team",
@@ -23,7 +23,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/@babel/compat-data",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/@babel/compat-data/LICENSE"
},
- "@babel/core@7.20.2": {
+ "@babel/core@7.22.1": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel",
"publisher": "The Babel Team",
@@ -31,7 +31,15 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/@babel/core",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/@babel/core/LICENSE"
},
- "@babel/generator@7.20.4": {
+ "@babel/eslint-parser@7.21.8": {
+ "licenses": "MIT",
+ "repository": "https://github.com/babel/babel",
+ "publisher": "The Babel Team",
+ "url": "https://babel.dev/team",
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/@babel/eslint-parser",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/@babel/eslint-parser/LICENSE"
+ },
+ "@babel/generator@7.22.3": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel",
"publisher": "The Babel Team",
@@ -47,7 +55,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/helper-annotate-as-pure",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/helper-annotate-as-pure/LICENSE"
},
- "@babel/helper-builder-binary-assignment-operator-visitor@7.18.9": {
+ "@babel/helper-builder-binary-assignment-operator-visitor@7.22.3": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel",
"publisher": "The Babel Team",
@@ -55,7 +63,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/helper-builder-binary-assignment-operator-visitor",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/helper-builder-binary-assignment-operator-visitor/LICENSE"
},
- "@babel/helper-compilation-targets@7.20.0": {
+ "@babel/helper-compilation-targets@7.22.1": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel",
"publisher": "The Babel Team",
@@ -63,7 +71,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/@babel/helper-compilation-targets",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/@babel/helper-compilation-targets/LICENSE"
},
- "@babel/helper-create-class-features-plugin@7.20.2": {
+ "@babel/helper-create-class-features-plugin@7.22.1": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel",
"publisher": "The Babel Team",
@@ -71,7 +79,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/helper-create-class-features-plugin",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/helper-create-class-features-plugin/LICENSE"
},
- "@babel/helper-create-regexp-features-plugin@7.19.0": {
+ "@babel/helper-create-regexp-features-plugin@7.22.1": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel",
"publisher": "The Babel Team",
@@ -79,13 +87,13 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/helper-create-regexp-features-plugin",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/helper-create-regexp-features-plugin/LICENSE"
},
- "@babel/helper-define-polyfill-provider@0.3.3": {
+ "@babel/helper-define-polyfill-provider@0.4.0": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel-polyfills",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/helper-define-polyfill-provider",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/helper-define-polyfill-provider/LICENSE"
},
- "@babel/helper-environment-visitor@7.18.9": {
+ "@babel/helper-environment-visitor@7.22.1": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel",
"publisher": "The Babel Team",
@@ -93,15 +101,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/@babel/helper-environment-visitor",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/@babel/helper-environment-visitor/LICENSE"
},
- "@babel/helper-explode-assignable-expression@7.18.6": {
- "licenses": "MIT",
- "repository": "https://github.com/babel/babel",
- "publisher": "The Babel Team",
- "url": "https://babel.dev/team",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/helper-explode-assignable-expression",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/helper-explode-assignable-expression/LICENSE"
- },
- "@babel/helper-function-name@7.19.0": {
+ "@babel/helper-function-name@7.21.0": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel",
"publisher": "The Babel Team",
@@ -117,7 +117,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/@babel/helper-hoist-variables",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/@babel/helper-hoist-variables/LICENSE"
},
- "@babel/helper-member-expression-to-functions@7.18.9": {
+ "@babel/helper-member-expression-to-functions@7.22.3": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel",
"publisher": "The Babel Team",
@@ -125,7 +125,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/helper-member-expression-to-functions",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/helper-member-expression-to-functions/LICENSE"
},
- "@babel/helper-module-imports@7.18.6": {
+ "@babel/helper-module-imports@7.21.4": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel",
"publisher": "The Babel Team",
@@ -133,7 +133,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/@babel/helper-module-imports",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/@babel/helper-module-imports/LICENSE"
},
- "@babel/helper-module-transforms@7.20.2": {
+ "@babel/helper-module-transforms@7.22.1": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel",
"publisher": "The Babel Team",
@@ -149,7 +149,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/helper-optimise-call-expression",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/helper-optimise-call-expression/LICENSE"
},
- "@babel/helper-plugin-utils@7.20.2": {
+ "@babel/helper-plugin-utils@7.21.5": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel",
"publisher": "The Babel Team",
@@ -165,7 +165,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/helper-remap-async-to-generator",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/helper-remap-async-to-generator/LICENSE"
},
- "@babel/helper-replace-supers@7.19.1": {
+ "@babel/helper-replace-supers@7.22.1": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel",
"publisher": "The Babel Team",
@@ -173,7 +173,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/helper-replace-supers",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/helper-replace-supers/LICENSE"
},
- "@babel/helper-simple-access@7.20.2": {
+ "@babel/helper-simple-access@7.21.5": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel",
"publisher": "The Babel Team",
@@ -197,7 +197,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/@babel/helper-split-export-declaration",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/@babel/helper-split-export-declaration/LICENSE"
},
- "@babel/helper-string-parser@7.19.4": {
+ "@babel/helper-string-parser@7.21.5": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel",
"publisher": "The Babel Team",
@@ -213,7 +213,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/@babel/helper-validator-identifier",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/@babel/helper-validator-identifier/LICENSE"
},
- "@babel/helper-validator-option@7.18.6": {
+ "@babel/helper-validator-option@7.21.0": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel",
"publisher": "The Babel Team",
@@ -221,7 +221,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/@babel/helper-validator-option",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/@babel/helper-validator-option/LICENSE"
},
- "@babel/helper-wrap-function@7.19.0": {
+ "@babel/helper-wrap-function@7.20.5": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel",
"publisher": "The Babel Team",
@@ -229,7 +229,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/helper-wrap-function",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/helper-wrap-function/LICENSE"
},
- "@babel/helpers@7.20.1": {
+ "@babel/helpers@7.22.3": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel",
"publisher": "The Babel Team",
@@ -245,7 +245,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/@babel/highlight",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/@babel/highlight/LICENSE"
},
- "@babel/parser@7.20.3": {
+ "@babel/parser@7.22.4": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel",
"publisher": "The Babel Team",
@@ -261,7 +261,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/LICENSE"
},
- "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.18.9": {
+ "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.22.3": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel",
"publisher": "The Babel Team",
@@ -269,37 +269,21 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/LICENSE"
},
- "@babel/plugin-proposal-async-generator-functions@7.20.1": {
+ "@babel/plugin-proposal-async-generator-functions@7.20.7": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel",
"publisher": "The Babel Team",
"url": "https://babel.dev/team",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-proposal-async-generator-functions",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-proposal-async-generator-functions/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@babel/plugin-proposal-async-generator-functions",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@babel/plugin-proposal-async-generator-functions/LICENSE"
},
"@babel/plugin-proposal-class-properties@7.18.6": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel",
"publisher": "The Babel Team",
"url": "https://babel.dev/team",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-proposal-class-properties",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-proposal-class-properties/LICENSE"
- },
- "@babel/plugin-proposal-class-static-block@7.18.6": {
- "licenses": "MIT",
- "repository": "https://github.com/babel/babel",
- "publisher": "The Babel Team",
- "url": "https://babel.dev/team",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-proposal-class-static-block",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-proposal-class-static-block/LICENSE"
- },
- "@babel/plugin-proposal-dynamic-import@7.18.6": {
- "licenses": "MIT",
- "repository": "https://github.com/babel/babel",
- "publisher": "The Babel Team",
- "url": "https://babel.dev/team",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-proposal-dynamic-import",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-proposal-dynamic-import/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@babel/plugin-proposal-class-properties",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@babel/plugin-proposal-class-properties/LICENSE"
},
"@babel/plugin-proposal-export-default-from@7.18.10": {
"licenses": "MIT",
@@ -309,79 +293,39 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@babel/plugin-proposal-export-default-from",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@babel/plugin-proposal-export-default-from/LICENSE"
},
- "@babel/plugin-proposal-export-namespace-from@7.18.9": {
- "licenses": "MIT",
- "repository": "https://github.com/babel/babel",
- "publisher": "The Babel Team",
- "url": "https://babel.dev/team",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-proposal-export-namespace-from",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-proposal-export-namespace-from/LICENSE"
- },
- "@babel/plugin-proposal-json-strings@7.18.6": {
- "licenses": "MIT",
- "repository": "https://github.com/babel/babel",
- "publisher": "The Babel Team",
- "url": "https://babel.dev/team",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-proposal-json-strings",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-proposal-json-strings/LICENSE"
- },
- "@babel/plugin-proposal-logical-assignment-operators@7.18.9": {
- "licenses": "MIT",
- "repository": "https://github.com/babel/babel",
- "publisher": "The Babel Team",
- "url": "https://babel.dev/team",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-proposal-logical-assignment-operators",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-proposal-logical-assignment-operators/LICENSE"
- },
"@babel/plugin-proposal-nullish-coalescing-operator@7.18.6": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel",
"publisher": "The Babel Team",
"url": "https://babel.dev/team",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-proposal-nullish-coalescing-operator",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-proposal-nullish-coalescing-operator/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@babel/plugin-proposal-nullish-coalescing-operator",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@babel/plugin-proposal-nullish-coalescing-operator/LICENSE"
},
- "@babel/plugin-proposal-numeric-separator@7.18.6": {
+ "@babel/plugin-proposal-object-rest-spread@7.20.7": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel",
"publisher": "The Babel Team",
"url": "https://babel.dev/team",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-proposal-numeric-separator",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-proposal-numeric-separator/LICENSE"
- },
- "@babel/plugin-proposal-object-rest-spread@7.20.2": {
- "licenses": "MIT",
- "repository": "https://github.com/babel/babel",
- "publisher": "The Babel Team",
- "url": "https://babel.dev/team",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-proposal-object-rest-spread",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-proposal-object-rest-spread/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@babel/plugin-proposal-object-rest-spread",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@babel/plugin-proposal-object-rest-spread/LICENSE"
},
"@babel/plugin-proposal-optional-catch-binding@7.18.6": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel",
"publisher": "The Babel Team",
"url": "https://babel.dev/team",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-proposal-optional-catch-binding",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-proposal-optional-catch-binding/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@babel/plugin-proposal-optional-catch-binding",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@babel/plugin-proposal-optional-catch-binding/LICENSE"
},
- "@babel/plugin-proposal-optional-chaining@7.18.9": {
+ "@babel/plugin-proposal-optional-chaining@7.21.0": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel",
"publisher": "The Babel Team",
"url": "https://babel.dev/team",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-proposal-optional-chaining",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-proposal-optional-chaining/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@babel/plugin-proposal-optional-chaining",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@babel/plugin-proposal-optional-chaining/LICENSE"
},
- "@babel/plugin-proposal-private-methods@7.18.6": {
- "licenses": "MIT",
- "repository": "https://github.com/babel/babel",
- "publisher": "The Babel Team",
- "url": "https://babel.dev/team",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-proposal-private-methods",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-proposal-private-methods/LICENSE"
- },
- "@babel/plugin-proposal-private-property-in-object@7.18.6": {
+ "@babel/plugin-proposal-private-property-in-object@7.21.11": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel",
"publisher": "The Babel Team",
@@ -443,7 +387,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-syntax-export-namespace-from",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-syntax-export-namespace-from/LICENSE"
},
- "@babel/plugin-syntax-flow@7.18.6": {
+ "@babel/plugin-syntax-flow@7.21.4": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel",
"publisher": "The Babel Team",
@@ -459,6 +403,14 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-syntax-import-assertions",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-syntax-import-assertions/LICENSE"
},
+ "@babel/plugin-syntax-import-attributes@7.22.3": {
+ "licenses": "MIT",
+ "repository": "https://github.com/babel/babel",
+ "publisher": "The Babel Team",
+ "url": "https://babel.dev/team",
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-syntax-import-attributes",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-syntax-import-attributes/LICENSE"
+ },
"@babel/plugin-syntax-import-meta@7.10.4": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel",
@@ -471,13 +423,13 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/@babel/plugin-syntax-json-strings",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/@babel/plugin-syntax-json-strings/LICENSE"
},
- "@babel/plugin-syntax-jsx@7.18.6": {
+ "@babel/plugin-syntax-jsx@7.21.4": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel",
"publisher": "The Babel Team",
"url": "https://babel.dev/team",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@babel/plugin-syntax-jsx",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@babel/plugin-syntax-jsx/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/@babel/plugin-syntax-jsx",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/@babel/plugin-syntax-jsx/LICENSE"
},
"@babel/plugin-syntax-logical-assignment-operators@7.10.4": {
"licenses": "MIT",
@@ -531,7 +483,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/@babel/plugin-syntax-top-level-await",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/@babel/plugin-syntax-top-level-await/LICENSE"
},
- "@babel/plugin-syntax-typescript@7.20.0": {
+ "@babel/plugin-syntax-typescript@7.21.4": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel",
"publisher": "The Babel Team",
@@ -539,7 +491,15 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/@babel/plugin-syntax-typescript",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/@babel/plugin-syntax-typescript/LICENSE"
},
- "@babel/plugin-transform-arrow-functions@7.18.6": {
+ "@babel/plugin-syntax-unicode-sets-regex@7.18.6": {
+ "licenses": "MIT",
+ "repository": "https://github.com/babel/babel",
+ "publisher": "The Babel Team",
+ "url": "https://babel.dev/team",
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-syntax-unicode-sets-regex",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-syntax-unicode-sets-regex/LICENSE"
+ },
+ "@babel/plugin-transform-arrow-functions@7.21.5": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel",
"publisher": "The Babel Team",
@@ -547,7 +507,15 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-transform-arrow-functions",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-transform-arrow-functions/LICENSE"
},
- "@babel/plugin-transform-async-to-generator@7.18.6": {
+ "@babel/plugin-transform-async-generator-functions@7.22.3": {
+ "licenses": "MIT",
+ "repository": "https://github.com/babel/babel",
+ "publisher": "The Babel Team",
+ "url": "https://babel.dev/team",
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-transform-async-generator-functions",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-transform-async-generator-functions/LICENSE"
+ },
+ "@babel/plugin-transform-async-to-generator@7.20.7": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel",
"publisher": "The Babel Team",
@@ -563,7 +531,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-transform-block-scoped-functions",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-transform-block-scoped-functions/LICENSE"
},
- "@babel/plugin-transform-block-scoping@7.20.2": {
+ "@babel/plugin-transform-block-scoping@7.21.0": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel",
"publisher": "The Babel Team",
@@ -571,7 +539,23 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-transform-block-scoping",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-transform-block-scoping/LICENSE"
},
- "@babel/plugin-transform-classes@7.20.2": {
+ "@babel/plugin-transform-class-properties@7.22.3": {
+ "licenses": "MIT",
+ "repository": "https://github.com/babel/babel",
+ "publisher": "The Babel Team",
+ "url": "https://babel.dev/team",
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-transform-class-properties",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-transform-class-properties/LICENSE"
+ },
+ "@babel/plugin-transform-class-static-block@7.22.3": {
+ "licenses": "MIT",
+ "repository": "https://github.com/babel/babel",
+ "publisher": "The Babel Team",
+ "url": "https://babel.dev/team",
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-transform-class-static-block",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-transform-class-static-block/LICENSE"
+ },
+ "@babel/plugin-transform-classes@7.21.0": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel",
"publisher": "The Babel Team",
@@ -579,7 +563,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-transform-classes",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-transform-classes/LICENSE"
},
- "@babel/plugin-transform-computed-properties@7.18.9": {
+ "@babel/plugin-transform-computed-properties@7.21.5": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel",
"publisher": "The Babel Team",
@@ -587,7 +571,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-transform-computed-properties",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-transform-computed-properties/LICENSE"
},
- "@babel/plugin-transform-destructuring@7.20.2": {
+ "@babel/plugin-transform-destructuring@7.21.3": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel",
"publisher": "The Babel Team",
@@ -611,6 +595,14 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-transform-duplicate-keys",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-transform-duplicate-keys/LICENSE"
},
+ "@babel/plugin-transform-dynamic-import@7.22.1": {
+ "licenses": "MIT",
+ "repository": "https://github.com/babel/babel",
+ "publisher": "The Babel Team",
+ "url": "https://babel.dev/team",
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-transform-dynamic-import",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-transform-dynamic-import/LICENSE"
+ },
"@babel/plugin-transform-exponentiation-operator@7.18.6": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel",
@@ -619,7 +611,15 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-transform-exponentiation-operator",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-transform-exponentiation-operator/LICENSE"
},
- "@babel/plugin-transform-flow-strip-types@7.19.0": {
+ "@babel/plugin-transform-export-namespace-from@7.22.3": {
+ "licenses": "MIT",
+ "repository": "https://github.com/babel/babel",
+ "publisher": "The Babel Team",
+ "url": "https://babel.dev/team",
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-transform-export-namespace-from",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-transform-export-namespace-from/LICENSE"
+ },
+ "@babel/plugin-transform-flow-strip-types@7.21.0": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel",
"publisher": "The Babel Team",
@@ -627,7 +627,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@babel/plugin-transform-flow-strip-types",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@babel/plugin-transform-flow-strip-types/LICENSE"
},
- "@babel/plugin-transform-for-of@7.18.8": {
+ "@babel/plugin-transform-for-of@7.21.5": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel",
"publisher": "The Babel Team",
@@ -643,6 +643,14 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-transform-function-name",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-transform-function-name/LICENSE"
},
+ "@babel/plugin-transform-json-strings@7.22.3": {
+ "licenses": "MIT",
+ "repository": "https://github.com/babel/babel",
+ "publisher": "The Babel Team",
+ "url": "https://babel.dev/team",
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-transform-json-strings",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-transform-json-strings/LICENSE"
+ },
"@babel/plugin-transform-literals@7.18.9": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel",
@@ -651,6 +659,14 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-transform-literals",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-transform-literals/LICENSE"
},
+ "@babel/plugin-transform-logical-assignment-operators@7.22.3": {
+ "licenses": "MIT",
+ "repository": "https://github.com/babel/babel",
+ "publisher": "The Babel Team",
+ "url": "https://babel.dev/team",
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-transform-logical-assignment-operators",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-transform-logical-assignment-operators/LICENSE"
+ },
"@babel/plugin-transform-member-expression-literals@7.18.6": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel",
@@ -659,7 +675,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-transform-member-expression-literals",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-transform-member-expression-literals/LICENSE"
},
- "@babel/plugin-transform-modules-amd@7.19.6": {
+ "@babel/plugin-transform-modules-amd@7.20.11": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel",
"publisher": "The Babel Team",
@@ -667,7 +683,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-transform-modules-amd",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-transform-modules-amd/LICENSE"
},
- "@babel/plugin-transform-modules-commonjs@7.19.6": {
+ "@babel/plugin-transform-modules-commonjs@7.21.5": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel",
"publisher": "The Babel Team",
@@ -675,7 +691,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-transform-modules-commonjs",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-transform-modules-commonjs/LICENSE"
},
- "@babel/plugin-transform-modules-systemjs@7.19.6": {
+ "@babel/plugin-transform-modules-systemjs@7.22.3": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel",
"publisher": "The Babel Team",
@@ -691,7 +707,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-transform-modules-umd",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-transform-modules-umd/LICENSE"
},
- "@babel/plugin-transform-named-capturing-groups-regex@7.19.1": {
+ "@babel/plugin-transform-named-capturing-groups-regex@7.22.3": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel",
"publisher": "The Babel Team",
@@ -699,7 +715,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-transform-named-capturing-groups-regex",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-transform-named-capturing-groups-regex/LICENSE"
},
- "@babel/plugin-transform-new-target@7.18.6": {
+ "@babel/plugin-transform-new-target@7.22.3": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel",
"publisher": "The Babel Team",
@@ -707,6 +723,22 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-transform-new-target",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-transform-new-target/LICENSE"
},
+ "@babel/plugin-transform-nullish-coalescing-operator@7.22.3": {
+ "licenses": "MIT",
+ "repository": "https://github.com/babel/babel",
+ "publisher": "The Babel Team",
+ "url": "https://babel.dev/team",
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-transform-nullish-coalescing-operator",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-transform-nullish-coalescing-operator/LICENSE"
+ },
+ "@babel/plugin-transform-numeric-separator@7.22.3": {
+ "licenses": "MIT",
+ "repository": "https://github.com/babel/babel",
+ "publisher": "The Babel Team",
+ "url": "https://babel.dev/team",
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-transform-numeric-separator",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-transform-numeric-separator/LICENSE"
+ },
"@babel/plugin-transform-object-assign@7.18.6": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel",
@@ -715,6 +747,14 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@babel/plugin-transform-object-assign",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@babel/plugin-transform-object-assign/LICENSE"
},
+ "@babel/plugin-transform-object-rest-spread@7.22.3": {
+ "licenses": "MIT",
+ "repository": "https://github.com/babel/babel",
+ "publisher": "The Babel Team",
+ "url": "https://babel.dev/team",
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-transform-object-rest-spread",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-transform-object-rest-spread/LICENSE"
+ },
"@babel/plugin-transform-object-super@7.18.6": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel",
@@ -723,7 +763,23 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-transform-object-super",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-transform-object-super/LICENSE"
},
- "@babel/plugin-transform-parameters@7.20.3": {
+ "@babel/plugin-transform-optional-catch-binding@7.22.3": {
+ "licenses": "MIT",
+ "repository": "https://github.com/babel/babel",
+ "publisher": "The Babel Team",
+ "url": "https://babel.dev/team",
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-transform-optional-catch-binding",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-transform-optional-catch-binding/LICENSE"
+ },
+ "@babel/plugin-transform-optional-chaining@7.22.3": {
+ "licenses": "MIT",
+ "repository": "https://github.com/babel/babel",
+ "publisher": "The Babel Team",
+ "url": "https://babel.dev/team",
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-transform-optional-chaining",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-transform-optional-chaining/LICENSE"
+ },
+ "@babel/plugin-transform-parameters@7.22.3": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel",
"publisher": "The Babel Team",
@@ -731,6 +787,22 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-transform-parameters",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-transform-parameters/LICENSE"
},
+ "@babel/plugin-transform-private-methods@7.22.3": {
+ "licenses": "MIT",
+ "repository": "https://github.com/babel/babel",
+ "publisher": "The Babel Team",
+ "url": "https://babel.dev/team",
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-transform-private-methods",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-transform-private-methods/LICENSE"
+ },
+ "@babel/plugin-transform-private-property-in-object@7.22.3": {
+ "licenses": "MIT",
+ "repository": "https://github.com/babel/babel",
+ "publisher": "The Babel Team",
+ "url": "https://babel.dev/team",
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-transform-private-property-in-object",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-transform-private-property-in-object/LICENSE"
+ },
"@babel/plugin-transform-property-literals@7.18.6": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel",
@@ -747,7 +819,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@babel/plugin-transform-react-display-name",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@babel/plugin-transform-react-display-name/LICENSE"
},
- "@babel/plugin-transform-react-jsx-self@7.18.6": {
+ "@babel/plugin-transform-react-jsx-self@7.21.0": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel",
"publisher": "The Babel Team",
@@ -763,7 +835,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@babel/plugin-transform-react-jsx-source",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@babel/plugin-transform-react-jsx-source/LICENSE"
},
- "@babel/plugin-transform-react-jsx@7.19.0": {
+ "@babel/plugin-transform-react-jsx@7.22.3": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel",
"publisher": "The Babel Team",
@@ -771,7 +843,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@babel/plugin-transform-react-jsx",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@babel/plugin-transform-react-jsx/LICENSE"
},
- "@babel/plugin-transform-regenerator@7.18.6": {
+ "@babel/plugin-transform-regenerator@7.21.5": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel",
"publisher": "The Babel Team",
@@ -787,7 +859,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-transform-reserved-words",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-transform-reserved-words/LICENSE"
},
- "@babel/plugin-transform-runtime@7.19.6": {
+ "@babel/plugin-transform-runtime@7.22.4": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel",
"publisher": "The Babel Team",
@@ -803,7 +875,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-transform-shorthand-properties",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-transform-shorthand-properties/LICENSE"
},
- "@babel/plugin-transform-spread@7.19.0": {
+ "@babel/plugin-transform-spread@7.20.7": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel",
"publisher": "The Babel Team",
@@ -835,7 +907,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-transform-typeof-symbol",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-transform-typeof-symbol/LICENSE"
},
- "@babel/plugin-transform-typescript@7.20.2": {
+ "@babel/plugin-transform-typescript@7.22.3": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel",
"publisher": "The Babel Team",
@@ -843,7 +915,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@babel/plugin-transform-typescript",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@babel/plugin-transform-typescript/LICENSE"
},
- "@babel/plugin-transform-unicode-escapes@7.18.10": {
+ "@babel/plugin-transform-unicode-escapes@7.21.5": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel",
"publisher": "The Babel Team",
@@ -851,6 +923,14 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-transform-unicode-escapes",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-transform-unicode-escapes/LICENSE"
},
+ "@babel/plugin-transform-unicode-property-regex@7.22.3": {
+ "licenses": "MIT",
+ "repository": "https://github.com/babel/babel",
+ "publisher": "The Babel Team",
+ "url": "https://babel.dev/team",
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-transform-unicode-property-regex",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-transform-unicode-property-regex/LICENSE"
+ },
"@babel/plugin-transform-unicode-regex@7.18.6": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel",
@@ -859,7 +939,15 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-transform-unicode-regex",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-transform-unicode-regex/LICENSE"
},
- "@babel/preset-env@7.20.2": {
+ "@babel/plugin-transform-unicode-sets-regex@7.22.3": {
+ "licenses": "MIT",
+ "repository": "https://github.com/babel/babel",
+ "publisher": "The Babel Team",
+ "url": "https://babel.dev/team",
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-transform-unicode-sets-regex",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/plugin-transform-unicode-sets-regex/LICENSE"
+ },
+ "@babel/preset-env@7.22.4": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel",
"publisher": "The Babel Team",
@@ -867,7 +955,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/LICENSE"
},
- "@babel/preset-flow@7.18.6": {
+ "@babel/preset-flow@7.21.4": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel",
"publisher": "The Babel Team",
@@ -881,7 +969,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/preset-modules",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/preset-modules/LICENSE"
},
- "@babel/preset-typescript@7.18.6": {
+ "@babel/preset-typescript@7.21.5": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel",
"publisher": "The Babel Team",
@@ -889,7 +977,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@babel/preset-typescript",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@babel/preset-typescript/LICENSE"
},
- "@babel/register@7.18.9": {
+ "@babel/register@7.21.0": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel",
"publisher": "The Babel Team",
@@ -897,15 +985,15 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@babel/register",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@babel/register/LICENSE"
},
- "@babel/runtime-corejs3@7.20.1": {
+ "@babel/regjsgen@0.8.0": {
"licenses": "MIT",
- "repository": "https://github.com/babel/babel",
- "publisher": "The Babel Team",
- "url": "https://babel.dev/team",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/@babel/runtime-corejs3",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/@babel/runtime-corejs3/LICENSE"
+ "repository": "https://github.com/bnjmnt4n/regjsgen",
+ "publisher": "Benjamin Tan",
+ "url": "https://ofcr.se/",
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/regjsgen",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/@babel/regjsgen/LICENSE-MIT.txt"
},
- "@babel/runtime@7.20.1": {
+ "@babel/runtime@7.22.3": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel",
"publisher": "The Babel Team",
@@ -913,7 +1001,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/@babel/runtime",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/@babel/runtime/LICENSE"
},
- "@babel/template@7.18.10": {
+ "@babel/template@7.21.9": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel",
"publisher": "The Babel Team",
@@ -921,7 +1009,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/@babel/template",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/@babel/template/LICENSE"
},
- "@babel/traverse@7.20.1": {
+ "@babel/traverse@7.22.4": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel",
"publisher": "The Babel Team",
@@ -929,7 +1017,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/@babel/traverse",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/@babel/traverse/LICENSE"
},
- "@babel/types@7.20.2": {
+ "@babel/types@7.22.4": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel",
"publisher": "The Babel Team",
@@ -946,14 +1034,6 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/@bcoe/v8-coverage",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/@bcoe/v8-coverage/LICENSE.md"
},
- "@cnakazawa/watch@1.0.4": {
- "licenses": "Apache-2.0",
- "repository": "https://github.com/mikeal/watch",
- "publisher": "Mikeal Rogers",
- "email": "mikeal.rogers@gmail.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@cnakazawa/watch",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@cnakazawa/watch/LICENSE"
- },
"@dolbyio/comms-sdk-react-native@3.8.0": {
"licenses": "MIT",
"repository": "https://dolby.io",
@@ -962,12 +1042,12 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/@dolbyio/comms-sdk-react-native",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/@dolbyio/comms-sdk-react-native/LICENSE"
},
- "@dolbyio/comms-uikit-common@1.0.0": {
+ "@dolbyio/comms-uikit-common@1.1.0": {
"licenses": "LicenseRef-LICENSE",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/LICENSE"
},
- "@dolbyio/comms-uikit-react-native@1.0.0": {
+ "@dolbyio/comms-uikit-react-native@1.1.0": {
"licenses": "MIT",
"repository": "https://github.com/dolby",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native",
@@ -976,15 +1056,35 @@
"@egjs/hammerjs@2.0.17": {
"licenses": "MIT",
"repository": "https://github.com/naver/hammer.js",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/@egjs/hammerjs",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/@egjs/hammerjs/LICENSE.md"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@egjs/hammerjs",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@egjs/hammerjs/LICENSE.md"
},
- "@eslint/eslintrc@1.3.3": {
+ "@eslint-community/eslint-utils@4.4.0": {
+ "licenses": "MIT",
+ "repository": "https://github.com/eslint-community/eslint-utils",
+ "publisher": "Toru Nagashima",
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/@eslint-community/eslint-utils",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/@eslint-community/eslint-utils/LICENSE"
+ },
+ "@eslint-community/regexpp@4.5.1": {
+ "licenses": "MIT",
+ "repository": "https://github.com/eslint-community/regexpp",
+ "publisher": "Toru Nagashima",
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/@eslint-community/regexpp",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/@eslint-community/regexpp/LICENSE"
+ },
+ "@eslint/eslintrc@2.0.3": {
"licenses": "MIT",
"repository": "https://github.com/eslint/eslintrc",
"publisher": "Nicholas C. Zakas",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/@eslint/eslintrc",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/@eslint/eslintrc/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/@eslint/eslintrc",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/@eslint/eslintrc/LICENSE"
+ },
+ "@eslint/js@8.42.0": {
+ "licenses": "MIT",
+ "repository": "https://github.com/eslint/eslint",
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/@eslint/js",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/@eslint/js/LICENSE"
},
"@formatjs/ecma402-abstract@1.12.0": {
"licenses": "MIT",
@@ -1045,7 +1145,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@formatjs/intl",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@formatjs/intl/LICENSE.md"
},
- "@gorhom/bottom-sheet@4.4.5": {
+ "@gorhom/bottom-sheet@4.4.7": {
"licenses": "MIT",
"repository": "https://github.com/gorhom/react-native-bottom-sheet",
"publisher": "Mo Gorhom",
@@ -1073,26 +1173,26 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@hapi/topo",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@hapi/topo/LICENSE.md"
},
- "@humanwhocodes/config-array@0.11.7": {
+ "@humanwhocodes/config-array@0.11.10": {
"licenses": "Apache-2.0",
"repository": "https://github.com/humanwhocodes/config-array",
"publisher": "Nicholas C. Zakas",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/@humanwhocodes/config-array",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/@humanwhocodes/config-array/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/@humanwhocodes/config-array",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/@humanwhocodes/config-array/LICENSE"
},
"@humanwhocodes/module-importer@1.0.1": {
"licenses": "Apache-2.0",
"repository": "https://github.com/humanwhocodes/module-importer",
"publisher": "Nicholas C. Zaks",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/@humanwhocodes/module-importer",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/@humanwhocodes/module-importer/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/@humanwhocodes/module-importer",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/@humanwhocodes/module-importer/LICENSE"
},
"@humanwhocodes/object-schema@1.2.1": {
"licenses": "BSD-3-Clause",
"repository": "https://github.com/humanwhocodes/object-schema",
"publisher": "Nicholas C. Zakas",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/@humanwhocodes/object-schema",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/@humanwhocodes/object-schema/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/@humanwhocodes/object-schema",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/@humanwhocodes/object-schema/LICENSE"
},
"@hutson/parse-repository-url@3.0.2": {
"licenses": "Apache-2.0",
@@ -1116,73 +1216,85 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/@istanbuljs/schema",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/@istanbuljs/schema/LICENSE"
},
- "@jest/console@27.5.1": {
+ "@jest/console@29.5.0": {
"licenses": "MIT",
"repository": "https://github.com/facebook/jest",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/@jest/console",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/@jest/console/LICENSE"
},
- "@jest/core@27.5.1": {
+ "@jest/core@29.5.0": {
"licenses": "MIT",
"repository": "https://github.com/facebook/jest",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/@jest/core",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/@jest/core/LICENSE"
},
- "@jest/create-cache-key-function@27.5.1": {
+ "@jest/create-cache-key-function@29.5.0": {
"licenses": "MIT",
"repository": "https://github.com/facebook/jest",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@jest/create-cache-key-function",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@jest/create-cache-key-function/LICENSE"
},
- "@jest/environment@27.5.1": {
+ "@jest/environment@29.5.0": {
"licenses": "MIT",
"repository": "https://github.com/facebook/jest",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/@jest/environment",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/@jest/environment/LICENSE"
},
- "@jest/fake-timers@27.5.1": {
+ "@jest/expect-utils@29.5.0": {
+ "licenses": "MIT",
+ "repository": "https://github.com/facebook/jest",
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@types/jest/node_modules/@jest/expect-utils",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@types/jest/node_modules/@jest/expect-utils/LICENSE"
+ },
+ "@jest/expect@29.5.0": {
+ "licenses": "MIT",
+ "repository": "https://github.com/facebook/jest",
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/@jest/expect",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/@jest/expect/LICENSE"
+ },
+ "@jest/fake-timers@29.5.0": {
"licenses": "MIT",
"repository": "https://github.com/facebook/jest",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/@jest/fake-timers",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/@jest/fake-timers/LICENSE"
},
- "@jest/globals@27.5.1": {
+ "@jest/globals@29.5.0": {
"licenses": "MIT",
"repository": "https://github.com/facebook/jest",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/@jest/globals",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/@jest/globals/LICENSE"
},
- "@jest/reporters@27.5.1": {
+ "@jest/reporters@29.5.0": {
"licenses": "MIT",
"repository": "https://github.com/facebook/jest",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/@jest/reporters",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/@jest/reporters/LICENSE"
},
- "@jest/schemas@29.0.0": {
+ "@jest/schemas@29.4.3": {
"licenses": "MIT",
"repository": "https://github.com/facebook/jest",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@jest/schemas",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@jest/schemas/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/@jest/schemas",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/@jest/schemas/LICENSE"
},
- "@jest/source-map@27.5.1": {
+ "@jest/source-map@29.4.3": {
"licenses": "MIT",
"repository": "https://github.com/facebook/jest",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/@jest/source-map",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/@jest/source-map/LICENSE"
},
- "@jest/test-result@27.5.1": {
+ "@jest/test-result@29.5.0": {
"licenses": "MIT",
"repository": "https://github.com/facebook/jest",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/@jest/test-result",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/@jest/test-result/LICENSE"
},
- "@jest/test-sequencer@27.5.1": {
+ "@jest/test-sequencer@29.5.0": {
"licenses": "MIT",
"repository": "https://github.com/facebook/jest",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/@jest/test-sequencer",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/@jest/test-sequencer/LICENSE"
},
- "@jest/transform@27.5.1": {
+ "@jest/transform@29.5.0": {
"licenses": "MIT",
"repository": "https://github.com/facebook/jest",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/@jest/transform",
@@ -1191,16 +1303,22 @@
"@jest/types@26.6.2": {
"licenses": "MIT",
"repository": "https://github.com/facebook/jest",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@jest/types",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@jest/types/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/pretty-format/node_modules/@jest/types",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/pretty-format/node_modules/@jest/types/LICENSE"
},
"@jest/types@27.5.1": {
+ "licenses": "MIT",
+ "repository": "https://github.com/facebook/jest",
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/metro-file-map/node_modules/@jest/types",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/metro-file-map/node_modules/@jest/types/LICENSE"
+ },
+ "@jest/types@29.5.0": {
"licenses": "MIT",
"repository": "https://github.com/facebook/jest",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/@jest/types",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/@jest/types/LICENSE"
},
- "@jridgewell/gen-mapping@0.1.1": {
+ "@jridgewell/gen-mapping@0.3.3": {
"licenses": "MIT",
"repository": "https://github.com/jridgewell/gen-mapping",
"publisher": "Justin Ridgewell",
@@ -1208,14 +1326,6 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/@jridgewell/gen-mapping",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/@jridgewell/gen-mapping/LICENSE"
},
- "@jridgewell/gen-mapping@0.3.2": {
- "licenses": "MIT",
- "repository": "https://github.com/jridgewell/gen-mapping",
- "publisher": "Justin Ridgewell",
- "email": "justin@ridgewell.name",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/@babel/generator/node_modules/@jridgewell/gen-mapping",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/@babel/generator/node_modules/@jridgewell/gen-mapping/LICENSE"
- },
"@jridgewell/resolve-uri@3.1.0": {
"licenses": "MIT",
"repository": "https://github.com/jridgewell/resolve-uri",
@@ -1232,7 +1342,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/@jridgewell/set-array",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/@jridgewell/set-array/LICENSE"
},
- "@jridgewell/source-map@0.3.2": {
+ "@jridgewell/source-map@0.3.3": {
"licenses": "MIT",
"repository": "https://github.com/jridgewell/source-map",
"publisher": "Justin Ridgewell",
@@ -1247,7 +1357,14 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/@jridgewell/sourcemap-codec",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/@jridgewell/sourcemap-codec/LICENSE"
},
- "@jridgewell/trace-mapping@0.3.17": {
+ "@jridgewell/sourcemap-codec@1.4.15": {
+ "licenses": "MIT",
+ "repository": "https://github.com/jridgewell/sourcemap-codec",
+ "publisher": "Rich Harris",
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/@jridgewell/gen-mapping/node_modules/@jridgewell/sourcemap-codec",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/@jridgewell/gen-mapping/node_modules/@jridgewell/sourcemap-codec/LICENSE"
+ },
+ "@jridgewell/trace-mapping@0.3.18": {
"licenses": "MIT",
"repository": "https://github.com/jridgewell/trace-mapping",
"publisher": "Justin Ridgewell",
@@ -1255,25 +1372,30 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/@jridgewell/trace-mapping",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/@jridgewell/trace-mapping/LICENSE"
},
+ "@nicolo-ribaudo/eslint-scope-5-internals@5.1.1-v1": {
+ "licenses": "MIT",
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/@nicolo-ribaudo/eslint-scope-5-internals",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/@nicolo-ribaudo/eslint-scope-5-internals/LICENSE"
+ },
"@nodelib/fs.scandir@2.1.5": {
"licenses": "MIT",
"repository": "https://github.com/nodelib/nodelib/tree/master/packages/fs/fs.scandir",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/@nodelib/fs.scandir",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/@nodelib/fs.scandir/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/@nodelib/fs.scandir",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/@nodelib/fs.scandir/LICENSE"
},
"@nodelib/fs.stat@2.0.5": {
"licenses": "MIT",
"repository": "https://github.com/nodelib/nodelib/tree/master/packages/fs/fs.stat",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/@nodelib/fs.stat",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/@nodelib/fs.stat/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/@nodelib/fs.stat",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/@nodelib/fs.stat/LICENSE"
},
"@nodelib/fs.walk@1.2.8": {
"licenses": "MIT",
"repository": "https://github.com/nodelib/nodelib/tree/master/packages/fs/fs.walk",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/@nodelib/fs.walk",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/@nodelib/fs.walk/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/@nodelib/fs.walk",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/@nodelib/fs.walk/LICENSE"
},
- "@react-native-async-storage/async-storage@1.17.11": {
+ "@react-native-async-storage/async-storage@1.18.2": {
"licenses": "MIT",
"repository": "https://github.com/react-native-async-storage/async-storage",
"publisher": "Krzysztof Borowy",
@@ -1281,99 +1403,147 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@react-native-async-storage/async-storage",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@react-native-async-storage/async-storage/LICENSE"
},
- "@react-native-community/cli-debugger-ui@6.0.0": {
+ "@react-native-community/cli-clean@10.1.1": {
+ "licenses": "MIT",
+ "repository": "https://github.com/react-native-community/cli",
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@react-native-community/cli-clean",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@react-native-community/cli-clean/LICENSE"
+ },
+ "@react-native-community/cli-config@10.1.1": {
+ "licenses": "MIT",
+ "repository": "https://github.com/react-native-community/cli",
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@react-native-community/cli-config",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@react-native-community/cli-config/LICENSE"
+ },
+ "@react-native-community/cli-debugger-ui@10.0.0": {
"licenses": "MIT",
"repository": "https://github.com/react-native-community/cli",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@react-native-community/cli-debugger-ui",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@react-native-community/cli-debugger-ui/LICENSE"
},
- "@react-native-community/cli-hermes@6.3.1": {
+ "@react-native-community/cli-doctor@10.2.2": {
+ "licenses": "MIT",
+ "repository": "https://github.com/react-native-community/cli",
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@react-native-community/cli-doctor",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@react-native-community/cli-doctor/LICENSE"
+ },
+ "@react-native-community/cli-hermes@10.2.0": {
"licenses": "MIT",
"repository": "https://github.com/react-native-community/cli",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@react-native-community/cli-hermes",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@react-native-community/cli-hermes/LICENSE"
},
- "@react-native-community/cli-platform-android@6.3.1": {
+ "@react-native-community/cli-platform-android@10.1.3": {
"licenses": "MIT",
"repository": "https://github.com/react-native-community/cli",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@react-native-community/cli-platform-android",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@react-native-community/cli-platform-android/LICENSE"
},
- "@react-native-community/cli-platform-ios@6.2.1": {
+ "@react-native-community/cli-platform-android@10.2.0": {
+ "licenses": "MIT",
+ "repository": "https://github.com/react-native-community/cli",
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@react-native-community/cli-hermes/node_modules/@react-native-community/cli-platform-android",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@react-native-community/cli-hermes/node_modules/@react-native-community/cli-platform-android/LICENSE"
+ },
+ "@react-native-community/cli-platform-ios@10.1.1": {
"licenses": "MIT",
"repository": "https://github.com/react-native-community/cli",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@react-native-community/cli-platform-ios",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@react-native-community/cli-platform-ios/LICENSE"
},
- "@react-native-community/cli-plugin-metro@6.4.0": {
+ "@react-native-community/cli-platform-ios@10.2.1": {
+ "licenses": "MIT",
+ "repository": "https://github.com/react-native-community/cli",
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@react-native-community/cli-doctor/node_modules/@react-native-community/cli-platform-ios",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@react-native-community/cli-doctor/node_modules/@react-native-community/cli-platform-ios/LICENSE"
+ },
+ "@react-native-community/cli-plugin-metro@10.2.2": {
"licenses": "MIT",
"repository": "https://github.com/react-native-community/cli",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@react-native-community/cli-plugin-metro",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@react-native-community/cli-plugin-metro/LICENSE"
},
- "@react-native-community/cli-server-api@6.4.3": {
+ "@react-native-community/cli-server-api@10.1.1": {
"licenses": "MIT",
"repository": "https://github.com/react-native-community/cli",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@react-native-community/cli-server-api"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@react-native-community/cli-server-api",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@react-native-community/cli-server-api/LICENSE"
},
- "@react-native-community/cli-tools@6.2.1": {
+ "@react-native-community/cli-tools@10.1.1": {
"licenses": "MIT",
"repository": "https://github.com/react-native-community/cli",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@react-native-community/cli-tools",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@react-native-community/cli-tools/LICENSE"
},
- "@react-native-community/cli-types@6.0.0": {
+ "@react-native-community/cli-types@10.0.0": {
"licenses": "MIT",
"repository": "https://github.com/react-native-community/cli",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@react-native-community/cli-types",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@react-native-community/cli-types/LICENSE"
},
- "@react-native-community/cli@6.4.0": {
+ "@react-native-community/cli@10.1.3": {
"licenses": "MIT",
"repository": "https://github.com/react-native-community/cli",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@react-native-community/cli",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@react-native-community/cli/LICENSE"
},
+ "@react-native-community/eslint-config@3.2.0": {
+ "licenses": "MIT",
+ "repository": "https://github.com/facebook/react-native",
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/@react-native-community/eslint-config",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/@react-native-community/eslint-config/README.md"
+ },
+ "@react-native-community/eslint-plugin@1.3.0": {
+ "licenses": "MIT",
+ "repository": "https://github.com/facebook/react-native",
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/@react-native-community/eslint-plugin",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/@react-native-community/eslint-plugin/README.md"
+ },
"@react-native/assets@1.0.0": {
"licenses": "MIT",
"repository": "https://github.com/facebook/react-native",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@react-native/assets"
},
- "@react-native/normalize-color@2.0.0": {
+ "@react-native/normalize-color@2.1.0": {
"licenses": "MIT",
"repository": "https://github.com/facebook/react-native",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@react-native/normalize-color"
},
+ "@react-native/normalize-colors@0.73.0": {
+ "licenses": "MIT",
+ "repository": "https://github.com/facebook/react-native",
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/@react-native/normalize-colors"
+ },
"@react-native/polyfills@2.0.0": {
"licenses": "MIT",
"repository": "https://github.com/facebook/react-native",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@react-native/polyfills"
},
- "@react-navigation/core@6.4.0": {
+ "@react-navigation/core@6.4.8": {
"licenses": "MIT",
"repository": "https://github.com/react-navigation/react-navigation",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/@react-navigation/core",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/@react-navigation/core/LICENSE"
},
- "@react-navigation/elements@1.3.6": {
+ "@react-navigation/elements@1.3.17": {
"licenses": "MIT",
"repository": "https://github.com/react-navigation/react-navigation",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/@react-navigation/elements",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/@react-navigation/elements/LICENSE"
},
- "@react-navigation/native-stack@6.9.1": {
+ "@react-navigation/native-stack@6.9.12": {
"licenses": "MIT",
"repository": "https://github.com/react-navigation/react-navigation",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/@react-navigation/native-stack",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/@react-navigation/native-stack/LICENSE"
},
- "@react-navigation/native@6.0.13": {
+ "@react-navigation/native@6.1.6": {
"licenses": "MIT",
"repository": "https://github.com/react-navigation/react-navigation",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/@react-navigation/native",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/@react-navigation/native/LICENSE"
},
- "@react-navigation/routers@6.1.3": {
+ "@react-navigation/routers@6.1.8": {
"licenses": "MIT",
"repository": "https://github.com/react-navigation/react-navigation",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/@react-navigation/routers",
@@ -1406,20 +1576,20 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@sideway/pinpoint",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@sideway/pinpoint/LICENSE.md"
},
- "@sinclair/typebox@0.24.51": {
+ "@sinclair/typebox@0.25.24": {
"licenses": "MIT",
"repository": "https://github.com/sinclairzx81/typebox",
"publisher": "sinclairzx81",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@sinclair/typebox",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@sinclair/typebox/license"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/@sinclair/typebox",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/@sinclair/typebox/license"
},
- "@sinonjs/commons@1.8.5": {
+ "@sinonjs/commons@3.0.0": {
"licenses": "BSD-3-Clause",
"repository": "https://github.com/sinonjs/commons",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/@sinonjs/commons",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/@sinonjs/commons/LICENSE"
},
- "@sinonjs/fake-timers@8.1.0": {
+ "@sinonjs/fake-timers@10.2.0": {
"licenses": "BSD-3-Clause",
"repository": "https://github.com/sinonjs/fake-timers",
"publisher": "Christian Johansen",
@@ -1434,7 +1604,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/@svgr/babel-plugin-add-jsx-attribute",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/@svgr/babel-plugin-add-jsx-attribute/LICENSE"
},
- "@svgr/babel-plugin-remove-jsx-attribute@6.5.0": {
+ "@svgr/babel-plugin-remove-jsx-attribute@8.0.0": {
"licenses": "MIT",
"repository": "https://github.com/gregberge/svgr/tree/main/packages/babel-plugin-remove-jsx-attribute",
"publisher": "Greg Bergé",
@@ -1442,7 +1612,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/@svgr/babel-plugin-remove-jsx-attribute",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/@svgr/babel-plugin-remove-jsx-attribute/LICENSE"
},
- "@svgr/babel-plugin-remove-jsx-empty-expression@6.5.0": {
+ "@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0": {
"licenses": "MIT",
"repository": "https://github.com/gregberge/svgr/tree/main/packages/babel-plugin-remove-jsx-empty-expression",
"publisher": "Greg Bergé",
@@ -1545,14 +1715,6 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@testing-library/react-native",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@testing-library/react-native/LICENSE"
},
- "@tootallnate/once@1.1.2": {
- "licenses": "MIT",
- "repository": "https://github.com/TooTallNate/once",
- "publisher": "Nathan Rajlich",
- "email": "nathan@tootallnate.net",
- "url": "http://n8.io/",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/@tootallnate/once"
- },
"@trysound/sax@0.2.0": {
"licenses": "ISC",
"repository": "https://github.com/svg/sax",
@@ -1562,7 +1724,13 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/@trysound/sax",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/@trysound/sax/LICENSE"
},
- "@types/babel__core@7.1.20": {
+ "@tsconfig/react-native@2.0.3": {
+ "licenses": "MIT",
+ "repository": "https://github.com/tsconfig/bases",
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/@tsconfig/react-native",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/@tsconfig/react-native/LICENSE"
+ },
+ "@types/babel__core@7.20.1": {
"licenses": "MIT",
"repository": "https://github.com/DefinitelyTyped/DefinitelyTyped",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/@types/babel__core",
@@ -1580,7 +1748,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/@types/babel__template",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/@types/babel__template/LICENSE"
},
- "@types/babel__traverse@7.18.2": {
+ "@types/babel__traverse@7.20.1": {
"licenses": "MIT",
"repository": "https://github.com/DefinitelyTyped/DefinitelyTyped",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/@types/babel__traverse",
@@ -1604,7 +1772,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@types/color",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@types/color/LICENSE"
},
- "@types/graceful-fs@4.1.5": {
+ "@types/graceful-fs@4.1.6": {
"licenses": "MIT",
"repository": "https://github.com/DefinitelyTyped/DefinitelyTyped",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/@types/graceful-fs",
@@ -1613,8 +1781,8 @@
"@types/hammerjs@2.0.41": {
"licenses": "MIT",
"repository": "https://github.com/DefinitelyTyped/DefinitelyTyped",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/@types/hammerjs",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/@types/hammerjs/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@types/hammerjs",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@types/hammerjs/LICENSE"
},
"@types/hoist-non-react-statics@3.3.1": {
"licenses": "MIT",
@@ -1622,12 +1790,6 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@types/hoist-non-react-statics",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@types/hoist-non-react-statics/LICENSE"
},
- "@types/invariant@2.2.35": {
- "licenses": "MIT",
- "repository": "https://github.com/DefinitelyTyped/DefinitelyTyped",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@types/invariant",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@types/invariant/LICENSE"
- },
"@types/istanbul-lib-coverage@2.0.4": {
"licenses": "MIT",
"repository": "https://github.com/DefinitelyTyped/DefinitelyTyped",
@@ -1646,13 +1808,13 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/@types/istanbul-reports",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/@types/istanbul-reports/LICENSE"
},
- "@types/jest@27.5.2": {
+ "@types/jest@29.5.2": {
"licenses": "MIT",
"repository": "https://github.com/DefinitelyTyped/DefinitelyTyped",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@types/jest",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@types/jest/LICENSE"
},
- "@types/json-schema@7.0.11": {
+ "@types/json-schema@7.0.12": {
"licenses": "MIT",
"repository": "https://github.com/DefinitelyTyped/DefinitelyTyped",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@typescript-eslint/eslint-plugin/node_modules/@types/json-schema",
@@ -1672,7 +1834,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@types/lodash.merge",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@types/lodash.merge/LICENSE"
},
- "@types/lodash@4.14.188": {
+ "@types/lodash@4.14.195": {
"licenses": "MIT",
"repository": "https://github.com/DefinitelyTyped/DefinitelyTyped",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@types/lodash",
@@ -1684,7 +1846,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@types/minimist",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@types/minimist/LICENSE"
},
- "@types/node@18.11.9": {
+ "@types/node@20.2.5": {
"licenses": "MIT",
"repository": "https://github.com/DefinitelyTyped/DefinitelyTyped",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/@types/node",
@@ -1702,7 +1864,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/@types/parse-json",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/@types/parse-json/LICENSE"
},
- "@types/prettier@2.7.1": {
+ "@types/prettier@2.7.3": {
"licenses": "MIT",
"repository": "https://github.com/DefinitelyTyped/DefinitelyTyped",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/@types/prettier",
@@ -1714,37 +1876,31 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/@types/prop-types",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/@types/prop-types/LICENSE"
},
- "@types/react-native@0.64.1": {
- "licenses": "MIT",
- "repository": "https://github.com/DefinitelyTyped/DefinitelyTyped",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/@types/react-native",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/@types/react-native/LICENSE"
- },
- "@types/react-native@0.67.2": {
+ "@types/react-native@0.71.3": {
"licenses": "MIT",
"repository": "https://github.com/DefinitelyTyped/DefinitelyTyped",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@types/react-native",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@types/react-native/LICENSE"
},
- "@types/react@18.0.18": {
+ "@types/react-test-renderer@18.0.0": {
"licenses": "MIT",
"repository": "https://github.com/DefinitelyTyped/DefinitelyTyped",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/@types/react",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/@types/react/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/@types/react-test-renderer",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/@types/react-test-renderer/LICENSE"
},
- "@types/react@18.0.25": {
+ "@types/react@18.2.8": {
"licenses": "MIT",
"repository": "https://github.com/DefinitelyTyped/DefinitelyTyped",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@types/hoist-non-react-statics/node_modules/@types/react",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@types/hoist-non-react-statics/node_modules/@types/react/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/@types/react",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/@types/react/LICENSE"
},
- "@types/scheduler@0.16.2": {
+ "@types/scheduler@0.16.3": {
"licenses": "MIT",
"repository": "https://github.com/DefinitelyTyped/DefinitelyTyped",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/@types/scheduler",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/@types/scheduler/LICENSE"
},
- "@types/semver@7.3.13": {
+ "@types/semver@7.5.0": {
"licenses": "MIT",
"repository": "https://github.com/DefinitelyTyped/DefinitelyTyped",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@typescript-eslint/eslint-plugin/node_modules/@types/semver",
@@ -1753,8 +1909,8 @@
"@types/stack-utils@2.0.1": {
"licenses": "MIT",
"repository": "https://github.com/DefinitelyTyped/DefinitelyTyped",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/@types/stack-utils",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/@types/stack-utils/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@types/jest/node_modules/@types/stack-utils",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@types/jest/node_modules/@types/stack-utils/LICENSE"
},
"@types/yargs-parser@21.0.0": {
"licenses": "MIT",
@@ -1762,61 +1918,67 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/@types/yargs-parser",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/@types/yargs-parser/LICENSE"
},
- "@types/yargs@15.0.14": {
+ "@types/yargs@15.0.15": {
+ "licenses": "MIT",
+ "repository": "https://github.com/DefinitelyTyped/DefinitelyTyped",
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/pretty-format/node_modules/@types/yargs",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/pretty-format/node_modules/@types/yargs/LICENSE"
+ },
+ "@types/yargs@16.0.5": {
"licenses": "MIT",
"repository": "https://github.com/DefinitelyTyped/DefinitelyTyped",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@types/yargs",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@types/yargs/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/metro-file-map/node_modules/@types/yargs",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/metro-file-map/node_modules/@types/yargs/LICENSE"
},
- "@types/yargs@16.0.4": {
+ "@types/yargs@17.0.24": {
"licenses": "MIT",
"repository": "https://github.com/DefinitelyTyped/DefinitelyTyped",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/@types/yargs",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/@types/yargs/LICENSE"
},
- "@typescript-eslint/eslint-plugin@5.42.1": {
+ "@typescript-eslint/eslint-plugin@5.59.9": {
"licenses": "MIT",
"repository": "https://github.com/typescript-eslint/typescript-eslint",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@typescript-eslint/eslint-plugin",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@typescript-eslint/eslint-plugin/LICENSE"
},
- "@typescript-eslint/parser@5.42.1": {
+ "@typescript-eslint/parser@5.59.9": {
"licenses": "BSD-2-Clause",
"repository": "https://github.com/typescript-eslint/typescript-eslint",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@typescript-eslint/eslint-plugin/node_modules/@typescript-eslint/parser",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@typescript-eslint/eslint-plugin/node_modules/@typescript-eslint/parser/LICENSE"
},
- "@typescript-eslint/scope-manager@5.42.1": {
+ "@typescript-eslint/scope-manager@5.59.9": {
"licenses": "MIT",
"repository": "https://github.com/typescript-eslint/typescript-eslint",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@typescript-eslint/eslint-plugin/node_modules/@typescript-eslint/scope-manager",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@typescript-eslint/eslint-plugin/node_modules/@typescript-eslint/scope-manager/LICENSE"
},
- "@typescript-eslint/type-utils@5.42.1": {
+ "@typescript-eslint/type-utils@5.59.9": {
"licenses": "MIT",
"repository": "https://github.com/typescript-eslint/typescript-eslint",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@typescript-eslint/eslint-plugin/node_modules/@typescript-eslint/type-utils",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@typescript-eslint/eslint-plugin/node_modules/@typescript-eslint/type-utils/LICENSE"
},
- "@typescript-eslint/types@5.42.1": {
+ "@typescript-eslint/types@5.59.9": {
"licenses": "MIT",
"repository": "https://github.com/typescript-eslint/typescript-eslint",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@typescript-eslint/eslint-plugin/node_modules/@typescript-eslint/types",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@typescript-eslint/eslint-plugin/node_modules/@typescript-eslint/types/LICENSE"
},
- "@typescript-eslint/typescript-estree@5.42.1": {
+ "@typescript-eslint/typescript-estree@5.59.9": {
"licenses": "BSD-2-Clause",
"repository": "https://github.com/typescript-eslint/typescript-eslint",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@typescript-eslint/eslint-plugin/node_modules/@typescript-eslint/typescript-estree",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@typescript-eslint/eslint-plugin/node_modules/@typescript-eslint/typescript-estree/LICENSE"
},
- "@typescript-eslint/utils@5.42.1": {
+ "@typescript-eslint/utils@5.59.9": {
"licenses": "MIT",
"repository": "https://github.com/typescript-eslint/typescript-eslint",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@typescript-eslint/eslint-plugin/node_modules/@typescript-eslint/utils",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@typescript-eslint/eslint-plugin/node_modules/@typescript-eslint/utils/LICENSE"
},
- "@typescript-eslint/visitor-keys@5.42.1": {
+ "@typescript-eslint/visitor-keys@5.59.9": {
"licenses": "MIT",
"repository": "https://github.com/typescript-eslint/typescript-eslint",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@typescript-eslint/eslint-plugin/node_modules/@typescript-eslint/visitor-keys",
@@ -1831,14 +1993,6 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/JSONStream",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/JSONStream/LICENSE.APACHE2"
},
- "abab@2.0.6": {
- "licenses": "BSD-3-Clause",
- "repository": "https://github.com/jsdom/abab",
- "publisher": "Jeff Carpenter",
- "email": "gcarpenterv@gmail.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/abab",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/abab/LICENSE.md"
- },
"abbrev@1.1.1": {
"licenses": "ISC",
"repository": "https://github.com/isaacs/abbrev-js",
@@ -1868,36 +2022,17 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/accepts",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/accepts/LICENSE"
},
- "acorn-globals@6.0.0": {
- "licenses": "MIT",
- "repository": "https://github.com/ForbesLindesay/acorn-globals",
- "publisher": "ForbesLindesay",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/acorn-globals",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/acorn-globals/LICENSE"
- },
"acorn-jsx@5.3.2": {
"licenses": "MIT",
"repository": "https://github.com/acornjs/acorn-jsx",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/acorn-jsx",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/acorn-jsx/LICENSE"
- },
- "acorn-walk@7.2.0": {
- "licenses": "MIT",
- "repository": "https://github.com/acornjs/acorn",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/acorn-walk",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/acorn-walk/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/acorn-jsx",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/acorn-jsx/LICENSE"
},
- "acorn@7.4.1": {
+ "acorn@8.8.2": {
"licenses": "MIT",
"repository": "https://github.com/acornjs/acorn",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/acorn-globals/node_modules/acorn",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/acorn-globals/node_modules/acorn/LICENSE"
- },
- "acorn@8.8.1": {
- "licenses": "MIT",
- "repository": "https://github.com/acornjs/acorn",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/acorn",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/acorn/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/acorn",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/acorn/LICENSE"
},
"add-stream@1.0.0": {
"licenses": "MIT",
@@ -1907,21 +2042,12 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/add-stream",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/add-stream/README.md"
},
- "agent-base@6.0.2": {
- "licenses": "MIT",
- "repository": "https://github.com/TooTallNate/node-agent-base",
- "publisher": "Nathan Rajlich",
- "email": "nathan@tootallnate.net",
- "url": "http://n8.io/",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/agent-base",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/agent-base/README.md"
- },
"ajv@6.12.6": {
"licenses": "MIT",
"repository": "https://github.com/ajv-validator/ajv",
"publisher": "Evgeny Poberezkin",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/ajv",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/ajv/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/ajv",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/ajv/LICENSE"
},
"anser@1.4.10": {
"licenses": "MIT",
@@ -1955,8 +2081,8 @@
"publisher": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "sindresorhus.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/strip-ansi/node_modules/ansi-regex",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/strip-ansi/node_modules/ansi-regex/license"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@react-native-community/cli-doctor/node_modules/ansi-regex",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@react-native-community/cli-doctor/node_modules/ansi-regex/license"
},
"ansi-regex@5.0.1": {
"licenses": "MIT",
@@ -1964,8 +2090,8 @@
"publisher": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "sindresorhus.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/ansi-regex",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/ansi-regex/license"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/ansi-regex",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/ansi-regex/license"
},
"ansi-styles@3.2.1": {
"licenses": "MIT",
@@ -1982,8 +2108,8 @@
"publisher": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "sindresorhus.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/ansi-styles",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/ansi-styles/license"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/ansi-styles",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/ansi-styles/license"
},
"ansi-styles@5.2.0": {
"licenses": "MIT",
@@ -1994,15 +2120,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@types/jest/node_modules/ansi-styles",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@types/jest/node_modules/ansi-styles/license"
},
- "anymatch@2.0.0": {
- "licenses": "ISC",
- "repository": "https://github.com/micromatch/anymatch",
- "publisher": "Elan Shanker",
- "url": "http://github.com/es128",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/sane/node_modules/anymatch",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/sane/node_modules/anymatch/LICENSE"
- },
- "anymatch@3.1.2": {
+ "anymatch@3.1.3": {
"licenses": "ISC",
"repository": "https://github.com/micromatch/anymatch",
"publisher": "Elan Shanker",
@@ -2025,10 +2143,10 @@
"argparse@2.0.1": {
"licenses": "Python-2.0",
"repository": "https://github.com/nodeca/argparse",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/argparse",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/argparse/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/argparse",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/argparse/LICENSE"
},
- "aria-query@4.2.2": {
+ "aria-query@5.1.3": {
"licenses": "Apache-2.0",
"repository": "https://github.com/A11yance/aria-query",
"publisher": "Jesse Beach",
@@ -2060,6 +2178,14 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/arr-union",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/arr-union/LICENSE"
},
+ "array-buffer-byte-length@1.0.0": {
+ "licenses": "MIT",
+ "repository": "https://github.com/inspect-js/array-buffer-byte-length",
+ "publisher": "Jordan Harband",
+ "email": "ljharb@gmail.com",
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/array-buffer-byte-length",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/array-buffer-byte-length/LICENSE"
+ },
"array-find-index@1.0.2": {
"licenses": "MIT",
"repository": "https://github.com/sindresorhus/array-find-index",
@@ -2084,8 +2210,8 @@
"publisher": "Jordan Harband",
"email": "ljharb@gmail.com",
"url": "http://ljharb.codes",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/array-includes",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/array-includes/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/array-includes",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/array-includes/LICENSE"
},
"array-union@2.1.0": {
"licenses": "MIT",
@@ -2119,8 +2245,16 @@
"publisher": "Jordan Harband",
"email": "ljharb@gmail.com",
"url": "http://ljharb.codes",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/array.prototype.flatmap",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/array.prototype.flatmap/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/array.prototype.flatmap",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/array.prototype.flatmap/LICENSE"
+ },
+ "array.prototype.tosorted@1.1.1": {
+ "licenses": "MIT",
+ "repository": "https://github.com/es-shims/Array.prototype.toSorted",
+ "publisher": "Jordan Harband",
+ "email": "ljharb@gmail.com",
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/array.prototype.tosorted",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/array.prototype.tosorted/LICENSE"
},
"arrify@1.0.1": {
"licenses": "MIT",
@@ -2176,7 +2310,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/async-limiter",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/async-limiter/LICENSE"
},
- "async@2.6.4": {
+ "async@3.2.4": {
"licenses": "MIT",
"repository": "https://github.com/caolan/async",
"publisher": "Caolan McMahon",
@@ -2188,8 +2322,8 @@
"repository": "https://github.com/alexindigo/asynckit",
"publisher": "Alex Indigo",
"email": "iam@alexindigo.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/asynckit",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/asynckit/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/asynckit",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/asynckit/LICENSE"
},
"atob@2.1.2": {
"licenses": "(MIT OR Apache-2.0)",
@@ -2200,7 +2334,15 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/atob",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/atob/LICENSE"
},
- "axe-core@4.5.1": {
+ "available-typed-arrays@1.0.5": {
+ "licenses": "MIT",
+ "repository": "https://github.com/inspect-js/available-typed-arrays",
+ "publisher": "Jordan Harband",
+ "email": "ljharb@gmail.com",
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/available-typed-arrays",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/available-typed-arrays/LICENSE"
+ },
+ "axe-core@4.7.2": {
"licenses": "MPL-2.0",
"repository": "https://github.com/dequelabs/axe-core",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/axe-core",
@@ -2213,7 +2355,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/axios",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/axios/LICENSE"
},
- "axobject-query@2.2.0": {
+ "axobject-query@3.1.1": {
"licenses": "Apache-2.0",
"repository": "https://github.com/A11yance/axobject-query",
"publisher": "Jesse Beach",
@@ -2228,7 +2370,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/babel-core",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/babel-core/README.md"
},
- "babel-jest@27.5.1": {
+ "babel-jest@29.5.0": {
"licenses": "MIT",
"repository": "https://github.com/facebook/jest",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest",
@@ -2241,7 +2383,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/babel-plugin-istanbul",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/babel-plugin-istanbul/LICENSE"
},
- "babel-plugin-jest-hoist@27.5.1": {
+ "babel-plugin-jest-hoist@29.5.0": {
"licenses": "MIT",
"repository": "https://github.com/facebook/jest",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/babel-plugin-jest-hoist",
@@ -2256,19 +2398,19 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-plugin-module-resolver",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-plugin-module-resolver/LICENSE.md"
},
- "babel-plugin-polyfill-corejs2@0.3.3": {
+ "babel-plugin-polyfill-corejs2@0.4.3": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel-polyfills",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/babel-plugin-polyfill-corejs2",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/babel-plugin-polyfill-corejs2/LICENSE"
},
- "babel-plugin-polyfill-corejs3@0.6.0": {
+ "babel-plugin-polyfill-corejs3@0.8.1": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel-polyfills",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/babel-plugin-polyfill-corejs3",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/babel-plugin-polyfill-corejs3/LICENSE"
},
- "babel-plugin-polyfill-regenerator@0.4.1": {
+ "babel-plugin-polyfill-regenerator@0.5.0": {
"licenses": "MIT",
"repository": "https://github.com/babel/babel-polyfills",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/babel-plugin-polyfill-regenerator",
@@ -2294,7 +2436,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/babel-preset-fbjs",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/babel-preset-fbjs/LICENSE"
},
- "babel-preset-jest@27.5.1": {
+ "babel-preset-jest@29.5.0": {
"licenses": "MIT",
"repository": "https://github.com/facebook/jest",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/babel-preset-jest",
@@ -2325,13 +2467,11 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/base",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/base/LICENSE"
},
- "big-integer@1.6.51": {
- "licenses": "Unlicense",
- "repository": "https://github.com/peterolson/BigInteger.js",
- "publisher": "Peter Olson",
- "email": "peter.e.c.olson+npm@gmail.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/big-integer",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/big-integer/LICENSE"
+ "bl@4.1.0": {
+ "licenses": "MIT",
+ "repository": "https://github.com/rvagg/bl",
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/bl",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/bl/LICENSE.md"
},
"boolbase@1.0.0": {
"licenses": "ISC",
@@ -2341,21 +2481,6 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/boolbase",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/boolbase/README.md"
},
- "bplist-creator@0.1.0": {
- "licenses": "MIT",
- "repository": "https://github.com/nearinfinity/node-bplist-creator",
- "publisher": "Joe Ferner",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/bplist-creator",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/bplist-creator/LICENSE"
- },
- "bplist-parser@0.3.1": {
- "licenses": "MIT",
- "repository": "https://github.com/nearinfinity/node-bplist-parser",
- "publisher": "Joe Ferner",
- "email": "joe.ferner@nearinfinity.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/bplist-parser",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/bplist-parser/README.md"
- },
"brace-expansion@1.1.11": {
"licenses": "MIT",
"repository": "https://github.com/juliangruber/brace-expansion",
@@ -2370,8 +2495,8 @@
"repository": "https://github.com/micromatch/braces",
"publisher": "Jon Schlinkert",
"url": "https://github.com/jonschlinkert",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/sane/node_modules/braces",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/sane/node_modules/braces/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/jscodeshift/node_modules/braces",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/jscodeshift/node_modules/braces/LICENSE"
},
"braces@3.0.2": {
"licenses": "MIT",
@@ -2381,14 +2506,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@typescript-eslint/eslint-plugin/node_modules/braces",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@typescript-eslint/eslint-plugin/node_modules/braces/LICENSE"
},
- "browser-process-hrtime@1.0.0": {
- "licenses": "BSD-2-Clause",
- "repository": "https://github.com/kumavis/browser-process-hrtime",
- "publisher": "kumavis",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/browser-process-hrtime",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/browser-process-hrtime/LICENSE"
- },
- "browserslist@4.21.4": {
+ "browserslist@4.21.7": {
"licenses": "MIT",
"repository": "https://github.com/browserslist/browserslist",
"publisher": "Andrey Sitnik",
@@ -2419,6 +2537,15 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/buffer-from",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/buffer-from/LICENSE"
},
+ "buffer@5.7.1": {
+ "licenses": "MIT",
+ "repository": "https://github.com/feross/buffer",
+ "publisher": "Feross Aboukhadijeh",
+ "email": "feross@feross.org",
+ "url": "https://feross.org",
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/buffer",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/buffer/LICENSE"
+ },
"bytes@3.0.0": {
"licenses": "MIT",
"repository": "https://github.com/visionmedia/bytes.js",
@@ -2441,8 +2568,8 @@
"repository": "https://github.com/ljharb/call-bind",
"publisher": "Jordan Harband",
"email": "ljharb@gmail.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/call-bind",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/call-bind/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/call-bind",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/call-bind/LICENSE"
},
"caller-callsite@2.0.0": {
"licenses": "MIT",
@@ -2477,8 +2604,8 @@
"publisher": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "sindresorhus.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/callsites",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/callsites/license"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/callsites",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/callsites/license"
},
"camelcase-keys@6.2.2": {
"licenses": "MIT",
@@ -2507,7 +2634,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/camelcase",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/camelcase/license"
},
- "caniuse-lite@1.0.30001431": {
+ "caniuse-lite@1.0.30001495": {
"licenses": "CC-BY-4.0",
"repository": "https://github.com/browserslist/caniuse-lite",
"publisher": "Ben Briggs",
@@ -2516,14 +2643,6 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/caniuse-lite",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/caniuse-lite/LICENSE"
},
- "capture-exit@2.0.0": {
- "licenses": "ISC",
- "repository": "https://github.com/stefanpenner/capture-exit",
- "publisher": "Stefan Penner",
- "email": "stefan.penner@gmail.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/capture-exit",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/capture-exit/README.md"
- },
"chalk@2.4.2": {
"licenses": "MIT",
"repository": "https://github.com/chalk/chalk",
@@ -2533,8 +2652,8 @@
"chalk@4.1.2": {
"licenses": "MIT",
"repository": "https://github.com/chalk/chalk",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/chalk",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/chalk/license"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/chalk",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/chalk/license"
},
"char-regex@1.0.2": {
"licenses": "MIT",
@@ -2553,7 +2672,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/metro/node_modules/ci-info",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/metro/node_modules/ci-info/LICENSE"
},
- "ci-info@3.6.1": {
+ "ci-info@3.8.0": {
"licenses": "MIT",
"repository": "https://github.com/watson/ci-info",
"publisher": "Thomas Watson Steen",
@@ -2577,7 +2696,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/class-utils",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/class-utils/LICENSE"
},
- "cli-cursor@2.1.0": {
+ "cli-cursor@3.1.0": {
"licenses": "MIT",
"repository": "https://github.com/sindresorhus/cli-cursor",
"publisher": "Sindre Sorhus",
@@ -2586,7 +2705,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/cli-cursor",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/cli-cursor/license"
},
- "cli-spinners@2.7.0": {
+ "cli-spinners@2.9.0": {
"licenses": "MIT",
"repository": "https://github.com/sindresorhus/cli-spinners",
"publisher": "Sindre Sorhus",
@@ -2603,7 +2722,15 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/logkitty/node_modules/cliui",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/logkitty/node_modules/cliui/LICENSE.txt"
},
- "cliui@7.0.4": {
+ "cliui@7.0.4": {
+ "licenses": "ISC",
+ "repository": "https://github.com/yargs/cliui",
+ "publisher": "Ben Coe",
+ "email": "ben@npmjs.com",
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/get-pkg-repo/node_modules/cliui",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/get-pkg-repo/node_modules/cliui/LICENSE.txt"
+ },
+ "cliui@8.0.1": {
"licenses": "ISC",
"repository": "https://github.com/yargs/cliui",
"publisher": "Ben Coe",
@@ -2661,8 +2788,8 @@
"repository": "https://github.com/Qix-/color-convert",
"publisher": "Heather Arthur",
"email": "fayearthur@gmail.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/color-convert",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/color-convert/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/color-convert",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/color-convert/LICENSE"
},
"color-name@1.1.3": {
"licenses": "MIT",
@@ -2677,8 +2804,8 @@
"repository": "https://github.com/colorjs/color-name",
"publisher": "DY",
"email": "dfcreative@gmail.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/color-name",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/color-name/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/color-name",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/color-name/LICENSE"
},
"color-string@1.9.1": {
"licenses": "MIT",
@@ -2701,21 +2828,14 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/colorette",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/colorette/LICENSE.md"
},
- "colors@1.4.0": {
- "licenses": "MIT",
- "repository": "https://github.com/Marak/colors.js",
- "publisher": "Marak Squires",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/colors",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/colors/LICENSE"
- },
"combined-stream@1.0.8": {
"licenses": "MIT",
"repository": "https://github.com/felixge/node-combined-stream",
"publisher": "Felix Geisendörfer",
"email": "felix@debuggable.com",
"url": "http://debuggable.com/",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/combined-stream",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/combined-stream/License"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/combined-stream",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/combined-stream/License"
},
"command-exists@1.2.9": {
"licenses": "MIT",
@@ -2748,6 +2868,14 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/svgo/node_modules/commander",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/svgo/node_modules/commander/LICENSE"
},
+ "commander@9.5.0": {
+ "licenses": "MIT",
+ "repository": "https://github.com/tj/commander.js",
+ "publisher": "TJ Holowaychuk",
+ "email": "tj@vision-media.ca",
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/commander",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/commander/LICENSE"
+ },
"commondir@1.0.1": {
"licenses": "MIT",
"repository": "https://github.com/substack/node-commondir",
@@ -2955,6 +3083,15 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/convert-source-map",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/convert-source-map/LICENSE"
},
+ "convert-source-map@2.0.0": {
+ "licenses": "MIT",
+ "repository": "https://github.com/thlorenz/convert-source-map",
+ "publisher": "Thorsten Lorenz",
+ "email": "thlorenz@gmx.de",
+ "url": "http://thlorenz.com",
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/@jest/transform/node_modules/convert-source-map",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/@jest/transform/node_modules/convert-source-map/LICENSE"
+ },
"copy-descriptor@0.1.1": {
"licenses": "MIT",
"repository": "https://github.com/jonschlinkert/copy-descriptor",
@@ -2963,7 +3100,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/copy-descriptor",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/copy-descriptor/LICENSE"
},
- "core-js-compat@3.26.1": {
+ "core-js-compat@3.30.2": {
"licenses": "MIT",
"repository": "https://github.com/zloirock/core-js",
"publisher": "Denis Pushkarev",
@@ -2972,15 +3109,6 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/core-js-compat",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/core-js-compat/LICENSE"
},
- "core-js-pure@3.26.1": {
- "licenses": "MIT",
- "repository": "https://github.com/zloirock/core-js",
- "publisher": "Denis Pushkarev",
- "email": "zloirock@zloirock.ru",
- "url": "http://zloirock.ru",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/core-js-pure",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/core-js-pure/LICENSE"
- },
"core-util-is@1.0.3": {
"licenses": "MIT",
"repository": "https://github.com/isaacs/core-util-is",
@@ -3003,8 +3131,8 @@
"repository": "https://github.com/davidtheclark/cosmiconfig",
"publisher": "David Clark",
"email": "david.dave.clark@gmail.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/@svgr/core/node_modules/cosmiconfig",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/@svgr/core/node_modules/cosmiconfig/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/cosmiconfig",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/cosmiconfig/LICENSE"
},
"cross-spawn@6.0.5": {
"licenses": "MIT",
@@ -3019,8 +3147,8 @@
"repository": "https://github.com/moxystudio/node-cross-spawn",
"publisher": "André Cruz",
"email": "andre@moxy.studio",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/cross-spawn",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/cross-spawn/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/cross-spawn",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/cross-spawn/LICENSE"
},
"css-select@4.3.0": {
"licenses": "BSD-2-Clause",
@@ -3065,29 +3193,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/csso",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/csso/LICENSE"
},
- "cssom@0.3.8": {
- "licenses": "MIT",
- "repository": "https://github.com/NV/CSSOM",
- "publisher": "Nikita Vasilyev",
- "email": "me@elv1s.ru",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/cssstyle/node_modules/cssom",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/cssstyle/node_modules/cssom/LICENSE.txt"
- },
- "cssom@0.4.4": {
- "licenses": "MIT",
- "repository": "https://github.com/NV/CSSOM",
- "publisher": "Nikita Vasilyev",
- "email": "me@elv1s.ru",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/cssom",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/cssom/LICENSE.txt"
- },
- "cssstyle@2.3.0": {
- "licenses": "MIT",
- "repository": "https://github.com/jsdom/cssstyle",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/cssstyle",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/cssstyle/LICENSE"
- },
- "csstype@3.1.1": {
+ "csstype@3.1.2": {
"licenses": "MIT",
"repository": "https://github.com/frenic/csstype",
"publisher": "Fredrik Nicol",
@@ -3111,15 +3217,6 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/dargs",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/dargs/license"
},
- "data-urls@2.0.0": {
- "licenses": "MIT",
- "repository": "https://github.com/jsdom/data-urls",
- "publisher": "Domenic Denicola",
- "email": "d@domenic.me",
- "url": "https://domenic.me/",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/data-urls",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/data-urls/LICENSE.txt"
- },
"dateformat@3.0.3": {
"licenses": "MIT",
"repository": "https://github.com/felixge/node-dateformat",
@@ -3127,7 +3224,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/dateformat",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/dateformat/LICENSE"
},
- "dayjs@1.11.6": {
+ "dayjs@1.11.8": {
"licenses": "MIT",
"repository": "https://github.com/iamkun/dayjs",
"publisher": "iamkun",
@@ -3139,8 +3236,8 @@
"repository": "https://github.com/visionmedia/debug",
"publisher": "TJ Holowaychuk",
"email": "tj@vision-media.ca",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-config-airbnb/node_modules/debug",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-config-airbnb/node_modules/debug/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/send/node_modules/debug",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/send/node_modules/debug/LICENSE"
},
"debug@3.2.7": {
"licenses": "MIT",
@@ -3155,8 +3252,8 @@
"repository": "https://github.com/debug-js/debug",
"publisher": "Josh Junon",
"email": "josh.junon@protonmail.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/debug",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/debug/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/debug",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/debug/LICENSE"
},
"debuglog@1.0.1": {
"licenses": "MIT",
@@ -3184,14 +3281,6 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/decamelize",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/decamelize/license"
},
- "decimal.js@10.4.2": {
- "licenses": "MIT",
- "repository": "https://github.com/MikeMcl/decimal.js",
- "publisher": "Michael Mclaughlin",
- "email": "M8ch88l@gmail.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/decimal.js",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/decimal.js/LICENCE.md"
- },
"decode-uri-component@0.2.2": {
"licenses": "MIT",
"repository": "https://github.com/SamVerschueren/decode-uri-component",
@@ -3219,14 +3308,23 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/dedent",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/dedent/LICENSE"
},
+ "deep-equal@2.2.1": {
+ "licenses": "MIT",
+ "repository": "https://github.com/inspect-js/node-deep-equal",
+ "publisher": "James Halliday",
+ "email": "mail@substack.net",
+ "url": "http://substack.net",
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/deep-equal",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/deep-equal/LICENSE"
+ },
"deep-is@0.1.4": {
"licenses": "MIT",
"repository": "https://github.com/thlorenz/deep-is",
"publisher": "Thorsten Lorenz",
"email": "thlorenz@gmx.de",
"url": "http://thlorenz.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/deep-is",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/deep-is/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/deep-is",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/deep-is/LICENSE"
},
"deepmerge@3.3.0": {
"licenses": "MIT",
@@ -3234,7 +3332,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/deepmerge",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/deepmerge/license.txt"
},
- "deepmerge@4.2.2": {
+ "deepmerge@4.3.1": {
"licenses": "MIT",
"repository": "https://github.com/TehShrike/deepmerge",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/deepmerge",
@@ -3248,13 +3346,13 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/defaults",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/defaults/LICENSE"
},
- "define-properties@1.1.4": {
+ "define-properties@1.2.0": {
"licenses": "MIT",
"repository": "https://github.com/ljharb/define-properties",
"publisher": "Jordan Harband",
"email": "ljharb@gmail.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/define-properties",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/define-properties/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/define-properties",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/define-properties/LICENSE"
},
"define-property@0.2.5": {
"licenses": "MIT",
@@ -3286,8 +3384,8 @@
"publisher": "Felix Geisendörfer",
"email": "felix@debuggable.com",
"url": "http://debuggable.com/",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/delayed-stream",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/delayed-stream/License"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/delayed-stream",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/delayed-stream/License"
},
"denodeify@1.2.1": {
"licenses": "MIT",
@@ -3304,6 +3402,18 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/depd",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/depd/LICENSE"
},
+ "deprecated-react-native-prop-types@3.0.1": {
+ "licenses": "MIT",
+ "repository": "https://github.com/facebook/react-native-deprecated-modules",
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/deprecated-react-native-prop-types",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/deprecated-react-native-prop-types/README.md"
+ },
+ "deprecated-react-native-prop-types@4.1.0": {
+ "licenses": "MIT",
+ "repository": "https://github.com/facebook/react-native-deprecated-modules",
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/deprecated-react-native-prop-types",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/deprecated-react-native-prop-types/README.md"
+ },
"destroy@1.2.0": {
"licenses": "MIT",
"repository": "https://github.com/stream-utils/destroy",
@@ -3331,18 +3441,12 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/license-checker/node_modules/dezalgo",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/license-checker/node_modules/dezalgo/LICENSE"
},
- "diff-sequences@27.5.1": {
+ "diff-sequences@29.4.3": {
"licenses": "MIT",
"repository": "https://github.com/facebook/jest",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@types/jest/node_modules/diff-sequences",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@types/jest/node_modules/diff-sequences/LICENSE"
},
- "diff-sequences@29.3.1": {
- "licenses": "MIT",
- "repository": "https://github.com/facebook/jest",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/diff-sequences",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/diff-sequences/LICENSE"
- },
"dir-glob@3.0.1": {
"licenses": "MIT",
"repository": "https://github.com/kevva/dir-glob",
@@ -3361,8 +3465,8 @@
"doctrine@3.0.0": {
"licenses": "Apache-2.0",
"repository": "https://github.com/eslint/doctrine",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/eslint/node_modules/doctrine",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/eslint/node_modules/doctrine/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/doctrine",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/doctrine/LICENSE"
},
"dom-serializer@1.4.1": {
"licenses": "MIT",
@@ -3388,15 +3492,6 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/domelementtype",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/domelementtype/LICENSE"
},
- "domexception@2.0.1": {
- "licenses": "MIT",
- "repository": "https://github.com/jsdom/domexception",
- "publisher": "Domenic Denicola",
- "email": "d@domenic.me",
- "url": "https://domenic.me/",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/domexception",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/domexception/LICENSE.txt"
- },
"domhandler@4.3.1": {
"licenses": "BSD-2-Clause",
"repository": "https://github.com/fb55/domhandler",
@@ -3421,7 +3516,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/svgo/node_modules/domutils",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/svgo/node_modules/domutils/LICENSE"
},
- "domutils@3.0.1": {
+ "domutils@3.1.0": {
"licenses": "BSD-2-Clause",
"repository": "https://github.com/fb55/domutils",
"publisher": "Felix Boehm",
@@ -3447,14 +3542,14 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/ee-first",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/ee-first/LICENSE"
},
- "electron-to-chromium@1.4.284": {
+ "electron-to-chromium@1.4.423": {
"licenses": "ISC",
"repository": "https://github.com/kilian/electron-to-chromium",
"publisher": "Kilian Valkhof",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/electron-to-chromium",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/electron-to-chromium/LICENSE"
},
- "emittery@0.8.1": {
+ "emittery@0.13.1": {
"licenses": "MIT",
"repository": "https://github.com/sindresorhus/emittery",
"publisher": "Sindre Sorhus",
@@ -3501,7 +3596,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/svgo/node_modules/entities",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/svgo/node_modules/entities/LICENSE"
},
- "entities@4.4.0": {
+ "entities@4.5.0": {
"licenses": "BSD-2-Clause",
"repository": "https://github.com/fb55/entities",
"publisher": "Felix Boehm",
@@ -3534,30 +3629,46 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/errorhandler",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/errorhandler/LICENSE"
},
- "es-abstract@1.20.4": {
+ "es-abstract@1.21.2": {
"licenses": "MIT",
"repository": "https://github.com/ljharb/es-abstract",
"publisher": "Jordan Harband",
"email": "ljharb@gmail.com",
"url": "http://ljharb.codes",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/es-abstract",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/es-abstract/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/es-abstract",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/es-abstract/LICENSE"
+ },
+ "es-get-iterator@1.1.3": {
+ "licenses": "MIT",
+ "repository": "https://github.com/ljharb/es-get-iterator",
+ "publisher": "Jordan Harband",
+ "email": "ljharb@gmail.com",
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/es-get-iterator",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/es-get-iterator/LICENSE"
+ },
+ "es-set-tostringtag@2.0.1": {
+ "licenses": "MIT",
+ "repository": "https://github.com/es-shims/es-set-tostringtag",
+ "publisher": "Jordan Harband",
+ "email": "ljharb@gmail.com",
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/es-set-tostringtag",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/es-set-tostringtag/LICENSE"
},
"es-shim-unscopables@1.0.0": {
"licenses": "MIT",
"repository": "https://github.com/ljharb/es-shim-unscopables",
"publisher": "Jordan Harband",
"email": "ljharb@gmail.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/es-shim-unscopables",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/es-shim-unscopables/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/es-shim-unscopables",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/es-shim-unscopables/LICENSE"
},
"es-to-primitive@1.2.1": {
"licenses": "MIT",
"repository": "https://github.com/ljharb/es-to-primitive",
"publisher": "Jordan Harband",
"email": "ljharb@gmail.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/es-to-primitive",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/es-to-primitive/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/es-to-primitive",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/es-to-primitive/LICENSE"
},
"escalade@3.1.1": {
"licenses": "MIT",
@@ -3589,8 +3700,8 @@
"publisher": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "sindresorhus.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/stack-utils/node_modules/escape-string-regexp",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/stack-utils/node_modules/escape-string-regexp/license"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@types/jest/node_modules/escape-string-regexp",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@types/jest/node_modules/escape-string-regexp/license"
},
"escape-string-regexp@4.0.0": {
"licenses": "MIT",
@@ -3598,14 +3709,8 @@
"publisher": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "https://sindresorhus.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/escape-string-regexp",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/escape-string-regexp/license"
- },
- "escodegen@2.0.0": {
- "licenses": "BSD-2-Clause",
- "repository": "https://github.com/estools/escodegen",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/escodegen",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/escodegen/LICENSE.BSD"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/escape-string-regexp",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/escape-string-regexp/license"
},
"eslint-config-airbnb-base@15.0.0": {
"licenses": "MIT",
@@ -3623,14 +3728,14 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-config-airbnb",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-config-airbnb/LICENSE.md"
},
- "eslint-config-prettier@8.5.0": {
+ "eslint-config-prettier@8.8.0": {
"licenses": "MIT",
"repository": "https://github.com/prettier/eslint-config-prettier",
"publisher": "Simon Lydell",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-config-prettier",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-config-prettier/LICENSE"
},
- "eslint-import-resolver-babel-module@5.3.1": {
+ "eslint-import-resolver-babel-module@5.3.2": {
"licenses": "MIT",
"repository": "https://github.com/tleunen/eslint-import-resolver-babel-module",
"publisher": "Tommy Leunen",
@@ -3639,7 +3744,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-import-resolver-babel-module",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-import-resolver-babel-module/LICENSE.md"
},
- "eslint-import-resolver-node@0.3.6": {
+ "eslint-import-resolver-node@0.3.7": {
"licenses": "MIT",
"repository": "https://github.com/import-js/eslint-plugin-import",
"publisher": "Ben Mosher",
@@ -3647,7 +3752,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-config-airbnb/node_modules/eslint-import-resolver-node",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-config-airbnb/node_modules/eslint-import-resolver-node/LICENSE"
},
- "eslint-module-utils@2.7.4": {
+ "eslint-module-utils@2.8.0": {
"licenses": "MIT",
"repository": "https://github.com/import-js/eslint-plugin-import",
"publisher": "Ben Mosher",
@@ -3655,7 +3760,20 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-config-airbnb/node_modules/eslint-module-utils",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-config-airbnb/node_modules/eslint-module-utils/LICENSE"
},
- "eslint-plugin-import@2.26.0": {
+ "eslint-plugin-eslint-comments@3.2.0": {
+ "licenses": "MIT",
+ "repository": "https://github.com/mysticatea/eslint-plugin-eslint-comments",
+ "publisher": "Toru Nagashima",
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/eslint-plugin-eslint-comments",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/eslint-plugin-eslint-comments/LICENSE"
+ },
+ "eslint-plugin-ft-flow@2.0.3": {
+ "licenses": "MIT",
+ "repository": "https://github.com/flow-typed/eslint-plugin-ft-flow",
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/eslint-plugin-ft-flow",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/eslint-plugin-ft-flow/LICENSE"
+ },
+ "eslint-plugin-import@2.27.5": {
"licenses": "MIT",
"repository": "https://github.com/import-js/eslint-plugin-import",
"publisher": "Ben Mosher",
@@ -3663,7 +3781,16 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-config-airbnb/node_modules/eslint-plugin-import",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-config-airbnb/node_modules/eslint-plugin-import/LICENSE"
},
- "eslint-plugin-jsx-a11y@6.6.1": {
+ "eslint-plugin-jest@26.9.0": {
+ "licenses": "MIT",
+ "repository": "https://github.com/jest-community/eslint-plugin-jest",
+ "publisher": "Jonathan Kim",
+ "email": "hello@jkimbo.com",
+ "url": "jkimbo.com",
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/eslint-plugin-jest",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/eslint-plugin-jest/LICENSE"
+ },
+ "eslint-plugin-jsx-a11y@6.7.1": {
"licenses": "MIT",
"repository": "https://github.com/jsx-eslint/eslint-plugin-jsx-a11y",
"publisher": "Ethan Cohen",
@@ -3683,7 +3810,24 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react-hooks",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react-hooks/LICENSE"
},
- "eslint-plugin-react@7.31.10": {
+ "eslint-plugin-react-native-globals@0.1.2": {
+ "licenses": "MIT",
+ "repository": "https://github.com/satya164/eslint-plugin-react-native-globals",
+ "publisher": "Satyajit Sahoo",
+ "email": "satyajit.happy@gmail.com",
+ "url": "https://github.com/satya164/",
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/eslint-plugin-react-native-globals",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/eslint-plugin-react-native-globals/README.md"
+ },
+ "eslint-plugin-react-native@4.0.0": {
+ "licenses": "MIT",
+ "repository": "https://github.com/intellicode/eslint-plugin-react-native",
+ "publisher": "Tom Hastjarjanto",
+ "email": "tom@intellicode.nl",
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/eslint-plugin-react-native",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/eslint-plugin-react-native/LICENSE"
+ },
+ "eslint-plugin-react@7.32.2": {
"licenses": "MIT",
"repository": "https://github.com/jsx-eslint/eslint-plugin-react",
"publisher": "Yannick Croissant",
@@ -3697,50 +3841,43 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@typescript-eslint/eslint-plugin/node_modules/eslint-scope",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@typescript-eslint/eslint-plugin/node_modules/eslint-scope/LICENSE"
},
- "eslint-scope@7.1.1": {
+ "eslint-scope@7.2.0": {
"licenses": "BSD-2-Clause",
"repository": "https://github.com/eslint/eslint-scope",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/eslint-scope",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/eslint-scope/LICENSE"
- },
- "eslint-utils@3.0.0": {
- "licenses": "MIT",
- "repository": "https://github.com/mysticatea/eslint-utils",
- "publisher": "Toru Nagashima",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/eslint-utils",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/eslint-utils/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/eslint-scope",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/eslint-scope/LICENSE"
},
"eslint-visitor-keys@2.1.0": {
"licenses": "Apache-2.0",
"repository": "https://github.com/eslint/eslint-visitor-keys",
"publisher": "Toru Nagashima",
"url": "https://github.com/mysticatea",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/eslint-utils/node_modules/eslint-visitor-keys",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/eslint-utils/node_modules/eslint-visitor-keys/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/@babel/eslint-parser/node_modules/eslint-visitor-keys",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/@babel/eslint-parser/node_modules/eslint-visitor-keys/LICENSE"
},
- "eslint-visitor-keys@3.3.0": {
+ "eslint-visitor-keys@3.4.1": {
"licenses": "Apache-2.0",
"repository": "https://github.com/eslint/eslint-visitor-keys",
"publisher": "Toru Nagashima",
"url": "https://github.com/mysticatea",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/eslint-visitor-keys",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/eslint-visitor-keys/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/eslint-visitor-keys",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/eslint-visitor-keys/LICENSE"
},
- "eslint@8.27.0": {
+ "eslint@8.42.0": {
"licenses": "MIT",
"repository": "https://github.com/eslint/eslint",
"publisher": "Nicholas C. Zakas",
"email": "nicholas+npm@nczconsulting.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/eslint",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/eslint/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/eslint",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/eslint/LICENSE"
},
- "espree@9.4.1": {
+ "espree@9.5.2": {
"licenses": "BSD-2-Clause",
"repository": "https://github.com/eslint/espree",
"publisher": "Nicholas C. Zakas",
"email": "nicholas+npm@nczconsulting.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/espree",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/espree/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/espree",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/espree/LICENSE"
},
"esprima@4.0.1": {
"licenses": "BSD-2-Clause",
@@ -3750,19 +3887,19 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/esprima",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/esprima/LICENSE.BSD"
},
- "esquery@1.4.0": {
+ "esquery@1.5.0": {
"licenses": "BSD-3-Clause",
"repository": "https://github.com/estools/esquery",
"publisher": "Joel Feenstra",
"email": "jrfeenst+esquery@gmail.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/esquery",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/esquery/license.txt"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/esquery",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/esquery/license.txt"
},
"esrecurse@4.3.0": {
"licenses": "BSD-2-Clause",
"repository": "https://github.com/estools/esrecurse",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/esrecurse",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/esrecurse/README.md"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/esrecurse",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/esrecurse/README.md"
},
"estraverse@4.3.0": {
"licenses": "BSD-2-Clause",
@@ -3773,14 +3910,14 @@
"estraverse@5.3.0": {
"licenses": "BSD-2-Clause",
"repository": "https://github.com/estools/estraverse",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/estraverse",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/estraverse/LICENSE.BSD"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/estraverse",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/estraverse/LICENSE.BSD"
},
"esutils@2.0.3": {
"licenses": "BSD-2-Clause",
"repository": "https://github.com/estools/esutils",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/esutils",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/esutils/LICENSE.BSD"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/esutils",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/esutils/LICENSE.BSD"
},
"etag@1.8.1": {
"licenses": "MIT",
@@ -3795,14 +3932,6 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/event-target-shim",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/event-target-shim/LICENSE"
},
- "exec-sh@0.3.6": {
- "licenses": "MIT",
- "repository": "https://github.com/tsertkov/exec-sh",
- "publisher": "Aleksandr Tsertkov",
- "email": "tsertkov@gmail.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/exec-sh",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/exec-sh/LICENSE"
- },
"execa@1.0.0": {
"licenses": "MIT",
"repository": "https://github.com/sindresorhus/execa",
@@ -3837,19 +3966,19 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/expand-brackets",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/expand-brackets/LICENSE"
},
- "expect@27.5.1": {
+ "expect@29.5.0": {
"licenses": "MIT",
"repository": "https://github.com/facebook/jest",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/expect",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/expect/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@types/jest/node_modules/expect",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@types/jest/node_modules/expect/LICENSE"
},
"extend-shallow@2.0.1": {
"licenses": "MIT",
"repository": "https://github.com/jonschlinkert/extend-shallow",
"publisher": "Jon Schlinkert",
"url": "https://github.com/jonschlinkert",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/sane/node_modules/braces/node_modules/extend-shallow",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/sane/node_modules/braces/node_modules/extend-shallow/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/jscodeshift/node_modules/braces/node_modules/extend-shallow",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/jscodeshift/node_modules/braces/node_modules/extend-shallow/LICENSE"
},
"extend-shallow@3.0.2": {
"licenses": "MIT",
@@ -3871,16 +4000,16 @@
"licenses": "MIT",
"repository": "https://github.com/epoberezkin/fast-deep-equal",
"publisher": "Evgeny Poberezkin",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/fast-deep-equal",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/fast-deep-equal/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/fast-deep-equal",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/fast-deep-equal/LICENSE"
},
- "fast-diff@1.2.0": {
+ "fast-diff@1.3.0": {
"licenses": "Apache-2.0",
"repository": "https://github.com/jhchen/fast-diff",
"publisher": "Jason Chen",
"email": "jhchen7@gmail.com",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/fast-diff",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/fast-diff/README.md"
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/fast-diff/LICENSE"
},
"fast-glob@3.2.12": {
"licenses": "MIT",
@@ -3896,8 +4025,8 @@
"publisher": "James Halliday",
"email": "mail@substack.net",
"url": "http://substack.net",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/fast-json-stable-stringify",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/fast-json-stable-stringify/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/fast-json-stable-stringify",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/fast-json-stable-stringify/LICENSE"
},
"fast-levenshtein@2.0.6": {
"licenses": "MIT",
@@ -3905,16 +4034,24 @@
"publisher": "Ramesh Nair",
"email": "ram@hiddentao.com",
"url": "http://www.hiddentao.com/",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/fast-levenshtein",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/fast-levenshtein/LICENSE.md"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/fast-levenshtein",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/fast-levenshtein/LICENSE.md"
+ },
+ "fast-xml-parser@4.2.4": {
+ "licenses": "MIT",
+ "repository": "https://github.com/NaturalIntelligence/fast-xml-parser",
+ "publisher": "Amit Gupta",
+ "url": "https://amitkumargupta.work/",
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/fast-xml-parser",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/fast-xml-parser/LICENSE"
},
- "fastq@1.13.0": {
+ "fastq@1.15.0": {
"licenses": "ISC",
"repository": "https://github.com/mcollina/fastq",
"publisher": "Matteo Collina",
"email": "hello@matteocollina.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/fastq",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/fastq/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/fastq",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/fastq/LICENSE"
},
"fb-watchman@2.0.2": {
"licenses": "Apache-2.0",
@@ -3930,16 +4067,16 @@
"repository": "https://github.com/royriojas/file-entry-cache",
"publisher": "Roy Riojas",
"url": "http://royriojas.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/file-entry-cache",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/file-entry-cache/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/file-entry-cache",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/file-entry-cache/LICENSE"
},
"fill-range@4.0.0": {
"licenses": "MIT",
"repository": "https://github.com/jonschlinkert/fill-range",
"publisher": "Jon Schlinkert",
"url": "https://github.com/jonschlinkert",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/sane/node_modules/fill-range",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/sane/node_modules/fill-range/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/jscodeshift/node_modules/fill-range",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/jscodeshift/node_modules/fill-range/LICENSE"
},
"fill-range@7.0.1": {
"licenses": "MIT",
@@ -4014,25 +4151,25 @@
"publisher": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "https://sindresorhus.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/find-up",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/find-up/license"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/find-up",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/find-up/license"
},
"flat-cache@3.0.4": {
"licenses": "MIT",
"repository": "https://github.com/royriojas/flat-cache",
"publisher": "Roy Riojas",
"url": "http://royriojas.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/flat-cache",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/flat-cache/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/flat-cache",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/flat-cache/LICENSE"
},
"flatted@3.2.7": {
"licenses": "ISC",
"repository": "https://github.com/WebReflection/flatted",
"publisher": "Andrea Giammarchi",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/flatted",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/flatted/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/flatted",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/flatted/LICENSE"
},
- "flow-parser@0.121.0": {
+ "flow-parser@0.185.2": {
"licenses": "MIT",
"repository": "https://github.com/facebook/flow",
"publisher": "Flow Team",
@@ -4040,7 +4177,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/flow-parser",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/flow-parser/README.md"
},
- "flow-parser@0.193.0": {
+ "flow-parser@0.207.0": {
"licenses": "MIT",
"repository": "https://github.com/facebook/flow",
"publisher": "Flow Team",
@@ -4057,6 +4194,14 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/follow-redirects",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/follow-redirects/LICENSE"
},
+ "for-each@0.3.3": {
+ "licenses": "MIT",
+ "repository": "https://github.com/Raynos/for-each",
+ "publisher": "Raynos",
+ "email": "raynos2@gmail.com",
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/for-each",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/for-each/LICENSE"
+ },
"for-in@1.0.2": {
"licenses": "MIT",
"repository": "https://github.com/jonschlinkert/for-in",
@@ -4065,15 +4210,6 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/for-in",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/for-in/LICENSE"
},
- "form-data@3.0.1": {
- "licenses": "MIT",
- "repository": "https://github.com/form-data/form-data",
- "publisher": "Felix Geisendörfer",
- "email": "felix@debuggable.com",
- "url": "http://debuggable.com/",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/form-data",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/form-data/License"
- },
"form-data@4.0.0": {
"licenses": "MIT",
"repository": "https://github.com/form-data/form-data",
@@ -4100,14 +4236,6 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/fresh",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/fresh/LICENSE"
},
- "fs-extra@1.0.0": {
- "licenses": "MIT",
- "repository": "https://github.com/jprichardson/node-fs-extra",
- "publisher": "JP Richardson",
- "email": "jprichardson@gmail.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/metro/node_modules/fs-extra",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/metro/node_modules/fs-extra/LICENSE"
- },
"fs-extra@8.1.0": {
"licenses": "MIT",
"repository": "https://github.com/jprichardson/node-fs-extra",
@@ -4138,16 +4266,16 @@
"repository": "https://github.com/es-shims/Function.prototype.name",
"publisher": "Jordan Harband",
"email": "ljharb@gmail.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/function.prototype.name",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/function.prototype.name/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/function.prototype.name",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/function.prototype.name/LICENSE"
},
"functions-have-names@1.2.3": {
"licenses": "MIT",
"repository": "https://github.com/inspect-js/functions-have-names",
"publisher": "Jordan Harband",
"email": "ljharb@gmail.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/functions-have-names",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/functions-have-names/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/functions-have-names",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/functions-have-names/LICENSE"
},
"gensync@1.0.0-beta.2": {
"licenses": "MIT",
@@ -4164,13 +4292,13 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/get-caller-file",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/get-caller-file/LICENSE.md"
},
- "get-intrinsic@1.1.3": {
+ "get-intrinsic@1.2.1": {
"licenses": "MIT",
"repository": "https://github.com/ljharb/get-intrinsic",
"publisher": "Jordan Harband",
"email": "ljharb@gmail.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/get-intrinsic",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/get-intrinsic/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/get-intrinsic",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/get-intrinsic/LICENSE"
},
"get-package-type@0.1.0": {
"licenses": "MIT",
@@ -4211,8 +4339,8 @@
"repository": "https://github.com/inspect-js/get-symbol-description",
"publisher": "Jordan Harband",
"email": "ljharb@gmail.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/get-symbol-description",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/get-symbol-description/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/get-symbol-description",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/get-symbol-description/LICENSE"
},
"get-value@2.0.6": {
"licenses": "MIT",
@@ -4271,8 +4399,8 @@
"publisher": "Gulp Team",
"email": "team@gulpjs.com",
"url": "https://gulpjs.com/",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/glob-parent",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/glob-parent/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/glob-parent",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/glob-parent/LICENSE"
},
"glob@7.2.3": {
"licenses": "ISC",
@@ -4292,14 +4420,22 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/globals",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/globals/license"
},
- "globals@13.17.0": {
+ "globals@13.20.0": {
"licenses": "MIT",
"repository": "https://github.com/sindresorhus/globals",
"publisher": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "https://sindresorhus.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/globals",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/globals/license"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/globals",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/globals/license"
+ },
+ "globalthis@1.0.3": {
+ "licenses": "MIT",
+ "repository": "https://github.com/ljharb/System.global",
+ "publisher": "Jordan Harband",
+ "email": "ljharb@gmail.com",
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/globalthis",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/globalthis/LICENSE"
},
"globby@11.1.0": {
"licenses": "MIT",
@@ -4310,7 +4446,15 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@typescript-eslint/eslint-plugin/node_modules/globby",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@typescript-eslint/eslint-plugin/node_modules/globby/license"
},
- "graceful-fs@4.2.10": {
+ "gopd@1.0.1": {
+ "licenses": "MIT",
+ "repository": "https://github.com/ljharb/gopd",
+ "publisher": "Jordan Harband",
+ "email": "ljharb@gmail.com",
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/gopd",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/gopd/LICENSE"
+ },
+ "graceful-fs@4.2.11": {
"licenses": "ISC",
"repository": "https://github.com/isaacs/node-graceful-fs",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/license-checker/node_modules/graceful-fs",
@@ -4320,8 +4464,17 @@
"licenses": "MIT",
"repository": "https://github.com/orling/grapheme-splitter",
"publisher": "Orlin Georgiev",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/grapheme-splitter",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/grapheme-splitter/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@typescript-eslint/eslint-plugin/node_modules/grapheme-splitter",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@typescript-eslint/eslint-plugin/node_modules/grapheme-splitter/LICENSE"
+ },
+ "graphemer@1.4.0": {
+ "licenses": "MIT",
+ "repository": "https://github.com/flmnt/graphemer",
+ "publisher": "Matt Davies",
+ "email": "matt@filament.so",
+ "url": "https://github.com/mattpauldavies",
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/graphemer",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/graphemer/LICENSE"
},
"handlebars@4.7.7": {
"licenses": "MIT",
@@ -4344,8 +4497,8 @@
"repository": "https://github.com/ljharb/has-bigints",
"publisher": "Jordan Harband",
"email": "ljharb@gmail.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/has-bigints",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/has-bigints/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/has-bigints",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/has-bigints/LICENSE"
},
"has-flag@3.0.0": {
"licenses": "MIT",
@@ -4362,16 +4515,24 @@
"publisher": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "sindresorhus.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/has-flag",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/has-flag/license"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/has-flag",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/has-flag/license"
},
"has-property-descriptors@1.0.0": {
"licenses": "MIT",
"repository": "https://github.com/inspect-js/has-property-descriptors",
"publisher": "Jordan Harband",
"email": "ljharb@gmail.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/has-property-descriptors",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/has-property-descriptors/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/has-property-descriptors",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/has-property-descriptors/LICENSE"
+ },
+ "has-proto@1.0.1": {
+ "licenses": "MIT",
+ "repository": "https://github.com/inspect-js/has-proto",
+ "publisher": "Jordan Harband",
+ "email": "ljharb@gmail.com",
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/has-proto",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/has-proto/LICENSE"
},
"has-symbols@1.0.3": {
"licenses": "MIT",
@@ -4379,8 +4540,8 @@
"publisher": "Jordan Harband",
"email": "ljharb@gmail.com",
"url": "http://ljharb.codes",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/has-symbols",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/has-symbols/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/has-symbols",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/has-symbols/LICENSE"
},
"has-tostringtag@1.0.0": {
"licenses": "MIT",
@@ -4388,8 +4549,8 @@
"publisher": "Jordan Harband",
"email": "ljharb@gmail.com",
"url": "http://ljharb.codes",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/has-tostringtag",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/has-tostringtag/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/has-tostringtag",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/has-tostringtag/LICENSE"
},
"has-value@0.3.1": {
"licenses": "MIT",
@@ -4431,13 +4592,13 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-plugin-module-resolver/node_modules/has",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-plugin-module-resolver/node_modules/has/LICENSE-MIT"
},
- "hermes-engine@0.9.0": {
+ "hermes-estree@0.8.0": {
"licenses": "MIT",
"repository": "https://github.com/facebook/hermes",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/hermes-engine",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/hermes-engine/README.md"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/hermes-estree",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/hermes-estree/LICENSE"
},
- "hermes-parser@0.4.7": {
+ "hermes-parser@0.8.0": {
"licenses": "MIT",
"repository": "https://github.com/facebook/hermes",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/hermes-parser",
@@ -4478,15 +4639,6 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/hosted-git-info",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/hosted-git-info/LICENSE"
},
- "html-encoding-sniffer@2.0.1": {
- "licenses": "MIT",
- "repository": "https://github.com/jsdom/html-encoding-sniffer",
- "publisher": "Domenic Denicola",
- "email": "d@domenic.me",
- "url": "https://domenic.me/",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/html-encoding-sniffer",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/html-encoding-sniffer/LICENSE.txt"
- },
"html-escaper@2.0.2": {
"licenses": "MIT",
"repository": "https://github.com/WebReflection/html-escaper",
@@ -4503,24 +4655,6 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/http-errors",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/http-errors/LICENSE"
},
- "http-proxy-agent@4.0.1": {
- "licenses": "MIT",
- "repository": "https://github.com/TooTallNate/node-http-proxy-agent",
- "publisher": "Nathan Rajlich",
- "email": "nathan@tootallnate.net",
- "url": "http://n8.io/",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/http-proxy-agent",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/http-proxy-agent/README.md"
- },
- "https-proxy-agent@5.0.1": {
- "licenses": "MIT",
- "repository": "https://github.com/TooTallNate/node-https-proxy-agent",
- "publisher": "Nathan Rajlich",
- "email": "nathan@tootallnate.net",
- "url": "http://n8.io/",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/https-proxy-agent",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/https-proxy-agent/README.md"
- },
"human-signals@2.1.0": {
"licenses": "Apache-2.0",
"repository": "https://github.com/ehmicky/human-signals",
@@ -4530,20 +4664,21 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/human-signals",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/human-signals/LICENSE"
},
- "iconv-lite@0.4.24": {
- "licenses": "MIT",
- "repository": "https://github.com/ashtuchkin/iconv-lite",
- "publisher": "Alexander Shtuchkin",
- "email": "ashtuchkin@gmail.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/iconv-lite",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/iconv-lite/LICENSE"
+ "ieee754@1.2.1": {
+ "licenses": "BSD-3-Clause",
+ "repository": "https://github.com/feross/ieee754",
+ "publisher": "Feross Aboukhadijeh",
+ "email": "feross@feross.org",
+ "url": "https://feross.org",
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/ieee754",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/ieee754/LICENSE"
},
- "ignore@5.2.0": {
+ "ignore@5.2.4": {
"licenses": "MIT",
"repository": "https://github.com/kaelzhang/node-ignore",
"publisher": "kael",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/ignore",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/ignore/LICENSE-MIT"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/ignore",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/ignore/LICENSE-MIT"
},
"image-size@0.6.3": {
"licenses": "MIT",
@@ -4569,8 +4704,8 @@
"publisher": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "https://sindresorhus.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/import-fresh",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/import-fresh/license"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/import-fresh",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/import-fresh/license"
},
"import-local@3.1.0": {
"licenses": "MIT",
@@ -4587,8 +4722,8 @@
"publisher": "Jens Taylor",
"email": "jensyt@gmail.com",
"url": "https://github.com/homebrewing",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/imurmurhash",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/imurmurhash/README.md"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/imurmurhash",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/imurmurhash/README.md"
},
"indent-string@4.0.0": {
"licenses": "MIT",
@@ -4623,13 +4758,13 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/ini",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/ini/LICENSE"
},
- "internal-slot@1.0.3": {
+ "internal-slot@1.0.5": {
"licenses": "MIT",
"repository": "https://github.com/ljharb/internal-slot",
"publisher": "Jordan Harband",
"email": "ljharb@gmail.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/internal-slot",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/internal-slot/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/internal-slot",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/internal-slot/LICENSE"
},
"intl-messageformat@10.1.5": {
"licenses": "BSD-3-Clause",
@@ -4671,6 +4806,23 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/is-accessor-descriptor",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/is-accessor-descriptor/LICENSE"
},
+ "is-arguments@1.1.1": {
+ "licenses": "MIT",
+ "repository": "https://github.com/inspect-js/is-arguments",
+ "publisher": "Jordan Harband",
+ "email": "ljharb@gmail.com",
+ "url": "http://ljharb.codes",
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/is-arguments",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/is-arguments/LICENSE"
+ },
+ "is-array-buffer@3.0.2": {
+ "licenses": "MIT",
+ "repository": "https://github.com/inspect-js/is-array-buffer",
+ "publisher": "Jordan Harband",
+ "email": "ljharb@gmail.com",
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/is-array-buffer",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/is-array-buffer/LICENSE"
+ },
"is-arrayish@0.2.1": {
"licenses": "MIT",
"repository": "https://github.com/qix-/node-is-arrayish",
@@ -4692,16 +4844,16 @@
"repository": "https://github.com/inspect-js/is-bigint",
"publisher": "Jordan Harband",
"email": "ljharb@gmail.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/is-bigint",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/is-bigint/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/is-bigint",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/is-bigint/LICENSE"
},
"is-boolean-object@1.1.2": {
"licenses": "MIT",
"repository": "https://github.com/inspect-js/is-boolean-object",
"publisher": "Jordan Harband",
"email": "ljharb@gmail.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/is-boolean-object",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/is-boolean-object/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/is-boolean-object",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/is-boolean-object/LICENSE"
},
"is-buffer@1.1.6": {
"licenses": "MIT",
@@ -4718,19 +4870,10 @@
"publisher": "Jordan Harband",
"email": "ljharb@gmail.com",
"url": "http://ljharb.codes",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/is-callable",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/is-callable/LICENSE"
- },
- "is-ci@2.0.0": {
- "licenses": "MIT",
- "repository": "https://github.com/watson/is-ci",
- "publisher": "Thomas Watson Steen",
- "email": "w@tson.dk",
- "url": "https://twitter.com/wa7son",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/is-ci",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/is-ci/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/is-callable",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/is-callable/LICENSE"
},
- "is-core-module@2.11.0": {
+ "is-core-module@2.12.1": {
"licenses": "MIT",
"repository": "https://github.com/inspect-js/is-core-module",
"publisher": "Jordan Harband",
@@ -4758,8 +4901,8 @@
"licenses": "MIT",
"repository": "https://github.com/inspect-js/is-date-object",
"publisher": "Jordan Harband",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/is-date-object",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/is-date-object/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/is-date-object",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/is-date-object/LICENSE"
},
"is-descriptor@0.1.6": {
"licenses": "MIT",
@@ -4790,8 +4933,8 @@
"repository": "https://github.com/jonschlinkert/is-extendable",
"publisher": "Jon Schlinkert",
"url": "https://github.com/jonschlinkert",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/sane/node_modules/is-extendable",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/sane/node_modules/is-extendable/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/jscodeshift/node_modules/is-extendable",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/jscodeshift/node_modules/is-extendable/LICENSE"
},
"is-extendable@1.0.1": {
"licenses": "MIT",
@@ -4806,8 +4949,8 @@
"repository": "https://github.com/jonschlinkert/is-extglob",
"publisher": "Jon Schlinkert",
"url": "https://github.com/jonschlinkert",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/is-extglob",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/is-extglob/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/is-extglob",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/is-extglob/LICENSE"
},
"is-fullwidth-code-point@2.0.0": {
"licenses": "MIT",
@@ -4841,24 +4984,41 @@
"repository": "https://github.com/micromatch/is-glob",
"publisher": "Jon Schlinkert",
"url": "https://github.com/jonschlinkert",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/is-glob",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/is-glob/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/is-glob",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/is-glob/LICENSE"
+ },
+ "is-interactive@1.0.0": {
+ "licenses": "MIT",
+ "repository": "https://github.com/sindresorhus/is-interactive",
+ "publisher": "Sindre Sorhus",
+ "email": "sindresorhus@gmail.com",
+ "url": "sindresorhus.com",
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/is-interactive",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/is-interactive/license"
+ },
+ "is-map@2.0.2": {
+ "licenses": "MIT",
+ "repository": "https://github.com/inspect-js/is-map",
+ "publisher": "Jordan Harband",
+ "email": "ljharb@gmail.com",
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/is-map",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/is-map/LICENSE"
},
"is-negative-zero@2.0.2": {
"licenses": "MIT",
"repository": "https://github.com/inspect-js/is-negative-zero",
"publisher": "Jordan Harband",
"email": "ljharb@gmail.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/is-negative-zero",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/is-negative-zero/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/is-negative-zero",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/is-negative-zero/LICENSE"
},
"is-number-object@1.0.7": {
"licenses": "MIT",
"repository": "https://github.com/inspect-js/is-number-object",
"publisher": "Jordan Harband",
"email": "ljharb@gmail.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/is-number-object",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/is-number-object/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/is-number-object",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/is-number-object/LICENSE"
},
"is-number@3.0.0": {
"licenses": "MIT",
@@ -4891,8 +5051,8 @@
"publisher": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "sindresorhus.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/is-path-inside",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/is-path-inside/license"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/is-path-inside",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/is-path-inside/license"
},
"is-plain-obj@1.1.0": {
"licenses": "MIT",
@@ -4920,21 +5080,21 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/is-plain-object",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/is-plain-object/LICENSE"
},
- "is-potential-custom-element-name@1.0.1": {
- "licenses": "MIT",
- "repository": "https://github.com/mathiasbynens/is-potential-custom-element-name",
- "publisher": "Mathias Bynens",
- "url": "https://mathiasbynens.be/",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/is-potential-custom-element-name",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/is-potential-custom-element-name/LICENSE-MIT.txt"
- },
"is-regex@1.1.4": {
"licenses": "MIT",
"repository": "https://github.com/inspect-js/is-regex",
"publisher": "Jordan Harband",
"email": "ljharb@gmail.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/is-regex",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/is-regex/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/is-regex",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/is-regex/LICENSE"
+ },
+ "is-set@2.0.2": {
+ "licenses": "MIT",
+ "repository": "https://github.com/inspect-js/is-set",
+ "publisher": "Jordan Harband",
+ "email": "ljharb@gmail.com",
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/is-set",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/is-set/LICENSE"
},
"is-shared-array-buffer@1.0.2": {
"licenses": "MIT",
@@ -4942,8 +5102,8 @@
"publisher": "Jordan Harband",
"email": "ljharb@gmail.com",
"url": "http://ljharb.codes",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/is-shared-array-buffer",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/is-shared-array-buffer/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/is-shared-array-buffer",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/is-shared-array-buffer/LICENSE"
},
"is-stream@1.1.0": {
"licenses": "MIT",
@@ -4968,16 +5128,16 @@
"repository": "https://github.com/ljharb/is-string",
"publisher": "Jordan Harband",
"email": "ljharb@gmail.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/is-string",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/is-string/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/is-string",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/is-string/LICENSE"
},
"is-symbol@1.0.4": {
"licenses": "MIT",
"repository": "https://github.com/inspect-js/is-symbol",
"publisher": "Jordan Harband",
"email": "ljharb@gmail.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/is-symbol",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/is-symbol/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/is-symbol",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/is-symbol/LICENSE"
},
"is-text-path@1.0.1": {
"licenses": "MIT",
@@ -4988,22 +5148,47 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/is-text-path",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/is-text-path/license"
},
- "is-typedarray@1.0.0": {
+ "is-typed-array@1.1.10": {
"licenses": "MIT",
- "repository": "https://github.com/hughsk/is-typedarray",
- "publisher": "Hugh Kennedy",
- "email": "hughskennedy@gmail.com",
- "url": "http://hughsk.io/",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/is-typedarray",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/is-typedarray/LICENSE.md"
+ "repository": "https://github.com/inspect-js/is-typed-array",
+ "publisher": "Jordan Harband",
+ "email": "ljharb@gmail.com",
+ "url": "http://ljharb.codes",
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/is-typed-array",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/is-typed-array/LICENSE"
+ },
+ "is-unicode-supported@0.1.0": {
+ "licenses": "MIT",
+ "repository": "https://github.com/sindresorhus/is-unicode-supported",
+ "publisher": "Sindre Sorhus",
+ "email": "sindresorhus@gmail.com",
+ "url": "https://sindresorhus.com",
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/is-unicode-supported",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/is-unicode-supported/license"
+ },
+ "is-weakmap@2.0.1": {
+ "licenses": "MIT",
+ "repository": "https://github.com/inspect-js/is-weakmap",
+ "publisher": "Jordan Harband",
+ "email": "ljharb@gmail.com",
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/is-weakmap",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/is-weakmap/LICENSE"
},
"is-weakref@1.0.2": {
"licenses": "MIT",
"repository": "https://github.com/inspect-js/is-weakref",
"publisher": "Jordan Harband",
"email": "ljharb@gmail.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/is-weakref",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/is-weakref/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/is-weakref",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/is-weakref/LICENSE"
+ },
+ "is-weakset@2.0.2": {
+ "licenses": "MIT",
+ "repository": "https://github.com/inspect-js/is-weakset",
+ "publisher": "Jordan Harband",
+ "email": "ljharb@gmail.com",
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/is-weakset",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/is-weakset/LICENSE"
},
"is-windows@1.0.2": {
"licenses": "MIT",
@@ -5031,14 +5216,23 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/isarray",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/isarray/README.md"
},
+ "isarray@2.0.5": {
+ "licenses": "MIT",
+ "repository": "https://github.com/juliangruber/isarray",
+ "publisher": "Julian Gruber",
+ "email": "mail@juliangruber.com",
+ "url": "http://juliangruber.com",
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/isarray",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/isarray/LICENSE"
+ },
"isexe@2.0.0": {
"licenses": "ISC",
"repository": "https://github.com/isaacs/isexe",
"publisher": "Isaac Z. Schlueter",
"email": "i@izs.me",
"url": "http://blog.izs.me/",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/isexe",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/isexe/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/isexe",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/isexe/LICENSE"
},
"isobject@2.1.0": {
"licenses": "MIT",
@@ -5096,49 +5290,43 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/istanbul-reports",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/istanbul-reports/LICENSE"
},
- "jest-changed-files@27.5.1": {
+ "jest-changed-files@29.5.0": {
"licenses": "MIT",
"repository": "https://github.com/facebook/jest",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/jest-changed-files",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/jest-changed-files/LICENSE"
},
- "jest-circus@27.5.1": {
+ "jest-circus@29.5.0": {
"licenses": "MIT",
"repository": "https://github.com/facebook/jest",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/jest-circus",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/jest-circus/LICENSE"
},
- "jest-cli@27.5.1": {
+ "jest-cli@29.5.0": {
"licenses": "MIT",
"repository": "https://github.com/facebook/jest",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/jest-cli",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/jest-cli/LICENSE"
},
- "jest-config@27.5.1": {
+ "jest-config@29.5.0": {
"licenses": "MIT",
"repository": "https://github.com/facebook/jest",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/jest-config",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/jest-config/LICENSE"
},
- "jest-diff@27.5.1": {
+ "jest-diff@29.5.0": {
"licenses": "MIT",
"repository": "https://github.com/facebook/jest",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@types/jest/node_modules/jest-diff",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@types/jest/node_modules/jest-diff/LICENSE"
},
- "jest-diff@29.3.1": {
- "licenses": "MIT",
- "repository": "https://github.com/facebook/jest",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/jest-diff",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/jest-diff/LICENSE"
- },
- "jest-docblock@27.5.1": {
+ "jest-docblock@29.4.3": {
"licenses": "MIT",
"repository": "https://github.com/facebook/jest",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/jest-docblock",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/jest-docblock/LICENSE"
},
- "jest-each@27.5.1": {
+ "jest-each@29.5.0": {
"licenses": "MIT",
"repository": "https://github.com/facebook/jest",
"publisher": "Matt Phillips",
@@ -5146,13 +5334,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/jest-each",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/jest-each/LICENSE"
},
- "jest-environment-jsdom@27.5.1": {
- "licenses": "MIT",
- "repository": "https://github.com/facebook/jest",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/jest-environment-jsdom",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/jest-environment-jsdom/LICENSE"
- },
- "jest-environment-node@27.5.1": {
+ "jest-environment-node@29.5.0": {
"licenses": "MIT",
"repository": "https://github.com/facebook/jest",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/jest-environment-node",
@@ -5164,133 +5346,103 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/metro-config/node_modules/jest-get-type",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/metro-config/node_modules/jest-get-type/LICENSE"
},
- "jest-get-type@27.5.1": {
+ "jest-get-type@29.4.3": {
"licenses": "MIT",
"repository": "https://github.com/facebook/jest",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@types/jest/node_modules/jest-get-type",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@types/jest/node_modules/jest-get-type/LICENSE"
},
- "jest-get-type@29.2.0": {
- "licenses": "MIT",
- "repository": "https://github.com/facebook/jest",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/jest-get-type",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/jest-get-type/LICENSE"
- },
- "jest-haste-map@26.6.2": {
- "licenses": "MIT",
- "repository": "https://github.com/facebook/jest",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/metro/node_modules/jest-haste-map",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/metro/node_modules/jest-haste-map/LICENSE"
- },
- "jest-haste-map@27.5.1": {
+ "jest-haste-map@29.5.0": {
"licenses": "MIT",
"repository": "https://github.com/facebook/jest",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/jest-haste-map",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/jest-haste-map/LICENSE"
},
- "jest-jasmine2@27.5.1": {
- "licenses": "MIT",
- "repository": "https://github.com/facebook/jest",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/jest-jasmine2",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/jest-jasmine2/LICENSE"
- },
- "jest-leak-detector@27.5.1": {
+ "jest-leak-detector@29.5.0": {
"licenses": "MIT",
"repository": "https://github.com/facebook/jest",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/jest-leak-detector",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/jest-leak-detector/LICENSE"
},
- "jest-matcher-utils@27.5.1": {
+ "jest-matcher-utils@29.5.0": {
"licenses": "MIT",
"repository": "https://github.com/facebook/jest",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@types/jest/node_modules/jest-matcher-utils",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@types/jest/node_modules/jest-matcher-utils/LICENSE"
},
- "jest-matcher-utils@29.3.1": {
- "licenses": "MIT",
- "repository": "https://github.com/facebook/jest",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/jest-matcher-utils",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/jest-matcher-utils/LICENSE"
- },
- "jest-message-util@27.5.1": {
+ "jest-message-util@29.5.0": {
"licenses": "MIT",
"repository": "https://github.com/facebook/jest",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/jest-message-util",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/jest-message-util/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@types/jest/node_modules/jest-message-util",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@types/jest/node_modules/jest-message-util/LICENSE"
},
- "jest-mock@27.5.1": {
+ "jest-mock@29.5.0": {
"licenses": "MIT",
"repository": "https://github.com/facebook/jest",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/jest-mock",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/jest-mock/LICENSE"
},
- "jest-pnp-resolver@1.2.2": {
+ "jest-pnp-resolver@1.2.3": {
"licenses": "MIT",
"repository": "https://github.com/arcanis/jest-pnp-resolver",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/jest-pnp-resolver",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/jest-pnp-resolver/README.md"
},
- "jest-regex-util@26.0.0": {
+ "jest-regex-util@27.5.1": {
"licenses": "MIT",
"repository": "https://github.com/facebook/jest",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/metro/node_modules/jest-regex-util",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/metro/node_modules/jest-regex-util/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/metro-file-map/node_modules/jest-regex-util",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/metro-file-map/node_modules/jest-regex-util/LICENSE"
},
- "jest-regex-util@27.5.1": {
+ "jest-regex-util@29.4.3": {
"licenses": "MIT",
"repository": "https://github.com/facebook/jest",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/jest-regex-util",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/jest-regex-util/LICENSE"
},
- "jest-resolve-dependencies@27.5.1": {
+ "jest-resolve-dependencies@29.5.0": {
"licenses": "MIT",
"repository": "https://github.com/facebook/jest",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/jest-resolve-dependencies",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/jest-resolve-dependencies/LICENSE"
},
- "jest-resolve@27.5.1": {
+ "jest-resolve@29.5.0": {
"licenses": "MIT",
"repository": "https://github.com/facebook/jest",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/jest-resolve",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/jest-resolve/LICENSE"
},
- "jest-runner@27.5.1": {
+ "jest-runner@29.5.0": {
"licenses": "MIT",
"repository": "https://github.com/facebook/jest",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/jest-runner",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/jest-runner/LICENSE"
},
- "jest-runtime@27.5.1": {
+ "jest-runtime@29.5.0": {
"licenses": "MIT",
"repository": "https://github.com/facebook/jest",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/jest-runtime",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/jest-runtime/LICENSE"
},
- "jest-serializer@26.6.2": {
- "licenses": "MIT",
- "repository": "https://github.com/facebook/jest",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/metro/node_modules/jest-serializer",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/metro/node_modules/jest-serializer/LICENSE"
- },
"jest-serializer@27.5.1": {
"licenses": "MIT",
"repository": "https://github.com/facebook/jest",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/jest-serializer",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/jest-serializer/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/jest-serializer",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/jest-serializer/LICENSE"
},
- "jest-snapshot@27.5.1": {
+ "jest-snapshot@29.5.0": {
"licenses": "MIT",
"repository": "https://github.com/facebook/jest",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/jest-snapshot",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/jest-snapshot/LICENSE"
},
- "jest-util@26.6.2": {
+ "jest-util@27.5.1": {
"licenses": "MIT",
"repository": "https://github.com/facebook/jest",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/metro/node_modules/jest-util",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/metro/node_modules/jest-util/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/metro-file-map/node_modules/jest-util",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/metro-file-map/node_modules/jest-util/LICENSE"
},
- "jest-util@27.5.1": {
+ "jest-util@29.5.0": {
"licenses": "MIT",
"repository": "https://github.com/facebook/jest",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/jest-util",
@@ -5302,13 +5454,13 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/metro-config/node_modules/jest-validate",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/metro-config/node_modules/jest-validate/LICENSE"
},
- "jest-validate@27.5.1": {
+ "jest-validate@29.5.0": {
"licenses": "MIT",
"repository": "https://github.com/facebook/jest",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/jest-validate",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/jest-validate/LICENSE"
},
- "jest-watcher@27.5.1": {
+ "jest-watcher@29.5.0": {
"licenses": "MIT",
"repository": "https://github.com/facebook/jest",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/jest-watcher",
@@ -5321,40 +5473,29 @@
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/jest-worker/LICENSE"
},
"jest-worker@27.5.1": {
+ "licenses": "MIT",
+ "repository": "https://github.com/facebook/jest",
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/metro/node_modules/jest-worker",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/metro/node_modules/jest-worker/LICENSE"
+ },
+ "jest-worker@29.5.0": {
"licenses": "MIT",
"repository": "https://github.com/facebook/jest",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/jest-worker",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/jest-worker/LICENSE"
},
- "jest@27.5.1": {
+ "jest@29.5.0": {
"licenses": "MIT",
"repository": "https://github.com/facebook/jest",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/jest",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/jest/LICENSE"
},
- "jetifier@1.6.8": {
- "licenses": "MIT",
- "repository": "https://github.com/mikehardy/jetifier",
- "publisher": "Mike Hardy",
- "url": "github@mikehardy.net",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/jetifier",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/jetifier/LICENSE"
- },
- "joi@17.7.0": {
+ "joi@17.9.2": {
"licenses": "BSD-3-Clause",
"repository": "https://github.com/hapijs/joi",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/joi",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/joi/LICENSE.md"
},
- "js-sdsl@4.1.5": {
- "licenses": "MIT",
- "repository": "https://github.com/js-sdsl/js-sdsl",
- "publisher": "ZLY201",
- "email": "951711127@qq.com",
- "url": "https://github.com/js-sdsl/js-sdsl",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/js-sdsl",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/js-sdsl/LICENSE"
- },
"js-tokens@4.0.0": {
"licenses": "MIT",
"repository": "https://github.com/lydell/js-tokens",
@@ -5375,28 +5516,22 @@
"repository": "https://github.com/nodeca/js-yaml",
"publisher": "Vladimir Zapparov",
"email": "dervus.grim@gmail.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/js-yaml",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/js-yaml/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/js-yaml",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/js-yaml/LICENSE"
},
- "jsc-android@250230.2.1": {
+ "jsc-android@250231.0.0": {
"licenses": "BSD-2-Clause",
"repository": "https://github.com/react-native-community/jsc-android-buildscripts",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/jsc-android",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/jsc-android/LICENSE"
},
- "jscodeshift@0.11.0": {
- "licenses": "MIT*",
+ "jscodeshift@0.13.1": {
+ "licenses": "MIT",
"repository": "https://github.com/facebook/jscodeshift",
"publisher": "Felix Kling",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/jscodeshift",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/jscodeshift/LICENSE"
},
- "jsdom@16.7.0": {
- "licenses": "MIT",
- "repository": "https://github.com/jsdom/jsdom",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/jsdom",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/jsdom/LICENSE.txt"
- },
"jsesc@0.5.0": {
"licenses": "MIT",
"repository": "https://github.com/mathiasbynens/jsesc",
@@ -5433,8 +5568,8 @@
"licenses": "MIT",
"repository": "https://github.com/epoberezkin/json-schema-traverse",
"publisher": "Evgeny Poberezkin",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/json-schema-traverse",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/json-schema-traverse/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/json-schema-traverse",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/json-schema-traverse/LICENSE"
},
"json-stable-stringify-without-jsonify@1.0.1": {
"licenses": "MIT",
@@ -5442,8 +5577,8 @@
"publisher": "James Halliday",
"email": "mail@substack.net",
"url": "http://substack.net",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/json-stable-stringify-without-jsonify",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/json-stable-stringify-without-jsonify/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/json-stable-stringify-without-jsonify",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/json-stable-stringify-without-jsonify/LICENSE"
},
"json-stringify-safe@5.0.1": {
"licenses": "ISC",
@@ -5462,7 +5597,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-plugin-module-resolver/node_modules/json5",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-plugin-module-resolver/node_modules/json5/LICENSE.md"
},
- "json5@1.0.1": {
+ "json5@1.0.2": {
"licenses": "MIT",
"repository": "https://github.com/json5/json5",
"publisher": "Aseem Kishore",
@@ -5470,7 +5605,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-config-airbnb/node_modules/json5",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-config-airbnb/node_modules/json5/LICENSE.md"
},
- "json5@2.2.1": {
+ "json5@2.2.3": {
"licenses": "MIT",
"repository": "https://github.com/json5/json5",
"publisher": "Aseem Kishore",
@@ -5478,14 +5613,6 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/json5",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/json5/LICENSE.md"
},
- "jsonfile@2.4.0": {
- "licenses": "MIT",
- "repository": "https://github.com/jprichardson/node-jsonfile",
- "publisher": "JP Richardson",
- "email": "jprichardson@gmail.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/metro/node_modules/jsonfile",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/metro/node_modules/jsonfile/LICENSE"
- },
"jsonfile@4.0.0": {
"licenses": "MIT",
"repository": "https://github.com/jprichardson/node-jsonfile",
@@ -5506,8 +5633,8 @@
"licenses": "MIT",
"repository": "https://github.com/jsx-eslint/jsx-ast-utils",
"publisher": "Ethan Cohen",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/jsx-ast-utils",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/jsx-ast-utils/LICENSE.md"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/jsx-ast-utils",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/jsx-ast-utils/LICENSE.md"
},
"jwt-decode@3.1.2": {
"licenses": "MIT",
@@ -5550,13 +5677,6 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/kind-of",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/kind-of/LICENSE"
},
- "klaw@1.3.1": {
- "licenses": "MIT",
- "repository": "https://github.com/jprichardson/node-klaw",
- "publisher": "JP Richardson",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/klaw",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/klaw/LICENSE"
- },
"kleur@3.0.3": {
"licenses": "MIT",
"repository": "https://github.com/lukeed/kleur",
@@ -5589,21 +5709,13 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/leven",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/leven/license"
},
- "levn@0.3.0": {
- "licenses": "MIT",
- "repository": "https://github.com/gkz/levn",
- "publisher": "George Zahariev",
- "email": "z@georgezahariev.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/levn",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/levn/LICENSE"
- },
"levn@0.4.1": {
"licenses": "MIT",
"repository": "https://github.com/gkz/levn",
"publisher": "George Zahariev",
"email": "z@georgezahariev.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/levn",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/levn/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/levn",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/levn/LICENSE"
},
"license-checker@25.0.1": {
"licenses": "BSD-3-Clause",
@@ -5663,8 +5775,8 @@
"publisher": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "https://sindresorhus.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/locate-path",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/locate-path/license"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/locate-path",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/locate-path/license"
},
"lodash.debounce@4.0.8": {
"licenses": "MIT",
@@ -5707,8 +5819,8 @@
"repository": "https://github.com/lodash/lodash",
"publisher": "John-David Dalton",
"email": "john.david.dalton@gmail.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/lodash.merge",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/lodash.merge/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/lodash.merge",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/lodash.merge/LICENSE"
},
"lodash.throttle@4.1.1": {
"licenses": "MIT",
@@ -5724,15 +5836,15 @@
"repository": "https://github.com/lodash/lodash",
"publisher": "John-David Dalton",
"email": "john.david.dalton@gmail.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/lodash",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/lodash/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/lodash",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/lodash/LICENSE"
},
- "log-symbols@2.2.0": {
+ "log-symbols@4.1.0": {
"licenses": "MIT",
"repository": "https://github.com/sindresorhus/log-symbols",
"publisher": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
- "url": "sindresorhus.com",
+ "url": "https://sindresorhus.com",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/log-symbols",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/log-symbols/license"
},
@@ -5752,7 +5864,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/loose-envify",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/loose-envify/LICENSE"
},
- "lottie-react-native@5.1.4": {
+ "lottie-react-native@5.1.6": {
"licenses": "Apache-2.0",
"repository": "https://github.com/react-native-community/lottie-react-native",
"publisher": "Emilio Rodriguez",
@@ -5760,6 +5872,14 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/lottie-react-native",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/lottie-react-native/LICENSE"
},
+ "lru-cache@5.1.1": {
+ "licenses": "ISC",
+ "repository": "https://github.com/isaacs/node-lru-cache",
+ "publisher": "Isaac Z. Schlueter",
+ "email": "i@izs.me",
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/lru-cache",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/lru-cache/LICENSE"
+ },
"lru-cache@6.0.0": {
"licenses": "ISC",
"repository": "https://github.com/isaacs/node-lru-cache",
@@ -5843,6 +5963,14 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/mdn-data",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/mdn-data/LICENSE"
},
+ "memoize-one@5.2.1": {
+ "licenses": "MIT",
+ "repository": "https://github.com/alexreardon/memoize-one",
+ "publisher": "Alex Reardon",
+ "email": "alexreardon@gmail.com",
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/memoize-one",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/memoize-one/LICENSE"
+ },
"meow@8.1.2": {
"licenses": "MIT",
"repository": "https://github.com/sindresorhus/meow",
@@ -5874,98 +6002,136 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@typescript-eslint/eslint-plugin/node_modules/merge2",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@typescript-eslint/eslint-plugin/node_modules/merge2/LICENSE"
},
- "metro-babel-register@0.66.2": {
+ "metro-babel-transformer@0.73.7": {
"licenses": "MIT",
"repository": "https://github.com/facebook/metro",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/metro-babel-register"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/metro-babel-transformer"
},
- "metro-babel-transformer@0.66.2": {
+ "metro-babel-transformer@0.73.9": {
"licenses": "MIT",
"repository": "https://github.com/facebook/metro",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/metro-babel-transformer"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/metro/node_modules/metro-babel-transformer"
},
- "metro-cache-key@0.66.2": {
+ "metro-cache-key@0.73.9": {
"licenses": "MIT",
"repository": "https://github.com/facebook/metro",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/metro-cache-key"
},
- "metro-cache@0.66.2": {
+ "metro-cache@0.73.9": {
"licenses": "MIT",
"repository": "https://github.com/facebook/metro",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/metro-cache"
},
- "metro-config@0.66.2": {
+ "metro-config@0.73.9": {
"licenses": "MIT",
"repository": "https://github.com/facebook/metro",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/metro-config",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/metro-config/README.md"
},
- "metro-core@0.66.2": {
+ "metro-core@0.73.9": {
"licenses": "MIT",
"repository": "https://github.com/facebook/metro",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/metro-core",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/metro-core/README.md"
},
- "metro-hermes-compiler@0.66.2": {
+ "metro-file-map@0.73.9": {
+ "licenses": "MIT",
+ "repository": "https://github.com/facebook/metro",
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/metro-file-map",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/metro-file-map/README.md"
+ },
+ "metro-hermes-compiler@0.73.9": {
"licenses": "MIT",
"repository": "https://github.com/facebook/metro",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/metro-hermes-compiler",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/metro-hermes-compiler/README.md"
},
- "metro-inspector-proxy@0.66.2": {
+ "metro-inspector-proxy@0.73.9": {
"licenses": "MIT",
"repository": "https://github.com/facebook/metro",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/metro-inspector-proxy"
},
- "metro-minify-uglify@0.66.2": {
+ "metro-minify-terser@0.73.9": {
+ "licenses": "MIT",
+ "repository": "https://github.com/facebook/metro",
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/metro-minify-terser"
+ },
+ "metro-minify-uglify@0.73.9": {
"licenses": "MIT",
"repository": "https://github.com/facebook/metro",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/metro-minify-uglify"
},
- "metro-react-native-babel-preset@0.66.2": {
+ "metro-react-native-babel-preset@0.73.7": {
"licenses": "MIT",
"repository": "https://github.com/facebook/metro",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/metro-react-native-babel-preset",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/metro-react-native-babel-preset/README.md"
},
- "metro-react-native-babel-transformer@0.66.2": {
+ "metro-react-native-babel-preset@0.73.9": {
+ "licenses": "MIT",
+ "repository": "https://github.com/facebook/metro",
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/metro/node_modules/metro-react-native-babel-preset",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/metro/node_modules/metro-react-native-babel-preset/README.md"
+ },
+ "metro-react-native-babel-transformer@0.73.7": {
"licenses": "MIT",
"repository": "https://github.com/facebook/metro",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/metro-react-native-babel-transformer"
},
- "metro-resolver@0.66.2": {
+ "metro-react-native-babel-transformer@0.73.9": {
+ "licenses": "MIT",
+ "repository": "https://github.com/facebook/metro",
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@react-native-community/cli-plugin-metro/node_modules/metro-react-native-babel-transformer"
+ },
+ "metro-resolver@0.73.9": {
"licenses": "MIT",
"repository": "https://github.com/facebook/metro",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/metro-resolver",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/metro-resolver/README.md"
},
- "metro-runtime@0.66.2": {
+ "metro-runtime@0.73.7": {
"licenses": "MIT",
"repository": "https://github.com/facebook/metro",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/metro-runtime"
},
- "metro-source-map@0.66.2": {
+ "metro-runtime@0.73.9": {
+ "licenses": "MIT",
+ "repository": "https://github.com/facebook/metro",
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/metro-config/node_modules/metro-runtime"
+ },
+ "metro-source-map@0.73.7": {
"licenses": "MIT",
"repository": "https://github.com/facebook/metro",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/metro-source-map",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/metro-source-map/README.md"
},
- "metro-symbolicate@0.66.2": {
+ "metro-source-map@0.73.9": {
+ "licenses": "MIT",
+ "repository": "https://github.com/facebook/metro",
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/metro/node_modules/metro-source-map",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/metro/node_modules/metro-source-map/README.md"
+ },
+ "metro-symbolicate@0.73.7": {
"licenses": "MIT",
"repository": "https://github.com/facebook/metro",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/metro-symbolicate"
},
- "metro-transform-plugins@0.66.2": {
+ "metro-symbolicate@0.73.9": {
+ "licenses": "MIT",
+ "repository": "https://github.com/facebook/metro",
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/metro/node_modules/metro-symbolicate"
+ },
+ "metro-transform-plugins@0.73.9": {
"licenses": "MIT",
"repository": "https://github.com/facebook/metro",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/metro-transform-plugins"
},
- "metro-transform-worker@0.66.2": {
+ "metro-transform-worker@0.73.9": {
"licenses": "MIT",
"repository": "https://github.com/facebook/metro",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/metro-transform-worker"
},
- "metro@0.66.2": {
+ "metro@0.73.9": {
"licenses": "MIT",
"repository": "https://github.com/facebook/metro",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/metro",
@@ -5976,8 +6142,8 @@
"repository": "https://github.com/micromatch/micromatch",
"publisher": "Jon Schlinkert",
"url": "https://github.com/jonschlinkert",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/sane/node_modules/micromatch",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/sane/node_modules/micromatch/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/jscodeshift/node_modules/micromatch",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/jscodeshift/node_modules/micromatch/LICENSE"
},
"micromatch@4.0.5": {
"licenses": "MIT",
@@ -5990,14 +6156,14 @@
"mime-db@1.52.0": {
"licenses": "MIT",
"repository": "https://github.com/jshttp/mime-db",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/mime-db",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/mime-db/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/mime-db",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/mime-db/LICENSE"
},
"mime-types@2.1.35": {
"licenses": "MIT",
"repository": "https://github.com/jshttp/mime-types",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/mime-types",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/mime-types/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/mime-types",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/mime-types/LICENSE"
},
"mime@1.6.0": {
"licenses": "MIT",
@@ -6017,15 +6183,6 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/mime",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/mime/LICENSE"
},
- "mimic-fn@1.2.0": {
- "licenses": "MIT",
- "repository": "https://github.com/sindresorhus/mimic-fn",
- "publisher": "Sindre Sorhus",
- "email": "sindresorhus@gmail.com",
- "url": "sindresorhus.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/restore-cursor/node_modules/mimic-fn",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/restore-cursor/node_modules/mimic-fn/license"
- },
"mimic-fn@2.1.0": {
"licenses": "MIT",
"repository": "https://github.com/sindresorhus/mimic-fn",
@@ -6061,7 +6218,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/minimist-options",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/minimist-options/license"
},
- "minimist@1.2.7": {
+ "minimist@1.2.8": {
"licenses": "MIT",
"repository": "https://github.com/minimistjs/minimist",
"publisher": "James Halliday",
@@ -6099,14 +6256,14 @@
"ms@2.0.0": {
"licenses": "MIT",
"repository": "https://github.com/zeit/ms",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-config-airbnb/node_modules/ms",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-config-airbnb/node_modules/ms/license.md"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/send/node_modules/debug/node_modules/ms",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/send/node_modules/debug/node_modules/ms/license.md"
},
"ms@2.1.2": {
"licenses": "MIT",
"repository": "https://github.com/zeit/ms",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/ms",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/ms/license.md"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/ms",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/ms/license.md"
},
"ms@2.1.3": {
"licenses": "MIT",
@@ -6114,7 +6271,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/license-checker/node_modules/ms",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/license-checker/node_modules/ms/license.md"
},
- "nanoid@3.3.4": {
+ "nanoid@3.3.6": {
"licenses": "MIT",
"repository": "https://github.com/ai/nanoid",
"publisher": "Andrey Sitnik",
@@ -6143,8 +6300,8 @@
"repository": "https://github.com/litejs/natural-compare-lite",
"publisher": "Lauri Rooden",
"url": "https://github.com/litejs/natural-compare-lite",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/natural-compare",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/natural-compare/README.md"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/natural-compare",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/natural-compare/README.md"
},
"negotiator@0.6.3": {
"licenses": "MIT",
@@ -6164,7 +6321,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/nice-try",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/nice-try/LICENSE"
},
- "nocache@2.1.0": {
+ "nocache@3.0.4": {
"licenses": "MIT",
"repository": "https://github.com/helmetjs/nocache",
"publisher": "Adam Baldwin",
@@ -6182,7 +6339,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/node-dir",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/node-dir/LICENSE.txt"
},
- "node-fetch@2.6.7": {
+ "node-fetch@2.6.11": {
"licenses": "MIT",
"repository": "https://github.com/bitinn/node-fetch",
"publisher": "David Frank",
@@ -6197,7 +6354,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/node-int64",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/node-int64/LICENSE"
},
- "node-releases@2.0.6": {
+ "node-releases@2.0.12": {
"licenses": "MIT",
"repository": "https://github.com/chicoxyzzy/node-releases",
"publisher": "Sergey Rubanov",
@@ -6239,14 +6396,6 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/normalize-package-data",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/normalize-package-data/LICENSE"
},
- "normalize-path@2.1.1": {
- "licenses": "MIT",
- "repository": "https://github.com/jonschlinkert/normalize-path",
- "publisher": "Jon Schlinkert",
- "url": "https://github.com/jonschlinkert",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/sane/node_modules/normalize-path",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/sane/node_modules/normalize-path/LICENSE"
- },
"normalize-path@3.0.0": {
"licenses": "MIT",
"repository": "https://github.com/jonschlinkert/normalize-path",
@@ -6298,21 +6447,18 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/nullthrows",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/nullthrows/LICENSE"
},
- "nwsapi@2.2.2": {
- "licenses": "MIT",
- "repository": "https://github.com/dperini/nwsapi",
- "publisher": "Diego Perini",
- "email": "diego.perini@gmail.com",
- "url": "http://www.iport.it/",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/nwsapi",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/nwsapi/LICENSE"
- },
- "ob1@0.66.2": {
+ "ob1@0.73.7": {
"licenses": "MIT",
"repository": "https://github.com/facebook/metro",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/ob1",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/ob1/README.md"
},
+ "ob1@0.73.9": {
+ "licenses": "MIT",
+ "repository": "https://github.com/facebook/metro",
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/metro/node_modules/ob1",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/metro/node_modules/ob1/README.md"
+ },
"object-assign@4.1.1": {
"licenses": "MIT",
"repository": "https://github.com/sindresorhus/object-assign",
@@ -6330,14 +6476,21 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/object-copy",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/object-copy/LICENSE"
},
- "object-inspect@1.12.2": {
+ "object-inspect@1.12.3": {
"licenses": "MIT",
"repository": "https://github.com/inspect-js/object-inspect",
"publisher": "James Halliday",
"email": "mail@substack.net",
"url": "http://substack.net",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/object-inspect",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/object-inspect/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/object-inspect",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/object-inspect/LICENSE"
+ },
+ "object-is@1.1.5": {
+ "licenses": "MIT",
+ "repository": "https://github.com/es-shims/object-is",
+ "publisher": "Jordan Harband",
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/object-is",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/object-is/LICENSE"
},
"object-keys@1.1.1": {
"licenses": "MIT",
@@ -6345,8 +6498,8 @@
"publisher": "Jordan Harband",
"email": "ljharb@gmail.com",
"url": "http://ljharb.codes",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/object-keys",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/object-keys/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/object-keys",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/object-keys/LICENSE"
},
"object-visit@1.0.1": {
"licenses": "MIT",
@@ -6360,23 +6513,23 @@
"licenses": "MIT",
"repository": "https://github.com/ljharb/object.assign",
"publisher": "Jordan Harband",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/object.assign",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/object.assign/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/object.assign",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/object.assign/LICENSE"
},
"object.entries@1.1.6": {
"licenses": "MIT",
"repository": "https://github.com/es-shims/Object.entries",
"publisher": "Jordan Harband",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/object.entries",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/object.entries/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/object.entries",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/object.entries/LICENSE"
},
"object.fromentries@2.0.6": {
"licenses": "MIT",
"repository": "https://github.com/es-shims/Object.fromEntries",
"publisher": "Jordan Harband",
"email": "ljharb@gmail.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/object.fromentries",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/object.fromentries/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/object.fromentries",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/object.fromentries/LICENSE"
},
"object.hasown@1.1.2": {
"licenses": "MIT",
@@ -6431,15 +6584,6 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-plugin-module-resolver/node_modules/once",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-plugin-module-resolver/node_modules/once/LICENSE"
},
- "onetime@2.0.1": {
- "licenses": "MIT",
- "repository": "https://github.com/sindresorhus/onetime",
- "publisher": "Sindre Sorhus",
- "email": "sindresorhus@gmail.com",
- "url": "sindresorhus.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/restore-cursor/node_modules/onetime",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/restore-cursor/node_modules/onetime/license"
- },
"onetime@5.1.2": {
"licenses": "MIT",
"repository": "https://github.com/sindresorhus/onetime",
@@ -6458,37 +6602,20 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/open",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/open/license"
},
- "optionator@0.8.3": {
- "licenses": "MIT",
- "repository": "https://github.com/gkz/optionator",
- "publisher": "George Zahariev",
- "email": "z@georgezahariev.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/optionator",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/optionator/LICENSE"
- },
"optionator@0.9.1": {
"licenses": "MIT",
"repository": "https://github.com/gkz/optionator",
"publisher": "George Zahariev",
"email": "z@georgezahariev.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/optionator",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/optionator/LICENSE"
- },
- "options@0.0.6": {
- "licenses": "MIT*",
- "repository": "https://github.com/einaros/options.js",
- "publisher": "Einar Otto Stangvik",
- "email": "einaros@gmail.com",
- "url": "http://2x.io",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/options",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/options/README.md"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/optionator",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/optionator/LICENSE"
},
- "ora@3.4.0": {
+ "ora@5.4.1": {
"licenses": "MIT",
"repository": "https://github.com/sindresorhus/ora",
"publisher": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
- "url": "sindresorhus.com",
+ "url": "https://sindresorhus.com",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/ora",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/ora/license"
},
@@ -6552,8 +6679,8 @@
"publisher": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "https://sindresorhus.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/p-limit",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/p-limit/license"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/p-limit",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/p-limit/license"
},
"p-locate@2.0.0": {
"licenses": "MIT",
@@ -6588,8 +6715,8 @@
"publisher": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "https://sindresorhus.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/p-locate",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/p-locate/license"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/p-locate",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/p-locate/license"
},
"p-try@1.0.0": {
"licenses": "MIT",
@@ -6615,8 +6742,8 @@
"publisher": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "sindresorhus.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/parent-module",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/parent-module/license"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/parent-module",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/parent-module/license"
},
"parse-json@4.0.0": {
"licenses": "MIT",
@@ -6624,8 +6751,8 @@
"publisher": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "sindresorhus.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/parse-json",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/parse-json/license"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/cosmiconfig/node_modules/parse-json",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/cosmiconfig/node_modules/parse-json/license"
},
"parse-json@5.2.0": {
"licenses": "MIT",
@@ -6636,15 +6763,6 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/parse-json",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/parse-json/license"
},
- "parse5@6.0.1": {
- "licenses": "MIT",
- "repository": "https://github.com/inikulin/parse5",
- "publisher": "Ivan Nikulin",
- "email": "ifaaan@gmail.com",
- "url": "https://github.com/inikulin",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/parse5",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/parse5/LICENSE"
- },
"parseurl@1.3.3": {
"licenses": "MIT",
"repository": "https://github.com/pillarjs/parseurl",
@@ -6681,8 +6799,8 @@
"publisher": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "sindresorhus.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/path-exists",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/path-exists/license"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/path-exists",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/path-exists/license"
},
"path-is-absolute@1.0.1": {
"licenses": "MIT",
@@ -6708,8 +6826,8 @@
"publisher": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "sindresorhus.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/path-key",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/path-key/license"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/path-key",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/path-key/license"
},
"path-parse@1.0.7": {
"licenses": "MIT",
@@ -6806,6 +6924,15 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/pkg-dir",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/pkg-dir/license"
},
+ "pkg-dir@5.0.0": {
+ "licenses": "MIT",
+ "repository": "https://github.com/sindresorhus/pkg-dir",
+ "publisher": "Sindre Sorhus",
+ "email": "sindresorhus@gmail.com",
+ "url": "https://sindresorhus.com",
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/pkg-dir",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/pkg-dir/license"
+ },
"pkg-up@3.1.0": {
"licenses": "MIT",
"repository": "https://github.com/sindresorhus/pkg-up",
@@ -6815,14 +6942,6 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-plugin-module-resolver/node_modules/pkg-up",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-plugin-module-resolver/node_modules/pkg-up/license"
},
- "plist@3.0.6": {
- "licenses": "MIT",
- "repository": "https://github.com/TooTallNate/node-plist",
- "publisher": "Nathan Rajlich",
- "email": "nathan@tootallnate.net",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/plist",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/plist/LICENSE"
- },
"pod-install@0.1.38": {
"licenses": "MIT",
"repository": "https://github.com/expo/expo-cli",
@@ -6839,21 +6958,13 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/posix-character-classes",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/posix-character-classes/LICENSE"
},
- "prelude-ls@1.1.2": {
- "licenses": "MIT",
- "repository": "https://github.com/gkz/prelude-ls",
- "publisher": "George Zahariev",
- "email": "z@georgezahariev.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/prelude-ls",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/prelude-ls/LICENSE"
- },
"prelude-ls@1.2.1": {
"licenses": "MIT",
"repository": "https://github.com/gkz/prelude-ls",
"publisher": "George Zahariev",
"email": "z@georgezahariev.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/prelude-ls",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/prelude-ls/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/prelude-ls",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/prelude-ls/LICENSE"
},
"prepend-file@2.0.1": {
"licenses": "MIT",
@@ -6870,7 +6981,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/prettier-linter-helpers",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/prettier-linter-helpers/LICENSE.md"
},
- "prettier@2.7.1": {
+ "prettier@2.8.8": {
"licenses": "MIT",
"repository": "https://github.com/prettier/prettier",
"publisher": "James Long",
@@ -6890,16 +7001,16 @@
"repository": "https://github.com/facebook/jest",
"publisher": "James Kyle",
"email": "me@thejameskyle.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@types/jest/node_modules/pretty-format",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@types/jest/node_modules/pretty-format/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@testing-library/react-native/node_modules/pretty-format",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@testing-library/react-native/node_modules/pretty-format/LICENSE"
},
- "pretty-format@29.3.1": {
+ "pretty-format@29.5.0": {
"licenses": "MIT",
"repository": "https://github.com/facebook/jest",
"publisher": "James Kyle",
"email": "me@thejameskyle.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/jest-diff/node_modules/pretty-format",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/jest-diff/node_modules/pretty-format/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@types/jest/node_modules/pretty-format",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@types/jest/node_modules/pretty-format/LICENSE"
},
"process-nextick-args@2.0.1": {
"licenses": "MIT",
@@ -6929,15 +7040,6 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/prop-types",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/prop-types/LICENSE"
},
- "psl@1.9.0": {
- "licenses": "MIT",
- "repository": "https://github.com/lupomontero/psl",
- "publisher": "Lupo Montero",
- "email": "lupomontero@gmail.com",
- "url": "https://lupomontero.com/",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/psl",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/psl/LICENSE"
- },
"pump@3.0.0": {
"licenses": "MIT",
"repository": "https://github.com/mafintosh/pump",
@@ -6946,13 +7048,21 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/pump",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/pump/LICENSE"
},
- "punycode@2.1.1": {
+ "punycode@2.3.0": {
"licenses": "MIT",
- "repository": "https://github.com/bestiejs/punycode.js",
+ "repository": "https://github.com/mathiasbynens/punycode.js",
"publisher": "Mathias Bynens",
"url": "https://mathiasbynens.be/",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/punycode",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/punycode/LICENSE-MIT.txt"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/punycode",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/punycode/LICENSE-MIT.txt"
+ },
+ "pure-rand@6.0.2": {
+ "licenses": "MIT",
+ "repository": "https://github.com/dubzzz/pure-rand",
+ "publisher": "Nicolas DUBIEN",
+ "email": "github@dubien.org",
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/pure-rand",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/pure-rand/LICENSE"
},
"q@1.5.1": {
"licenses": "MIT",
@@ -6963,7 +7073,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/q",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/q/LICENSE"
},
- "query-string@7.1.1": {
+ "query-string@7.1.3": {
"licenses": "MIT",
"repository": "https://github.com/sindresorhus/query-string",
"publisher": "Sindre Sorhus",
@@ -6972,21 +7082,14 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/query-string",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/query-string/license"
},
- "querystringify@2.2.0": {
- "licenses": "MIT",
- "repository": "https://github.com/unshiftio/querystringify",
- "publisher": "Arnout Kazemier",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/querystringify",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/querystringify/LICENSE"
- },
"queue-microtask@1.2.3": {
"licenses": "MIT",
"repository": "https://github.com/feross/queue-microtask",
"publisher": "Feross Aboukhadijeh",
"email": "feross@feross.org",
"url": "https://feross.org",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/queue-microtask",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/queue-microtask/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/queue-microtask",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/queue-microtask/LICENSE"
},
"quick-lru@4.0.1": {
"licenses": "MIT",
@@ -7012,7 +7115,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/range-parser",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/range-parser/LICENSE"
},
- "react-devtools-core@4.19.1": {
+ "react-devtools-core@4.27.8": {
"licenses": "MIT",
"repository": "https://github.com/facebook/react",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/react-devtools-core",
@@ -7041,14 +7144,14 @@
"react-is@17.0.2": {
"licenses": "MIT",
"repository": "https://github.com/facebook/react",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@types/jest/node_modules/react-is",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@types/jest/node_modules/react-is/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/pretty-format/node_modules/react-is",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/pretty-format/node_modules/react-is/LICENSE"
},
"react-is@18.2.0": {
"licenses": "MIT",
"repository": "https://github.com/facebook/react",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/react-is",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/react-is/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@types/jest/node_modules/react-is",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@types/jest/node_modules/react-is/LICENSE"
},
"react-native-camera@4.2.1": {
"licenses": "MIT AND Apache-2.0 AND BSD-3-Clause",
@@ -7059,7 +7162,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/react-native-camera",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/react-native-camera/LICENSE"
},
- "react-native-codegen@0.0.8": {
+ "react-native-codegen@0.71.5": {
"licenses": "MIT",
"repository": "https://github.com/facebook/react-native",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/react-native-codegen",
@@ -7074,13 +7177,19 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/react-native-encrypted-storage",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/react-native-encrypted-storage/LICENSE"
},
- "react-native-gesture-handler@2.8.0": {
+ "react-native-gesture-handler@2.11.0": {
"licenses": "MIT",
"repository": "https://github.com/software-mansion/react-native-gesture-handler",
"publisher": "Krzysztof Magiera",
"email": "krzys.magiera@gmail.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/react-native-gesture-handler",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/react-native-gesture-handler/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/react-native-gesture-handler",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/react-native-gesture-handler/LICENSE"
+ },
+ "react-native-gradle-plugin@0.71.18": {
+ "licenses": "MIT",
+ "repository": "https://github.com/facebook/react-native",
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/react-native-gradle-plugin",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/react-native-gradle-plugin/README.md"
},
"react-native-linear-gradient@2.6.2": {
"licenses": "MIT",
@@ -7099,7 +7208,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/react-native-qrcode-scanner/node_modules/react-native-permissions",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/react-native-qrcode-scanner/node_modules/react-native-permissions/LICENSE"
},
- "react-native-permissions@3.6.1": {
+ "react-native-permissions@3.8.0": {
"licenses": "MIT",
"repository": "https://github.com/zoontek/react-native-permissions",
"publisher": "Mathieu Acthernoene",
@@ -7114,7 +7223,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/react-native-qrcode-scanner",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/react-native-qrcode-scanner/LICENSE.md"
},
- "react-native-reanimated@2.12.0": {
+ "react-native-reanimated@2.17.0": {
"licenses": "MIT",
"repository": "https://github.com/software-mansion/react-native-reanimated",
"publisher": "Krzysztof Magiera",
@@ -7122,7 +7231,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/react-native-reanimated",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/react-native-reanimated/LICENSE"
},
- "react-native-safe-area-context@4.4.1": {
+ "react-native-safe-area-context@4.5.3": {
"licenses": "MIT",
"repository": "https://github.com/th3rdwave/react-native-safe-area-context",
"publisher": "Janic Duplessis",
@@ -7138,7 +7247,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/react-native-safe-modules",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/react-native-safe-modules/LICENSE"
},
- "react-native-screens@3.18.2": {
+ "react-native-screens@3.20.0": {
"licenses": "MIT",
"repository": "https://github.com/software-mansion/react-native-screens",
"publisher": "Krzysztof Magiera",
@@ -7153,13 +7262,13 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/react-native-svg-transformer",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/react-native-svg-transformer/LICENSE"
},
- "react-native-svg@12.4.4": {
+ "react-native-svg@13.9.0": {
"licenses": "MIT",
"repository": "https://github.com/react-native-community/react-native-svg",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/react-native-svg",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/react-native-svg/LICENSE"
},
- "react-native@0.67.2": {
+ "react-native@0.71.3": {
"licenses": "MIT",
"repository": "https://github.com/facebook/react-native",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/react-native",
@@ -7243,13 +7352,13 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/meow/node_modules/read-pkg",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/meow/node_modules/read-pkg/license"
},
- "readable-stream@2.3.7": {
+ "readable-stream@2.3.8": {
"licenses": "MIT",
"repository": "https://github.com/nodejs/readable-stream",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/through2/node_modules/readable-stream",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/through2/node_modules/readable-stream/LICENSE"
},
- "readable-stream@3.6.0": {
+ "readable-stream@3.6.2": {
"licenses": "MIT",
"repository": "https://github.com/nodejs/readable-stream",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/readable-stream",
@@ -7304,17 +7413,17 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/regenerate",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/regenerate/LICENSE-MIT.txt"
},
- "regenerator-runtime@0.13.10": {
+ "regenerator-runtime@0.13.11": {
"licenses": "MIT",
- "repository": "https://github.com/facebook/regenerator/tree/master/packages/runtime",
+ "repository": "https://github.com/facebook/regenerator/tree/main/packages/runtime",
"publisher": "Ben Newman",
"email": "bn@cs.stanford.edu",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/regenerator-runtime",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/regenerator-runtime/LICENSE"
},
- "regenerator-transform@0.15.0": {
+ "regenerator-transform@0.15.1": {
"licenses": "MIT",
- "repository": "https://github.com/facebook/regenerator/tree/master/packages/transform",
+ "repository": "https://github.com/facebook/regenerator/tree/main/packages/transform",
"publisher": "Ben Newman",
"email": "bn@cs.stanford.edu",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/regenerator-transform",
@@ -7328,23 +7437,15 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/regex-not",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/regex-not/LICENSE"
},
- "regexp.prototype.flags@1.4.3": {
+ "regexp.prototype.flags@1.5.0": {
"licenses": "MIT",
"repository": "https://github.com/es-shims/RegExp.prototype.flags",
"publisher": "Jordan Harband",
"email": "ljharb@gmail.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/regexp.prototype.flags",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/regexp.prototype.flags/LICENSE"
- },
- "regexpp@3.2.0": {
- "licenses": "MIT",
- "repository": "https://github.com/mysticatea/regexpp",
- "publisher": "Toru Nagashima",
- "url": "https://github.com/mysticatea",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/regexpp",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/regexpp/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/regexp.prototype.flags",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/regexp.prototype.flags/LICENSE"
},
- "regexpu-core@5.2.1": {
+ "regexpu-core@5.3.2": {
"licenses": "MIT",
"repository": "https://github.com/mathiasbynens/regexpu-core",
"publisher": "Mathias Bynens",
@@ -7352,14 +7453,6 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/regexpu-core",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/regexpu-core/LICENSE-MIT.txt"
},
- "regjsgen@0.7.1": {
- "licenses": "MIT",
- "repository": "https://github.com/bnjmnt4n/regjsgen",
- "publisher": "Benjamin Tan",
- "url": "https://ofcr.se/",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/regjsgen",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/regjsgen/LICENSE-MIT.txt"
- },
"regjsparser@0.9.1": {
"licenses": "BSD-2-Clause",
"repository": "https://github.com/jviereck/regjsparser",
@@ -7368,13 +7461,6 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/regjsparser",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/regjsparser/LICENSE.BSD"
},
- "remove-trailing-separator@1.1.0": {
- "licenses": "ISC",
- "repository": "https://github.com/darsain/remove-trailing-separator",
- "publisher": "darsain",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/remove-trailing-separator",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/remove-trailing-separator/license"
- },
"repeat-element@1.1.4": {
"licenses": "MIT",
"repository": "https://github.com/jonschlinkert/repeat-element",
@@ -7408,14 +7494,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/require-main-filename",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/require-main-filename/LICENSE.txt"
},
- "requires-port@1.0.0": {
- "licenses": "MIT",
- "repository": "https://github.com/unshiftio/requires-port",
- "publisher": "Arnout Kazemier",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/requires-port",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/requires-port/LICENSE"
- },
- "reselect@4.1.7": {
+ "reselect@4.1.8": {
"licenses": "MIT",
"repository": "https://github.com/reduxjs/reselect",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-plugin-module-resolver/node_modules/reselect",
@@ -7445,8 +7524,8 @@
"publisher": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "sindresorhus.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/resolve-from",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/resolve-from/license"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/resolve-from",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/resolve-from/license"
},
"resolve-from@5.0.0": {
"licenses": "MIT",
@@ -7464,7 +7543,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/resolve-url",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/resolve-url/LICENSE"
},
- "resolve.exports@1.1.0": {
+ "resolve.exports@2.0.2": {
"licenses": "MIT",
"repository": "https://github.com/lukeed/resolve.exports",
"publisher": "Luke Edwards",
@@ -7473,7 +7552,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/resolve.exports",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/resolve.exports/license"
},
- "resolve@1.22.1": {
+ "resolve@1.22.2": {
"licenses": "MIT",
"repository": "https://github.com/browserify/resolve",
"publisher": "James Halliday",
@@ -7491,7 +7570,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/resolve",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/resolve/LICENSE"
},
- "restore-cursor@2.0.0": {
+ "restore-cursor@3.1.0": {
"licenses": "MIT",
"repository": "https://github.com/sindresorhus/restore-cursor",
"publisher": "Sindre Sorhus",
@@ -7513,8 +7592,8 @@
"repository": "https://github.com/mcollina/reusify",
"publisher": "Matteo Collina",
"email": "hello@matteocollina.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/reusify",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/reusify/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/reusify",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/reusify/LICENSE"
},
"rimraf@2.2.8": {
"licenses": "MIT",
@@ -7534,23 +7613,14 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/temp/node_modules/rimraf",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/temp/node_modules/rimraf/LICENSE"
},
- "rimraf@2.7.1": {
- "licenses": "ISC",
- "repository": "https://github.com/isaacs/rimraf",
- "publisher": "Isaac Z. Schlueter",
- "email": "i@izs.me",
- "url": "http://blog.izs.me/",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/metro-cache/node_modules/rimraf",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/metro-cache/node_modules/rimraf/LICENSE"
- },
"rimraf@3.0.2": {
"licenses": "ISC",
"repository": "https://github.com/isaacs/rimraf",
"publisher": "Isaac Z. Schlueter",
"email": "i@izs.me",
"url": "http://blog.izs.me/",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/rimraf",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/rimraf/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/rimraf",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/rimraf/LICENSE"
},
"rollup-plugin-peer-deps-external@2.2.4": {
"licenses": "MIT",
@@ -7573,21 +7643,14 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/rollup",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/rollup/LICENSE.md"
},
- "rsvp@4.8.5": {
- "licenses": "MIT",
- "repository": "https://github.com/tildeio/rsvp.js",
- "publisher": "Tilde, Inc. & Stefan Penner",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/rsvp",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/rsvp/LICENSE"
- },
"run-parallel@1.2.0": {
"licenses": "MIT",
"repository": "https://github.com/feross/run-parallel",
"publisher": "Feross Aboukhadijeh",
"email": "feross@feross.org",
"url": "https://feross.org",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/run-parallel",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/run-parallel/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/run-parallel",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/run-parallel/LICENSE"
},
"safe-buffer@5.1.2": {
"licenses": "MIT",
@@ -7612,8 +7675,8 @@
"repository": "https://github.com/ljharb/safe-regex-test",
"publisher": "Jordan Harband",
"email": "ljharb@gmail.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/safe-regex-test",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/safe-regex-test/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/safe-regex-test",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/safe-regex-test/LICENSE"
},
"safe-regex@1.1.0": {
"licenses": "MIT",
@@ -7624,51 +7687,12 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/safe-regex",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/safe-regex/LICENSE"
},
- "safer-buffer@2.1.2": {
- "licenses": "MIT",
- "repository": "https://github.com/ChALkeR/safer-buffer",
- "publisher": "Nikita Skovoroda",
- "email": "chalkerx@gmail.com",
- "url": "https://github.com/ChALkeR",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/safer-buffer",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/safer-buffer/LICENSE"
- },
- "sane@4.1.0": {
- "licenses": "MIT",
- "repository": "https://github.com/amasad/sane",
- "publisher": "amasad",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/sane",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/sane/README.md"
- },
- "sax@1.2.4": {
- "licenses": "ISC",
- "repository": "https://github.com/isaacs/sax-js",
- "publisher": "Isaac Z. Schlueter",
- "email": "i@izs.me",
- "url": "http://blog.izs.me/",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/sax",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/sax/LICENSE"
- },
- "saxes@5.0.1": {
- "licenses": "ISC",
- "repository": "https://github.com/lddubeau/saxes",
- "publisher": "Louis-Dominique Dubeau",
- "email": "ldd@lddubeau.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/saxes",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/saxes/README.md"
- },
- "scheduler@0.20.2": {
+ "scheduler@0.23.0": {
"licenses": "MIT",
"repository": "https://github.com/facebook/react",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/scheduler",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/scheduler/LICENSE"
},
- "scheduler@0.23.0": {
- "licenses": "MIT",
- "repository": "https://github.com/facebook/react",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/react-test-renderer/node_modules/scheduler",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/react-test-renderer/node_modules/scheduler/LICENSE"
- },
"semver@5.7.1": {
"licenses": "ISC",
"repository": "https://github.com/npm/node-semver",
@@ -7678,10 +7702,10 @@
"semver@6.3.0": {
"licenses": "ISC",
"repository": "https://github.com/npm/node-semver",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/semver",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/semver/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/semver",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/semver/LICENSE"
},
- "semver@7.3.8": {
+ "semver@7.5.1": {
"licenses": "ISC",
"repository": "https://github.com/npm/node-semver",
"publisher": "GitHub Inc.",
@@ -7774,8 +7798,8 @@
"publisher": "Kevin Mårtensson",
"email": "kevinmartensson@gmail.com",
"url": "github.com/kevva",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/shebang-command",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/shebang-command/license"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/shebang-command",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/shebang-command/license"
},
"shebang-regex@1.0.0": {
"licenses": "MIT",
@@ -7792,10 +7816,10 @@
"publisher": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "sindresorhus.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/shebang-regex",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/shebang-regex/license"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/shebang-regex",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/shebang-regex/license"
},
- "shell-quote@1.7.4": {
+ "shell-quote@1.8.1": {
"licenses": "MIT",
"repository": "https://github.com/ljharb/shell-quote",
"publisher": "James Halliday",
@@ -7809,8 +7833,8 @@
"repository": "https://github.com/ljharb/side-channel",
"publisher": "Jordan Harband",
"email": "ljharb@gmail.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/side-channel",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/side-channel/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/side-channel",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/side-channel/LICENSE"
},
"signal-exit@3.0.7": {
"licenses": "ISC",
@@ -7820,13 +7844,6 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/signal-exit",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/signal-exit/LICENSE.txt"
},
- "simple-plist@1.3.1": {
- "licenses": "MIT",
- "repository": "https://github.com/wollardj/simple-plist",
- "publisher": "Joe Wollard",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/simple-plist",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/simple-plist/LICENSE"
- },
"simple-swizzle@0.2.2": {
"licenses": "MIT",
"repository": "https://github.com/qix-/node-simple-swizzle",
@@ -7899,6 +7916,12 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/source-map-resolve",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/source-map-resolve/LICENSE"
},
+ "source-map-support@0.5.13": {
+ "licenses": "MIT",
+ "repository": "https://github.com/evanw/node-source-map-support",
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/jest-runner/node_modules/source-map-support",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/jest-runner/node_modules/source-map-support/LICENSE.md"
+ },
"source-map-support@0.5.21": {
"licenses": "MIT",
"repository": "https://github.com/evanw/node-source-map-support",
@@ -7925,16 +7948,16 @@
"repository": "https://github.com/mozilla/source-map",
"publisher": "Nick Fitzgerald",
"email": "nfitzgerald@mozilla.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/source-map",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/source-map/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/source-map",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/source-map/LICENSE"
},
"source-map@0.7.4": {
"licenses": "BSD-3-Clause",
"repository": "https://github.com/mozilla/source-map",
"publisher": "Nick Fitzgerald",
"email": "nfitzgerald@mozilla.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/v8-to-istanbul/node_modules/source-map",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/v8-to-istanbul/node_modules/source-map/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/hermes-profile-transformer/node_modules/source-map",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/hermes-profile-transformer/node_modules/source-map/LICENSE"
},
"spdx-compare@1.0.0": {
"licenses": "MIT",
@@ -7945,12 +7968,9 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/license-checker/node_modules/spdx-compare",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/license-checker/node_modules/spdx-compare/LICENSE.md"
},
- "spdx-correct@3.1.1": {
+ "spdx-correct@3.2.0": {
"licenses": "Apache-2.0",
"repository": "https://github.com/jslicense/spdx-correct.js",
- "publisher": "Kyle E. Mitchell",
- "email": "kyle@kemitchell.com",
- "url": "https://kemitchell.com",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/license-checker/node_modules/spdx-correct",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/license-checker/node_modules/spdx-correct/LICENSE"
},
@@ -7970,7 +7990,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/license-checker/node_modules/spdx-expression-parse",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/license-checker/node_modules/spdx-expression-parse/LICENSE"
},
- "spdx-license-ids@3.0.12": {
+ "spdx-license-ids@3.0.13": {
"licenses": "CC0-1.0",
"repository": "https://github.com/jslicense/spdx-license-ids",
"publisher": "Shinnosuke Watanabe",
@@ -8051,8 +8071,8 @@
"publisher": "James Talmage",
"email": "james@talmage.io",
"url": "github.com/jamestalmage",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/stack-utils",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/stack-utils/LICENSE.md"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@types/jest/node_modules/stack-utils",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@types/jest/node_modules/stack-utils/LICENSE.md"
},
"stackframe@1.3.4": {
"licenses": "MIT",
@@ -8089,13 +8109,13 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/statuses",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/statuses/LICENSE"
},
- "stream-buffers@2.2.0": {
- "licenses": "Unlicense",
- "repository": "https://github.com/samcday/node-stream-buffer",
- "publisher": "Sam Day",
- "email": "me@samcday.com.au",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/stream-buffers",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/stream-buffers/README.md"
+ "stop-iteration-iterator@1.0.0": {
+ "licenses": "MIT",
+ "repository": "https://github.com/ljharb/stop-iteration-iterator",
+ "publisher": "Jordan Harband",
+ "email": "ljharb@gmail.com",
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/stop-iteration-iterator",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/stop-iteration-iterator/LICENSE"
},
"strict-uri-encode@2.0.0": {
"licenses": "MIT",
@@ -8123,6 +8143,14 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/string-length",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/string-length/license"
},
+ "string-natural-compare@3.0.1": {
+ "licenses": "MIT",
+ "repository": "https://github.com/nwoltman/string-natural-compare",
+ "publisher": "Nathan Woltman",
+ "email": "nwoltman@outlook.com",
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/string-natural-compare",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/string-natural-compare/LICENSE.txt"
+ },
"string-width@4.2.3": {
"licenses": "MIT",
"repository": "https://github.com/sindresorhus/string-width",
@@ -8140,21 +8168,30 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/string.prototype.matchall",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/string.prototype.matchall/LICENSE"
},
+ "string.prototype.trim@1.2.7": {
+ "licenses": "MIT",
+ "repository": "https://github.com/es-shims/String.prototype.trim",
+ "publisher": "Jordan Harband",
+ "email": "ljharb@gmail.com",
+ "url": "http://ljharb.codes",
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/string.prototype.trim",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/string.prototype.trim/LICENSE"
+ },
"string.prototype.trimend@1.0.6": {
"licenses": "MIT",
"repository": "https://github.com/es-shims/String.prototype.trimEnd",
"publisher": "Jordan Harband",
"email": "ljharb@gmail.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/string.prototype.trimend",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/string.prototype.trimend/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/string.prototype.trimend",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/string.prototype.trimend/LICENSE"
},
"string.prototype.trimstart@1.0.6": {
"licenses": "MIT",
"repository": "https://github.com/es-shims/String.prototype.trimStart",
"publisher": "Jordan Harband",
"email": "ljharb@gmail.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/string.prototype.trimstart",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/string.prototype.trimstart/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/string.prototype.trimstart",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/string.prototype.trimstart/LICENSE"
},
"string_decoder@1.1.1": {
"licenses": "MIT",
@@ -8174,8 +8211,8 @@
"publisher": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "sindresorhus.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/strip-ansi",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/strip-ansi/license"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@react-native-community/cli-doctor/node_modules/strip-ansi",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@react-native-community/cli-doctor/node_modules/strip-ansi/license"
},
"strip-ansi@6.0.1": {
"licenses": "MIT",
@@ -8183,8 +8220,8 @@
"publisher": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "sindresorhus.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/strip-ansi",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/strip-ansi/license"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/strip-ansi",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/strip-ansi/license"
},
"strip-bom@3.0.0": {
"licenses": "MIT",
@@ -8237,8 +8274,16 @@
"publisher": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "https://sindresorhus.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/strip-json-comments",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/strip-json-comments/license"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/strip-json-comments",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/strip-json-comments/license"
+ },
+ "strnum@1.0.5": {
+ "licenses": "MIT",
+ "repository": "https://github.com/NaturalIntelligence/strnum",
+ "publisher": "Amit Gupta",
+ "url": "https://amitkumargupta.work/",
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/strnum",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/strnum/LICENSE"
},
"sudo-prompt@9.2.1": {
"licenses": "MIT",
@@ -8262,8 +8307,8 @@
"publisher": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "sindresorhus.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/supports-color",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/supports-color/license"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/supports-color",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/supports-color/license"
},
"supports-color@8.1.1": {
"licenses": "MIT",
@@ -8274,15 +8319,6 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/jest-worker/node_modules/supports-color",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/jest-worker/node_modules/supports-color/license"
},
- "supports-hyperlinks@2.3.0": {
- "licenses": "MIT",
- "repository": "https://github.com/jamestalmage/supports-hyperlinks",
- "publisher": "James Talmage",
- "email": "james@talmage.io",
- "url": "github.com/jamestalmage",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/supports-hyperlinks",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/supports-hyperlinks/license"
- },
"supports-preserve-symlinks-flag@1.0.0": {
"licenses": "MIT",
"repository": "https://github.com/inspect-js/node-supports-preserve-symlinks-flag",
@@ -8307,14 +8343,6 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/svgo",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/svgo/LICENSE"
},
- "symbol-tree@3.2.4": {
- "licenses": "MIT",
- "repository": "https://github.com/jsdom/js-symbol-tree",
- "publisher": "Joris van der Wel",
- "email": "joris@jorisvanderwel.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/symbol-tree",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/symbol-tree/LICENSE"
- },
"temp-dir@1.0.0": {
"licenses": "MIT",
"repository": "https://github.com/sindresorhus/temp-dir",
@@ -8349,16 +8377,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/temp",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/temp/LICENSE"
},
- "terminal-link@2.1.1": {
- "licenses": "MIT",
- "repository": "https://github.com/sindresorhus/terminal-link",
- "publisher": "Sindre Sorhus",
- "email": "sindresorhus@gmail.com",
- "url": "sindresorhus.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/terminal-link",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/terminal-link/license"
- },
- "terser@5.15.1": {
+ "terser@5.17.7": {
"licenses": "BSD-2-Clause",
"repository": "https://github.com/terser/terser",
"publisher": "Mihai Bazon",
@@ -8390,22 +8409,15 @@
"publisher": "James Halliday",
"email": "mail@substack.net",
"url": "http://substack.net",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/text-table",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/text-table/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/text-table",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/text-table/LICENSE"
},
"throat@5.0.0": {
"licenses": "MIT",
"repository": "https://github.com/ForbesLindesay/throat",
"publisher": "ForbesLindesay",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/metro/node_modules/throat",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/metro/node_modules/throat/LICENSE"
- },
- "throat@6.0.1": {
- "licenses": "MIT",
- "repository": "https://github.com/ForbesLindesay/throat",
- "publisher": "ForbesLindesay",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/throat",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/throat/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/throat",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/throat/LICENSE"
},
"through2@2.0.5": {
"licenses": "MIT",
@@ -8464,8 +8476,8 @@
"repository": "https://github.com/micromatch/to-regex-range",
"publisher": "Jon Schlinkert",
"url": "https://github.com/jonschlinkert",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/sane/node_modules/to-regex-range",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/sane/node_modules/to-regex-range/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/jscodeshift/node_modules/to-regex-range",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/jscodeshift/node_modules/to-regex-range/LICENSE"
},
"to-regex-range@5.0.1": {
"licenses": "MIT",
@@ -8491,14 +8503,6 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/toidentifier",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/toidentifier/LICENSE"
},
- "tough-cookie@4.1.2": {
- "licenses": "BSD-3-Clause",
- "repository": "https://github.com/salesforce/tough-cookie",
- "publisher": "Jeremy Stashewsky",
- "email": "jstash@gmail.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/tough-cookie",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/tough-cookie/LICENSE"
- },
"tr46@0.0.3": {
"licenses": "MIT",
"repository": "https://github.com/Sebmaster/tr46.js",
@@ -8506,14 +8510,6 @@
"email": "npm@smayr.name",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/tr46"
},
- "tr46@2.1.0": {
- "licenses": "MIT",
- "repository": "https://github.com/jsdom/tr46",
- "publisher": "Sebastian Mayr",
- "email": "npm@smayr.name",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/tr46",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/tr46/LICENSE.md"
- },
"treeify@1.1.0": {
"licenses": "MIT",
"repository": "https://github.com/notatestuser/treeify",
@@ -8531,7 +8527,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/trim-newlines",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/trim-newlines/license"
},
- "ts-jest@27.1.5": {
+ "ts-jest@29.1.0": {
"licenses": "MIT",
"repository": "https://github.com/kulshekhar/ts-jest",
"publisher": "Kulshekhar Kabra",
@@ -8540,7 +8536,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/ts-jest",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/ts-jest/LICENSE.md"
},
- "tsconfig-paths@3.14.1": {
+ "tsconfig-paths@3.14.2": {
"licenses": "MIT",
"repository": "https://github.com/dividab/tsconfig-paths",
"publisher": "Jonas Kello",
@@ -8561,7 +8557,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/tslib",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/tslib/LICENSE.txt"
},
- "tslib@2.4.1": {
+ "tslib@2.5.3": {
"licenses": "0BSD",
"repository": "https://github.com/Microsoft/tslib",
"publisher": "Microsoft Corp.",
@@ -8575,21 +8571,13 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@typescript-eslint/eslint-plugin/node_modules/tsutils",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@typescript-eslint/eslint-plugin/node_modules/tsutils/LICENSE"
},
- "type-check@0.3.2": {
- "licenses": "MIT",
- "repository": "https://github.com/gkz/type-check",
- "publisher": "George Zahariev",
- "email": "z@georgezahariev.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/type-check",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/type-check/LICENSE"
- },
"type-check@0.4.0": {
"licenses": "MIT",
"repository": "https://github.com/gkz/type-check",
"publisher": "George Zahariev",
"email": "z@georgezahariev.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/type-check",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/type-check/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/type-check",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/type-check/LICENSE"
},
"type-detect@4.0.8": {
"licenses": "MIT",
@@ -8615,8 +8603,8 @@
"publisher": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "https://sindresorhus.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/type-fest",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/type-fest/license"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/type-fest",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/type-fest/license"
},
"type-fest@0.21.3": {
"licenses": "(MIT OR CC0-1.0)",
@@ -8654,14 +8642,13 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/meow/node_modules/read-pkg-up/node_modules/type-fest",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/meow/node_modules/read-pkg-up/node_modules/type-fest/license"
},
- "typedarray-to-buffer@3.1.5": {
+ "typed-array-length@1.0.4": {
"licenses": "MIT",
- "repository": "https://github.com/feross/typedarray-to-buffer",
- "publisher": "Feross Aboukhadijeh",
- "email": "feross@feross.org",
- "url": "http://feross.org/",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/typedarray-to-buffer",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/typedarray-to-buffer/LICENSE"
+ "repository": "https://github.com/inspect-js/typed-array-length",
+ "publisher": "Jordan Harband",
+ "email": "ljharb@gmail.com",
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/typed-array-length",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/typed-array-length/LICENSE"
},
"typedarray@0.0.6": {
"licenses": "MIT",
@@ -8672,7 +8659,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/typedarray",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/typedarray/LICENSE"
},
- "typescript@4.8.3": {
+ "typescript@4.8.4": {
"licenses": "Apache-2.0",
"repository": "https://github.com/Microsoft/TypeScript",
"publisher": "Microsoft Corp.",
@@ -8697,20 +8684,13 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/uglify-js",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/uglify-js/LICENSE"
},
- "ultron@1.0.2": {
- "licenses": "MIT",
- "repository": "https://github.com/unshiftio/ultron",
- "publisher": "Arnout Kazemier",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/ultron",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/ultron/LICENSE"
- },
"unbox-primitive@1.0.2": {
"licenses": "MIT",
"repository": "https://github.com/ljharb/unbox-primitive",
"publisher": "Jordan Harband",
"email": "ljharb@gmail.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/unbox-primitive",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/unbox-primitive/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/unbox-primitive",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/unbox-primitive/LICENSE"
},
"unicode-canonical-property-names-ecmascript@2.0.0": {
"licenses": "MIT",
@@ -8728,7 +8708,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/unicode-match-property-ecmascript",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@babel/preset-env/node_modules/unicode-match-property-ecmascript/LICENSE-MIT.txt"
},
- "unicode-match-property-value-ecmascript@2.0.0": {
+ "unicode-match-property-value-ecmascript@2.1.0": {
"licenses": "MIT",
"repository": "https://github.com/mathiasbynens/unicode-match-property-value-ecmascript",
"publisher": "Mathias Bynens",
@@ -8760,14 +8740,6 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/universalify",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/universalify/LICENSE"
},
- "universalify@0.2.0": {
- "licenses": "MIT",
- "repository": "https://github.com/RyanZim/universalify",
- "publisher": "Ryan Zimmerman",
- "email": "opensrc@ryanzim.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/universalify",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/universalify/LICENSE"
- },
"unpipe@1.0.0": {
"licenses": "MIT",
"repository": "https://github.com/stream-utils/unpipe",
@@ -8784,7 +8756,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/unset-value",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/unset-value/LICENSE"
},
- "update-browserslist-db@1.0.10": {
+ "update-browserslist-db@1.0.11": {
"licenses": "MIT",
"repository": "https://github.com/browserslist/update-db",
"publisher": "Andrey Sitnik",
@@ -8797,8 +8769,8 @@
"repository": "https://github.com/garycourt/uri-js",
"publisher": "Gary Court",
"email": "gary.court@gmail.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/uri-js",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/uri-js/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/uri-js",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/uri-js/LICENSE"
},
"urix@0.1.0": {
"licenses": "MIT",
@@ -8807,14 +8779,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/urix",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/urix/LICENSE"
},
- "url-parse@1.5.10": {
- "licenses": "MIT",
- "repository": "https://github.com/unshiftio/url-parse",
- "publisher": "Arnout Kazemier",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/url-parse",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/url-parse/LICENSE"
- },
- "use-latest-callback@0.1.5": {
+ "use-latest-callback@0.1.6": {
"licenses": "MIT",
"repository": "https://github.com/satya164/use-latest-callback",
"publisher": "Satyajit Sahoo",
@@ -8822,12 +8787,6 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/use-latest-callback",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/comms-app-react-native-videocall/node_modules/use-latest-callback/README.md"
},
- "use-subscription@1.8.0": {
- "licenses": "MIT",
- "repository": "https://github.com/facebook/react",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/use-subscription",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/use-subscription/LICENSE"
- },
"use-sync-external-store@1.2.0": {
"licenses": "MIT",
"repository": "https://github.com/facebook/react",
@@ -8872,7 +8831,7 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/uuid",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/uuid/LICENSE.md"
},
- "v8-to-istanbul@8.1.1": {
+ "v8-to-istanbul@9.1.0": {
"licenses": "ISC",
"repository": "https://github.com/istanbuljs/v8-to-istanbul",
"publisher": "Ben Coe",
@@ -8904,20 +8863,6 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/vlq",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/vlq/LICENSE"
},
- "w3c-hr-time@1.0.2": {
- "licenses": "MIT",
- "repository": "https://github.com/jsdom/w3c-hr-time",
- "publisher": "Timothy Gu",
- "email": "timothygu99@gmail.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/w3c-hr-time",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/w3c-hr-time/LICENSE.md"
- },
- "w3c-xmlserializer@2.0.0": {
- "licenses": "MIT",
- "repository": "https://github.com/jsdom/w3c-xmlserializer",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/w3c-xmlserializer",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/w3c-xmlserializer/LICENSE.md"
- },
"walker@1.0.8": {
"licenses": "Apache-2.0",
"repository": "https://github.com/daaku/nodejs-walker",
@@ -8950,48 +8895,12 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/webidl-conversions",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/webidl-conversions/LICENSE.md"
},
- "webidl-conversions@5.0.0": {
- "licenses": "BSD-2-Clause",
- "repository": "https://github.com/jsdom/webidl-conversions",
- "publisher": "Domenic Denicola",
- "email": "d@domenic.me",
- "url": "https://domenic.me/",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/domexception/node_modules/webidl-conversions",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/domexception/node_modules/webidl-conversions/LICENSE.md"
- },
- "webidl-conversions@6.1.0": {
- "licenses": "BSD-2-Clause",
- "repository": "https://github.com/jsdom/webidl-conversions",
- "publisher": "Domenic Denicola",
- "email": "d@domenic.me",
- "url": "https://domenic.me/",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/webidl-conversions",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/webidl-conversions/LICENSE.md"
- },
- "whatwg-encoding@1.0.5": {
- "licenses": "MIT",
- "repository": "https://github.com/jsdom/whatwg-encoding",
- "publisher": "Domenic Denicola",
- "email": "d@domenic.me",
- "url": "https://domenic.me/",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/whatwg-encoding",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/whatwg-encoding/LICENSE.txt"
- },
"whatwg-fetch@3.6.2": {
"licenses": "MIT",
"repository": "https://github.com/github/fetch",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/whatwg-fetch",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/whatwg-fetch/LICENSE"
},
- "whatwg-mimetype@2.3.0": {
- "licenses": "MIT",
- "repository": "https://github.com/jsdom/whatwg-mimetype",
- "publisher": "Domenic Denicola",
- "email": "d@domenic.me",
- "url": "https://domenic.me/",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/whatwg-mimetype",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/whatwg-mimetype/LICENSE.txt"
- },
"whatwg-url@5.0.0": {
"licenses": "MIT",
"repository": "https://github.com/jsdom/whatwg-url",
@@ -9000,29 +8909,38 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/whatwg-url",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/whatwg-url/LICENSE.txt"
},
- "whatwg-url@8.7.0": {
- "licenses": "MIT",
- "repository": "https://github.com/jsdom/whatwg-url",
- "publisher": "Sebastian Mayr",
- "email": "github@smayr.name",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/whatwg-url",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/whatwg-url/LICENSE.txt"
- },
"which-boxed-primitive@1.0.2": {
"licenses": "MIT",
"repository": "https://github.com/inspect-js/which-boxed-primitive",
"publisher": "Jordan Harband",
"email": "ljharb@gmail.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/which-boxed-primitive",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/which-boxed-primitive/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/which-boxed-primitive",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/which-boxed-primitive/LICENSE"
},
- "which-module@2.0.0": {
+ "which-collection@1.0.1": {
+ "licenses": "MIT",
+ "repository": "https://github.com/inspect-js/which-collection",
+ "publisher": "Jordan Harband",
+ "email": "ljharb@gmail.com",
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/which-collection",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/which-collection/LICENSE"
+ },
+ "which-module@2.0.1": {
"licenses": "ISC",
"repository": "https://github.com/nexdrew/which-module",
"publisher": "nexdrew",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/which-module",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/which-module/LICENSE"
},
+ "which-typed-array@1.1.9": {
+ "licenses": "MIT",
+ "repository": "https://github.com/inspect-js/which-typed-array",
+ "publisher": "Jordan Harband",
+ "email": "ljharb@gmail.com",
+ "url": "http://ljharb.codes",
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/which-typed-array",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-jsx-a11y/node_modules/which-typed-array/LICENSE"
+ },
"which@1.3.1": {
"licenses": "ISC",
"repository": "https://github.com/isaacs/node-which",
@@ -9038,16 +8956,16 @@
"publisher": "Isaac Z. Schlueter",
"email": "i@izs.me",
"url": "http://blog.izs.me",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/which",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/which/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/which",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/which/LICENSE"
},
"word-wrap@1.2.3": {
"licenses": "MIT",
"repository": "https://github.com/jonschlinkert/word-wrap",
"publisher": "Jon Schlinkert",
"url": "https://github.com/jonschlinkert",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/word-wrap",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/word-wrap/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/word-wrap",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/word-wrap/LICENSE"
},
"wordwrap@1.0.0": {
"licenses": "MIT",
@@ -9094,23 +9012,12 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/write-file-atomic",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/write-file-atomic/LICENSE"
},
- "write-file-atomic@3.0.3": {
+ "write-file-atomic@4.0.2": {
"licenses": "ISC",
"repository": "https://github.com/npm/write-file-atomic",
- "publisher": "Rebecca Turner",
- "email": "me@re-becca.org",
- "url": "http://re-becca.org",
+ "publisher": "GitHub Inc.",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/write-file-atomic",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/write-file-atomic/LICENSE"
- },
- "ws@1.1.5": {
- "licenses": "MIT",
- "repository": "https://github.com/websockets/ws",
- "publisher": "Einar Otto Stangvik",
- "email": "einaros@gmail.com",
- "url": "http://2x.io",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@react-native-community/cli-server-api/node_modules/ws",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@react-native-community/cli-server-api/node_modules/ws/README.md"
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/write-file-atomic/LICENSE.md"
},
"ws@6.2.2": {
"licenses": "MIT",
@@ -9127,49 +9034,8 @@
"publisher": "Einar Otto Stangvik",
"email": "einaros@gmail.com",
"url": "http://2x.io",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/ws",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/ws/LICENSE"
- },
- "xcode@2.1.0": {
- "licenses": "Apache-2.0",
- "repository": "https://github.com/apache/cordova-node-xcode",
- "publisher": "Apache Software Foundation",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/xcode",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/xcode/LICENSE"
- },
- "xml-name-validator@3.0.0": {
- "licenses": "Apache-2.0",
- "repository": "https://github.com/jsdom/xml-name-validator",
- "publisher": "Domenic Denicola",
- "email": "d@domenic.me",
- "url": "https://domenic.me/",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/xml-name-validator",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/xml-name-validator/LICENSE.txt"
- },
- "xmlbuilder@15.1.1": {
- "licenses": "MIT",
- "repository": "https://github.com/oozcitak/xmlbuilder-js",
- "publisher": "Ozgur Ozcitak",
- "email": "oozcitak@gmail.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/xmlbuilder",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/xmlbuilder/LICENSE"
- },
- "xmlchars@2.2.0": {
- "licenses": "MIT",
- "repository": "https://github.com/lddubeau/xmlchars",
- "publisher": "Louis-Dominique Dubeau",
- "email": "ldd@lddubeau.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/xmlchars",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/xmlchars/LICENSE"
- },
- "xmldoc@1.2.0": {
- "licenses": "MIT",
- "repository": "https://github.com/nfarina/xmldoc",
- "publisher": "Nick Farina",
- "email": "nfarina@gmail.com",
- "url": "http://nfarina.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/xmldoc",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/xmldoc/LICENSE"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@react-native-community/cli-server-api/node_modules/ws",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/@react-native-community/cli-server-api/node_modules/ws/LICENSE"
},
"xtend@4.0.2": {
"licenses": "MIT",
@@ -9195,6 +9061,15 @@
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/y18n",
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/y18n/LICENSE"
},
+ "yallist@3.1.1": {
+ "licenses": "ISC",
+ "repository": "https://github.com/isaacs/yallist",
+ "publisher": "Isaac Z. Schlueter",
+ "email": "i@izs.me",
+ "url": "http://blog.izs.me/",
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/yallist",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/babel-jest/node_modules/yallist/LICENSE"
+ },
"yallist@4.0.0": {
"licenses": "ISC",
"repository": "https://github.com/isaacs/yallist",
@@ -9221,6 +9096,14 @@
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/logkitty/node_modules/yargs-parser/LICENSE.txt"
},
"yargs-parser@20.2.9": {
+ "licenses": "ISC",
+ "repository": "https://github.com/yargs/yargs-parser",
+ "publisher": "Ben Coe",
+ "email": "ben@npmjs.com",
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/meow/node_modules/yargs-parser",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/meow/node_modules/yargs-parser/LICENSE.txt"
+ },
+ "yargs-parser@21.1.1": {
"licenses": "ISC",
"repository": "https://github.com/yargs/yargs-parser",
"publisher": "Ben Coe",
@@ -9235,6 +9118,12 @@
"licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/logkitty/node_modules/yargs/LICENSE"
},
"yargs@16.2.0": {
+ "licenses": "MIT",
+ "repository": "https://github.com/yargs/yargs",
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/get-pkg-repo/node_modules/yargs",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-react-native/node_modules/get-pkg-repo/node_modules/yargs/LICENSE"
+ },
+ "yargs@17.7.2": {
"licenses": "MIT",
"repository": "https://github.com/yargs/yargs",
"path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/@dolbyio/comms-uikit-common/node_modules/yargs",
@@ -9246,8 +9135,8 @@
"publisher": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "https://sindresorhus.com",
- "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/yocto-queue",
- "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-react/node_modules/yocto-queue/license"
+ "path": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/yocto-queue",
+ "licenseFile": "/home/runner/work/comms-app-react-native-videocall/comms-app-react-native-videocall/tmp_/node_modules/eslint-plugin-prettier/node_modules/yocto-queue/license"
}
}
diff --git a/yarn.lock b/yarn.lock
index 2b1c170..793f8ed 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -2,14 +2,6 @@
# yarn lockfile v1
-"@ampproject/remapping@^2.1.0":
- version "2.2.0"
- resolved "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.2.0.tgz#56c133824780de3174aed5ab6834f3026790154d"
- integrity sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==
- dependencies:
- "@jridgewell/gen-mapping" "^0.1.0"
- "@jridgewell/trace-mapping" "^0.3.9"
-
"@ampproject/remapping@^2.2.0":
version "2.2.1"
resolved "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.2.1.tgz#99e8e11851128b8702cd57c33684f1d0f260b630"
@@ -18,87 +10,54 @@
"@jridgewell/gen-mapping" "^0.3.0"
"@jridgewell/trace-mapping" "^0.3.9"
-"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.4", "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.18.6":
- version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.18.6.tgz#3b25d38c89600baa2dcc219edfa88a74eb2c427a"
- integrity sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==
- dependencies:
- "@babel/highlight" "^7.18.6"
-
-"@babel/code-frame@^7.21.4":
+"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.4", "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.21.4":
version "7.21.4"
resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.21.4.tgz#d0fa9e4413aca81f2b23b9442797bda1826edb39"
integrity sha512-LYvhNKfwWSPpocw8GI7gpK2nq3HSDuEPC/uSYaALSJu9xjsalaaYFOq0Pwt5KmVqwEbZlDu81aLXwBOmD/Fv9g==
dependencies:
"@babel/highlight" "^7.18.6"
-"@babel/compat-data@^7.17.7", "@babel/compat-data@^7.20.0", "@babel/compat-data@^7.20.1":
- version "7.20.1"
- resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.20.1.tgz#f2e6ef7790d8c8dbf03d379502dcc246dcce0b30"
- integrity sha512-EWZ4mE2diW3QALKvDMiXnbZpRvlj+nayZ112nK93SnhqOtpdsbVD4W+2tEoT3YNBAG9RBR0ISY758ZkOgsn6pQ==
-
-"@babel/compat-data@^7.21.5":
- version "7.21.7"
- resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.21.7.tgz#61caffb60776e49a57ba61a88f02bedd8714f6bc"
- integrity sha512-KYMqFYTaenzMK4yUtf4EW9wc4N9ef80FsbMtkwool5zpwl4YrT1SdWYSTRcT94KO4hannogdS+LxY7L+arP3gA==
-
-"@babel/core@^7.1.0", "@babel/core@^7.1.6", "@babel/core@^7.12.3", "@babel/core@^7.12.9", "@babel/core@^7.14.0", "@babel/core@^7.17.7", "@babel/core@^7.19.6", "@babel/core@^7.7.2", "@babel/core@^7.8.0":
- version "7.20.2"
- resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.20.2.tgz#8dc9b1620a673f92d3624bd926dc49a52cf25b92"
- integrity sha512-w7DbG8DtMrJcFOi4VrLm+8QM4az8Mo+PuLBKLp2zrYRCow8W/f9xiXm5sN53C8HksCyDQwCKha9JiDoIyPjT2g==
- dependencies:
- "@ampproject/remapping" "^2.1.0"
- "@babel/code-frame" "^7.18.6"
- "@babel/generator" "^7.20.2"
- "@babel/helper-compilation-targets" "^7.20.0"
- "@babel/helper-module-transforms" "^7.20.2"
- "@babel/helpers" "^7.20.1"
- "@babel/parser" "^7.20.2"
- "@babel/template" "^7.18.10"
- "@babel/traverse" "^7.20.1"
- "@babel/types" "^7.20.2"
- convert-source-map "^1.7.0"
- debug "^4.1.0"
- gensync "^1.0.0-beta.2"
- json5 "^2.2.1"
- semver "^6.3.0"
+"@babel/compat-data@^7.17.7", "@babel/compat-data@^7.20.5", "@babel/compat-data@^7.22.0", "@babel/compat-data@^7.22.3":
+ version "7.22.3"
+ resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.22.3.tgz#cd502a6a0b6e37d7ad72ce7e71a7160a3ae36f7e"
+ integrity sha512-aNtko9OPOwVESUFp3MZfD8Uzxl7JzSeJpd7npIoxCasU37PFbAQRpKglkaKwlHOyeJdrREpo8TW8ldrkYWwvIQ==
-"@babel/core@^7.11.6":
- version "7.21.8"
- resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.21.8.tgz#2a8c7f0f53d60100ba4c32470ba0281c92aa9aa4"
- integrity sha512-YeM22Sondbo523Sz0+CirSPnbj9bG3P0CdHcBZdqUuaeOaYEFbOLoGU7lebvGP6P5J/WE9wOn7u7C4J9HvS1xQ==
+"@babel/core@^7.11.6", "@babel/core@^7.12.3", "@babel/core@^7.13.16", "@babel/core@^7.14.0", "@babel/core@^7.19.6", "@babel/core@^7.20.0":
+ version "7.22.1"
+ resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.22.1.tgz#5de51c5206f4c6f5533562838337a603c1033cfd"
+ integrity sha512-Hkqu7J4ynysSXxmAahpN1jjRwVJ+NdpraFLIWflgjpVob3KNyK3/tIUc7Q7szed8WMp0JNa7Qtd1E9Oo22F9gA==
dependencies:
"@ampproject/remapping" "^2.2.0"
"@babel/code-frame" "^7.21.4"
- "@babel/generator" "^7.21.5"
- "@babel/helper-compilation-targets" "^7.21.5"
- "@babel/helper-module-transforms" "^7.21.5"
- "@babel/helpers" "^7.21.5"
- "@babel/parser" "^7.21.8"
- "@babel/template" "^7.20.7"
- "@babel/traverse" "^7.21.5"
- "@babel/types" "^7.21.5"
+ "@babel/generator" "^7.22.0"
+ "@babel/helper-compilation-targets" "^7.22.1"
+ "@babel/helper-module-transforms" "^7.22.1"
+ "@babel/helpers" "^7.22.0"
+ "@babel/parser" "^7.22.0"
+ "@babel/template" "^7.21.9"
+ "@babel/traverse" "^7.22.1"
+ "@babel/types" "^7.22.0"
convert-source-map "^1.7.0"
debug "^4.1.0"
gensync "^1.0.0-beta.2"
json5 "^2.2.2"
semver "^6.3.0"
-"@babel/generator@^7.14.0", "@babel/generator@^7.20.1", "@babel/generator@^7.20.2", "@babel/generator@^7.7.2":
- version "7.20.4"
- resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.20.4.tgz#4d9f8f0c30be75fd90a0562099a26e5839602ab8"
- integrity sha512-luCf7yk/cm7yab6CAW1aiFnmEfBJplb/JojV56MYEK7ziWfGmFlTfmL9Ehwfy4gFhbjBfWO1wj7/TuSbVNEEtA==
+"@babel/eslint-parser@^7.18.2":
+ version "7.21.8"
+ resolved "https://registry.yarnpkg.com/@babel/eslint-parser/-/eslint-parser-7.21.8.tgz#59fb6fc4f3b017ab86987c076226ceef7b2b2ef2"
+ integrity sha512-HLhI+2q+BP3sf78mFUZNCGc10KEmoUqtUT1OCdMZsN+qr4qFeLUod62/zAnF3jNQstwyasDkZnVXwfK2Bml7MQ==
dependencies:
- "@babel/types" "^7.20.2"
- "@jridgewell/gen-mapping" "^0.3.2"
- jsesc "^2.5.1"
+ "@nicolo-ribaudo/eslint-scope-5-internals" "5.1.1-v1"
+ eslint-visitor-keys "^2.1.0"
+ semver "^6.3.0"
-"@babel/generator@^7.21.5":
- version "7.21.5"
- resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.21.5.tgz#c0c0e5449504c7b7de8236d99338c3e2a340745f"
- integrity sha512-SrKK/sRv8GesIW1bDagf9cCG38IOMYZusoe1dfg0D8aiUe3Amvoj1QtjTPAWcfrZFvIwlleLb0gxzQidL9w14w==
+"@babel/generator@^7.20.0", "@babel/generator@^7.22.0", "@babel/generator@^7.22.3", "@babel/generator@^7.7.2":
+ version "7.22.3"
+ resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.22.3.tgz#0ff675d2edb93d7596c5f6728b52615cfc0df01e"
+ integrity sha512-C17MW4wlk//ES/CJDL51kPNwl+qiBQyN7b9SKyVp11BLGFeSPoVaHrv+MNt8jwQFhQWowW88z1eeBx3pFz9v8A==
dependencies:
- "@babel/types" "^7.21.5"
+ "@babel/types" "^7.22.3"
"@jridgewell/gen-mapping" "^0.3.2"
"@jridgewell/trace-mapping" "^0.3.17"
jsesc "^2.5.1"
@@ -111,59 +70,51 @@
"@babel/types" "^7.18.6"
"@babel/helper-builder-binary-assignment-operator-visitor@^7.18.6":
- version "7.18.9"
- resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.18.9.tgz#acd4edfd7a566d1d51ea975dff38fd52906981bb"
- integrity sha512-yFQ0YCHoIqarl8BCRwBL8ulYUaZpz3bNsA7oFepAzee+8/+ImtADXNOmO5vJvsPff3qi+hvpkY/NYBTrBQgdNw==
- dependencies:
- "@babel/helper-explode-assignable-expression" "^7.18.6"
- "@babel/types" "^7.18.9"
-
-"@babel/helper-compilation-targets@^7.17.7", "@babel/helper-compilation-targets@^7.18.9", "@babel/helper-compilation-targets@^7.20.0":
- version "7.20.0"
- resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.20.0.tgz#6bf5374d424e1b3922822f1d9bdaa43b1a139d0a"
- integrity sha512-0jp//vDGp9e8hZzBc6N/KwA5ZK3Wsm/pfm4CrY7vzegkVxc65SgSn6wYOnwHe9Js9HRQ1YTCKLGPzDtaS3RoLQ==
+ version "7.22.3"
+ resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.22.3.tgz#c9b83d1ba74e163e023f008a3d3204588a7ceb60"
+ integrity sha512-ahEoxgqNoYXm0k22TvOke48i1PkavGu0qGCmcq9ugi6gnmvKNaMjKBSrZTnWUi1CFEeNAUiVba0Wtzm03aSkJg==
dependencies:
- "@babel/compat-data" "^7.20.0"
- "@babel/helper-validator-option" "^7.18.6"
- browserslist "^4.21.3"
- semver "^6.3.0"
+ "@babel/types" "^7.22.3"
-"@babel/helper-compilation-targets@^7.21.5":
- version "7.21.5"
- resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.21.5.tgz#631e6cc784c7b660417421349aac304c94115366"
- integrity sha512-1RkbFGUKex4lvsB9yhIfWltJM5cZKUftB2eNajaDv3dCMEp49iBG0K14uH8NnX9IPux2+mK7JGEOB0jn48/J6w==
+"@babel/helper-compilation-targets@^7.17.7", "@babel/helper-compilation-targets@^7.18.9", "@babel/helper-compilation-targets@^7.20.7", "@babel/helper-compilation-targets@^7.22.1":
+ version "7.22.1"
+ resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.1.tgz#bfcd6b7321ffebe33290d68550e2c9d7eb7c7a58"
+ integrity sha512-Rqx13UM3yVB5q0D/KwQ8+SPfX/+Rnsy1Lw1k/UwOC4KC6qrzIQoY3lYnBu5EHKBlEHHcj0M0W8ltPSkD8rqfsQ==
dependencies:
- "@babel/compat-data" "^7.21.5"
+ "@babel/compat-data" "^7.22.0"
"@babel/helper-validator-option" "^7.21.0"
browserslist "^4.21.3"
lru-cache "^5.1.1"
semver "^6.3.0"
-"@babel/helper-create-class-features-plugin@^7.18.6", "@babel/helper-create-class-features-plugin@^7.20.2":
- version "7.20.2"
- resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.20.2.tgz#3c08a5b5417c7f07b5cf3dfb6dc79cbec682e8c2"
- integrity sha512-k22GoYRAHPYr9I+Gvy2ZQlAe5mGy8BqWst2wRt8cwIufWTxrsVshhIBvYNqC80N0GSFWTsqRVexOtfzlgOEDvA==
+"@babel/helper-create-class-features-plugin@^7.18.6", "@babel/helper-create-class-features-plugin@^7.21.0", "@babel/helper-create-class-features-plugin@^7.22.1":
+ version "7.22.1"
+ resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.22.1.tgz#ae3de70586cc757082ae3eba57240d42f468c41b"
+ integrity sha512-SowrZ9BWzYFgzUMwUmowbPSGu6CXL5MSuuCkG3bejahSpSymioPmuLdhPxNOc9MjuNGjy7M/HaXvJ8G82Lywlw==
dependencies:
"@babel/helper-annotate-as-pure" "^7.18.6"
- "@babel/helper-environment-visitor" "^7.18.9"
- "@babel/helper-function-name" "^7.19.0"
- "@babel/helper-member-expression-to-functions" "^7.18.9"
+ "@babel/helper-environment-visitor" "^7.22.1"
+ "@babel/helper-function-name" "^7.21.0"
+ "@babel/helper-member-expression-to-functions" "^7.22.0"
"@babel/helper-optimise-call-expression" "^7.18.6"
- "@babel/helper-replace-supers" "^7.19.1"
+ "@babel/helper-replace-supers" "^7.22.1"
+ "@babel/helper-skip-transparent-expression-wrappers" "^7.20.0"
"@babel/helper-split-export-declaration" "^7.18.6"
+ semver "^6.3.0"
-"@babel/helper-create-regexp-features-plugin@^7.18.6", "@babel/helper-create-regexp-features-plugin@^7.19.0":
- version "7.19.0"
- resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.19.0.tgz#7976aca61c0984202baca73d84e2337a5424a41b"
- integrity sha512-htnV+mHX32DF81amCDrwIDr8nrp1PTm+3wfBN9/v8QJOLEioOCOG7qNyq0nHeFiWbT3Eb7gsPwEmV64UCQ1jzw==
+"@babel/helper-create-regexp-features-plugin@^7.18.6", "@babel/helper-create-regexp-features-plugin@^7.22.1":
+ version "7.22.1"
+ resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.22.1.tgz#a7ed9a8488b45b467fca353cd1a44dc5f0cf5c70"
+ integrity sha512-WWjdnfR3LPIe+0EY8td7WmjhytxXtjKAEpnAxun/hkNiyOaPlvGK+NZaBFIdi9ndYV3Gav7BpFvtUwnaJlwi1w==
dependencies:
"@babel/helper-annotate-as-pure" "^7.18.6"
- regexpu-core "^5.1.0"
+ regexpu-core "^5.3.1"
+ semver "^6.3.0"
-"@babel/helper-define-polyfill-provider@^0.3.3":
- version "0.3.3"
- resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.3.tgz#8612e55be5d51f0cd1f36b4a5a83924e89884b7a"
- integrity sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==
+"@babel/helper-define-polyfill-provider@^0.4.0":
+ version "0.4.0"
+ resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.4.0.tgz#487053f103110f25b9755c5980e031e93ced24d8"
+ integrity sha512-RnanLx5ETe6aybRi1cO/edaRH+bNYWaryCEmjDDYyNr4wnSzyOp8T0dWipmqVHKEY3AbVKUom50AKSlj1zmKbg==
dependencies:
"@babel/helper-compilation-targets" "^7.17.7"
"@babel/helper-plugin-utils" "^7.16.7"
@@ -172,32 +123,12 @@
resolve "^1.14.2"
semver "^6.1.2"
-"@babel/helper-environment-visitor@^7.18.9":
- version "7.18.9"
- resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz#0c0cee9b35d2ca190478756865bb3528422f51be"
- integrity sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==
-
-"@babel/helper-environment-visitor@^7.21.5":
- version "7.21.5"
- resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.21.5.tgz#c769afefd41d171836f7cb63e295bedf689d48ba"
- integrity sha512-IYl4gZ3ETsWocUWgsFZLM5i1BYx9SoemminVEXadgLBa9TdeorzgLKm8wWLA6J1N/kT3Kch8XIk1laNzYoHKvQ==
+"@babel/helper-environment-visitor@^7.18.9", "@babel/helper-environment-visitor@^7.22.1":
+ version "7.22.1"
+ resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.1.tgz#ac3a56dbada59ed969d712cf527bd8271fe3eba8"
+ integrity sha512-Z2tgopurB/kTbidvzeBrc2To3PUP/9i5MUe+fU6QJCQDyPwSH2oRapkLw3KGECDYSjhQZCNxEvNvZlLw8JjGwA==
-"@babel/helper-explode-assignable-expression@^7.18.6":
- version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.18.6.tgz#41f8228ef0a6f1a036b8dfdfec7ce94f9a6bc096"
- integrity sha512-eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg==
- dependencies:
- "@babel/types" "^7.18.6"
-
-"@babel/helper-function-name@^7.18.9", "@babel/helper-function-name@^7.19.0":
- version "7.19.0"
- resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.19.0.tgz#941574ed5390682e872e52d3f38ce9d1bef4648c"
- integrity sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w==
- dependencies:
- "@babel/template" "^7.18.10"
- "@babel/types" "^7.19.0"
-
-"@babel/helper-function-name@^7.21.0":
+"@babel/helper-function-name@^7.18.9", "@babel/helper-function-name@^7.19.0", "@babel/helper-function-name@^7.21.0":
version "7.21.0"
resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.21.0.tgz#d552829b10ea9f120969304023cd0645fa00b1b4"
integrity sha512-HfK1aMRanKHpxemaY2gqBmL04iAPOPRj7DxtNbiDOrJK+gdwkiNRVpCpUJYbUT+aZyemKN8brqTOxzCaG6ExRg==
@@ -212,54 +143,33 @@
dependencies:
"@babel/types" "^7.18.6"
-"@babel/helper-member-expression-to-functions@^7.18.9":
- version "7.18.9"
- resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.18.9.tgz#1531661e8375af843ad37ac692c132841e2fd815"
- integrity sha512-RxifAh2ZoVU67PyKIO4AMi1wTenGfMR/O/ae0CCRqwgBAt5v7xjdtRw7UoSbsreKrQn5t7r89eruK/9JjYHuDg==
- dependencies:
- "@babel/types" "^7.18.9"
-
-"@babel/helper-module-imports@^7.18.6":
- version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz#1e3ebdbbd08aad1437b428c50204db13c5a3ca6e"
- integrity sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==
+"@babel/helper-member-expression-to-functions@^7.22.0":
+ version "7.22.3"
+ resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.22.3.tgz#4b77a12c1b4b8e9e28736ed47d8b91f00976911f"
+ integrity sha512-Gl7sK04b/2WOb6OPVeNy9eFKeD3L6++CzL3ykPOWqTn08xgYYK0wz4TUh2feIImDXxcVW3/9WQ1NMKY66/jfZA==
dependencies:
- "@babel/types" "^7.18.6"
+ "@babel/types" "^7.22.3"
-"@babel/helper-module-imports@^7.21.4":
+"@babel/helper-module-imports@^7.18.6", "@babel/helper-module-imports@^7.21.4":
version "7.21.4"
resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.21.4.tgz#ac88b2f76093637489e718a90cec6cf8a9b029af"
integrity sha512-orajc5T2PsRYUN3ZryCEFeMDYwyw09c/pZeaQEZPH0MpKzSvn3e0uXsDBu3k03VI+9DBiRo+l22BfKTpKwa/Wg==
dependencies:
"@babel/types" "^7.21.4"
-"@babel/helper-module-transforms@^7.18.6", "@babel/helper-module-transforms@^7.19.6", "@babel/helper-module-transforms@^7.20.2":
- version "7.20.2"
- resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.20.2.tgz#ac53da669501edd37e658602a21ba14c08748712"
- integrity sha512-zvBKyJXRbmK07XhMuujYoJ48B5yvvmM6+wcpv6Ivj4Yg6qO7NOZOSnvZN9CRl1zz1Z4cKf8YejmCMh8clOoOeA==
+"@babel/helper-module-transforms@^7.18.6", "@babel/helper-module-transforms@^7.20.11", "@babel/helper-module-transforms@^7.21.5", "@babel/helper-module-transforms@^7.22.1":
+ version "7.22.1"
+ resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.22.1.tgz#e0cad47fedcf3cae83c11021696376e2d5a50c63"
+ integrity sha512-dxAe9E7ySDGbQdCVOY/4+UcD8M9ZFqZcZhSPsPacvCG4M+9lwtDDQfI2EoaSvmf7W/8yCBkGU0m7Pvt1ru3UZw==
dependencies:
- "@babel/helper-environment-visitor" "^7.18.9"
- "@babel/helper-module-imports" "^7.18.6"
- "@babel/helper-simple-access" "^7.20.2"
- "@babel/helper-split-export-declaration" "^7.18.6"
- "@babel/helper-validator-identifier" "^7.19.1"
- "@babel/template" "^7.18.10"
- "@babel/traverse" "^7.20.1"
- "@babel/types" "^7.20.2"
-
-"@babel/helper-module-transforms@^7.21.5":
- version "7.21.5"
- resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.21.5.tgz#d937c82e9af68d31ab49039136a222b17ac0b420"
- integrity sha512-bI2Z9zBGY2q5yMHoBvJ2a9iX3ZOAzJPm7Q8Yz6YeoUjU/Cvhmi2G4QyTNyPBqqXSgTjUxRg3L0xV45HvkNWWBw==
- dependencies:
- "@babel/helper-environment-visitor" "^7.21.5"
+ "@babel/helper-environment-visitor" "^7.22.1"
"@babel/helper-module-imports" "^7.21.4"
"@babel/helper-simple-access" "^7.21.5"
"@babel/helper-split-export-declaration" "^7.18.6"
"@babel/helper-validator-identifier" "^7.19.1"
- "@babel/template" "^7.20.7"
- "@babel/traverse" "^7.21.5"
- "@babel/types" "^7.21.5"
+ "@babel/template" "^7.21.9"
+ "@babel/traverse" "^7.22.1"
+ "@babel/types" "^7.22.0"
"@babel/helper-optimise-call-expression@^7.18.6":
version "7.18.6"
@@ -268,12 +178,12 @@
dependencies:
"@babel/types" "^7.18.6"
-"@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.14.5", "@babel/helper-plugin-utils@^7.16.7", "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.18.9", "@babel/helper-plugin-utils@^7.19.0", "@babel/helper-plugin-utils@^7.20.2", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3":
- version "7.20.2"
- resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz#d1b9000752b18d0877cff85a5c376ce5c3121629"
- integrity sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==
+"@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.14.5", "@babel/helper-plugin-utils@^7.16.7", "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.18.9", "@babel/helper-plugin-utils@^7.19.0", "@babel/helper-plugin-utils@^7.20.2", "@babel/helper-plugin-utils@^7.21.5", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3":
+ version "7.21.5"
+ resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.21.5.tgz#345f2377d05a720a4e5ecfa39cbf4474a4daed56"
+ integrity sha512-0WDaIlXKOX/3KfBK/dwP1oQGiPh6rjMkT7HIRv7i5RR2VUMwrx5ZL0dwBkKx7+SW1zwNdgjHd34IMk5ZjTeHVg==
-"@babel/helper-remap-async-to-generator@^7.18.6", "@babel/helper-remap-async-to-generator@^7.18.9":
+"@babel/helper-remap-async-to-generator@^7.18.9":
version "7.18.9"
resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.18.9.tgz#997458a0e3357080e54e1d79ec347f8a8cd28519"
integrity sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==
@@ -283,23 +193,17 @@
"@babel/helper-wrap-function" "^7.18.9"
"@babel/types" "^7.18.9"
-"@babel/helper-replace-supers@^7.18.6", "@babel/helper-replace-supers@^7.19.1":
- version "7.19.1"
- resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.19.1.tgz#e1592a9b4b368aa6bdb8784a711e0bcbf0612b78"
- integrity sha512-T7ahH7wV0Hfs46SFh5Jz3s0B6+o8g3c+7TMxu7xKfmHikg7EAZ3I2Qk9LFhjxXq8sL7UkP5JflezNwoZa8WvWw==
+"@babel/helper-replace-supers@^7.18.6", "@babel/helper-replace-supers@^7.20.7", "@babel/helper-replace-supers@^7.22.1":
+ version "7.22.1"
+ resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.22.1.tgz#38cf6e56f7dc614af63a21b45565dd623f0fdc95"
+ integrity sha512-ut4qrkE4AuSfrwHSps51ekR1ZY/ygrP1tp0WFm8oVq6nzc/hvfV/22JylndIbsf2U2M9LOMwiSddr6y+78j+OQ==
dependencies:
- "@babel/helper-environment-visitor" "^7.18.9"
- "@babel/helper-member-expression-to-functions" "^7.18.9"
+ "@babel/helper-environment-visitor" "^7.22.1"
+ "@babel/helper-member-expression-to-functions" "^7.22.0"
"@babel/helper-optimise-call-expression" "^7.18.6"
- "@babel/traverse" "^7.19.1"
- "@babel/types" "^7.19.0"
-
-"@babel/helper-simple-access@^7.19.4", "@babel/helper-simple-access@^7.20.2":
- version "7.20.2"
- resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.20.2.tgz#0ab452687fe0c2cfb1e2b9e0015de07fc2d62dd9"
- integrity sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==
- dependencies:
- "@babel/types" "^7.20.2"
+ "@babel/template" "^7.21.9"
+ "@babel/traverse" "^7.22.1"
+ "@babel/types" "^7.22.0"
"@babel/helper-simple-access@^7.21.5":
version "7.21.5"
@@ -308,7 +212,7 @@
dependencies:
"@babel/types" "^7.21.5"
-"@babel/helper-skip-transparent-expression-wrappers@^7.18.9":
+"@babel/helper-skip-transparent-expression-wrappers@^7.20.0":
version "7.20.0"
resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.20.0.tgz#fbe4c52f60518cab8140d77101f0e63a8a230684"
integrity sha512-5y1JYeNKfvnT8sZcK9DVRtpTbGiomYIHviSP3OQWmDPU3DeH4a1ZlT/N2lyQ5P8egjcRaT/Y9aNqUxK0WsnIIg==
@@ -322,11 +226,6 @@
dependencies:
"@babel/types" "^7.18.6"
-"@babel/helper-string-parser@^7.19.4":
- version "7.19.4"
- resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.19.4.tgz#38d3acb654b4701a9b77fb0615a96f775c3a9e63"
- integrity sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==
-
"@babel/helper-string-parser@^7.21.5":
version "7.21.5"
resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.21.5.tgz#2b3eea65443c6bdc31c22d037c65f6d323b6b2bd"
@@ -337,43 +236,29 @@
resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz#7eea834cf32901ffdc1a7ee555e2f9c27e249ca2"
integrity sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==
-"@babel/helper-validator-option@^7.18.6":
- version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.18.6.tgz#bf0d2b5a509b1f336099e4ff36e1a63aa5db4db8"
- integrity sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==
-
"@babel/helper-validator-option@^7.21.0":
version "7.21.0"
resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.21.0.tgz#8224c7e13ace4bafdc4004da2cf064ef42673180"
integrity sha512-rmL/B8/f0mKS2baE9ZpyTcTavvEuWhTTW8amjzXNvYG4AwBsqTLikfXsEofsJEfKHf+HQVQbFOHy6o+4cnC/fQ==
"@babel/helper-wrap-function@^7.18.9":
- version "7.19.0"
- resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.19.0.tgz#89f18335cff1152373222f76a4b37799636ae8b1"
- integrity sha512-txX8aN8CZyYGTwcLhlk87KRqncAzhh5TpQamZUa0/u3an36NtDpUP6bQgBCBcLeBs09R/OwQu3OjK0k/HwfNDg==
+ version "7.20.5"
+ resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.20.5.tgz#75e2d84d499a0ab3b31c33bcfe59d6b8a45f62e3"
+ integrity sha512-bYMxIWK5mh+TgXGVqAtnu5Yn1un+v8DDZtqyzKRLUzrh70Eal2O3aZ7aPYiMADO4uKlkzOiRiZ6GX5q3qxvW9Q==
dependencies:
"@babel/helper-function-name" "^7.19.0"
"@babel/template" "^7.18.10"
- "@babel/traverse" "^7.19.0"
- "@babel/types" "^7.19.0"
-
-"@babel/helpers@^7.20.1":
- version "7.20.1"
- resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.20.1.tgz#2ab7a0fcb0a03b5bf76629196ed63c2d7311f4c9"
- integrity sha512-J77mUVaDTUJFZ5BpP6mMn6OIl3rEWymk2ZxDBQJUG3P+PbmyMcF3bYWvz0ma69Af1oobDqT/iAsvzhB58xhQUg==
- dependencies:
- "@babel/template" "^7.18.10"
- "@babel/traverse" "^7.20.1"
- "@babel/types" "^7.20.0"
+ "@babel/traverse" "^7.20.5"
+ "@babel/types" "^7.20.5"
-"@babel/helpers@^7.21.5":
- version "7.21.5"
- resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.21.5.tgz#5bac66e084d7a4d2d9696bdf0175a93f7fb63c08"
- integrity sha512-BSY+JSlHxOmGsPTydUkPf1MdMQ3M81x5xGCOVgWM3G8XH77sJ292Y2oqcp0CbbgxhqBuI46iUz1tT7hqP7EfgA==
+"@babel/helpers@^7.22.0":
+ version "7.22.3"
+ resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.22.3.tgz#53b74351da9684ea2f694bf0877998da26dd830e"
+ integrity sha512-jBJ7jWblbgr7r6wYZHMdIqKc73ycaTcCaWRq4/2LpuPHcx7xMlZvpGQkOYc9HeSjn6rcx15CPlgVcBtZ4WZJ2w==
dependencies:
- "@babel/template" "^7.20.7"
- "@babel/traverse" "^7.21.5"
- "@babel/types" "^7.21.5"
+ "@babel/template" "^7.21.9"
+ "@babel/traverse" "^7.22.1"
+ "@babel/types" "^7.22.3"
"@babel/highlight@^7.18.6":
version "7.18.6"
@@ -384,15 +269,10 @@
chalk "^2.0.0"
js-tokens "^4.0.0"
-"@babel/parser@^7.1.0", "@babel/parser@^7.1.6", "@babel/parser@^7.14.0", "@babel/parser@^7.14.7", "@babel/parser@^7.18.10", "@babel/parser@^7.20.1", "@babel/parser@^7.20.2":
- version "7.20.3"
- resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.20.3.tgz#5358cf62e380cf69efcb87a7bb922ff88bfac6e2"
- integrity sha512-OP/s5a94frIPXwjzEcv5S/tpQfc6XhxYUnmWpgdqMWGgYCuErA3SzozaRAMQgSZWKeTJxht9aWAkUY+0UzvOFg==
-
-"@babel/parser@^7.20.7", "@babel/parser@^7.21.5", "@babel/parser@^7.21.8":
- version "7.21.8"
- resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.21.8.tgz#642af7d0333eab9c0ad70b14ac5e76dbde7bfdf8"
- integrity sha512-6zavDGdzG3gUqAdWvlLFfk+36RilI+Pwyuuh7HItyeScCWP3k6i8vKclAQ0bM/0y/Kz/xiwvxhMv9MgTJP5gmA==
+"@babel/parser@^7.1.0", "@babel/parser@^7.13.16", "@babel/parser@^7.14.0", "@babel/parser@^7.14.7", "@babel/parser@^7.20.0", "@babel/parser@^7.20.7", "@babel/parser@^7.21.9", "@babel/parser@^7.22.0", "@babel/parser@^7.22.4":
+ version "7.22.4"
+ resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.22.4.tgz#a770e98fd785c231af9d93f6459d36770993fb32"
+ integrity sha512-VLLsx06XkEYqBtE5YGPwfSGwfrjnyPP5oiGty3S8pQLFDFLaS8VwWSIxkTXpcvr5zeYLE6+MBNl2npl/YnfofA==
"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.18.6":
version "7.18.6"
@@ -401,26 +281,26 @@
dependencies:
"@babel/helper-plugin-utils" "^7.18.6"
-"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.18.9":
- version "7.18.9"
- resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.18.9.tgz#a11af19aa373d68d561f08e0a57242350ed0ec50"
- integrity sha512-AHrP9jadvH7qlOj6PINbgSuphjQUAK7AOT7DPjBo9EHoLhQTnnK5u45e1Hd4DbSQEO9nqPWtQ89r+XEOWFScKg==
+"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.22.3":
+ version "7.22.3"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.22.3.tgz#a75be1365c0c3188c51399a662168c1c98108659"
+ integrity sha512-6r4yRwEnorYByILoDRnEqxtojYKuiIv9FojW2E8GUKo9eWBwbKcd9IiZOZpdyXc64RmyGGyPu3/uAcrz/dq2kQ==
dependencies:
- "@babel/helper-plugin-utils" "^7.18.9"
- "@babel/helper-skip-transparent-expression-wrappers" "^7.18.9"
- "@babel/plugin-proposal-optional-chaining" "^7.18.9"
+ "@babel/helper-plugin-utils" "^7.21.5"
+ "@babel/helper-skip-transparent-expression-wrappers" "^7.20.0"
+ "@babel/plugin-transform-optional-chaining" "^7.22.3"
-"@babel/plugin-proposal-async-generator-functions@^7.20.1":
- version "7.20.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.20.1.tgz#352f02baa5d69f4e7529bdac39aaa02d41146af9"
- integrity sha512-Gh5rchzSwE4kC+o/6T8waD0WHEQIsDmjltY8WnWRXHUdH8axZhuH86Ov9M72YhJfDrZseQwuuWaaIT/TmePp3g==
+"@babel/plugin-proposal-async-generator-functions@^7.0.0":
+ version "7.20.7"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.20.7.tgz#bfb7276d2d573cb67ba379984a2334e262ba5326"
+ integrity sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==
dependencies:
"@babel/helper-environment-visitor" "^7.18.9"
- "@babel/helper-plugin-utils" "^7.19.0"
+ "@babel/helper-plugin-utils" "^7.20.2"
"@babel/helper-remap-async-to-generator" "^7.18.9"
"@babel/plugin-syntax-async-generators" "^7.8.4"
-"@babel/plugin-proposal-class-properties@^7.0.0", "@babel/plugin-proposal-class-properties@^7.1.0", "@babel/plugin-proposal-class-properties@^7.18.6":
+"@babel/plugin-proposal-class-properties@^7.0.0", "@babel/plugin-proposal-class-properties@^7.13.0":
version "7.18.6"
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz#b110f59741895f7ec21a6fff696ec46265c446a3"
integrity sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==
@@ -428,23 +308,6 @@
"@babel/helper-create-class-features-plugin" "^7.18.6"
"@babel/helper-plugin-utils" "^7.18.6"
-"@babel/plugin-proposal-class-static-block@^7.18.6":
- version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.18.6.tgz#8aa81d403ab72d3962fc06c26e222dacfc9b9020"
- integrity sha512-+I3oIiNxrCpup3Gi8n5IGMwj0gOCAjcJUSQEcotNnCCPMEnixawOQ+KeJPlgfjzx+FKQ1QSyZOWe7wmoJp7vhw==
- dependencies:
- "@babel/helper-create-class-features-plugin" "^7.18.6"
- "@babel/helper-plugin-utils" "^7.18.6"
- "@babel/plugin-syntax-class-static-block" "^7.14.5"
-
-"@babel/plugin-proposal-dynamic-import@^7.18.6":
- version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.18.6.tgz#72bcf8d408799f547d759298c3c27c7e7faa4d94"
- integrity sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==
- dependencies:
- "@babel/helper-plugin-utils" "^7.18.6"
- "@babel/plugin-syntax-dynamic-import" "^7.8.3"
-
"@babel/plugin-proposal-export-default-from@^7.0.0":
version "7.18.10"
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-export-default-from/-/plugin-proposal-export-default-from-7.18.10.tgz#091f4794dbce4027c03cf4ebc64d3fb96b75c206"
@@ -453,31 +316,7 @@
"@babel/helper-plugin-utils" "^7.18.9"
"@babel/plugin-syntax-export-default-from" "^7.18.6"
-"@babel/plugin-proposal-export-namespace-from@^7.18.9":
- version "7.18.9"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.18.9.tgz#5f7313ab348cdb19d590145f9247540e94761203"
- integrity sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==
- dependencies:
- "@babel/helper-plugin-utils" "^7.18.9"
- "@babel/plugin-syntax-export-namespace-from" "^7.8.3"
-
-"@babel/plugin-proposal-json-strings@^7.18.6":
- version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.18.6.tgz#7e8788c1811c393aff762817e7dbf1ebd0c05f0b"
- integrity sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==
- dependencies:
- "@babel/helper-plugin-utils" "^7.18.6"
- "@babel/plugin-syntax-json-strings" "^7.8.3"
-
-"@babel/plugin-proposal-logical-assignment-operators@^7.18.9":
- version "7.18.9"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.18.9.tgz#8148cbb350483bf6220af06fa6db3690e14b2e23"
- integrity sha512-128YbMpjCrP35IOExw2Fq+x55LMP42DzhOhX2aNNIdI9avSWl2PI0yuBWarr3RYpZBSPtabfadkH2yeRiMD61Q==
- dependencies:
- "@babel/helper-plugin-utils" "^7.18.9"
- "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4"
-
-"@babel/plugin-proposal-nullish-coalescing-operator@^7.0.0", "@babel/plugin-proposal-nullish-coalescing-operator@^7.1.0", "@babel/plugin-proposal-nullish-coalescing-operator@^7.18.6":
+"@babel/plugin-proposal-nullish-coalescing-operator@^7.0.0", "@babel/plugin-proposal-nullish-coalescing-operator@^7.13.8":
version "7.18.6"
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz#fdd940a99a740e577d6c753ab6fbb43fdb9467e1"
integrity sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==
@@ -485,26 +324,18 @@
"@babel/helper-plugin-utils" "^7.18.6"
"@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3"
-"@babel/plugin-proposal-numeric-separator@^7.18.6":
- version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.18.6.tgz#899b14fbafe87f053d2c5ff05b36029c62e13c75"
- integrity sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==
- dependencies:
- "@babel/helper-plugin-utils" "^7.18.6"
- "@babel/plugin-syntax-numeric-separator" "^7.10.4"
-
-"@babel/plugin-proposal-object-rest-spread@^7.0.0", "@babel/plugin-proposal-object-rest-spread@^7.20.2":
- version "7.20.2"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.20.2.tgz#a556f59d555f06961df1e572bb5eca864c84022d"
- integrity sha512-Ks6uej9WFK+fvIMesSqbAto5dD8Dz4VuuFvGJFKgIGSkJuRGcrwGECPA1fDgQK3/DbExBJpEkTeYeB8geIFCSQ==
+"@babel/plugin-proposal-object-rest-spread@^7.0.0":
+ version "7.20.7"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.20.7.tgz#aa662940ef425779c75534a5c41e9d936edc390a"
+ integrity sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==
dependencies:
- "@babel/compat-data" "^7.20.1"
- "@babel/helper-compilation-targets" "^7.20.0"
+ "@babel/compat-data" "^7.20.5"
+ "@babel/helper-compilation-targets" "^7.20.7"
"@babel/helper-plugin-utils" "^7.20.2"
"@babel/plugin-syntax-object-rest-spread" "^7.8.3"
- "@babel/plugin-transform-parameters" "^7.20.1"
+ "@babel/plugin-transform-parameters" "^7.20.7"
-"@babel/plugin-proposal-optional-catch-binding@^7.0.0", "@babel/plugin-proposal-optional-catch-binding@^7.18.6":
+"@babel/plugin-proposal-optional-catch-binding@^7.0.0":
version "7.18.6"
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.18.6.tgz#f9400d0e6a3ea93ba9ef70b09e72dd6da638a2cb"
integrity sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==
@@ -512,34 +343,26 @@
"@babel/helper-plugin-utils" "^7.18.6"
"@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", "@babel/plugin-proposal-optional-chaining@^7.18.9":
- version "7.18.9"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.18.9.tgz#e8e8fe0723f2563960e4bf5e9690933691915993"
- integrity sha512-v5nwt4IqBXihxGsW2QmCWMDS3B3bzGIk/EQVZz2ei7f3NJl8NzAJVvUmpDW5q1CRNY+Beb/k58UAH1Km1N411w==
+"@babel/plugin-proposal-optional-chaining@^7.0.0", "@babel/plugin-proposal-optional-chaining@^7.13.12":
+ version "7.21.0"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.21.0.tgz#886f5c8978deb7d30f678b2e24346b287234d3ea"
+ integrity sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==
dependencies:
- "@babel/helper-plugin-utils" "^7.18.9"
- "@babel/helper-skip-transparent-expression-wrappers" "^7.18.9"
+ "@babel/helper-plugin-utils" "^7.20.2"
+ "@babel/helper-skip-transparent-expression-wrappers" "^7.20.0"
"@babel/plugin-syntax-optional-chaining" "^7.8.3"
-"@babel/plugin-proposal-private-methods@^7.18.6":
- version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.18.6.tgz#5209de7d213457548a98436fa2882f52f4be6bea"
- integrity sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==
- dependencies:
- "@babel/helper-create-class-features-plugin" "^7.18.6"
- "@babel/helper-plugin-utils" "^7.18.6"
-
-"@babel/plugin-proposal-private-property-in-object@^7.18.6":
- version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.18.6.tgz#a64137b232f0aca3733a67eb1a144c192389c503"
- integrity sha512-9Rysx7FOctvT5ouj5JODjAFAkgGoudQuLPamZb0v1TGLpapdNaftzifU8NTWQm0IRjqoYypdrSmyWgkocDQ8Dw==
+"@babel/plugin-proposal-private-property-in-object@^7.21.0":
+ version "7.21.11"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.11.tgz#69d597086b6760c4126525cfa154f34631ff272c"
+ integrity sha512-0QZ8qP/3RLDVBwBFoWAwCtgcDZJVwA5LUJRZU8x2YFfKNuFq161wK3cuGrALu5yiPu+vzwTAg/sMWVNeWeNyaw==
dependencies:
"@babel/helper-annotate-as-pure" "^7.18.6"
- "@babel/helper-create-class-features-plugin" "^7.18.6"
- "@babel/helper-plugin-utils" "^7.18.6"
+ "@babel/helper-create-class-features-plugin" "^7.21.0"
+ "@babel/helper-plugin-utils" "^7.20.2"
"@babel/plugin-syntax-private-property-in-object" "^7.14.5"
-"@babel/plugin-proposal-unicode-property-regex@^7.18.6", "@babel/plugin-proposal-unicode-property-regex@^7.4.4":
+"@babel/plugin-proposal-unicode-property-regex@^7.4.4":
version "7.18.6"
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.18.6.tgz#af613d2cd5e643643b65cded64207b15c85cb78e"
integrity sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==
@@ -596,12 +419,12 @@
dependencies:
"@babel/helper-plugin-utils" "^7.8.3"
-"@babel/plugin-syntax-flow@^7.0.0", "@babel/plugin-syntax-flow@^7.18.6", "@babel/plugin-syntax-flow@^7.2.0":
- version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.18.6.tgz#774d825256f2379d06139be0c723c4dd444f3ca1"
- integrity sha512-LUbR+KNTBWCUAqRG9ex5Gnzu2IOkt8jRJbHHXFT9q+L9zm7M/QQbEqXyw1n1pohYvOyWC8CjeyjrSaIwiYjK7A==
+"@babel/plugin-syntax-flow@^7.0.0", "@babel/plugin-syntax-flow@^7.18.0", "@babel/plugin-syntax-flow@^7.18.6":
+ version "7.21.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.21.4.tgz#3e37fca4f06d93567c1cd9b75156422e90a67107"
+ integrity sha512-l9xd3N+XG4fZRxEP3vXdK6RW7vN1Uf5dxzRC/09wV86wqZ/YYQooBIGNsiRdfNR3/q2/5pPzV4B54J/9ctX5jw==
dependencies:
- "@babel/helper-plugin-utils" "^7.18.6"
+ "@babel/helper-plugin-utils" "^7.20.2"
"@babel/plugin-syntax-import-assertions@^7.20.0":
version "7.20.0"
@@ -610,7 +433,14 @@
dependencies:
"@babel/helper-plugin-utils" "^7.19.0"
-"@babel/plugin-syntax-import-meta@^7.8.3":
+"@babel/plugin-syntax-import-attributes@^7.22.3":
+ version "7.22.3"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.22.3.tgz#d7168f22b9b49a6cc1792cec78e06a18ad2e7b4b"
+ integrity sha512-i35jZJv6aO7hxEbIWQ41adVfOzjm9dcYDNeWlBMd8p0ZQRtNUCBrmGwZt+H5lb+oOC9a3svp956KP0oWGA1YsA==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.21.5"
+
+"@babel/plugin-syntax-import-meta@^7.10.4", "@babel/plugin-syntax-import-meta@^7.8.3":
version "7.10.4"
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz#ee601348c370fa334d2207be158777496521fd51"
integrity sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==
@@ -624,14 +454,7 @@
dependencies:
"@babel/helper-plugin-utils" "^7.8.0"
-"@babel/plugin-syntax-jsx@^7.0.0", "@babel/plugin-syntax-jsx@^7.18.6":
- version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.18.6.tgz#a8feef63b010150abd97f1649ec296e849943ca0"
- integrity sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==
- dependencies:
- "@babel/helper-plugin-utils" "^7.18.6"
-
-"@babel/plugin-syntax-jsx@^7.7.2":
+"@babel/plugin-syntax-jsx@^7.0.0", "@babel/plugin-syntax-jsx@^7.21.4", "@babel/plugin-syntax-jsx@^7.7.2":
version "7.21.4"
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.21.4.tgz#f264ed7bf40ffc9ec239edabc17a50c4f5b6fea2"
integrity sha512-5hewiLct5OKyh6PLKEYaFclcqtIgCb6bmELouxjF6up5q3Sov7rOayW4RwhbaBL0dit8rA80GNfY+UuDp2mBbQ==
@@ -694,28 +517,46 @@
dependencies:
"@babel/helper-plugin-utils" "^7.14.5"
-"@babel/plugin-syntax-typescript@^7.20.0", "@babel/plugin-syntax-typescript@^7.7.2":
- version "7.20.0"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.20.0.tgz#4e9a0cfc769c85689b77a2e642d24e9f697fc8c7"
- integrity sha512-rd9TkG+u1CExzS4SM1BlMEhMXwFLKVjOAFFCDx9PbX5ycJWDoWMcwdJH9RhkPu1dOgn5TrxLot/Gx6lWFuAUNQ==
+"@babel/plugin-syntax-typescript@^7.21.4", "@babel/plugin-syntax-typescript@^7.7.2":
+ version "7.21.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.21.4.tgz#2751948e9b7c6d771a8efa59340c15d4a2891ff8"
+ integrity sha512-xz0D39NvhQn4t4RNsHmDnnsaQizIlUkdtYvLs8La1BlfjQ6JEwxkJGeqJMW2tAXx+q6H+WFuUTXNdYVpEya0YA==
dependencies:
- "@babel/helper-plugin-utils" "^7.19.0"
+ "@babel/helper-plugin-utils" "^7.20.2"
-"@babel/plugin-transform-arrow-functions@^7.0.0", "@babel/plugin-transform-arrow-functions@^7.18.6":
+"@babel/plugin-syntax-unicode-sets-regex@^7.18.6":
version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.18.6.tgz#19063fcf8771ec7b31d742339dac62433d0611fe"
- integrity sha512-9S9X9RUefzrsHZmKMbDXxweEH+YlE8JJEuat9FdvW9Qh1cw7W64jELCtWNkPBPX5En45uy28KGvA/AySqUh8CQ==
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz#d49a3b3e6b52e5be6740022317580234a6a47357"
+ integrity sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==
dependencies:
+ "@babel/helper-create-regexp-features-plugin" "^7.18.6"
"@babel/helper-plugin-utils" "^7.18.6"
-"@babel/plugin-transform-async-to-generator@^7.0.0", "@babel/plugin-transform-async-to-generator@^7.18.6":
- version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.18.6.tgz#ccda3d1ab9d5ced5265fdb13f1882d5476c71615"
- integrity sha512-ARE5wZLKnTgPW7/1ftQmSi1CmkqqHo2DNmtztFhvgtOWSDfq0Cq9/9L+KnZNYSNrydBekhW3rwShduf59RoXag==
+"@babel/plugin-transform-arrow-functions@^7.0.0", "@babel/plugin-transform-arrow-functions@^7.21.5":
+ version "7.21.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.21.5.tgz#9bb42a53de447936a57ba256fbf537fc312b6929"
+ integrity sha512-wb1mhwGOCaXHDTcsRYMKF9e5bbMgqwxtqa2Y1ifH96dXJPwbuLX9qHy3clhrxVqgMz7nyNXs8VkxdH8UBcjKqA==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.21.5"
+
+"@babel/plugin-transform-async-generator-functions@^7.22.3":
+ version "7.22.3"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.22.3.tgz#3ed99924c354fb9e80dabb2cc8d002c702e94527"
+ integrity sha512-36A4Aq48t66btydbZd5Fk0/xJqbpg/v4QWI4AH4cYHBXy9Mu42UOupZpebKFiCFNT9S9rJFcsld0gsv0ayLjtA==
+ dependencies:
+ "@babel/helper-environment-visitor" "^7.22.1"
+ "@babel/helper-plugin-utils" "^7.21.5"
+ "@babel/helper-remap-async-to-generator" "^7.18.9"
+ "@babel/plugin-syntax-async-generators" "^7.8.4"
+
+"@babel/plugin-transform-async-to-generator@^7.0.0", "@babel/plugin-transform-async-to-generator@^7.20.7":
+ version "7.20.7"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.20.7.tgz#dfee18623c8cb31deb796aa3ca84dda9cea94354"
+ integrity sha512-Uo5gwHPT9vgnSXQxqGtpdufUiWp96gk7yiP4Mp5bm1QMkEmLXBO7PAGYbKoJ6DhAwiNkcHFBol/x5zZZkL/t0Q==
dependencies:
"@babel/helper-module-imports" "^7.18.6"
- "@babel/helper-plugin-utils" "^7.18.6"
- "@babel/helper-remap-async-to-generator" "^7.18.6"
+ "@babel/helper-plugin-utils" "^7.20.2"
+ "@babel/helper-remap-async-to-generator" "^7.18.9"
"@babel/plugin-transform-block-scoped-functions@^7.0.0", "@babel/plugin-transform-block-scoped-functions@^7.18.6":
version "7.18.6"
@@ -724,39 +565,57 @@
dependencies:
"@babel/helper-plugin-utils" "^7.18.6"
-"@babel/plugin-transform-block-scoping@^7.0.0", "@babel/plugin-transform-block-scoping@^7.20.2":
- version "7.20.2"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.20.2.tgz#f59b1767e6385c663fd0bce655db6ca9c8b236ed"
- integrity sha512-y5V15+04ry69OV2wULmwhEA6jwSWXO1TwAtIwiPXcvHcoOQUqpyMVd2bDsQJMW8AurjulIyUV8kDqtjSwHy1uQ==
+"@babel/plugin-transform-block-scoping@^7.0.0", "@babel/plugin-transform-block-scoping@^7.21.0":
+ version "7.21.0"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.21.0.tgz#e737b91037e5186ee16b76e7ae093358a5634f02"
+ integrity sha512-Mdrbunoh9SxwFZapeHVrwFmri16+oYotcZysSzhNIVDwIAb1UV+kvnxULSYq9J3/q5MDG+4X6w8QVgD1zhBXNQ==
dependencies:
"@babel/helper-plugin-utils" "^7.20.2"
-"@babel/plugin-transform-classes@^7.0.0", "@babel/plugin-transform-classes@^7.20.2":
- version "7.20.2"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.20.2.tgz#c0033cf1916ccf78202d04be4281d161f6709bb2"
- integrity sha512-9rbPp0lCVVoagvtEyQKSo5L8oo0nQS/iif+lwlAz29MccX2642vWDlSZK+2T2buxbopotId2ld7zZAzRfz9j1g==
+"@babel/plugin-transform-class-properties@^7.22.3":
+ version "7.22.3"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.22.3.tgz#3407145e513830df77f0cef828b8b231c166fe4c"
+ integrity sha512-mASLsd6rhOrLZ5F3WbCxkzl67mmOnqik0zrg5W6D/X0QMW7HtvnoL1dRARLKIbMP3vXwkwziuLesPqWVGIl6Bw==
+ dependencies:
+ "@babel/helper-create-class-features-plugin" "^7.22.1"
+ "@babel/helper-plugin-utils" "^7.21.5"
+
+"@babel/plugin-transform-class-static-block@^7.22.3":
+ version "7.22.3"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.22.3.tgz#e352cf33567385c731a8f21192efeba760358773"
+ integrity sha512-5BirgNWNOx7cwbTJCOmKFJ1pZjwk5MUfMIwiBBvsirCJMZeQgs5pk6i1OlkVg+1Vef5LfBahFOrdCnAWvkVKMw==
+ dependencies:
+ "@babel/helper-create-class-features-plugin" "^7.22.1"
+ "@babel/helper-plugin-utils" "^7.21.5"
+ "@babel/plugin-syntax-class-static-block" "^7.14.5"
+
+"@babel/plugin-transform-classes@^7.0.0", "@babel/plugin-transform-classes@^7.21.0":
+ version "7.21.0"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.21.0.tgz#f469d0b07a4c5a7dbb21afad9e27e57b47031665"
+ integrity sha512-RZhbYTCEUAe6ntPehC4hlslPWosNHDox+vAs4On/mCLRLfoDVHf6hVEd7kuxr1RnHwJmxFfUM3cZiZRmPxJPXQ==
dependencies:
"@babel/helper-annotate-as-pure" "^7.18.6"
- "@babel/helper-compilation-targets" "^7.20.0"
+ "@babel/helper-compilation-targets" "^7.20.7"
"@babel/helper-environment-visitor" "^7.18.9"
- "@babel/helper-function-name" "^7.19.0"
+ "@babel/helper-function-name" "^7.21.0"
"@babel/helper-optimise-call-expression" "^7.18.6"
"@babel/helper-plugin-utils" "^7.20.2"
- "@babel/helper-replace-supers" "^7.19.1"
+ "@babel/helper-replace-supers" "^7.20.7"
"@babel/helper-split-export-declaration" "^7.18.6"
globals "^11.1.0"
-"@babel/plugin-transform-computed-properties@^7.0.0", "@babel/plugin-transform-computed-properties@^7.18.9":
- version "7.18.9"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.18.9.tgz#2357a8224d402dad623caf6259b611e56aec746e"
- integrity sha512-+i0ZU1bCDymKakLxn5srGHrsAPRELC2WIbzwjLhHW9SIE1cPYkLCL0NlnXMZaM1vhfgA2+M7hySk42VBvrkBRw==
+"@babel/plugin-transform-computed-properties@^7.0.0", "@babel/plugin-transform-computed-properties@^7.21.5":
+ version "7.21.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.21.5.tgz#3a2d8bb771cd2ef1cd736435f6552fe502e11b44"
+ integrity sha512-TR653Ki3pAwxBxUe8srfF3e4Pe3FTA46uaNHYyQwIoM4oWKSoOZiDNyHJ0oIoDIUPSRQbQG7jzgVBX3FPVne1Q==
dependencies:
- "@babel/helper-plugin-utils" "^7.18.9"
+ "@babel/helper-plugin-utils" "^7.21.5"
+ "@babel/template" "^7.20.7"
-"@babel/plugin-transform-destructuring@^7.0.0", "@babel/plugin-transform-destructuring@^7.20.2":
- version "7.20.2"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.20.2.tgz#c23741cfa44ddd35f5e53896e88c75331b8b2792"
- integrity sha512-mENM+ZHrvEgxLTBXUiQ621rRXZes3KWUv6NdQlrnr1TkWVw+hUjQBZuP2X32qKlrlG2BzgR95gkuCRSkJl8vIw==
+"@babel/plugin-transform-destructuring@^7.0.0", "@babel/plugin-transform-destructuring@^7.21.3":
+ version "7.21.3"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.21.3.tgz#73b46d0fd11cd6ef57dea8a381b1215f4959d401"
+ integrity sha512-bp6hwMFzuiE4HqYEyoGJ/V2LeIWn+hLVKc4pnj++E5XQptwhtcGmSayM029d/j2X1bPKGTlsyPwAubuU22KhMA==
dependencies:
"@babel/helper-plugin-utils" "^7.20.2"
@@ -775,7 +634,15 @@
dependencies:
"@babel/helper-plugin-utils" "^7.18.9"
-"@babel/plugin-transform-exponentiation-operator@^7.0.0", "@babel/plugin-transform-exponentiation-operator@^7.18.6":
+"@babel/plugin-transform-dynamic-import@^7.22.1":
+ version "7.22.1"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.22.1.tgz#6c56afaf896a07026330cf39714532abed8d9ed1"
+ integrity sha512-rlhWtONnVBPdmt+jeewS0qSnMz/3yLFrqAP8hHC6EDcrYRSyuz9f9yQhHvVn2Ad6+yO9fHXac5piudeYrInxwQ==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.21.5"
+ "@babel/plugin-syntax-dynamic-import" "^7.8.3"
+
+"@babel/plugin-transform-exponentiation-operator@^7.18.6":
version "7.18.6"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.18.6.tgz#421c705f4521888c65e91fdd1af951bfefd4dacd"
integrity sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==
@@ -783,20 +650,28 @@
"@babel/helper-builder-binary-assignment-operator-visitor" "^7.18.6"
"@babel/helper-plugin-utils" "^7.18.6"
-"@babel/plugin-transform-flow-strip-types@^7.0.0", "@babel/plugin-transform-flow-strip-types@^7.18.6":
- version "7.19.0"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.19.0.tgz#e9e8606633287488216028719638cbbb2f2dde8f"
- integrity sha512-sgeMlNaQVbCSpgLSKP4ZZKfsJVnFnNQlUSk6gPYzR/q7tzCgQF2t8RBKAP6cKJeZdveei7Q7Jm527xepI8lNLg==
+"@babel/plugin-transform-export-namespace-from@^7.22.3":
+ version "7.22.3"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.22.3.tgz#9b8700aa495007d3bebac8358d1c562434b680b9"
+ integrity sha512-5Ti1cHLTDnt3vX61P9KZ5IG09bFXp4cDVFJIAeCZuxu9OXXJJZp5iP0n/rzM2+iAutJY+KWEyyHcRaHlpQ/P5g==
dependencies:
- "@babel/helper-plugin-utils" "^7.19.0"
+ "@babel/helper-plugin-utils" "^7.21.5"
+ "@babel/plugin-syntax-export-namespace-from" "^7.8.3"
+
+"@babel/plugin-transform-flow-strip-types@^7.0.0", "@babel/plugin-transform-flow-strip-types@^7.21.0":
+ version "7.21.0"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.21.0.tgz#6aeca0adcb81dc627c8986e770bfaa4d9812aff5"
+ integrity sha512-FlFA2Mj87a6sDkW4gfGrQQqwY/dLlBAyJa2dJEZ+FHXUVHBflO2wyKvg+OOEzXfrKYIa4HWl0mgmbCzt0cMb7w==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.20.2"
"@babel/plugin-syntax-flow" "^7.18.6"
-"@babel/plugin-transform-for-of@^7.0.0", "@babel/plugin-transform-for-of@^7.18.8":
- version "7.18.8"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.18.8.tgz#6ef8a50b244eb6a0bdbad0c7c61877e4e30097c1"
- integrity sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==
+"@babel/plugin-transform-for-of@^7.0.0", "@babel/plugin-transform-for-of@^7.21.5":
+ version "7.21.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.21.5.tgz#e890032b535f5a2e237a18535f56a9fdaa7b83fc"
+ integrity sha512-nYWpjKW/7j/I/mZkGVgHJXh4bA1sfdFnJoOXwJuj4m3Q2EraO/8ZyrkCau9P5tbHQk01RMSt6KYLCsW7730SXQ==
dependencies:
- "@babel/helper-plugin-utils" "^7.18.6"
+ "@babel/helper-plugin-utils" "^7.21.5"
"@babel/plugin-transform-function-name@^7.0.0", "@babel/plugin-transform-function-name@^7.18.9":
version "7.18.9"
@@ -807,6 +682,14 @@
"@babel/helper-function-name" "^7.18.9"
"@babel/helper-plugin-utils" "^7.18.9"
+"@babel/plugin-transform-json-strings@^7.22.3":
+ version "7.22.3"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.22.3.tgz#a181b8679cf7c93e9d0e3baa5b1776d65be601a9"
+ integrity sha512-IuvOMdeOOY2X4hRNAT6kwbePtK21BUyrAEgLKviL8pL6AEEVUVcqtRdN/HJXBLGIbt9T3ETmXRnFedRRmQNTYw==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.21.5"
+ "@babel/plugin-syntax-json-strings" "^7.8.3"
+
"@babel/plugin-transform-literals@^7.0.0", "@babel/plugin-transform-literals@^7.18.9":
version "7.18.9"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.18.9.tgz#72796fdbef80e56fba3c6a699d54f0de557444bc"
@@ -814,6 +697,14 @@
dependencies:
"@babel/helper-plugin-utils" "^7.18.9"
+"@babel/plugin-transform-logical-assignment-operators@^7.22.3":
+ version "7.22.3"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.22.3.tgz#9e021455810f33b0baccb82fb759b194f5dc36f0"
+ integrity sha512-CbayIfOw4av2v/HYZEsH+Klks3NC2/MFIR3QR8gnpGNNPEaq2fdlVCRYG/paKs7/5hvBLQ+H70pGWOHtlNEWNA==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.21.5"
+ "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4"
+
"@babel/plugin-transform-member-expression-literals@^7.0.0", "@babel/plugin-transform-member-expression-literals@^7.18.6":
version "7.18.6"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.18.6.tgz#ac9fdc1a118620ac49b7e7a5d2dc177a1bfee88e"
@@ -821,31 +712,31 @@
dependencies:
"@babel/helper-plugin-utils" "^7.18.6"
-"@babel/plugin-transform-modules-amd@^7.19.6":
- version "7.19.6"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.19.6.tgz#aca391801ae55d19c4d8d2ebfeaa33df5f2a2cbd"
- integrity sha512-uG3od2mXvAtIFQIh0xrpLH6r5fpSQN04gIVovl+ODLdUMANokxQLZnPBHcjmv3GxRjnqwLuHvppjjcelqUFZvg==
+"@babel/plugin-transform-modules-amd@^7.20.11":
+ version "7.20.11"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.20.11.tgz#3daccca8e4cc309f03c3a0c4b41dc4b26f55214a"
+ integrity sha512-NuzCt5IIYOW0O30UvqktzHYR2ud5bOWbY0yaxWZ6G+aFzOMJvrs5YHNikrbdaT15+KNO31nPOy5Fim3ku6Zb5g==
dependencies:
- "@babel/helper-module-transforms" "^7.19.6"
- "@babel/helper-plugin-utils" "^7.19.0"
+ "@babel/helper-module-transforms" "^7.20.11"
+ "@babel/helper-plugin-utils" "^7.20.2"
-"@babel/plugin-transform-modules-commonjs@^7.0.0", "@babel/plugin-transform-modules-commonjs@^7.1.0", "@babel/plugin-transform-modules-commonjs@^7.19.6":
- version "7.19.6"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.19.6.tgz#25b32feef24df8038fc1ec56038917eacb0b730c"
- integrity sha512-8PIa1ym4XRTKuSsOUXqDG0YaOlEuTVvHMe5JCfgBMOtHvJKw/4NGovEGN33viISshG/rZNVrACiBmPQLvWN8xQ==
+"@babel/plugin-transform-modules-commonjs@^7.0.0", "@babel/plugin-transform-modules-commonjs@^7.13.8", "@babel/plugin-transform-modules-commonjs@^7.21.5":
+ version "7.21.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.21.5.tgz#d69fb947eed51af91de82e4708f676864e5e47bc"
+ integrity sha512-OVryBEgKUbtqMoB7eG2rs6UFexJi6Zj6FDXx+esBLPTCxCNxAY9o+8Di7IsUGJ+AVhp5ncK0fxWUBd0/1gPhrQ==
dependencies:
- "@babel/helper-module-transforms" "^7.19.6"
- "@babel/helper-plugin-utils" "^7.19.0"
- "@babel/helper-simple-access" "^7.19.4"
+ "@babel/helper-module-transforms" "^7.21.5"
+ "@babel/helper-plugin-utils" "^7.21.5"
+ "@babel/helper-simple-access" "^7.21.5"
-"@babel/plugin-transform-modules-systemjs@^7.19.6":
- version "7.19.6"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.19.6.tgz#59e2a84064b5736a4471b1aa7b13d4431d327e0d"
- integrity sha512-fqGLBepcc3kErfR9R3DnVpURmckXP7gj7bAlrTQyBxrigFqszZCkFkcoxzCp2v32XmwXLvbw+8Yq9/b+QqksjQ==
+"@babel/plugin-transform-modules-systemjs@^7.22.3":
+ version "7.22.3"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.22.3.tgz#cc507e03e88d87b016feaeb5dae941e6ef50d91e"
+ integrity sha512-V21W3bKLxO3ZjcBJZ8biSvo5gQ85uIXW2vJfh7JSWf/4SLUSr1tOoHX3ruN4+Oqa2m+BKfsxTR1I+PsvkIWvNw==
dependencies:
"@babel/helper-hoist-variables" "^7.18.6"
- "@babel/helper-module-transforms" "^7.19.6"
- "@babel/helper-plugin-utils" "^7.19.0"
+ "@babel/helper-module-transforms" "^7.22.1"
+ "@babel/helper-plugin-utils" "^7.21.5"
"@babel/helper-validator-identifier" "^7.19.1"
"@babel/plugin-transform-modules-umd@^7.18.6":
@@ -856,28 +747,55 @@
"@babel/helper-module-transforms" "^7.18.6"
"@babel/helper-plugin-utils" "^7.18.6"
-"@babel/plugin-transform-named-capturing-groups-regex@^7.19.1":
- version "7.19.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.19.1.tgz#ec7455bab6cd8fb05c525a94876f435a48128888"
- integrity sha512-oWk9l9WItWBQYS4FgXD4Uyy5kq898lvkXpXQxoJEY1RnvPk4R/Dvu2ebXU9q8lP+rlMwUQTFf2Ok6d78ODa0kw==
+"@babel/plugin-transform-named-capturing-groups-regex@^7.0.0", "@babel/plugin-transform-named-capturing-groups-regex@^7.22.3":
+ version "7.22.3"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.22.3.tgz#db6fb77e6b3b53ec3b8d370246f0b7cf67d35ab4"
+ integrity sha512-c6HrD/LpUdNNJsISQZpds3TXvfYIAbo+efE9aWmY/PmSRD0agrJ9cPMt4BmArwUQ7ZymEWTFjTyp+yReLJZh0Q==
dependencies:
- "@babel/helper-create-regexp-features-plugin" "^7.19.0"
- "@babel/helper-plugin-utils" "^7.19.0"
+ "@babel/helper-create-regexp-features-plugin" "^7.22.1"
+ "@babel/helper-plugin-utils" "^7.21.5"
-"@babel/plugin-transform-new-target@^7.18.6":
- version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.18.6.tgz#d128f376ae200477f37c4ddfcc722a8a1b3246a8"
- integrity sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==
+"@babel/plugin-transform-new-target@^7.22.3":
+ version "7.22.3"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.22.3.tgz#deb0377d741cbee2f45305868b9026dcd6dd96e2"
+ integrity sha512-5RuJdSo89wKdkRTqtM9RVVJzHum9c2s0te9rB7vZC1zKKxcioWIy+xcu4OoIAjyFZhb/bp5KkunuLin1q7Ct+w==
dependencies:
- "@babel/helper-plugin-utils" "^7.18.6"
+ "@babel/helper-plugin-utils" "^7.21.5"
+
+"@babel/plugin-transform-nullish-coalescing-operator@^7.22.3":
+ version "7.22.3"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.22.3.tgz#8c519f8bf5af94a9ca6f65cf422a9d3396e542b9"
+ integrity sha512-CpaoNp16nX7ROtLONNuCyenYdY/l7ZsR6aoVa7rW7nMWisoNoQNIH5Iay/4LDyRjKMuElMqXiBoOQCDLTMGZiw==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.21.5"
+ "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3"
-"@babel/plugin-transform-object-assign@^7.0.0", "@babel/plugin-transform-object-assign@^7.16.7":
+"@babel/plugin-transform-numeric-separator@^7.22.3":
+ version "7.22.3"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.22.3.tgz#02493070ca6685884b0eee705363ee4da2132ab0"
+ integrity sha512-+AF88fPDJrnseMh5vD9+SH6wq4ZMvpiTMHh58uLs+giMEyASFVhcT3NkoyO+NebFCNnpHJEq5AXO2txV4AGPDQ==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.21.5"
+ "@babel/plugin-syntax-numeric-separator" "^7.10.4"
+
+"@babel/plugin-transform-object-assign@^7.16.7":
version "7.18.6"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-assign/-/plugin-transform-object-assign-7.18.6.tgz#7830b4b6f83e1374a5afb9f6111bcfaea872cdd2"
integrity sha512-mQisZ3JfqWh2gVXvfqYCAAyRs6+7oev+myBsTwW5RnPhYXOTuCEw2oe3YgxlXMViXUS53lG8koulI7mJ+8JE+A==
dependencies:
"@babel/helper-plugin-utils" "^7.18.6"
+"@babel/plugin-transform-object-rest-spread@^7.22.3":
+ version "7.22.3"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.22.3.tgz#da6fba693effb8c203d8c3bdf7bf4e2567e802e9"
+ integrity sha512-38bzTsqMMCI46/TQnJwPPpy33EjLCc1Gsm2hRTF6zTMWnKsN61vdrpuzIEGQyKEhDSYDKyZHrrd5FMj4gcUHhw==
+ dependencies:
+ "@babel/compat-data" "^7.22.3"
+ "@babel/helper-compilation-targets" "^7.22.1"
+ "@babel/helper-plugin-utils" "^7.21.5"
+ "@babel/plugin-syntax-object-rest-spread" "^7.8.3"
+ "@babel/plugin-transform-parameters" "^7.22.3"
+
"@babel/plugin-transform-object-super@^7.0.0", "@babel/plugin-transform-object-super@^7.18.6":
version "7.18.6"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.18.6.tgz#fb3c6ccdd15939b6ff7939944b51971ddc35912c"
@@ -886,12 +804,47 @@
"@babel/helper-plugin-utils" "^7.18.6"
"@babel/helper-replace-supers" "^7.18.6"
-"@babel/plugin-transform-parameters@^7.0.0", "@babel/plugin-transform-parameters@^7.20.1":
- version "7.20.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.20.3.tgz#7b3468d70c3c5b62e46be0a47b6045d8590fb748"
- integrity sha512-oZg/Fpx0YDrj13KsLyO8I/CX3Zdw7z0O9qOd95SqcoIzuqy/WTGWvePeHAnZCN54SfdyjHcb1S30gc8zlzlHcA==
+"@babel/plugin-transform-optional-catch-binding@^7.22.3":
+ version "7.22.3"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.22.3.tgz#e971a083fc7d209d9cd18253853af1db6d8dc42f"
+ integrity sha512-bnDFWXFzWY0BsOyqaoSXvMQ2F35zutQipugog/rqotL2S4ciFOKlRYUu9djt4iq09oh2/34hqfRR2k1dIvuu4g==
dependencies:
- "@babel/helper-plugin-utils" "^7.20.2"
+ "@babel/helper-plugin-utils" "^7.21.5"
+ "@babel/plugin-syntax-optional-catch-binding" "^7.8.3"
+
+"@babel/plugin-transform-optional-chaining@^7.22.3":
+ version "7.22.3"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.22.3.tgz#5fd24a4a7843b76da6aeec23c7f551da5d365290"
+ integrity sha512-63v3/UFFxhPKT8j8u1jTTGVyITxl7/7AfOqK8C5gz1rHURPUGe3y5mvIf68eYKGoBNahtJnTxBKug4BQOnzeJg==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.21.5"
+ "@babel/helper-skip-transparent-expression-wrappers" "^7.20.0"
+ "@babel/plugin-syntax-optional-chaining" "^7.8.3"
+
+"@babel/plugin-transform-parameters@^7.0.0", "@babel/plugin-transform-parameters@^7.20.7", "@babel/plugin-transform-parameters@^7.22.3":
+ version "7.22.3"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.22.3.tgz#24477acfd2fd2bc901df906c9bf17fbcfeee900d"
+ integrity sha512-x7QHQJHPuD9VmfpzboyGJ5aHEr9r7DsAsdxdhJiTB3J3j8dyl+NFZ+rX5Q2RWFDCs61c06qBfS4ys2QYn8UkMw==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.21.5"
+
+"@babel/plugin-transform-private-methods@^7.22.3":
+ version "7.22.3"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.22.3.tgz#adac38020bab5047482d3297107c1f58e9c574f6"
+ integrity sha512-fC7jtjBPFqhqpPAE+O4LKwnLq7gGkD3ZmC2E3i4qWH34mH3gOg2Xrq5YMHUq6DM30xhqM1DNftiRaSqVjEG+ug==
+ dependencies:
+ "@babel/helper-create-class-features-plugin" "^7.22.1"
+ "@babel/helper-plugin-utils" "^7.21.5"
+
+"@babel/plugin-transform-private-property-in-object@^7.22.3":
+ version "7.22.3"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.22.3.tgz#031621b02c7b7d95389de1a3dba2fe9e8c548e56"
+ integrity sha512-C7MMl4qWLpgVCbXfj3UW8rR1xeCnisQ0cU7YJHV//8oNBS0aCIVg1vFnZXxOckHhEpQyqNNkWmvSEWnMLlc+Vw==
+ dependencies:
+ "@babel/helper-annotate-as-pure" "^7.18.6"
+ "@babel/helper-create-class-features-plugin" "^7.22.1"
+ "@babel/helper-plugin-utils" "^7.21.5"
+ "@babel/plugin-syntax-private-property-in-object" "^7.14.5"
"@babel/plugin-transform-property-literals@^7.0.0", "@babel/plugin-transform-property-literals@^7.18.6":
version "7.18.6"
@@ -908,11 +861,11 @@
"@babel/helper-plugin-utils" "^7.18.6"
"@babel/plugin-transform-react-jsx-self@^7.0.0":
- version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.18.6.tgz#3849401bab7ae8ffa1e3e5687c94a753fc75bda7"
- integrity sha512-A0LQGx4+4Jv7u/tWzoJF7alZwnBDQd6cGLh9P+Ttk4dpiL+J5p7NSNv/9tlEFFJDq3kjxOavWmbm6t0Gk+A3Ig==
+ version "7.21.0"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.21.0.tgz#ec98d4a9baafc5a1eb398da4cf94afbb40254a54"
+ integrity sha512-f/Eq+79JEu+KUANFks9UZCcvydOOGMgF7jBrcwjHa5jTZD8JivnhCJYvmlhR/WTXBWonDExPoW0eO/CR4QJirA==
dependencies:
- "@babel/helper-plugin-utils" "^7.18.6"
+ "@babel/helper-plugin-utils" "^7.20.2"
"@babel/plugin-transform-react-jsx-source@^7.0.0":
version "7.19.6"
@@ -922,23 +875,23 @@
"@babel/helper-plugin-utils" "^7.19.0"
"@babel/plugin-transform-react-jsx@^7.0.0":
- version "7.19.0"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.19.0.tgz#b3cbb7c3a00b92ec8ae1027910e331ba5c500eb9"
- integrity sha512-UVEvX3tXie3Szm3emi1+G63jyw1w5IcMY0FSKM+CRnKRI5Mr1YbCNgsSTwoTwKphQEG9P+QqmuRFneJPZuHNhg==
+ version "7.22.3"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.22.3.tgz#5a1f380df3703ba92eb1a930a539c6d88836f690"
+ integrity sha512-JEulRWG2f04a7L8VWaOngWiK6p+JOSpB+DAtwfJgOaej1qdbNxqtK7MwTBHjUA10NeFcszlFNqCdbRcirzh2uQ==
dependencies:
"@babel/helper-annotate-as-pure" "^7.18.6"
- "@babel/helper-module-imports" "^7.18.6"
- "@babel/helper-plugin-utils" "^7.19.0"
- "@babel/plugin-syntax-jsx" "^7.18.6"
- "@babel/types" "^7.19.0"
+ "@babel/helper-module-imports" "^7.21.4"
+ "@babel/helper-plugin-utils" "^7.21.5"
+ "@babel/plugin-syntax-jsx" "^7.21.4"
+ "@babel/types" "^7.22.3"
-"@babel/plugin-transform-regenerator@^7.0.0", "@babel/plugin-transform-regenerator@^7.18.6":
- version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.18.6.tgz#585c66cb84d4b4bf72519a34cfce761b8676ca73"
- integrity sha512-poqRI2+qiSdeldcz4wTSTXBRryoq3Gc70ye7m7UD5Ww0nE29IXqMl6r7Nd15WBgRd74vloEMlShtH6CKxVzfmQ==
+"@babel/plugin-transform-regenerator@^7.21.5":
+ version "7.21.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.21.5.tgz#576c62f9923f94bcb1c855adc53561fd7913724e"
+ integrity sha512-ZoYBKDb6LyMi5yCsByQ5jmXsHAQDDYeexT1Szvlmui+lADvfSecr5Dxd/PkrTC3pAD182Fcju1VQkB4oCp9M+w==
dependencies:
- "@babel/helper-plugin-utils" "^7.18.6"
- regenerator-transform "^0.15.0"
+ "@babel/helper-plugin-utils" "^7.21.5"
+ regenerator-transform "^0.15.1"
"@babel/plugin-transform-reserved-words@^7.18.6":
version "7.18.6"
@@ -948,15 +901,15 @@
"@babel/helper-plugin-utils" "^7.18.6"
"@babel/plugin-transform-runtime@^7.0.0":
- version "7.19.6"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.19.6.tgz#9d2a9dbf4e12644d6f46e5e75bfbf02b5d6e9194"
- integrity sha512-PRH37lz4JU156lYFW1p8OxE5i7d6Sl/zV58ooyr+q1J1lnQPyg5tIiXlIwNVhJaY4W3TmOtdc8jqdXQcB1v5Yw==
+ version "7.22.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.22.4.tgz#f8353f313f18c3ce1315688631ec48657b97af42"
+ integrity sha512-Urkiz1m4zqiRo17klj+l3nXgiRTFQng91Bc1eiLF7BMQu1e7wE5Gcq9xSv062IF068NHjcutSbIMev60gXxAvA==
dependencies:
- "@babel/helper-module-imports" "^7.18.6"
- "@babel/helper-plugin-utils" "^7.19.0"
- babel-plugin-polyfill-corejs2 "^0.3.3"
- babel-plugin-polyfill-corejs3 "^0.6.0"
- babel-plugin-polyfill-regenerator "^0.4.1"
+ "@babel/helper-module-imports" "^7.21.4"
+ "@babel/helper-plugin-utils" "^7.21.5"
+ babel-plugin-polyfill-corejs2 "^0.4.3"
+ babel-plugin-polyfill-corejs3 "^0.8.1"
+ babel-plugin-polyfill-regenerator "^0.5.0"
semver "^6.3.0"
"@babel/plugin-transform-shorthand-properties@^7.0.0", "@babel/plugin-transform-shorthand-properties@^7.18.6":
@@ -966,13 +919,13 @@
dependencies:
"@babel/helper-plugin-utils" "^7.18.6"
-"@babel/plugin-transform-spread@^7.0.0", "@babel/plugin-transform-spread@^7.19.0":
- version "7.19.0"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.19.0.tgz#dd60b4620c2fec806d60cfaae364ec2188d593b6"
- integrity sha512-RsuMk7j6n+r752EtzyScnWkQyuJdli6LdO5Klv8Yx0OfPVTcQkIUfS8clx5e9yHXzlnhOZF3CbQ8C2uP5j074w==
+"@babel/plugin-transform-spread@^7.0.0", "@babel/plugin-transform-spread@^7.20.7":
+ version "7.20.7"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.20.7.tgz#c2d83e0b99d3bf83e07b11995ee24bf7ca09401e"
+ integrity sha512-ewBbHQ+1U/VnH1fxltbJqDeWBU1oNLG8Dj11uIv3xVf7nrQu0bPGe5Rf716r7K5Qz+SqtAOVswoVunoiBtGhxw==
dependencies:
- "@babel/helper-plugin-utils" "^7.19.0"
- "@babel/helper-skip-transparent-expression-wrappers" "^7.18.9"
+ "@babel/helper-plugin-utils" "^7.20.2"
+ "@babel/helper-skip-transparent-expression-wrappers" "^7.20.0"
"@babel/plugin-transform-sticky-regex@^7.0.0", "@babel/plugin-transform-sticky-regex@^7.18.6":
version "7.18.6"
@@ -995,21 +948,30 @@
dependencies:
"@babel/helper-plugin-utils" "^7.18.9"
-"@babel/plugin-transform-typescript@^7.18.6", "@babel/plugin-transform-typescript@^7.5.0":
- version "7.20.2"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.20.2.tgz#91515527b376fc122ba83b13d70b01af8fe98f3f"
- integrity sha512-jvS+ngBfrnTUBfOQq8NfGnSbF9BrqlR6hjJ2yVxMkmO5nL/cdifNbI30EfjRlN4g5wYWNnMPyj5Sa6R1pbLeag==
+"@babel/plugin-transform-typescript@^7.21.3", "@babel/plugin-transform-typescript@^7.5.0":
+ version "7.22.3"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.22.3.tgz#8f662cec8ba88c873f1c7663c0c94e3f68592f09"
+ integrity sha512-pyjnCIniO5PNaEuGxT28h0HbMru3qCVrMqVgVOz/krComdIrY9W6FCLBq9NWHY8HDGaUlan+UhmZElDENIfCcw==
dependencies:
- "@babel/helper-create-class-features-plugin" "^7.20.2"
- "@babel/helper-plugin-utils" "^7.20.2"
- "@babel/plugin-syntax-typescript" "^7.20.0"
+ "@babel/helper-annotate-as-pure" "^7.18.6"
+ "@babel/helper-create-class-features-plugin" "^7.22.1"
+ "@babel/helper-plugin-utils" "^7.21.5"
+ "@babel/plugin-syntax-typescript" "^7.21.4"
-"@babel/plugin-transform-unicode-escapes@^7.18.10":
- version "7.18.10"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.18.10.tgz#1ecfb0eda83d09bbcb77c09970c2dd55832aa246"
- integrity sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ==
+"@babel/plugin-transform-unicode-escapes@^7.21.5":
+ version "7.21.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.21.5.tgz#1e55ed6195259b0e9061d81f5ef45a9b009fb7f2"
+ integrity sha512-LYm/gTOwZqsYohlvFUe/8Tujz75LqqVC2w+2qPHLR+WyWHGCZPN1KBpJCJn+4Bk4gOkQy/IXKIge6az5MqwlOg==
dependencies:
- "@babel/helper-plugin-utils" "^7.18.9"
+ "@babel/helper-plugin-utils" "^7.21.5"
+
+"@babel/plugin-transform-unicode-property-regex@^7.22.3":
+ version "7.22.3"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.22.3.tgz#597b6a614dc93eaae605ee293e674d79d32eb380"
+ integrity sha512-5ScJ+OmdX+O6HRuMGW4kv7RL9vIKdtdAj9wuWUKy1wbHY3jaM/UlyIiC1G7J6UJiiyMukjjK0QwL3P0vBd0yYg==
+ dependencies:
+ "@babel/helper-create-regexp-features-plugin" "^7.22.1"
+ "@babel/helper-plugin-utils" "^7.21.5"
"@babel/plugin-transform-unicode-regex@^7.0.0", "@babel/plugin-transform-unicode-regex@^7.18.6":
version "7.18.6"
@@ -1019,38 +981,34 @@
"@babel/helper-create-regexp-features-plugin" "^7.18.6"
"@babel/helper-plugin-utils" "^7.18.6"
-"@babel/preset-env@^7.16.11":
- version "7.20.2"
- resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.20.2.tgz#9b1642aa47bb9f43a86f9630011780dab7f86506"
- integrity sha512-1G0efQEWR1EHkKvKHqbG+IN/QdgwfByUpM5V5QroDzGV2t3S/WXNQd693cHiHTlCFMpr9B6FkPFXDA2lQcKoDg==
+"@babel/plugin-transform-unicode-sets-regex@^7.22.3":
+ version "7.22.3"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.22.3.tgz#7c14ee33fa69782b0101d0f7143d3fc73ce00700"
+ integrity sha512-hNufLdkF8vqywRp+P55j4FHXqAX2LRUccoZHH7AFn1pq5ZOO2ISKW9w13bFZVjBoTqeve2HOgoJCcaziJVhGNw==
dependencies:
- "@babel/compat-data" "^7.20.1"
- "@babel/helper-compilation-targets" "^7.20.0"
- "@babel/helper-plugin-utils" "^7.20.2"
- "@babel/helper-validator-option" "^7.18.6"
+ "@babel/helper-create-regexp-features-plugin" "^7.22.1"
+ "@babel/helper-plugin-utils" "^7.21.5"
+
+"@babel/preset-env@^7.20.0":
+ version "7.22.4"
+ resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.22.4.tgz#c86a82630f0e8c61d9bb9327b7b896732028cbed"
+ integrity sha512-c3lHOjbwBv0TkhYCr+XCR6wKcSZ1QbQTVdSkZUaVpLv8CVWotBMArWUi5UAJrcrQaEnleVkkvaV8F/pmc/STZQ==
+ dependencies:
+ "@babel/compat-data" "^7.22.3"
+ "@babel/helper-compilation-targets" "^7.22.1"
+ "@babel/helper-plugin-utils" "^7.21.5"
+ "@babel/helper-validator-option" "^7.21.0"
"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression" "^7.18.6"
- "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.18.9"
- "@babel/plugin-proposal-async-generator-functions" "^7.20.1"
- "@babel/plugin-proposal-class-properties" "^7.18.6"
- "@babel/plugin-proposal-class-static-block" "^7.18.6"
- "@babel/plugin-proposal-dynamic-import" "^7.18.6"
- "@babel/plugin-proposal-export-namespace-from" "^7.18.9"
- "@babel/plugin-proposal-json-strings" "^7.18.6"
- "@babel/plugin-proposal-logical-assignment-operators" "^7.18.9"
- "@babel/plugin-proposal-nullish-coalescing-operator" "^7.18.6"
- "@babel/plugin-proposal-numeric-separator" "^7.18.6"
- "@babel/plugin-proposal-object-rest-spread" "^7.20.2"
- "@babel/plugin-proposal-optional-catch-binding" "^7.18.6"
- "@babel/plugin-proposal-optional-chaining" "^7.18.9"
- "@babel/plugin-proposal-private-methods" "^7.18.6"
- "@babel/plugin-proposal-private-property-in-object" "^7.18.6"
- "@babel/plugin-proposal-unicode-property-regex" "^7.18.6"
+ "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.22.3"
+ "@babel/plugin-proposal-private-property-in-object" "^7.21.0"
"@babel/plugin-syntax-async-generators" "^7.8.4"
"@babel/plugin-syntax-class-properties" "^7.12.13"
"@babel/plugin-syntax-class-static-block" "^7.14.5"
"@babel/plugin-syntax-dynamic-import" "^7.8.3"
"@babel/plugin-syntax-export-namespace-from" "^7.8.3"
"@babel/plugin-syntax-import-assertions" "^7.20.0"
+ "@babel/plugin-syntax-import-attributes" "^7.22.3"
+ "@babel/plugin-syntax-import-meta" "^7.10.4"
"@babel/plugin-syntax-json-strings" "^7.8.3"
"@babel/plugin-syntax-logical-assignment-operators" "^7.10.4"
"@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3"
@@ -1060,54 +1018,71 @@
"@babel/plugin-syntax-optional-chaining" "^7.8.3"
"@babel/plugin-syntax-private-property-in-object" "^7.14.5"
"@babel/plugin-syntax-top-level-await" "^7.14.5"
- "@babel/plugin-transform-arrow-functions" "^7.18.6"
- "@babel/plugin-transform-async-to-generator" "^7.18.6"
+ "@babel/plugin-syntax-unicode-sets-regex" "^7.18.6"
+ "@babel/plugin-transform-arrow-functions" "^7.21.5"
+ "@babel/plugin-transform-async-generator-functions" "^7.22.3"
+ "@babel/plugin-transform-async-to-generator" "^7.20.7"
"@babel/plugin-transform-block-scoped-functions" "^7.18.6"
- "@babel/plugin-transform-block-scoping" "^7.20.2"
- "@babel/plugin-transform-classes" "^7.20.2"
- "@babel/plugin-transform-computed-properties" "^7.18.9"
- "@babel/plugin-transform-destructuring" "^7.20.2"
+ "@babel/plugin-transform-block-scoping" "^7.21.0"
+ "@babel/plugin-transform-class-properties" "^7.22.3"
+ "@babel/plugin-transform-class-static-block" "^7.22.3"
+ "@babel/plugin-transform-classes" "^7.21.0"
+ "@babel/plugin-transform-computed-properties" "^7.21.5"
+ "@babel/plugin-transform-destructuring" "^7.21.3"
"@babel/plugin-transform-dotall-regex" "^7.18.6"
"@babel/plugin-transform-duplicate-keys" "^7.18.9"
+ "@babel/plugin-transform-dynamic-import" "^7.22.1"
"@babel/plugin-transform-exponentiation-operator" "^7.18.6"
- "@babel/plugin-transform-for-of" "^7.18.8"
+ "@babel/plugin-transform-export-namespace-from" "^7.22.3"
+ "@babel/plugin-transform-for-of" "^7.21.5"
"@babel/plugin-transform-function-name" "^7.18.9"
+ "@babel/plugin-transform-json-strings" "^7.22.3"
"@babel/plugin-transform-literals" "^7.18.9"
+ "@babel/plugin-transform-logical-assignment-operators" "^7.22.3"
"@babel/plugin-transform-member-expression-literals" "^7.18.6"
- "@babel/plugin-transform-modules-amd" "^7.19.6"
- "@babel/plugin-transform-modules-commonjs" "^7.19.6"
- "@babel/plugin-transform-modules-systemjs" "^7.19.6"
+ "@babel/plugin-transform-modules-amd" "^7.20.11"
+ "@babel/plugin-transform-modules-commonjs" "^7.21.5"
+ "@babel/plugin-transform-modules-systemjs" "^7.22.3"
"@babel/plugin-transform-modules-umd" "^7.18.6"
- "@babel/plugin-transform-named-capturing-groups-regex" "^7.19.1"
- "@babel/plugin-transform-new-target" "^7.18.6"
+ "@babel/plugin-transform-named-capturing-groups-regex" "^7.22.3"
+ "@babel/plugin-transform-new-target" "^7.22.3"
+ "@babel/plugin-transform-nullish-coalescing-operator" "^7.22.3"
+ "@babel/plugin-transform-numeric-separator" "^7.22.3"
+ "@babel/plugin-transform-object-rest-spread" "^7.22.3"
"@babel/plugin-transform-object-super" "^7.18.6"
- "@babel/plugin-transform-parameters" "^7.20.1"
+ "@babel/plugin-transform-optional-catch-binding" "^7.22.3"
+ "@babel/plugin-transform-optional-chaining" "^7.22.3"
+ "@babel/plugin-transform-parameters" "^7.22.3"
+ "@babel/plugin-transform-private-methods" "^7.22.3"
+ "@babel/plugin-transform-private-property-in-object" "^7.22.3"
"@babel/plugin-transform-property-literals" "^7.18.6"
- "@babel/plugin-transform-regenerator" "^7.18.6"
+ "@babel/plugin-transform-regenerator" "^7.21.5"
"@babel/plugin-transform-reserved-words" "^7.18.6"
"@babel/plugin-transform-shorthand-properties" "^7.18.6"
- "@babel/plugin-transform-spread" "^7.19.0"
+ "@babel/plugin-transform-spread" "^7.20.7"
"@babel/plugin-transform-sticky-regex" "^7.18.6"
"@babel/plugin-transform-template-literals" "^7.18.9"
"@babel/plugin-transform-typeof-symbol" "^7.18.9"
- "@babel/plugin-transform-unicode-escapes" "^7.18.10"
+ "@babel/plugin-transform-unicode-escapes" "^7.21.5"
+ "@babel/plugin-transform-unicode-property-regex" "^7.22.3"
"@babel/plugin-transform-unicode-regex" "^7.18.6"
+ "@babel/plugin-transform-unicode-sets-regex" "^7.22.3"
"@babel/preset-modules" "^0.1.5"
- "@babel/types" "^7.20.2"
- babel-plugin-polyfill-corejs2 "^0.3.3"
- babel-plugin-polyfill-corejs3 "^0.6.0"
- babel-plugin-polyfill-regenerator "^0.4.1"
- core-js-compat "^3.25.1"
+ "@babel/types" "^7.22.4"
+ babel-plugin-polyfill-corejs2 "^0.4.3"
+ babel-plugin-polyfill-corejs3 "^0.8.1"
+ babel-plugin-polyfill-regenerator "^0.5.0"
+ core-js-compat "^3.30.2"
semver "^6.3.0"
-"@babel/preset-flow@^7.0.0":
- version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/preset-flow/-/preset-flow-7.18.6.tgz#83f7602ba566e72a9918beefafef8ef16d2810cb"
- integrity sha512-E7BDhL64W6OUqpuyHnSroLnqyRTcG6ZdOBl1OKI/QK/HJfplqK/S3sq1Cckx7oTodJ5yOXyfw7rEADJ6UjoQDQ==
+"@babel/preset-flow@^7.13.13":
+ version "7.21.4"
+ resolved "https://registry.yarnpkg.com/@babel/preset-flow/-/preset-flow-7.21.4.tgz#a5de2a1cafa61f0e0b3af9b30ff0295d38d3608f"
+ integrity sha512-F24cSq4DIBmhq4OzK3dE63NHagb27OPE3eWR+HLekt4Z3Y5MzIIUGF3LlLgV0gN8vzbDViSY7HnrReNVCJXTeA==
dependencies:
- "@babel/helper-plugin-utils" "^7.18.6"
- "@babel/helper-validator-option" "^7.18.6"
- "@babel/plugin-transform-flow-strip-types" "^7.18.6"
+ "@babel/helper-plugin-utils" "^7.20.2"
+ "@babel/helper-validator-option" "^7.21.0"
+ "@babel/plugin-transform-flow-strip-types" "^7.21.0"
"@babel/preset-modules@^0.1.5":
version "0.1.5"
@@ -1120,19 +1095,21 @@
"@babel/types" "^7.4.4"
esutils "^2.0.2"
-"@babel/preset-typescript@^7.1.0", "@babel/preset-typescript@^7.16.7":
- version "7.18.6"
- resolved "https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.18.6.tgz#ce64be3e63eddc44240c6358daefac17b3186399"
- integrity sha512-s9ik86kXBAnD760aybBucdpnLsAt0jK1xqJn2juOn9lkOvSHV60os5hxoVJsPzMQxvnUJFAlkont2DvvaYEBtQ==
+"@babel/preset-typescript@^7.13.0", "@babel/preset-typescript@^7.16.7":
+ version "7.21.5"
+ resolved "https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.21.5.tgz#68292c884b0e26070b4d66b202072d391358395f"
+ integrity sha512-iqe3sETat5EOrORXiQ6rWfoOg2y68Cs75B9wNxdPW4kixJxh7aXQE1KPdWLDniC24T/6dSnguF33W9j/ZZQcmA==
dependencies:
- "@babel/helper-plugin-utils" "^7.18.6"
- "@babel/helper-validator-option" "^7.18.6"
- "@babel/plugin-transform-typescript" "^7.18.6"
+ "@babel/helper-plugin-utils" "^7.21.5"
+ "@babel/helper-validator-option" "^7.21.0"
+ "@babel/plugin-syntax-jsx" "^7.21.4"
+ "@babel/plugin-transform-modules-commonjs" "^7.21.5"
+ "@babel/plugin-transform-typescript" "^7.21.3"
-"@babel/register@^7.0.0":
- version "7.18.9"
- resolved "https://registry.yarnpkg.com/@babel/register/-/register-7.18.9.tgz#1888b24bc28d5cc41c412feb015e9ff6b96e439c"
- integrity sha512-ZlbnXDcNYHMR25ITwwNKT88JiaukkdVj/nG7r3wnuXkOTHc60Uy05PwMCPre0hSkY68E6zK3xz+vUJSP2jWmcw==
+"@babel/register@^7.13.16":
+ version "7.21.0"
+ resolved "https://registry.yarnpkg.com/@babel/register/-/register-7.21.0.tgz#c97bf56c2472e063774f31d344c592ebdcefa132"
+ integrity sha512-9nKsPmYDi5DidAqJaQooxIhsLJiNMkGr8ypQ8Uic7cIox7UCDsM7HuUGxdGT7mSDTYbqzIdsOWzfBton/YJrMw==
dependencies:
clone-deep "^4.0.1"
find-cache-dir "^2.0.0"
@@ -1140,84 +1117,47 @@
pirates "^4.0.5"
source-map-support "^0.5.16"
-"@babel/runtime-corejs3@^7.10.2":
- version "7.20.1"
- resolved "https://registry.yarnpkg.com/@babel/runtime-corejs3/-/runtime-corejs3-7.20.1.tgz#d0775a49bb5fba77e42cbb7276c9955c7b05af8d"
- integrity sha512-CGulbEDcg/ND1Im7fUNRZdGXmX2MTWVVZacQi/6DiKE5HNwZ3aVTm5PV4lO8HHz0B2h8WQyvKKjbX5XgTtydsg==
- dependencies:
- core-js-pure "^3.25.1"
- regenerator-runtime "^0.13.10"
+"@babel/regjsgen@^0.8.0":
+ version "0.8.0"
+ resolved "https://registry.yarnpkg.com/@babel/regjsgen/-/regjsgen-0.8.0.tgz#f0ba69b075e1f05fb2825b7fad991e7adbb18310"
+ integrity sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==
-"@babel/runtime@^7.10.2", "@babel/runtime@^7.12.5", "@babel/runtime@^7.18.6", "@babel/runtime@^7.18.9", "@babel/runtime@^7.8.4":
- version "7.20.1"
- resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.20.1.tgz#1148bb33ab252b165a06698fde7576092a78b4a9"
- integrity sha512-mrzLkl6U9YLF8qpqI7TB82PESyEGjm/0Ly91jG575eVxMMlb8fYfOXFZIJ8XfLrJZQbm7dlKry2bJmXBUEkdFg==
- dependencies:
- regenerator-runtime "^0.13.10"
-
-"@babel/template@^7.0.0", "@babel/template@^7.18.10", "@babel/template@^7.3.3":
- version "7.18.10"
- resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.18.10.tgz#6f9134835970d1dbf0835c0d100c9f38de0c5e71"
- integrity sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA==
+"@babel/runtime@^7.0.0", "@babel/runtime@^7.20.0", "@babel/runtime@^7.20.7", "@babel/runtime@^7.8.4":
+ version "7.22.3"
+ resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.22.3.tgz#0a7fce51d43adbf0f7b517a71f4c3aaca92ebcbb"
+ integrity sha512-XsDuspWKLUsxwCp6r7EhsExHtYfbe5oAGQ19kqngTdCPUoPQzOPdUbD/pB9PJiwb2ptYKQDjSJT3R6dC+EPqfQ==
dependencies:
- "@babel/code-frame" "^7.18.6"
- "@babel/parser" "^7.18.10"
- "@babel/types" "^7.18.10"
+ regenerator-runtime "^0.13.11"
-"@babel/template@^7.20.7":
- version "7.20.7"
- resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.20.7.tgz#a15090c2839a83b02aa996c0b4994005841fd5a8"
- integrity sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==
+"@babel/template@^7.0.0", "@babel/template@^7.18.10", "@babel/template@^7.20.7", "@babel/template@^7.21.9", "@babel/template@^7.3.3":
+ version "7.21.9"
+ resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.21.9.tgz#bf8dad2859130ae46088a99c1f265394877446fb"
+ integrity sha512-MK0X5k8NKOuWRamiEfc3KEJiHMTkGZNUjzMipqCGDDc6ijRl/B7RGSKVGncu4Ro/HdyzzY6cmoXuKI2Gffk7vQ==
dependencies:
- "@babel/code-frame" "^7.18.6"
- "@babel/parser" "^7.20.7"
- "@babel/types" "^7.20.7"
-
-"@babel/traverse@^7.14.0", "@babel/traverse@^7.19.0", "@babel/traverse@^7.19.1", "@babel/traverse@^7.20.1", "@babel/traverse@^7.7.2":
- version "7.20.1"
- resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.20.1.tgz#9b15ccbf882f6d107eeeecf263fbcdd208777ec8"
- integrity sha512-d3tN8fkVJwFLkHkBN479SOsw4DMZnz8cdbL/gvuDuzy3TS6Nfw80HuQqhw1pITbIruHyh7d1fMA47kWzmcUEGA==
- dependencies:
- "@babel/code-frame" "^7.18.6"
- "@babel/generator" "^7.20.1"
- "@babel/helper-environment-visitor" "^7.18.9"
- "@babel/helper-function-name" "^7.19.0"
- "@babel/helper-hoist-variables" "^7.18.6"
- "@babel/helper-split-export-declaration" "^7.18.6"
- "@babel/parser" "^7.20.1"
- "@babel/types" "^7.20.0"
- debug "^4.1.0"
- globals "^11.1.0"
+ "@babel/code-frame" "^7.21.4"
+ "@babel/parser" "^7.21.9"
+ "@babel/types" "^7.21.5"
-"@babel/traverse@^7.21.5":
- version "7.21.5"
- resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.21.5.tgz#ad22361d352a5154b498299d523cf72998a4b133"
- integrity sha512-AhQoI3YjWi6u/y/ntv7k48mcrCXmus0t79J9qPNlk/lAsFlCiJ047RmbfMOawySTHtywXhbXgpx/8nXMYd+oFw==
+"@babel/traverse@^7.20.0", "@babel/traverse@^7.20.5", "@babel/traverse@^7.22.1", "@babel/traverse@^7.7.2", "@babel/traverse@^7.7.4":
+ version "7.22.4"
+ resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.22.4.tgz#c3cf96c5c290bd13b55e29d025274057727664c0"
+ integrity sha512-Tn1pDsjIcI+JcLKq1AVlZEr4226gpuAQTsLMorsYg9tuS/kG7nuwwJ4AB8jfQuEgb/COBwR/DqJxmoiYFu5/rQ==
dependencies:
"@babel/code-frame" "^7.21.4"
- "@babel/generator" "^7.21.5"
- "@babel/helper-environment-visitor" "^7.21.5"
+ "@babel/generator" "^7.22.3"
+ "@babel/helper-environment-visitor" "^7.22.1"
"@babel/helper-function-name" "^7.21.0"
"@babel/helper-hoist-variables" "^7.18.6"
"@babel/helper-split-export-declaration" "^7.18.6"
- "@babel/parser" "^7.21.5"
- "@babel/types" "^7.21.5"
+ "@babel/parser" "^7.22.4"
+ "@babel/types" "^7.22.4"
debug "^4.1.0"
globals "^11.1.0"
-"@babel/types@^7.0.0", "@babel/types@^7.18.10", "@babel/types@^7.18.6", "@babel/types@^7.18.9", "@babel/types@^7.19.0", "@babel/types@^7.20.0", "@babel/types@^7.20.2", "@babel/types@^7.3.0", "@babel/types@^7.3.3", "@babel/types@^7.4.4":
- version "7.20.2"
- resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.20.2.tgz#67ac09266606190f496322dbaff360fdaa5e7842"
- integrity sha512-FnnvsNWgZCr232sqtXggapvlkk/tuwR/qhGzcmxI0GXLCjmPYQPzio2FbdlWuY6y1sHFfQKk+rRbUZ9VStQMog==
- dependencies:
- "@babel/helper-string-parser" "^7.19.4"
- "@babel/helper-validator-identifier" "^7.19.1"
- to-fast-properties "^2.0.0"
-
-"@babel/types@^7.20.7", "@babel/types@^7.21.0", "@babel/types@^7.21.4", "@babel/types@^7.21.5":
- version "7.21.5"
- resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.21.5.tgz#18dfbd47c39d3904d5db3d3dc2cc80bedb60e5b6"
- integrity sha512-m4AfNvVF2mVC/F7fDEdH2El3HzUg9It/XsCxZiOTTA3m3qYfcSVSbTfM6Q9xG+hYDniZssYhlXKKUMD5m8tF4Q==
+"@babel/types@^7.0.0", "@babel/types@^7.18.6", "@babel/types@^7.18.9", "@babel/types@^7.20.0", "@babel/types@^7.20.5", "@babel/types@^7.20.7", "@babel/types@^7.21.0", "@babel/types@^7.21.4", "@babel/types@^7.21.5", "@babel/types@^7.22.0", "@babel/types@^7.22.3", "@babel/types@^7.22.4", "@babel/types@^7.3.3", "@babel/types@^7.4.4":
+ version "7.22.4"
+ resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.22.4.tgz#56a2653ae7e7591365dabf20b76295410684c071"
+ integrity sha512-Tx9x3UBHTTsMSW85WB2kphxYQVvrZ/t1FxD88IpSgIjiUJlCm9z+xWIDwyo1vffTwSqteqyznB8ZE9vYYk16zA==
dependencies:
"@babel/helper-string-parser" "^7.21.5"
"@babel/helper-validator-identifier" "^7.19.1"
@@ -1228,14 +1168,6 @@
resolved "https://registry.yarnpkg.com/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz#75a2e8b51cb758a7553d6804a5932d7aace75c39"
integrity sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==
-"@cnakazawa/watch@^1.0.3":
- version "1.0.4"
- resolved "https://registry.yarnpkg.com/@cnakazawa/watch/-/watch-1.0.4.tgz#f864ae85004d0fcab6f50be9141c4da368d1656a"
- integrity sha512-v9kIhKwjeZThiWrLmj0y17CWoyddASLj9O2yvbZkbvw/N3rWOYy9zkV66ursAoVr0mV15bL8g0c4QZUE6cdDoQ==
- dependencies:
- exec-sh "^0.3.2"
- minimist "^1.2.0"
-
"@dolbyio/comms-sdk-react-native@^3.8.0":
version "3.8.0"
resolved "https://registry.yarnpkg.com/@dolbyio/comms-sdk-react-native/-/comms-sdk-react-native-3.8.0.tgz#7699ba845805125c54c18b04e99795a8f59de874"
@@ -1248,21 +1180,38 @@
dependencies:
"@types/hammerjs" "^2.0.36"
-"@eslint/eslintrc@^1.3.3":
- version "1.3.3"
- resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-1.3.3.tgz#2b044ab39fdfa75b4688184f9e573ce3c5b0ff95"
- integrity sha512-uj3pT6Mg+3t39fvLrj8iuCIJ38zKO9FpGtJ4BBJebJhEwjoT+KLVNCcHT5QC9NGRIEi7fZ0ZR8YRb884auB4Lg==
+"@eslint-community/eslint-utils@^4.2.0":
+ version "4.4.0"
+ resolved "https://registry.yarnpkg.com/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz#a23514e8fb9af1269d5f7788aa556798d61c6b59"
+ integrity sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==
+ dependencies:
+ eslint-visitor-keys "^3.3.0"
+
+"@eslint-community/regexpp@^4.4.0":
+ version "4.5.1"
+ resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.5.1.tgz#cdd35dce4fa1a89a4fd42b1599eb35b3af408884"
+ integrity sha512-Z5ba73P98O1KUYCCJTUeVpja9RcGoMdncZ6T49FCUl2lN38JtCJ+3WgIDBv0AuY4WChU5PmtJmOCTlN6FZTFKQ==
+
+"@eslint/eslintrc@^2.0.3":
+ version "2.0.3"
+ resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-2.0.3.tgz#4910db5505f4d503f27774bf356e3704818a0331"
+ integrity sha512-+5gy6OQfk+xx3q0d6jGZZC3f3KzAkXc/IanVxd1is/VIIziRqqt3ongQz0FiTUXqTk0c7aDB3OaFuKnuSoJicQ==
dependencies:
ajv "^6.12.4"
debug "^4.3.2"
- espree "^9.4.0"
- globals "^13.15.0"
+ espree "^9.5.2"
+ globals "^13.19.0"
ignore "^5.2.0"
import-fresh "^3.2.1"
js-yaml "^4.1.0"
minimatch "^3.1.2"
strip-json-comments "^3.1.1"
+"@eslint/js@8.42.0":
+ version "8.42.0"
+ resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.42.0.tgz#484a1d638de2911e6f5a30c12f49c7e4a3270fb6"
+ integrity sha512-6SWlXpWU5AvId8Ac7zjzmIOqMOba/JWY8XZ4A7q7Gn1Vlfg/SFFIlrtHXt9nPn4op9ZPAkl91Jao+QQv3r/ukw==
+
"@formatjs/ecma402-abstract@1.12.0":
version "1.12.0"
resolved "https://registry.yarnpkg.com/@formatjs/ecma402-abstract/-/ecma402-abstract-1.12.0.tgz#2fb5e8983d5fae2fad9ec6c77aec1803c2b88d8e"
@@ -1334,9 +1283,9 @@
tslib "2.4.0"
"@gorhom/bottom-sheet@^4":
- version "4.4.5"
- resolved "https://registry.yarnpkg.com/@gorhom/bottom-sheet/-/bottom-sheet-4.4.5.tgz#b9041b01ce1af9a936e7c0fc1d78f026d759eebe"
- integrity sha512-Z5Z20wshLUB8lIdtMKoJaRnjd64wBR/q8EeVPThrg+skrcBwBPHfUwZJ2srB0rEszA/01ejSJy/ixyd7Ra7vUA==
+ version "4.4.7"
+ resolved "https://registry.yarnpkg.com/@gorhom/bottom-sheet/-/bottom-sheet-4.4.7.tgz#fc80b3f0b7ebab056ce226f3aa3a89b2db8660dd"
+ integrity sha512-ukTuTqDQi2heo68hAJsBpUQeEkdqP9REBcn47OpuvPKhdPuO1RBOOADjqXJNCnZZRcY+HqbnGPMSLFVc31zylQ==
dependencies:
"@gorhom/portal" "1.0.14"
invariant "^2.2.4"
@@ -1360,10 +1309,10 @@
dependencies:
"@hapi/hoek" "^9.0.0"
-"@humanwhocodes/config-array@^0.11.6":
- version "0.11.7"
- resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.11.7.tgz#38aec044c6c828f6ed51d5d7ae3d9b9faf6dbb0f"
- integrity sha512-kBbPWzN8oVMLb0hOUYXhmxggL/1cJE6ydvjDIGi9EnAGUyA7cLVKQg+d/Dsm+KZwx2czGHrCmMVLiyg8s5JPKw==
+"@humanwhocodes/config-array@^0.11.10":
+ version "0.11.10"
+ resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.11.10.tgz#5a3ffe32cc9306365fb3fd572596cd602d5e12d2"
+ integrity sha512-KVVjQmNUepDVGXNuoRRdmmEjruj0KfiGSbS8LVc12LMsWDQzRXJ0qdhN8L8uUigKpfEHRhlaQFY0ib1tnUbNeQ==
dependencies:
"@humanwhocodes/object-schema" "^1.2.1"
debug "^4.1.1"
@@ -1400,18 +1349,6 @@
resolved "https://registry.yarnpkg.com/@istanbuljs/schema/-/schema-0.1.3.tgz#e45e384e4b8ec16bce2fd903af78450f6bf7ec98"
integrity sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==
-"@jest/console@^27.5.1":
- version "27.5.1"
- resolved "https://registry.yarnpkg.com/@jest/console/-/console-27.5.1.tgz#260fe7239602fe5130a94f1aa386eff54b014bba"
- integrity sha512-kZ/tNpS3NXn0mlXXXPNuDZnb4c0oZ20r4K5eemM2k30ZC3G0T02nXUvyhf5YdbXWHPEJLc9qGLxEZ216MdL+Zg==
- dependencies:
- "@jest/types" "^27.5.1"
- "@types/node" "*"
- chalk "^4.0.0"
- jest-message-util "^27.5.1"
- jest-util "^27.5.1"
- slash "^3.0.0"
-
"@jest/console@^29.5.0":
version "29.5.0"
resolved "https://registry.yarnpkg.com/@jest/console/-/console-29.5.0.tgz#593a6c5c0d3f75689835f1b3b4688c4f8544cb57"
@@ -1424,40 +1361,6 @@
jest-util "^29.5.0"
slash "^3.0.0"
-"@jest/core@^27.5.1":
- version "27.5.1"
- resolved "https://registry.yarnpkg.com/@jest/core/-/core-27.5.1.tgz#267ac5f704e09dc52de2922cbf3af9edcd64b626"
- integrity sha512-AK6/UTrvQD0Cd24NSqmIA6rKsu0tKIxfiCducZvqxYdmMisOYAsdItspT+fQDQYARPf8XgjAFZi0ogW2agH5nQ==
- dependencies:
- "@jest/console" "^27.5.1"
- "@jest/reporters" "^27.5.1"
- "@jest/test-result" "^27.5.1"
- "@jest/transform" "^27.5.1"
- "@jest/types" "^27.5.1"
- "@types/node" "*"
- ansi-escapes "^4.2.1"
- chalk "^4.0.0"
- emittery "^0.8.1"
- exit "^0.1.2"
- graceful-fs "^4.2.9"
- jest-changed-files "^27.5.1"
- jest-config "^27.5.1"
- jest-haste-map "^27.5.1"
- jest-message-util "^27.5.1"
- jest-regex-util "^27.5.1"
- jest-resolve "^27.5.1"
- jest-resolve-dependencies "^27.5.1"
- jest-runner "^27.5.1"
- jest-runtime "^27.5.1"
- jest-snapshot "^27.5.1"
- jest-util "^27.5.1"
- jest-validate "^27.5.1"
- jest-watcher "^27.5.1"
- micromatch "^4.0.4"
- rimraf "^3.0.0"
- slash "^3.0.0"
- strip-ansi "^6.0.0"
-
"@jest/core@^29.5.0":
version "29.5.0"
resolved "https://registry.yarnpkg.com/@jest/core/-/core-29.5.0.tgz#76674b96904484e8214614d17261cc491e5f1f03"
@@ -1492,22 +1395,12 @@
slash "^3.0.0"
strip-ansi "^6.0.0"
-"@jest/create-cache-key-function@^27.0.1":
- version "27.5.1"
- resolved "https://registry.yarnpkg.com/@jest/create-cache-key-function/-/create-cache-key-function-27.5.1.tgz#7448fae15602ea95c828f5eceed35c202a820b31"
- integrity sha512-dmH1yW+makpTSURTy8VzdUwFnfQh1G8R+DxO2Ho2FFmBbKFEVm+3jWdvFhE2VqB/LATCTokkP0dotjyQyw5/AQ==
- dependencies:
- "@jest/types" "^27.5.1"
-
-"@jest/environment@^27.5.1":
- version "27.5.1"
- resolved "https://registry.yarnpkg.com/@jest/environment/-/environment-27.5.1.tgz#d7425820511fe7158abbecc010140c3fd3be9c74"
- integrity sha512-/WQjhPJe3/ghaol/4Bq480JKXV/Rfw8nQdN7f41fM8VDHLcxKXou6QyXAh3EFr9/bVG3x74z1NWDkP87EiY8gA==
+"@jest/create-cache-key-function@^29.2.1":
+ version "29.5.0"
+ resolved "https://registry.yarnpkg.com/@jest/create-cache-key-function/-/create-cache-key-function-29.5.0.tgz#24e019d03e634be4affe8bcee787d75a36ae57a2"
+ integrity sha512-LIDZyZgnZss7uikvBKBB/USWwG+GO8+GnwRWT+YkCGDGsqLQlhm9BC3z6+7+eMs1kUlvXQIWEzBR8Q2Pnvx6lg==
dependencies:
- "@jest/fake-timers" "^27.5.1"
- "@jest/types" "^27.5.1"
- "@types/node" "*"
- jest-mock "^27.5.1"
+ "@jest/types" "^29.5.0"
"@jest/environment@^29.5.0":
version "29.5.0"
@@ -1534,18 +1427,6 @@
expect "^29.5.0"
jest-snapshot "^29.5.0"
-"@jest/fake-timers@^27.5.1":
- version "27.5.1"
- resolved "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-27.5.1.tgz#76979745ce0579c8a94a4678af7a748eda8ada74"
- integrity sha512-/aPowoolwa07k7/oM3aASneNeBGCmGQsc3ugN4u6s4C/+s5M64MFo/+djTdiwcbQlRfFElGuDXWzaWj6QgKObQ==
- dependencies:
- "@jest/types" "^27.5.1"
- "@sinonjs/fake-timers" "^8.0.1"
- "@types/node" "*"
- jest-message-util "^27.5.1"
- jest-mock "^27.5.1"
- jest-util "^27.5.1"
-
"@jest/fake-timers@^29.5.0":
version "29.5.0"
resolved "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-29.5.0.tgz#d4d09ec3286b3d90c60bdcd66ed28d35f1b4dc2c"
@@ -1558,55 +1439,15 @@
jest-mock "^29.5.0"
jest-util "^29.5.0"
-"@jest/globals@^27.5.1":
- version "27.5.1"
- resolved "https://registry.yarnpkg.com/@jest/globals/-/globals-27.5.1.tgz#7ac06ce57ab966566c7963431cef458434601b2b"
- integrity sha512-ZEJNB41OBQQgGzgyInAv0UUfDDj3upmHydjieSxFvTRuZElrx7tXg/uVQ5hYVEwiXs3+aMsAeEc9X7xiSKCm4Q==
- dependencies:
- "@jest/environment" "^27.5.1"
- "@jest/types" "^27.5.1"
- expect "^27.5.1"
-
-"@jest/globals@^29.5.0":
- version "29.5.0"
- resolved "https://registry.yarnpkg.com/@jest/globals/-/globals-29.5.0.tgz#6166c0bfc374c58268677539d0c181f9c1833298"
- integrity sha512-S02y0qMWGihdzNbUiqSAiKSpSozSuHX5UYc7QbnHP+D9Lyw8DgGGCinrN9uSuHPeKgSSzvPom2q1nAtBvUsvPQ==
- dependencies:
- "@jest/environment" "^29.5.0"
- "@jest/expect" "^29.5.0"
- "@jest/types" "^29.5.0"
- jest-mock "^29.5.0"
-
-"@jest/reporters@^27.5.1":
- version "27.5.1"
- resolved "https://registry.yarnpkg.com/@jest/reporters/-/reporters-27.5.1.tgz#ceda7be96170b03c923c37987b64015812ffec04"
- integrity sha512-cPXh9hWIlVJMQkVk84aIvXuBB4uQQmFqZiacloFuGiP3ah1sbCxCosidXFDfqG8+6fO1oR2dTJTlsOy4VFmUfw==
- dependencies:
- "@bcoe/v8-coverage" "^0.2.3"
- "@jest/console" "^27.5.1"
- "@jest/test-result" "^27.5.1"
- "@jest/transform" "^27.5.1"
- "@jest/types" "^27.5.1"
- "@types/node" "*"
- chalk "^4.0.0"
- collect-v8-coverage "^1.0.0"
- exit "^0.1.2"
- glob "^7.1.2"
- graceful-fs "^4.2.9"
- istanbul-lib-coverage "^3.0.0"
- istanbul-lib-instrument "^5.1.0"
- istanbul-lib-report "^3.0.0"
- istanbul-lib-source-maps "^4.0.0"
- istanbul-reports "^3.1.3"
- jest-haste-map "^27.5.1"
- jest-resolve "^27.5.1"
- jest-util "^27.5.1"
- jest-worker "^27.5.1"
- slash "^3.0.0"
- source-map "^0.6.0"
- string-length "^4.0.1"
- terminal-link "^2.0.0"
- v8-to-istanbul "^8.1.0"
+"@jest/globals@^29.5.0":
+ version "29.5.0"
+ resolved "https://registry.yarnpkg.com/@jest/globals/-/globals-29.5.0.tgz#6166c0bfc374c58268677539d0c181f9c1833298"
+ integrity sha512-S02y0qMWGihdzNbUiqSAiKSpSozSuHX5UYc7QbnHP+D9Lyw8DgGGCinrN9uSuHPeKgSSzvPom2q1nAtBvUsvPQ==
+ dependencies:
+ "@jest/environment" "^29.5.0"
+ "@jest/expect" "^29.5.0"
+ "@jest/types" "^29.5.0"
+ jest-mock "^29.5.0"
"@jest/reporters@^29.5.0":
version "29.5.0"
@@ -1638,13 +1479,6 @@
strip-ansi "^6.0.0"
v8-to-istanbul "^9.0.1"
-"@jest/schemas@^29.0.0":
- version "29.0.0"
- resolved "https://registry.yarnpkg.com/@jest/schemas/-/schemas-29.0.0.tgz#5f47f5994dd4ef067fb7b4188ceac45f77fe952a"
- integrity sha512-3Ab5HgYIIAnS0HjqJHQYZS+zXc4tUmTmBH3z83ajI6afXp8X3ZtdLX+nXx+I7LNkJD7uN9LAVhgnjDgZa2z0kA==
- dependencies:
- "@sinclair/typebox" "^0.24.1"
-
"@jest/schemas@^29.4.3":
version "29.4.3"
resolved "https://registry.yarnpkg.com/@jest/schemas/-/schemas-29.4.3.tgz#39cf1b8469afc40b6f5a2baaa146e332c4151788"
@@ -1652,15 +1486,6 @@
dependencies:
"@sinclair/typebox" "^0.25.16"
-"@jest/source-map@^27.5.1":
- version "27.5.1"
- resolved "https://registry.yarnpkg.com/@jest/source-map/-/source-map-27.5.1.tgz#6608391e465add4205eae073b55e7f279e04e8cf"
- integrity sha512-y9NIHUYF3PJRlHk98NdC/N1gl88BL08aQQgu4k4ZopQkCw9t9cV8mtl3TV8b/YCB8XaVTFrmUTAJvjsntDireg==
- dependencies:
- callsites "^3.0.0"
- graceful-fs "^4.2.9"
- source-map "^0.6.0"
-
"@jest/source-map@^29.4.3":
version "29.4.3"
resolved "https://registry.yarnpkg.com/@jest/source-map/-/source-map-29.4.3.tgz#ff8d05cbfff875d4a791ab679b4333df47951d20"
@@ -1670,16 +1495,6 @@
callsites "^3.0.0"
graceful-fs "^4.2.9"
-"@jest/test-result@^27.5.1":
- version "27.5.1"
- resolved "https://registry.yarnpkg.com/@jest/test-result/-/test-result-27.5.1.tgz#56a6585fa80f7cdab72b8c5fc2e871d03832f5bb"
- integrity sha512-EW35l2RYFUcUQxFJz5Cv5MTOxlJIQs4I7gxzi2zVU7PJhOwfYq1MdC5nhSmYjX1gmMmLPvB3sIaC+BkcHRBfag==
- dependencies:
- "@jest/console" "^27.5.1"
- "@jest/types" "^27.5.1"
- "@types/istanbul-lib-coverage" "^2.0.0"
- collect-v8-coverage "^1.0.0"
-
"@jest/test-result@^29.5.0":
version "29.5.0"
resolved "https://registry.yarnpkg.com/@jest/test-result/-/test-result-29.5.0.tgz#7c856a6ca84f45cc36926a4e9c6b57f1973f1408"
@@ -1690,16 +1505,6 @@
"@types/istanbul-lib-coverage" "^2.0.0"
collect-v8-coverage "^1.0.0"
-"@jest/test-sequencer@^27.5.1":
- version "27.5.1"
- resolved "https://registry.yarnpkg.com/@jest/test-sequencer/-/test-sequencer-27.5.1.tgz#4057e0e9cea4439e544c6353c6affe58d095745b"
- integrity sha512-LCheJF7WB2+9JuCS7VB/EmGIdQuhtqjRNI9A43idHv3E4KltCTsPsLxvdaubFHSYwY/fNjMWjl6vNRhDiN7vpQ==
- dependencies:
- "@jest/test-result" "^27.5.1"
- graceful-fs "^4.2.9"
- jest-haste-map "^27.5.1"
- jest-runtime "^27.5.1"
-
"@jest/test-sequencer@^29.5.0":
version "29.5.0"
resolved "https://registry.yarnpkg.com/@jest/test-sequencer/-/test-sequencer-29.5.0.tgz#34d7d82d3081abd523dbddc038a3ddcb9f6d3cc4"
@@ -1710,27 +1515,6 @@
jest-haste-map "^29.5.0"
slash "^3.0.0"
-"@jest/transform@^27.5.1":
- version "27.5.1"
- resolved "https://registry.yarnpkg.com/@jest/transform/-/transform-27.5.1.tgz#6c3501dcc00c4c08915f292a600ece5ecfe1f409"
- integrity sha512-ipON6WtYgl/1329g5AIJVbUuEh0wZVbdpGwC99Jw4LwuoBNS95MVphU6zOeD9pDkon+LLbFL7lOQRapbB8SCHw==
- dependencies:
- "@babel/core" "^7.1.0"
- "@jest/types" "^27.5.1"
- babel-plugin-istanbul "^6.1.1"
- chalk "^4.0.0"
- convert-source-map "^1.4.0"
- fast-json-stable-stringify "^2.0.0"
- graceful-fs "^4.2.9"
- jest-haste-map "^27.5.1"
- jest-regex-util "^27.5.1"
- jest-util "^27.5.1"
- micromatch "^4.0.4"
- pirates "^4.0.4"
- slash "^3.0.0"
- source-map "^0.6.1"
- write-file-atomic "^3.0.0"
-
"@jest/transform@^29.5.0":
version "29.5.0"
resolved "https://registry.yarnpkg.com/@jest/transform/-/transform-29.5.0.tgz#cf9c872d0965f0cbd32f1458aa44a2b1988b00f9"
@@ -1786,18 +1570,10 @@
"@types/yargs" "^17.0.8"
chalk "^4.0.0"
-"@jridgewell/gen-mapping@^0.1.0":
- version "0.1.1"
- resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz#e5d2e450306a9491e3bd77e323e38d7aff315996"
- integrity sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==
- dependencies:
- "@jridgewell/set-array" "^1.0.0"
- "@jridgewell/sourcemap-codec" "^1.4.10"
-
"@jridgewell/gen-mapping@^0.3.0", "@jridgewell/gen-mapping@^0.3.2":
- version "0.3.2"
- resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz#c1aedc61e853f2bb9f5dfe6d4442d3b565b253b9"
- integrity sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==
+ version "0.3.3"
+ resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz#7e02e6eb5df901aaedb08514203b096614024098"
+ integrity sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==
dependencies:
"@jridgewell/set-array" "^1.0.1"
"@jridgewell/sourcemap-codec" "^1.4.10"
@@ -1808,25 +1584,30 @@
resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz#2203b118c157721addfe69d47b70465463066d78"
integrity sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==
-"@jridgewell/set-array@^1.0.0", "@jridgewell/set-array@^1.0.1":
+"@jridgewell/set-array@^1.0.1":
version "1.1.2"
resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.1.2.tgz#7c6cf998d6d20b914c0a55a91ae928ff25965e72"
integrity sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==
-"@jridgewell/source-map@^0.3.2":
- version "0.3.2"
- resolved "https://registry.yarnpkg.com/@jridgewell/source-map/-/source-map-0.3.2.tgz#f45351aaed4527a298512ec72f81040c998580fb"
- integrity sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw==
+"@jridgewell/source-map@^0.3.3":
+ version "0.3.3"
+ resolved "https://registry.yarnpkg.com/@jridgewell/source-map/-/source-map-0.3.3.tgz#8108265659d4c33e72ffe14e33d6cc5eb59f2fda"
+ integrity sha512-b+fsZXeLYi9fEULmfBrhxn4IrPlINf8fiNarzTof004v3lFdntdwa9PF7vFJqm3mg7s+ScJMxXaE3Acp1irZcg==
dependencies:
"@jridgewell/gen-mapping" "^0.3.0"
"@jridgewell/trace-mapping" "^0.3.9"
-"@jridgewell/sourcemap-codec@1.4.14", "@jridgewell/sourcemap-codec@^1.4.10":
+"@jridgewell/sourcemap-codec@1.4.14":
version "1.4.14"
resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz#add4c98d341472a289190b424efbdb096991bb24"
integrity sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==
-"@jridgewell/trace-mapping@^0.3.12", "@jridgewell/trace-mapping@^0.3.15", "@jridgewell/trace-mapping@^0.3.17":
+"@jridgewell/sourcemap-codec@^1.4.10":
+ version "1.4.15"
+ resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz#d7c6e6755c78567a951e04ab52ef0fd26de59f32"
+ integrity sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==
+
+"@jridgewell/trace-mapping@^0.3.12", "@jridgewell/trace-mapping@^0.3.15", "@jridgewell/trace-mapping@^0.3.17", "@jridgewell/trace-mapping@^0.3.9":
version "0.3.18"
resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz#25783b2086daf6ff1dcb53c9249ae480e4dd4cd6"
integrity sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==
@@ -1834,13 +1615,12 @@
"@jridgewell/resolve-uri" "3.1.0"
"@jridgewell/sourcemap-codec" "1.4.14"
-"@jridgewell/trace-mapping@^0.3.9":
- version "0.3.17"
- resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.17.tgz#793041277af9073b0951a7fe0f0d8c4c98c36985"
- integrity sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g==
+"@nicolo-ribaudo/eslint-scope-5-internals@5.1.1-v1":
+ version "5.1.1-v1"
+ resolved "https://registry.yarnpkg.com/@nicolo-ribaudo/eslint-scope-5-internals/-/eslint-scope-5-internals-5.1.1-v1.tgz#dbf733a965ca47b1973177dc0bb6c889edcfb129"
+ integrity sha512-54/JRvkLIzzDWshCWfuhadfrfZVPiElY8Fcgmg1HroEly/EDSszzhBAsarCux+D/kOslTRquNzuyGSmUSTTHGg==
dependencies:
- "@jridgewell/resolve-uri" "3.1.0"
- "@jridgewell/sourcemap-codec" "1.4.14"
+ eslint-scope "5.1.1"
"@nodelib/fs.scandir@2.1.5":
version "2.1.5"
@@ -1864,203 +1644,279 @@
fastq "^1.6.0"
"@react-native-async-storage/async-storage@^1.13.4", "@react-native-async-storage/async-storage@^1.17.0":
- version "1.17.11"
- resolved "https://registry.yarnpkg.com/@react-native-async-storage/async-storage/-/async-storage-1.17.11.tgz#7ec329c1b9f610e344602e806b04d7c928a2341d"
- integrity sha512-bzs45n5HNcDq6mxXnSsOHysZWn1SbbebNxldBXCQs8dSvF8Aor9KCdpm+TpnnGweK3R6diqsT8lFhX77VX0NFw==
+ version "1.18.2"
+ resolved "https://registry.yarnpkg.com/@react-native-async-storage/async-storage/-/async-storage-1.18.2.tgz#ec8fd487a0b6c9500b43ece4b8779d1561f12e91"
+ integrity sha512-dM8AfdoeIxlh+zqgr0o5+vCTPQ0Ru1mrPzONZMsr7ufp5h+6WgNxQNza7t0r5qQ6b04AJqTlBNixTWZxqP649Q==
dependencies:
merge-options "^3.0.4"
-"@react-native-community/cli-debugger-ui@^6.0.0-rc.0":
- version "6.0.0"
- resolved "https://registry.yarnpkg.com/@react-native-community/cli-debugger-ui/-/cli-debugger-ui-6.0.0.tgz#ef9eb1268d85c1bd3caf2c4d36dc350bb080f254"
- integrity sha512-onf6vtvqSzOr6bNEWhPzgcJP2UQhA0VY6c8tXwNczIONC/ahnN93LPBB/uXDbn9d/kLMvE7oUJiqRadZWHk6aA==
+"@react-native-community/cli-clean@^10.1.1":
+ version "10.1.1"
+ resolved "https://registry.yarnpkg.com/@react-native-community/cli-clean/-/cli-clean-10.1.1.tgz#4c73ce93a63a24d70c0089d4025daac8184ff504"
+ integrity sha512-iNsrjzjIRv9yb5y309SWJ8NDHdwYtnCpmxZouQDyOljUdC9MwdZ4ChbtA4rwQyAwgOVfS9F/j56ML3Cslmvrxg==
+ dependencies:
+ "@react-native-community/cli-tools" "^10.1.1"
+ chalk "^4.1.2"
+ execa "^1.0.0"
+ prompts "^2.4.0"
+
+"@react-native-community/cli-config@^10.1.1":
+ version "10.1.1"
+ resolved "https://registry.yarnpkg.com/@react-native-community/cli-config/-/cli-config-10.1.1.tgz#08dcc5d7ca1915647dc06507ed853fe0c1488395"
+ integrity sha512-p4mHrjC+s/ayiNVG6T35GdEGdP6TuyBUg5plVGRJfTl8WT6LBfLYLk+fz/iETrEZ/YkhQIsQcEUQC47MqLNHog==
+ dependencies:
+ "@react-native-community/cli-tools" "^10.1.1"
+ chalk "^4.1.2"
+ cosmiconfig "^5.1.0"
+ deepmerge "^3.2.0"
+ glob "^7.1.3"
+ joi "^17.2.1"
+
+"@react-native-community/cli-debugger-ui@^10.0.0":
+ version "10.0.0"
+ resolved "https://registry.yarnpkg.com/@react-native-community/cli-debugger-ui/-/cli-debugger-ui-10.0.0.tgz#4bb6d41c7e46449714dc7ba5d9f5b41ef0ea7c57"
+ integrity sha512-8UKLcvpSNxnUTRy8CkCl27GGLqZunQ9ncGYhSrWyKrU9SWBJJGeZwi2k2KaoJi5FvF2+cD0t8z8cU6lsq2ZZmA==
dependencies:
serve-static "^1.13.1"
-"@react-native-community/cli-hermes@^6.3.0":
- version "6.3.1"
- resolved "https://registry.yarnpkg.com/@react-native-community/cli-hermes/-/cli-hermes-6.3.1.tgz#a4c3b4b07a1775f7012baf6d5a0b059da2ffac00"
- integrity sha512-+tMJsEsVX0WyylnoFE7uPoMu1aTAChaA62Y32dwWgAa1Fx6YrpPkC9d6wvYSBe9md/4mTtRher+ooBcuov6JHw==
+"@react-native-community/cli-doctor@^10.1.1":
+ version "10.2.2"
+ resolved "https://registry.yarnpkg.com/@react-native-community/cli-doctor/-/cli-doctor-10.2.2.tgz#b1893604fa9fc8971064e7c00042350f96868bfe"
+ integrity sha512-49Ep2aQOF0PkbAR/TcyMjOm9XwBa8VQr+/Zzf4SJeYwiYLCT1NZRAVAVjYRXl0xqvq5S5mAGZZShS4AQl4WsZw==
+ dependencies:
+ "@react-native-community/cli-config" "^10.1.1"
+ "@react-native-community/cli-platform-ios" "^10.2.1"
+ "@react-native-community/cli-tools" "^10.1.1"
+ chalk "^4.1.2"
+ command-exists "^1.2.8"
+ envinfo "^7.7.2"
+ execa "^1.0.0"
+ hermes-profile-transformer "^0.0.6"
+ ip "^1.1.5"
+ node-stream-zip "^1.9.1"
+ ora "^5.4.1"
+ prompts "^2.4.0"
+ semver "^6.3.0"
+ strip-ansi "^5.2.0"
+ sudo-prompt "^9.0.0"
+ wcwidth "^1.0.1"
+
+"@react-native-community/cli-hermes@^10.1.3":
+ version "10.2.0"
+ resolved "https://registry.yarnpkg.com/@react-native-community/cli-hermes/-/cli-hermes-10.2.0.tgz#cc252f435b149f74260bc918ce22fdf58033a87e"
+ integrity sha512-urfmvNeR8IiO/Sd92UU3xPO+/qI2lwCWQnxOkWaU/i2EITFekE47MD6MZrfVulRVYRi5cuaFqKZO/ccOdOB/vQ==
dependencies:
- "@react-native-community/cli-platform-android" "^6.3.1"
- "@react-native-community/cli-tools" "^6.2.1"
+ "@react-native-community/cli-platform-android" "^10.2.0"
+ "@react-native-community/cli-tools" "^10.1.1"
chalk "^4.1.2"
hermes-profile-transformer "^0.0.6"
ip "^1.1.5"
-"@react-native-community/cli-platform-android@^6.0.0", "@react-native-community/cli-platform-android@^6.3.1":
- version "6.3.1"
- resolved "https://registry.yarnpkg.com/@react-native-community/cli-platform-android/-/cli-platform-android-6.3.1.tgz#8d35c809ddaf3b6c5d4ef9ff9c814a25a55259aa"
- integrity sha512-n5A64RI1ty4ScZCel/3JYY9Anl857dPsUZ86Dwc1GxrbflSB5/+hcCMg5DCNcnJRa4Hdv95SAR5pMmtAjOXApA==
+"@react-native-community/cli-platform-android@10.1.3":
+ version "10.1.3"
+ resolved "https://registry.yarnpkg.com/@react-native-community/cli-platform-android/-/cli-platform-android-10.1.3.tgz#8380799cd4d3f9a0ca568b0f5b4ae9e462ce3669"
+ integrity sha512-8YZEpBL6yd9l4CIoFcLOgrV8x2GDujdqrdWrNsNERDAbsiFwqAQvfjyyb57GAZVuEPEJCoqUlGlMCwOh3XQb9A==
dependencies:
- "@react-native-community/cli-tools" "^6.2.1"
+ "@react-native-community/cli-tools" "^10.1.1"
chalk "^4.1.2"
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@^6.0.0":
- version "6.2.1"
- resolved "https://registry.yarnpkg.com/@react-native-community/cli-platform-ios/-/cli-platform-ios-6.2.1.tgz#852a7dc520071ac55fead3c78daa6a0060dde72f"
- integrity sha512-5vwLRfTbIVUsO86AUPmR5vkp+7t4gTH2+SwRo0DKqBGBQ3hraA3dlWu0nzh99eQKQhCiFLB1WJPAi3zY03lK4w==
+"@react-native-community/cli-platform-android@^10.2.0":
+ version "10.2.0"
+ resolved "https://registry.yarnpkg.com/@react-native-community/cli-platform-android/-/cli-platform-android-10.2.0.tgz#0bc689270a5f1d9aaf9e723181d43ca4dbfffdef"
+ integrity sha512-CBenYwGxwFdObZTn1lgxWtMGA5ms2G/ALQhkS+XTAD7KHDrCxFF9yT/fnAjFZKM6vX/1TqGI1RflruXih3kAhw==
dependencies:
- "@react-native-community/cli-tools" "^6.2.1"
+ "@react-native-community/cli-tools" "^10.1.1"
chalk "^4.1.2"
+ execa "^1.0.0"
glob "^7.1.3"
- js-yaml "^3.13.1"
- lodash "^4.17.15"
- ora "^3.4.0"
- plist "^3.0.2"
- xcode "^2.0.0"
+ logkitty "^0.7.1"
-"@react-native-community/cli-plugin-metro@^6.4.0":
- version "6.4.0"
- resolved "https://registry.yarnpkg.com/@react-native-community/cli-plugin-metro/-/cli-plugin-metro-6.4.0.tgz#70b7908d6b548481f37ed58167f9460d325ae21c"
- integrity sha512-lcrNODvHd3ZVhiEshXAjyBoqP44rjhkytkOSUpnZHAcmMLiguxDmvhWeWqbwu3XqSX/f0gVKmfj81t+opI1bSw==
+"@react-native-community/cli-platform-ios@10.1.1":
+ version "10.1.1"
+ resolved "https://registry.yarnpkg.com/@react-native-community/cli-platform-ios/-/cli-platform-ios-10.1.1.tgz#39ed6810117d8e7330d3aa4d85818fb6ae358785"
+ integrity sha512-EB9/L8j1LqrqyfJtLRixU+d8FIP6Pr83rEgUgXgya/u8wk3h/bvX70w+Ff2skwjdPLr5dLUQ/n5KFX4r3bsNmA==
+ dependencies:
+ "@react-native-community/cli-tools" "^10.1.1"
+ chalk "^4.1.2"
+ execa "^1.0.0"
+ glob "^7.1.3"
+ ora "^5.4.1"
+
+"@react-native-community/cli-platform-ios@^10.2.1":
+ version "10.2.1"
+ resolved "https://registry.yarnpkg.com/@react-native-community/cli-platform-ios/-/cli-platform-ios-10.2.1.tgz#2e6bd2cb6d48cbb8720d7b7265bb1bab80745f72"
+ integrity sha512-hz4zu4Y6eyj7D0lnZx8Mf2c2si8y+zh/zUTgCTaPPLzQD8jSZNNBtUUiA1cARm2razpe8marCZ1QbTMAGbf3mg==
+ dependencies:
+ "@react-native-community/cli-tools" "^10.1.1"
+ chalk "^4.1.2"
+ execa "^1.0.0"
+ fast-xml-parser "^4.0.12"
+ glob "^7.1.3"
+ ora "^5.4.1"
+
+"@react-native-community/cli-plugin-metro@^10.1.1":
+ version "10.2.2"
+ resolved "https://registry.yarnpkg.com/@react-native-community/cli-plugin-metro/-/cli-plugin-metro-10.2.2.tgz#766914e3c8007dfe52b253544c4f6cd8549919ac"
+ integrity sha512-sTGjZlD3OGqbF9v1ajwUIXhGmjw9NyJ/14Lo0sg7xH8Pv4qUd5ZvQ6+DWYrQn3IKFUMfGFWYyL81ovLuPylrpw==
dependencies:
- "@react-native-community/cli-server-api" "^6.4.0"
- "@react-native-community/cli-tools" "^6.2.0"
+ "@react-native-community/cli-server-api" "^10.1.1"
+ "@react-native-community/cli-tools" "^10.1.1"
chalk "^4.1.2"
- metro "^0.66.1"
- metro-config "^0.66.1"
- metro-core "^0.66.1"
- metro-react-native-babel-transformer "^0.66.1"
- metro-resolver "^0.66.1"
- metro-runtime "^0.66.1"
+ execa "^1.0.0"
+ metro "0.73.9"
+ metro-config "0.73.9"
+ metro-core "0.73.9"
+ metro-react-native-babel-transformer "0.73.9"
+ metro-resolver "0.73.9"
+ metro-runtime "0.73.9"
readline "^1.3.0"
-"@react-native-community/cli-server-api@^6.4.0":
- version "6.4.3"
- resolved "https://registry.yarnpkg.com/@react-native-community/cli-server-api/-/cli-server-api-6.4.3.tgz#b52444454f40bfb54a84ab52bf42e9f8002917f5"
- integrity sha512-Ywy2x+PhIUZXgE74YiCYXylSVnuEBcq5cNfYLR3AwOvrILjh03smXfCca8s2V2LWUlzmWN6+L85FJGsT92MUJA==
+"@react-native-community/cli-server-api@^10.1.1":
+ version "10.1.1"
+ resolved "https://registry.yarnpkg.com/@react-native-community/cli-server-api/-/cli-server-api-10.1.1.tgz#e382269de281bb380c2e685431364fbbb8c1cb3a"
+ integrity sha512-NZDo/wh4zlm8as31UEBno2bui8+ufzsZV+KN7QjEJWEM0levzBtxaD+4je0OpfhRIIkhaRm2gl/vVf7OYAzg4g==
dependencies:
- "@react-native-community/cli-debugger-ui" "^6.0.0-rc.0"
- "@react-native-community/cli-tools" "^6.2.0"
+ "@react-native-community/cli-debugger-ui" "^10.0.0"
+ "@react-native-community/cli-tools" "^10.1.1"
compression "^1.7.1"
connect "^3.6.5"
errorhandler "^1.5.0"
- nocache "^2.1.0"
+ nocache "^3.0.1"
pretty-format "^26.6.2"
serve-static "^1.13.1"
- ws "^1.1.0"
+ ws "^7.5.1"
-"@react-native-community/cli-tools@^6.2.0", "@react-native-community/cli-tools@^6.2.1":
- version "6.2.1"
- resolved "https://registry.yarnpkg.com/@react-native-community/cli-tools/-/cli-tools-6.2.1.tgz#6f7ada6559846b49fb9fcfed522399b232976ada"
- integrity sha512-7RbOkZLT/3YG8CAYYM70ajRKIOgVxK/b4t9KNsPq+2uen99MGezfeglC8s1cs3vBNVVxCo0a2JbXg18bUd8eqA==
+"@react-native-community/cli-tools@^10.1.1":
+ version "10.1.1"
+ resolved "https://registry.yarnpkg.com/@react-native-community/cli-tools/-/cli-tools-10.1.1.tgz#fa66e509c0d3faa31f7bb87ed7d42ad63f368ddd"
+ integrity sha512-+FlwOnZBV+ailEzXjcD8afY2ogFEBeHOw/8+XXzMgPaquU2Zly9B+8W089tnnohO3yfiQiZqkQlElP423MY74g==
dependencies:
appdirsjs "^1.2.4"
chalk "^4.1.2"
- lodash "^4.17.15"
+ find-up "^5.0.0"
mime "^2.4.1"
node-fetch "^2.6.0"
open "^6.2.0"
+ ora "^5.4.1"
semver "^6.3.0"
shell-quote "^1.7.3"
-"@react-native-community/cli-types@^6.0.0":
- version "6.0.0"
- resolved "https://registry.yarnpkg.com/@react-native-community/cli-types/-/cli-types-6.0.0.tgz#90269fbdc7229d5e3b8f2f3e029a94083551040d"
- integrity sha512-K493Fk2DMJC0ZM8s8gnfseKxGasIhuDaCUDeLZcoCSFlrjKEuEs1BKKEJiev0CARhKEXKOyyp/uqYM9nWhisNw==
+"@react-native-community/cli-types@^10.0.0":
+ version "10.0.0"
+ resolved "https://registry.yarnpkg.com/@react-native-community/cli-types/-/cli-types-10.0.0.tgz#046470c75ec18f8b3bd906e54e43a6f678e01a45"
+ integrity sha512-31oUM6/rFBZQfSmDQsT1DX/5fjqfxg7sf2u8kTPJK7rXVya5SRpAMaCXsPAG0omsmJxXt+J9HxUi3Ic+5Ux5Iw==
dependencies:
- ora "^3.4.0"
+ joi "^17.2.1"
-"@react-native-community/cli@^6.0.0":
- version "6.4.0"
- resolved "https://registry.yarnpkg.com/@react-native-community/cli/-/cli-6.4.0.tgz#0b61a4b5f11293b0b79a0e78f80777387a9529a9"
- integrity sha512-UNvYnWaALa4mJEaWdLY3fVK+csZzx/Ja/FGvXISPJ9W9lrKvGtyXkidViUCPbPtMsJUi7teA4uIShHn0mbGmnQ==
- dependencies:
- "@react-native-community/cli-debugger-ui" "^6.0.0-rc.0"
- "@react-native-community/cli-hermes" "^6.3.0"
- "@react-native-community/cli-plugin-metro" "^6.4.0"
- "@react-native-community/cli-server-api" "^6.4.0"
- "@react-native-community/cli-tools" "^6.2.0"
- "@react-native-community/cli-types" "^6.0.0"
- appdirsjs "^1.2.4"
+"@react-native-community/cli@10.1.3":
+ version "10.1.3"
+ resolved "https://registry.yarnpkg.com/@react-native-community/cli/-/cli-10.1.3.tgz#ad610c46da9fc7c717272024ec757dc646726506"
+ integrity sha512-kzh6bYLGN1q1q0IiczKSP1LTrovFeVzppYRTKohPI9VdyZwp7b5JOgaQMB/Ijtwm3MxBDrZgV9AveH/eUmUcKQ==
+ dependencies:
+ "@react-native-community/cli-clean" "^10.1.1"
+ "@react-native-community/cli-config" "^10.1.1"
+ "@react-native-community/cli-debugger-ui" "^10.0.0"
+ "@react-native-community/cli-doctor" "^10.1.1"
+ "@react-native-community/cli-hermes" "^10.1.3"
+ "@react-native-community/cli-plugin-metro" "^10.1.1"
+ "@react-native-community/cli-server-api" "^10.1.1"
+ "@react-native-community/cli-tools" "^10.1.1"
+ "@react-native-community/cli-types" "^10.0.0"
chalk "^4.1.2"
- command-exists "^1.2.8"
- commander "^2.19.0"
- cosmiconfig "^5.1.0"
- deepmerge "^3.2.0"
- envinfo "^7.7.2"
+ commander "^9.4.1"
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"
- minimist "^1.2.0"
- 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@^3.2.0":
+ version "3.2.0"
+ resolved "https://registry.yarnpkg.com/@react-native-community/eslint-config/-/eslint-config-3.2.0.tgz#42f677d5fff385bccf1be1d3b8faa8c086cf998d"
+ integrity sha512-ZjGvoeiBtCbd506hQqwjKmkWPgynGUoJspG8/MuV/EfKnkjCtBmeJvq2n+sWbWEvL9LWXDp2GJmPzmvU5RSvKQ==
+ dependencies:
+ "@babel/core" "^7.14.0"
+ "@babel/eslint-parser" "^7.18.2"
+ "@react-native-community/eslint-plugin" "^1.1.0"
+ "@typescript-eslint/eslint-plugin" "^5.30.5"
+ "@typescript-eslint/parser" "^5.30.5"
+ eslint-config-prettier "^8.5.0"
+ eslint-plugin-eslint-comments "^3.2.0"
+ eslint-plugin-ft-flow "^2.0.1"
+ eslint-plugin-jest "^26.5.3"
+ eslint-plugin-prettier "^4.2.1"
+ eslint-plugin-react "^7.30.1"
+ eslint-plugin-react-hooks "^4.6.0"
+ eslint-plugin-react-native "^4.0.0"
+
+"@react-native-community/eslint-plugin@^1.1.0":
+ version "1.3.0"
+ resolved "https://registry.yarnpkg.com/@react-native-community/eslint-plugin/-/eslint-plugin-1.3.0.tgz#9e558170c106bbafaa1ef502bd8e6d4651012bf9"
+ integrity sha512-+zDZ20NUnSWghj7Ku5aFphMzuM9JulqCW+aPXT6IfIXFbb8tzYTTOSeRFOtuekJ99ibW2fUCSsjuKNlwDIbHFg==
"@react-native/assets@1.0.0":
version "1.0.0"
resolved "https://registry.yarnpkg.com/@react-native/assets/-/assets-1.0.0.tgz#c6f9bf63d274bafc8e970628de24986b30a55c8e"
integrity sha512-KrwSpS1tKI70wuKl68DwJZYEvXktDHdZMG0k2AXD/rJVSlB23/X2CB2cutVR0HwNMJIal9HOUOBB2rVfa6UGtQ==
-"@react-native/normalize-color@2.0.0":
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/@react-native/normalize-color/-/normalize-color-2.0.0.tgz#da955909432474a9a0fe1cbffc66576a0447f567"
- integrity sha512-Wip/xsc5lw8vsBlmY2MO/gFLp3MvuZ2baBZjDeTjjndMgM0h5sxz7AZR62RDPGgstp8Np7JzjvVqVT7tpFZqsw==
+"@react-native/normalize-color@*", "@react-native/normalize-color@2.1.0":
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/@react-native/normalize-color/-/normalize-color-2.1.0.tgz#939b87a9849e81687d3640c5efa2a486ac266f91"
+ integrity sha512-Z1jQI2NpdFJCVgpY+8Dq/Bt3d+YUi1928Q+/CZm/oh66fzM0RUl54vvuXlPJKybH4pdCZey1eDTPaLHkMPNgWA==
+
+"@react-native/normalize-colors@*":
+ version "0.73.0"
+ resolved "https://registry.yarnpkg.com/@react-native/normalize-colors/-/normalize-colors-0.73.0.tgz#23e15cf2a2b73ac7e5e6df8d5b86b173cfb35a3f"
+ integrity sha512-EmSCmJ0djeMJadeFsms6Pl/R85i9xSJMc+tyJu/GEMkKXBVyYQyqanK4RHFU0v8MO90OWj+SiFXjCkKYiJ6mkg==
"@react-native/polyfills@2.0.0":
version "2.0.0"
resolved "https://registry.yarnpkg.com/@react-native/polyfills/-/polyfills-2.0.0.tgz#4c40b74655c83982c8cf47530ee7dc13d957b6aa"
integrity sha512-K0aGNn1TjalKj+65D7ycc1//H9roAQ51GJVk5ZJQFb2teECGmzd86bYDC0aYdbRf7gtovescq4Zt6FR0tgXiHQ==
-"@react-navigation/core@^6.4.0":
- version "6.4.0"
- resolved "https://registry.yarnpkg.com/@react-navigation/core/-/core-6.4.0.tgz#c44d33a8d8ef010a102c7f831fc8add772678509"
- integrity sha512-tpc0Ak/DiHfU3LlYaRmIY7vI4sM/Ru0xCet6runLUh9aABf4wiLgxyFJ5BtoWq6xFF8ymYEA/KWtDhetQ24YiA==
+"@react-navigation/core@^6.4.8":
+ version "6.4.8"
+ resolved "https://registry.yarnpkg.com/@react-navigation/core/-/core-6.4.8.tgz#a18e106d3c59cdcfc4ce53f7344e219ed35c88ed"
+ integrity sha512-klZ9Mcf/P2j+5cHMoGyIeurEzyBM2Uq9+NoSFrF6sdV5iCWHLFhrCXuhbBiQ5wVLCKf4lavlkd/DDs47PXs9RQ==
dependencies:
- "@react-navigation/routers" "^6.1.3"
+ "@react-navigation/routers" "^6.1.8"
escape-string-regexp "^4.0.0"
nanoid "^3.1.23"
- query-string "^7.0.0"
+ query-string "^7.1.3"
react-is "^16.13.0"
use-latest-callback "^0.1.5"
-"@react-navigation/elements@^1.3.6":
- version "1.3.6"
- resolved "https://registry.yarnpkg.com/@react-navigation/elements/-/elements-1.3.6.tgz#fa700318528db93f05144b1be4b691b9c1dd1abe"
- integrity sha512-pNJ8R9JMga6SXOw6wGVN0tjmE6vegwPmJBL45SEMX2fqTfAk2ykDnlJHodRpHpAgsv0DaI8qX76z3A+aqKSU0w==
+"@react-navigation/elements@^1.3.17":
+ version "1.3.17"
+ resolved "https://registry.yarnpkg.com/@react-navigation/elements/-/elements-1.3.17.tgz#9cb95765940f2841916fc71686598c22a3e4067e"
+ integrity sha512-sui8AzHm6TxeEvWT/NEXlz3egYvCUog4tlXA4Xlb2Vxvy3purVXDq/XsM56lJl344U5Aj/jDzkVanOTMWyk4UA==
"@react-navigation/native-stack@^6.5.2":
- version "6.9.1"
- resolved "https://registry.yarnpkg.com/@react-navigation/native-stack/-/native-stack-6.9.1.tgz#6013300e4cd0b33e242aa18593e4dff7db2ab3d1"
- integrity sha512-aOuJP97ge6NRz8wH6sDKfLTfdygGmraYh0apKrrVbGvMnflbPX4kpjQiAQcUPUpMeas0betH/Su8QubNL8HEkg==
+ version "6.9.12"
+ resolved "https://registry.yarnpkg.com/@react-navigation/native-stack/-/native-stack-6.9.12.tgz#a09fe43ab2fc4c82a1809e3953021d1da4ead85c"
+ integrity sha512-kS2zXCWP0Rgt7uWaCUKrRl7U2U1Gp19rM1kyRY2YzBPXhWGVPjQ2ygBp88CTQzjgy8M07H/79jvGiZ0mlEJI+g==
dependencies:
- "@react-navigation/elements" "^1.3.6"
+ "@react-navigation/elements" "^1.3.17"
warn-once "^0.1.0"
"@react-navigation/native@^6.0.8":
- version "6.0.13"
- resolved "https://registry.yarnpkg.com/@react-navigation/native/-/native-6.0.13.tgz#ec504120e193ea6a7f24ffa765a1338be5a3160a"
- integrity sha512-CwaJcAGbhv3p3ECablxBkw8QBCGDWXqVRwQ4QbelajNW623m3sNTC9dOF6kjp8au6Rg9B5e0KmeuY0xWbPk79A==
+ version "6.1.6"
+ resolved "https://registry.yarnpkg.com/@react-navigation/native/-/native-6.1.6.tgz#84ff5cf85b91f660470fa9407c06c8ee393d5792"
+ integrity sha512-14PmSy4JR8HHEk04QkxQ0ZLuqtiQfb4BV9kkMXD2/jI4TZ+yc43OnO6fQ2o9wm+Bq8pY3DxyerC2AjNUz+oH7Q==
dependencies:
- "@react-navigation/core" "^6.4.0"
+ "@react-navigation/core" "^6.4.8"
escape-string-regexp "^4.0.0"
fast-deep-equal "^3.1.3"
nanoid "^3.1.23"
-"@react-navigation/routers@^6.1.3":
- version "6.1.3"
- resolved "https://registry.yarnpkg.com/@react-navigation/routers/-/routers-6.1.3.tgz#1df51959e9a67c44367462e8b929b7360a5d2555"
- integrity sha512-idJotMEzHc3haWsCh7EvnnZMKxvaS4YF/x2UyFBkNFiEFUaEo/1ioQU6qqmVLspdEv4bI/dLm97hQo7qD8Yl7Q==
+"@react-navigation/routers@^6.1.8":
+ version "6.1.8"
+ resolved "https://registry.yarnpkg.com/@react-navigation/routers/-/routers-6.1.8.tgz#ae56b2678dbb5abca5bd7c95d6a8d1abc767cba2"
+ integrity sha512-CEge+ZLhb1HBrSvv4RwOol7EKLW1QoqVIQlE9TN5MpxS/+VoQvP+cLbuz0Op53/iJfYhtXRFd1ZAd3RTRqto9w==
dependencies:
nanoid "^3.1.23"
@@ -2081,7 +1937,7 @@
dependencies:
"@hapi/hoek" "^9.0.0"
-"@sideway/formula@^3.0.0":
+"@sideway/formula@^3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@sideway/formula/-/formula-3.0.1.tgz#80fcbcbaf7ce031e0ef2dd29b1bfc7c3f583611f"
integrity sha512-/poHZJJVjx3L+zVD6g9KgHfYnb443oi7wLu/XKojDviHy6HOEOA6z1Trk5aR1dGcmPenJEgb2sK2I80LeS3MIg==
@@ -2091,43 +1947,24 @@
resolved "https://registry.yarnpkg.com/@sideway/pinpoint/-/pinpoint-2.0.0.tgz#cff8ffadc372ad29fd3f78277aeb29e632cc70df"
integrity sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==
-"@sinclair/typebox@^0.24.1":
- version "0.24.51"
- resolved "https://registry.yarnpkg.com/@sinclair/typebox/-/typebox-0.24.51.tgz#645f33fe4e02defe26f2f5c0410e1c094eac7f5f"
- integrity sha512-1P1OROm/rdubP5aFDSZQILU0vrLCJ4fvHt6EoqHEM+2D/G5MK3bIaymUKLit8Js9gbns5UyJnkP/TZROLw4tUA==
-
"@sinclair/typebox@^0.25.16":
version "0.25.24"
resolved "https://registry.yarnpkg.com/@sinclair/typebox/-/typebox-0.25.24.tgz#8c7688559979f7079aacaf31aa881c3aa410b718"
integrity sha512-XJfwUVUKDHF5ugKwIcxEgc9k8b7HbznCp6eUfWgu710hMPNIO4aw4/zB5RogDQz8nd6gyCDpU9O/m6qYEWY6yQ==
-"@sinonjs/commons@^1.7.0":
- version "1.8.5"
- resolved "https://registry.yarnpkg.com/@sinonjs/commons/-/commons-1.8.5.tgz#e280c94c95f206dcfd5aca00a43f2156b758c764"
- integrity sha512-rTpCA0wG1wUxglBSFdMMY0oTrKYvgf4fNgv/sXbfCVAdf+FnPBdKJR/7XbpTCwbCrvCbdPYnlWaUUYz4V2fPDA==
- dependencies:
- type-detect "4.0.8"
-
-"@sinonjs/commons@^2.0.0":
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/@sinonjs/commons/-/commons-2.0.0.tgz#fd4ca5b063554307e8327b4564bd56d3b73924a3"
- integrity sha512-uLa0j859mMrg2slwQYdO/AkrOfmH+X6LTVmNTS9CqexuE2IvVORIkSpJLqePAbEnKJ77aMmCwr1NUZ57120Xcg==
+"@sinonjs/commons@^3.0.0":
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/@sinonjs/commons/-/commons-3.0.0.tgz#beb434fe875d965265e04722ccfc21df7f755d72"
+ integrity sha512-jXBtWAF4vmdNmZgD5FoKsVLv3rPgDnLgPbU84LIJ3otV44vJlDRokVng5v8NFJdCf/da9legHcKaRuZs4L7faA==
dependencies:
type-detect "4.0.8"
"@sinonjs/fake-timers@^10.0.2":
- version "10.0.2"
- resolved "https://registry.yarnpkg.com/@sinonjs/fake-timers/-/fake-timers-10.0.2.tgz#d10549ed1f423d80639c528b6c7f5a1017747d0c"
- integrity sha512-SwUDyjWnah1AaNl7kxsa7cfLhlTYoiyhDAIgyh+El30YvXs/o7OLXpYH88Zdhyx9JExKrmHDJ+10bwIcY80Jmw==
- dependencies:
- "@sinonjs/commons" "^2.0.0"
-
-"@sinonjs/fake-timers@^8.0.1":
- version "8.1.0"
- resolved "https://registry.yarnpkg.com/@sinonjs/fake-timers/-/fake-timers-8.1.0.tgz#3fdc2b6cb58935b21bfb8d1625eb1300484316e7"
- integrity sha512-OAPJUAtgeINhh/TAlUID4QTs53Njm7xzddaVlEs/SXwgtiD1tW22zAB/W1wdqfrpmikgaWQ9Fw6Ws+hsiRm5Vg==
+ version "10.2.0"
+ resolved "https://registry.yarnpkg.com/@sinonjs/fake-timers/-/fake-timers-10.2.0.tgz#b3e322a34c5f26e3184e7f6115695f299c1b1194"
+ integrity sha512-OPwQlEdg40HAj5KNF8WW6q2KG4Z+cBCZb3m4ninfTZKaBmbIJodviQsDBoYMPHkOyJJMHnOJo5j2+LKDOhOACg==
dependencies:
- "@sinonjs/commons" "^1.7.0"
+ "@sinonjs/commons" "^3.0.0"
"@svgr/babel-plugin-add-jsx-attribute@^6.5.1":
version "6.5.1"
@@ -2135,14 +1972,14 @@
integrity sha512-9PYGcXrAxitycIjRmZB+Q0JaN07GZIWaTBIGQzfaZv+qr1n8X1XUEJ5rZ/vx6OVD9RRYlrNnXWExQXcmZeD/BQ==
"@svgr/babel-plugin-remove-jsx-attribute@*":
- version "6.5.0"
- resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-6.5.0.tgz#652bfd4ed0a0699843585cda96faeb09d6e1306e"
- integrity sha512-8zYdkym7qNyfXpWvu4yq46k41pyNM9SOstoWhKlm+IfdCE1DdnRKeMUPsWIEO/DEkaWxJ8T9esNdG3QwQ93jBA==
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-8.0.0.tgz#69177f7937233caca3a1afb051906698f2f59186"
+ integrity sha512-BcCkm/STipKvbCl6b7QFrMh/vx00vIP63k2eM66MfHJzPr6O2U0jYEViXkHJWqXqQYjdeA9cuCl5KWmlwjDvbA==
"@svgr/babel-plugin-remove-jsx-empty-expression@*":
- version "6.5.0"
- resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-6.5.0.tgz#4b78994ab7d39032c729903fc2dd5c0fa4565cb8"
- integrity sha512-NFdxMq3xA42Kb1UbzCVxplUc0iqSyM9X8kopImvFnB+uSDdzIHOdbs1op8ofAvVRtbg4oZiyRl3fTYeKcOe9Iw==
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-8.0.0.tgz#c2c48104cfd7dcd557f373b70a56e9e3bdae1d44"
+ integrity sha512-5BcGCBfBxB5+XSDSWnhTThfI9jcO5f0Ai2V24gZpG+wXF14BzwxxdDb4g6trdOux0rhibGs385BeFMSmxtS3uA==
"@svgr/babel-plugin-replace-jsx-attribute-value@^6.5.1":
version "6.5.1"
@@ -2239,23 +2076,23 @@
dependencies:
pretty-format "^27.0.0"
-"@tootallnate/once@1":
- version "1.1.2"
- resolved "https://registry.yarnpkg.com/@tootallnate/once/-/once-1.1.2.tgz#ccb91445360179a04e7fe6aff78c00ffc1eeaf82"
- integrity sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==
-
"@trysound/sax@0.2.0":
version "0.2.0"
resolved "https://registry.yarnpkg.com/@trysound/sax/-/sax-0.2.0.tgz#cccaab758af56761eb7bf37af6f03f326dd798ad"
integrity sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==
-"@types/babel__core@^7.0.0", "@types/babel__core@^7.1.14":
- version "7.1.20"
- resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.1.20.tgz#e168cdd612c92a2d335029ed62ac94c95b362359"
- integrity sha512-PVb6Bg2QuscZ30FvOU7z4guG6c926D9YRvOxEaelzndpMsvP+YM74Q/dAFASpg2l6+XLalxSGxcq/lrgYWZtyQ==
+"@tsconfig/react-native@^2.0.2":
+ version "2.0.3"
+ resolved "https://registry.yarnpkg.com/@tsconfig/react-native/-/react-native-2.0.3.tgz#79ad8efc6d3729152da6cb23725b6c364a7349b2"
+ integrity sha512-jE58snEKBd9DXfyR4+ssZmYJ/W2mOSnNrvljR0aLyQJL9JKX6vlWELHkRjb3HBbcM9Uy0hZGijXbqEAjOERW2A==
+
+"@types/babel__core@^7.1.14":
+ version "7.20.1"
+ resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.20.1.tgz#916ecea274b0c776fec721e333e55762d3a9614b"
+ integrity sha512-aACu/U/omhdk15O4Nfb+fHgH/z3QsfQzpnvRZhYhThms83ZnAOZz7zZAWO7mn2yyNQaA4xTO8GLK3uqFU4bYYw==
dependencies:
- "@babel/parser" "^7.1.0"
- "@babel/types" "^7.0.0"
+ "@babel/parser" "^7.20.7"
+ "@babel/types" "^7.20.7"
"@types/babel__generator" "*"
"@types/babel__template" "*"
"@types/babel__traverse" "*"
@@ -2275,12 +2112,12 @@
"@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":
- version "7.18.2"
- resolved "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.18.2.tgz#235bf339d17185bdec25e024ca19cce257cc7309"
- integrity sha512-FcFaxOr2V5KZCviw1TnutEMVUVsGt4D2hP1TAfXZAMKuHYW3xQhe3jTxNPWutgCJ3/X1c5yX8ZoGVEItxKbwBg==
+"@types/babel__traverse@*", "@types/babel__traverse@^7.0.6":
+ version "7.20.1"
+ resolved "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.20.1.tgz#dd6f1d2411ae677dcb2db008c962598be31d6acf"
+ integrity sha512-MitHFXnhtgwsGZWtT68URpOvLN4EREih1u3QtQiN4VdAxWKRVvGCSvw/Qth0M0Qq3pJpnGOu5JaM/ydK7OGbqg==
dependencies:
- "@babel/types" "^7.3.0"
+ "@babel/types" "^7.20.7"
"@types/color-convert@*":
version "2.0.0"
@@ -2301,13 +2138,6 @@
dependencies:
"@types/color-convert" "*"
-"@types/graceful-fs@^4.1.2":
- version "4.1.5"
- resolved "https://registry.yarnpkg.com/@types/graceful-fs/-/graceful-fs-4.1.5.tgz#21ffba0d98da4350db64891f92a9e5db3cdb4e15"
- integrity sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw==
- dependencies:
- "@types/node" "*"
-
"@types/graceful-fs@^4.1.3":
version "4.1.6"
resolved "https://registry.yarnpkg.com/@types/graceful-fs/-/graceful-fs-4.1.6.tgz#e14b2576a1c25026b7f02ede1de3b84c3a1efeae"
@@ -2328,11 +2158,6 @@
"@types/react" "*"
hoist-non-react-statics "^3.3.0"
-"@types/invariant@^2.2.35":
- version "2.2.35"
- resolved "https://registry.yarnpkg.com/@types/invariant/-/invariant-2.2.35.tgz#cd3ebf581a6557452735688d8daba6cf0bd5a3be"
- integrity sha512-DxX1V9P8zdJPYQat1gHyY0xj3efl8gnMVjiM9iCY6y27lj+PoQWkgjt8jDqmovPqULkKVpKRg8J36iQiA+EtEg==
-
"@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0", "@types/istanbul-lib-coverage@^2.0.1":
version "2.0.4"
resolved "https://registry.yarnpkg.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz#8467d4b3c087805d63580480890791277ce35c44"
@@ -2352,25 +2177,25 @@
dependencies:
"@types/istanbul-lib-report" "*"
-"@types/jest@^27.4.1":
- version "27.5.2"
- resolved "https://registry.yarnpkg.com/@types/jest/-/jest-27.5.2.tgz#ec49d29d926500ffb9fd22b84262e862049c026c"
- integrity sha512-mpT8LJJ4CMeeahobofYWIjFo0xonRS/HfxnVEPMPFSQdGUt1uHCnoPT7Zhb+sjDU2wz0oKV0OLUR0WzrHNgfeA==
+"@types/jest@^29.2.1":
+ version "29.5.2"
+ resolved "https://registry.yarnpkg.com/@types/jest/-/jest-29.5.2.tgz#86b4afc86e3a8f3005b297ed8a72494f89e6395b"
+ integrity sha512-mSoZVJF5YzGVCk+FsDxzDuH7s+SCkzrgKZzf0Z0T2WudhBUPoF6ktoTPC4R0ZoCPCV5xUvuU6ias5NvxcBcMMg==
dependencies:
- jest-matcher-utils "^27.0.0"
- pretty-format "^27.0.0"
+ expect "^29.0.0"
+ pretty-format "^29.0.0"
"@types/json-schema@^7.0.9":
- version "7.0.11"
- resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.11.tgz#d421b6c527a3037f7c84433fd2c4229e016863d3"
- integrity sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==
+ version "7.0.12"
+ resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.12.tgz#d70faba7039d5fca54c83c7dbab41051d2b6f6cb"
+ integrity sha512-Hr5Jfhc9eYOQNPYO5WLDq/n4jqijdHNlDXjuAQkkt+mWdQR+XJToOHrsD4cPaMXpn6KO7y2+wM8AZEs8VpBLVA==
"@types/json5@^0.0.29":
version "0.0.29"
resolved "https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee"
integrity sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==
-"@types/lodash.merge@^4.6.2":
+"@types/lodash.merge@^4.6.1":
version "4.6.7"
resolved "https://registry.yarnpkg.com/@types/lodash.merge/-/lodash.merge-4.6.7.tgz#0af6555dd8bc6568ef73e5e0d820a027362946b1"
integrity sha512-OwxUJ9E50gw3LnAefSHJPHaBLGEKmQBQ7CZe/xflHkyy/wH2zVyEIAKReHvVrrn7zKdF58p16We9kMfh7v0RRQ==
@@ -2378,9 +2203,9 @@
"@types/lodash" "*"
"@types/lodash@*":
- version "4.14.188"
- resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.188.tgz#e4990c4c81f7c9b00c5ff8eae389c10f27980da5"
- integrity sha512-zmEmF5OIM3rb7SbLCFYoQhO4dGt2FRM9AMkxvA3LaADOF1n8in/zGJlWji9fmafLoNyz+FoL6FE0SLtGIArD7w==
+ version "4.14.195"
+ resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.195.tgz#bafc975b252eb6cea78882ce8a7b6bf22a6de632"
+ integrity sha512-Hwx9EUgdwf2GLarOjQp5ZH8ZmblzcbTBC2wtQWNKARBSxM9ezRIAUpeDTgoQRAFB0+8CNWXVA9+MaSOzOF3nPg==
"@types/minimist@^1.2.0":
version "1.2.2"
@@ -2388,9 +2213,9 @@
integrity sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ==
"@types/node@*":
- version "18.11.9"
- resolved "https://registry.yarnpkg.com/@types/node/-/node-18.11.9.tgz#02d013de7058cea16d36168ef2fc653464cfbad4"
- integrity sha512-CRpX21/kGdzjOpFsZSkcrXMGIBWMGNIHXXBVFSH+ggkftxg+XYP20TESbh+zFvFj3EQOl5byk0HTRn1IL6hbqg==
+ version "20.2.5"
+ resolved "https://registry.yarnpkg.com/@types/node/-/node-20.2.5.tgz#26d295f3570323b2837d322180dfbf1ba156fefb"
+ integrity sha512-JJulVEQXmiY9Px5axXHeYGLSjhkZEnD+MDPDGbCbIAbMslkKwmygtZFy1X6s/075Yo94sf8GuSlFfPzysQrWZQ==
"@types/normalize-package-data@^2.4.0":
version "2.4.1"
@@ -2403,56 +2228,47 @@
integrity sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==
"@types/prettier@^2.1.5":
- version "2.7.1"
- resolved "https://registry.yarnpkg.com/@types/prettier/-/prettier-2.7.1.tgz#dfd20e2dc35f027cdd6c1908e80a5ddc7499670e"
- integrity sha512-ri0UmynRRvZiiUJdiz38MmIblKK+oH30MztdBVR95dv/Ubw6neWSb8u1XpRb72L4qsZOhz+L+z9JD40SJmfWow==
+ version "2.7.3"
+ resolved "https://registry.yarnpkg.com/@types/prettier/-/prettier-2.7.3.tgz#3e51a17e291d01d17d3fc61422015a933af7a08f"
+ integrity sha512-+68kP9yzs4LMp7VNh8gdzMSPZFL44MLGqiHWvttYJe+6qnuVr4Ek9wSBQoveqY/r+LwjCcU29kNVkidwim+kYA==
"@types/prop-types@*":
version "15.7.5"
resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.5.tgz#5f19d2b85a98e9558036f6a3cacc8819420f05cf"
integrity sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==
-"@types/react-native@0.64.1":
- version "0.64.1"
- resolved "https://registry.yarnpkg.com/@types/react-native/-/react-native-0.64.1.tgz#03c897d9567c357922d06d4ed159354c81a3fe5c"
- integrity sha512-5VUk12LTxawpcRLbzzTtbcFVHCw8ro7a9dF2OsJSwNiMZAgziyqZbAv1Sw1TgoFlfX0rOxXv/tMMJ1r1HVZ8Og==
+"@types/react-native@0.71.3":
+ version "0.71.3"
+ resolved "https://registry.yarnpkg.com/@types/react-native/-/react-native-0.71.3.tgz#537f669ed6b38b5ae47444bd9d253c4cff23bed7"
+ integrity sha512-0Uqw1YZ0qbVla0MMWFTANFm6W8KYWNvGQmYfucdecbXivLMcQ2v4PovuYFKr7bE6Bc5nDCUEaga962Y8gcDF7A==
dependencies:
"@types/react" "*"
-"@types/react-native@0.67.2":
- version "0.67.2"
- resolved "https://registry.yarnpkg.com/@types/react-native/-/react-native-0.67.2.tgz#801656be65b875cf215cd09de208436df92fa356"
- integrity sha512-DyBkq7kw1UngzfvBr8WE41+hL/TWpxOZVaeABJz6Si7DmpT0Rq6vJCYjVaR85ViKSYJvIHpzxYfp0dD+lb3ctA==
+"@types/react-test-renderer@^18.0.0":
+ version "18.0.0"
+ resolved "https://registry.yarnpkg.com/@types/react-test-renderer/-/react-test-renderer-18.0.0.tgz#7b7f69ca98821ea5501b21ba24ea7b6139da2243"
+ integrity sha512-C7/5FBJ3g3sqUahguGi03O79b8afNeSD6T8/GU50oQrJCU0bVCCGQHaGKUbg2Ce8VQEEqTw8/HiS6lXHHdgkdQ==
dependencies:
"@types/react" "*"
-"@types/react@*", "@types/react@16 || 17 || 18":
- version "18.0.25"
- resolved "https://registry.yarnpkg.com/@types/react/-/react-18.0.25.tgz#8b1dcd7e56fe7315535a4af25435e0bb55c8ae44"
- integrity sha512-xD6c0KDT4m7n9uD4ZHi02lzskaiqcBxf4zi+tXZY98a04wvc0hi/TcCPC2FOESZi51Nd7tlUeOJY8RofL799/g==
- dependencies:
- "@types/prop-types" "*"
- "@types/scheduler" "*"
- csstype "^3.0.2"
-
-"@types/react@18.0.18":
- version "18.0.18"
- resolved "https://registry.yarnpkg.com/@types/react/-/react-18.0.18.tgz#9f16f33d57bc5d9dca848d12c3572110ff9429ac"
- integrity sha512-6hI08umYs6NaiHFEEGioXnxJ+oEhY3eRz8VCUaudZmGdtvPviCJB8mgaMxaDWAdPSYd4eFavrPk2QIolwbLYrg==
+"@types/react@*", "@types/react@16 || 17 || 18", "@types/react@^18.0.24":
+ version "18.2.8"
+ resolved "https://registry.yarnpkg.com/@types/react/-/react-18.2.8.tgz#a77dcffe4e9af148ca4aa8000c51a1e8ed99e2c8"
+ integrity sha512-lTyWUNrd8ntVkqycEEplasWy2OxNlShj3zqS0LuB1ENUGis5HodmhM7DtCoUGbxj3VW/WsGA0DUhpG6XrM7gPA==
dependencies:
"@types/prop-types" "*"
"@types/scheduler" "*"
csstype "^3.0.2"
"@types/scheduler@*":
- version "0.16.2"
- resolved "https://registry.yarnpkg.com/@types/scheduler/-/scheduler-0.16.2.tgz#1a62f89525723dde24ba1b01b092bf5df8ad4d39"
- integrity sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==
+ version "0.16.3"
+ resolved "https://registry.yarnpkg.com/@types/scheduler/-/scheduler-0.16.3.tgz#cef09e3ec9af1d63d2a6cc5b383a737e24e6dcf5"
+ integrity sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ==
"@types/semver@^7.3.12":
- version "7.3.13"
- resolved "https://registry.yarnpkg.com/@types/semver/-/semver-7.3.13.tgz#da4bfd73f49bd541d28920ab0e2bf0ee80f71c91"
- integrity sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw==
+ version "7.5.0"
+ resolved "https://registry.yarnpkg.com/@types/semver/-/semver-7.5.0.tgz#591c1ce3a702c45ee15f47a42ade72c2fd78978a"
+ integrity sha512-G8hZ6XJiHnuhQKR7ZmysCeJWE08o8T0AXtk5darsCaTVsYZhhgUrq53jizaR2FvsoeCwJhlmwTjkXBY5Pn/ZHw==
"@types/stack-utils@^2.0.0":
version "2.0.1"
@@ -2465,16 +2281,16 @@
integrity sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==
"@types/yargs@^15.0.0":
- version "15.0.14"
- resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-15.0.14.tgz#26d821ddb89e70492160b66d10a0eb6df8f6fb06"
- integrity sha512-yEJzHoxf6SyQGhBhIYGXQDSCkJjB6HohDShto7m8vaKg9Yp0Yn8+71J9eakh2bnPg6BfsH9PRMhiRTZnd4eXGQ==
+ version "15.0.15"
+ resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-15.0.15.tgz#e609a2b1ef9e05d90489c2f5f45bbfb2be092158"
+ integrity sha512-IziEYMU9XoVj8hWg7k+UJrXALkGFjWJhn5QFEv9q4p+v40oZhSuC135M38st8XPjICL7Ey4TV64ferBGUoJhBg==
dependencies:
"@types/yargs-parser" "*"
"@types/yargs@^16.0.0":
- version "16.0.4"
- resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-16.0.4.tgz#26aad98dd2c2a38e421086ea9ad42b9e51642977"
- integrity sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==
+ version "16.0.5"
+ resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-16.0.5.tgz#12cc86393985735a283e387936398c2f9e5f88e3"
+ integrity sha512-AxO/ADJOBFJScHbWhq2xAhlWP24rY4aCEG/NFaMvbT3X2MgRsLjhjQwsn0Zi5zn0LG9jUhCCZMeX9Dkuw6k+vQ==
dependencies:
"@types/yargs-parser" "*"
@@ -2485,87 +2301,88 @@
dependencies:
"@types/yargs-parser" "*"
-"@typescript-eslint/eslint-plugin@^5.5.0":
- version "5.42.1"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.42.1.tgz#696b9cc21dfd4749c1c8ad1307f76a36a00aa0e3"
- integrity sha512-LyR6x784JCiJ1j6sH5Y0K6cdExqCCm8DJUTcwG5ThNXJj/G8o5E56u5EdG4SLy+bZAwZBswC+GYn3eGdttBVCg==
+"@typescript-eslint/eslint-plugin@^5.30.5", "@typescript-eslint/eslint-plugin@^5.5.0":
+ version "5.59.9"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.59.9.tgz#2604cfaf2b306e120044f901e20c8ed926debf15"
+ integrity sha512-4uQIBq1ffXd2YvF7MAvehWKW3zVv/w+mSfRAu+8cKbfj3nwzyqJLNcZJpQ/WZ1HLbJDiowwmQ6NO+63nCA+fqA==
dependencies:
- "@typescript-eslint/scope-manager" "5.42.1"
- "@typescript-eslint/type-utils" "5.42.1"
- "@typescript-eslint/utils" "5.42.1"
+ "@eslint-community/regexpp" "^4.4.0"
+ "@typescript-eslint/scope-manager" "5.59.9"
+ "@typescript-eslint/type-utils" "5.59.9"
+ "@typescript-eslint/utils" "5.59.9"
debug "^4.3.4"
+ grapheme-splitter "^1.0.4"
ignore "^5.2.0"
natural-compare-lite "^1.4.0"
- regexpp "^3.2.0"
semver "^7.3.7"
tsutils "^3.21.0"
-"@typescript-eslint/parser@^5.5.0":
- version "5.42.1"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.42.1.tgz#3e66156f2f74b11690b45950d8f5f28a62751d35"
- integrity sha512-kAV+NiNBWVQDY9gDJDToTE/NO8BHi4f6b7zTsVAJoTkmB/zlfOpiEVBzHOKtlgTndCKe8vj9F/PuolemZSh50Q==
+"@typescript-eslint/parser@^5.30.5", "@typescript-eslint/parser@^5.5.0":
+ version "5.59.9"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.59.9.tgz#a85c47ccdd7e285697463da15200f9a8561dd5fa"
+ integrity sha512-FsPkRvBtcLQ/eVK1ivDiNYBjn3TGJdXy2fhXX+rc7czWl4ARwnpArwbihSOHI2Peg9WbtGHrbThfBUkZZGTtvQ==
dependencies:
- "@typescript-eslint/scope-manager" "5.42.1"
- "@typescript-eslint/types" "5.42.1"
- "@typescript-eslint/typescript-estree" "5.42.1"
+ "@typescript-eslint/scope-manager" "5.59.9"
+ "@typescript-eslint/types" "5.59.9"
+ "@typescript-eslint/typescript-estree" "5.59.9"
debug "^4.3.4"
-"@typescript-eslint/scope-manager@5.42.1":
- version "5.42.1"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.42.1.tgz#05e5e1351485637d466464237e5259b49f609b18"
- integrity sha512-QAZY/CBP1Emx4rzxurgqj3rUinfsh/6mvuKbLNMfJMMKYLRBfweus8brgXF8f64ABkIZ3zdj2/rYYtF8eiuksQ==
+"@typescript-eslint/scope-manager@5.59.9":
+ version "5.59.9"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.59.9.tgz#eadce1f2733389cdb58c49770192c0f95470d2f4"
+ integrity sha512-8RA+E+w78z1+2dzvK/tGZ2cpGigBZ58VMEHDZtpE1v+LLjzrYGc8mMaTONSxKyEkz3IuXFM0IqYiGHlCsmlZxQ==
dependencies:
- "@typescript-eslint/types" "5.42.1"
- "@typescript-eslint/visitor-keys" "5.42.1"
+ "@typescript-eslint/types" "5.59.9"
+ "@typescript-eslint/visitor-keys" "5.59.9"
-"@typescript-eslint/type-utils@5.42.1":
- version "5.42.1"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-5.42.1.tgz#21328feb2d4b193c5852b35aabd241ccc1449daa"
- integrity sha512-WWiMChneex5w4xPIX56SSnQQo0tEOy5ZV2dqmj8Z371LJ0E+aymWD25JQ/l4FOuuX+Q49A7pzh/CGIQflxMVXg==
+"@typescript-eslint/type-utils@5.59.9":
+ version "5.59.9"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-5.59.9.tgz#53bfaae2e901e6ac637ab0536d1754dfef4dafc2"
+ integrity sha512-ksEsT0/mEHg9e3qZu98AlSrONAQtrSTljL3ow9CGej8eRo7pe+yaC/mvTjptp23Xo/xIf2mLZKC6KPv4Sji26Q==
dependencies:
- "@typescript-eslint/typescript-estree" "5.42.1"
- "@typescript-eslint/utils" "5.42.1"
+ "@typescript-eslint/typescript-estree" "5.59.9"
+ "@typescript-eslint/utils" "5.59.9"
debug "^4.3.4"
tsutils "^3.21.0"
-"@typescript-eslint/types@5.42.1":
- version "5.42.1"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.42.1.tgz#0d4283c30e9b70d2aa2391c36294413de9106df2"
- integrity sha512-Qrco9dsFF5lhalz+lLFtxs3ui1/YfC6NdXu+RAGBa8uSfn01cjO7ssCsjIsUs484vny9Xm699FSKwpkCcqwWwA==
+"@typescript-eslint/types@5.59.9":
+ version "5.59.9"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.59.9.tgz#3b4e7ae63718ce1b966e0ae620adc4099a6dcc52"
+ integrity sha512-uW8H5NRgTVneSVTfiCVffBb8AbwWSKg7qcA4Ot3JI3MPCJGsB4Db4BhvAODIIYE5mNj7Q+VJkK7JxmRhk2Lyjw==
-"@typescript-eslint/typescript-estree@5.42.1":
- version "5.42.1"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.42.1.tgz#f9a223ecb547a781d37e07a5ac6ba9ff681eaef0"
- integrity sha512-qElc0bDOuO0B8wDhhW4mYVgi/LZL+igPwXtV87n69/kYC/7NG3MES0jHxJNCr4EP7kY1XVsRy8C/u3DYeTKQmw==
+"@typescript-eslint/typescript-estree@5.59.9":
+ version "5.59.9"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.59.9.tgz#6bfea844e468427b5e72034d33c9fffc9557392b"
+ integrity sha512-pmM0/VQ7kUhd1QyIxgS+aRvMgw+ZljB3eDb+jYyp6d2bC0mQWLzUDF+DLwCTkQ3tlNyVsvZRXjFyV0LkU/aXjA==
dependencies:
- "@typescript-eslint/types" "5.42.1"
- "@typescript-eslint/visitor-keys" "5.42.1"
+ "@typescript-eslint/types" "5.59.9"
+ "@typescript-eslint/visitor-keys" "5.59.9"
debug "^4.3.4"
globby "^11.1.0"
is-glob "^4.0.3"
semver "^7.3.7"
tsutils "^3.21.0"
-"@typescript-eslint/utils@5.42.1":
- version "5.42.1"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.42.1.tgz#2789b1cd990f0c07aaa3e462dbe0f18d736d5071"
- integrity sha512-Gxvf12xSp3iYZd/fLqiQRD4uKZjDNR01bQ+j8zvhPjpsZ4HmvEFL/tC4amGNyxN9Rq+iqvpHLhlqx6KTxz9ZyQ==
+"@typescript-eslint/utils@5.59.9", "@typescript-eslint/utils@^5.10.0":
+ version "5.59.9"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.59.9.tgz#adee890107b5ffe02cd46fdaa6c2125fb3c6c7c4"
+ integrity sha512-1PuMYsju/38I5Ggblaeb98TOoUvjhRvLpLa1DoTOFaLWqaXl/1iQ1eGurTXgBY58NUdtfTXKP5xBq7q9NDaLKg==
dependencies:
+ "@eslint-community/eslint-utils" "^4.2.0"
"@types/json-schema" "^7.0.9"
"@types/semver" "^7.3.12"
- "@typescript-eslint/scope-manager" "5.42.1"
- "@typescript-eslint/types" "5.42.1"
- "@typescript-eslint/typescript-estree" "5.42.1"
+ "@typescript-eslint/scope-manager" "5.59.9"
+ "@typescript-eslint/types" "5.59.9"
+ "@typescript-eslint/typescript-estree" "5.59.9"
eslint-scope "^5.1.1"
- eslint-utils "^3.0.0"
semver "^7.3.7"
-"@typescript-eslint/visitor-keys@5.42.1":
- version "5.42.1"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.42.1.tgz#df10839adf6605e1cdb79174cf21e46df9be4872"
- integrity sha512-LOQtSF4z+hejmpUvitPlc4hA7ERGoj2BVkesOcG91HCn8edLGUXbTrErmutmPbl8Bo9HjAvOO/zBKQHExXNA2A==
+"@typescript-eslint/visitor-keys@5.59.9":
+ version "5.59.9"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.59.9.tgz#9f86ef8e95aca30fb5a705bb7430f95fc58b146d"
+ integrity sha512-bT7s0td97KMaLwpEBckbzj/YohnvXtqbe2XgqNvTl6RJVakY5mvENOTPvw5u66nljfZxthESpDozs86U+oLY8Q==
dependencies:
- "@typescript-eslint/types" "5.42.1"
+ "@typescript-eslint/types" "5.59.9"
eslint-visitor-keys "^3.3.0"
JSONStream@^1.0.4:
@@ -2576,11 +2393,6 @@ JSONStream@^1.0.4:
jsonparse "^1.2.0"
through ">=2.2.7 <3"
-abab@^2.0.3, abab@^2.0.5:
- version "2.0.6"
- resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.6.tgz#41b80f2c871d19686216b82309231cfd3cb3d291"
- integrity sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==
-
abbrev@1:
version "1.1.1"
resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8"
@@ -2606,46 +2418,21 @@ accepts@^1.3.7, accepts@~1.3.5, accepts@~1.3.7:
mime-types "~2.1.34"
negotiator "0.6.3"
-acorn-globals@^6.0.0:
- version "6.0.0"
- resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-6.0.0.tgz#46cdd39f0f8ff08a876619b55f5ac8a6dc770b45"
- integrity sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==
- dependencies:
- acorn "^7.1.1"
- acorn-walk "^7.1.1"
-
acorn-jsx@^5.3.2:
version "5.3.2"
resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937"
integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==
-acorn-walk@^7.1.1:
- version "7.2.0"
- resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-7.2.0.tgz#0de889a601203909b0fbe07b8938dc21d2e967bc"
- integrity sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==
-
-acorn@^7.1.1:
- version "7.4.1"
- resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa"
- integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==
-
-acorn@^8.2.4, acorn@^8.5.0, acorn@^8.8.0:
- version "8.8.1"
- resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.8.1.tgz#0a3f9cbecc4ec3bea6f0a80b66ae8dd2da250b73"
- integrity sha512-7zFpHzhnqYKrkYdUjF1HI1bzd0VygEGX8lFk4k5zVMqHEoES+P+7TKI+EvLO9WVMJ8eekdO0aDEK044xTXwPPA==
+acorn@^8.8.0, acorn@^8.8.2:
+ version "8.8.2"
+ resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.8.2.tgz#1b2f25db02af965399b9776b0c2c391276d37c4a"
+ integrity sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==
add-stream@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/add-stream/-/add-stream-1.0.0.tgz#6a7990437ca736d5e1288db92bd3266d5f5cb2aa"
integrity sha512-qQLMr+8o0WC4FZGQTcJiKBVC59JylcPSrTtk6usvmIDFUOCKegapy1VHQwRbFMOFyb/inzUVqHs+eMYKDM1YeQ==
-agent-base@6:
- version "6.0.2"
- resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-6.0.2.tgz#49fff58577cfee3f37176feab4c22e00f86d7f77"
- integrity sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==
- dependencies:
- debug "4"
-
ajv@^6.10.0, ajv@^6.12.4:
version "6.12.6"
resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4"
@@ -2706,18 +2493,10 @@ ansi-styles@^5.0.0:
resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-5.2.0.tgz#07449690ad45777d1924ac2abb2fc8895dba836b"
integrity sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==
-anymatch@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-2.0.0.tgz#bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb"
- integrity sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==
- dependencies:
- micromatch "^3.1.4"
- normalize-path "^2.1.1"
-
anymatch@^3.0.3:
- version "3.1.2"
- resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.2.tgz#c0557c096af32f106198f4f4e2a383537e378716"
- integrity sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==
+ version "3.1.3"
+ resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.3.tgz#790c58b19ba1720a84205b57c618d5ad8524973e"
+ integrity sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==
dependencies:
normalize-path "^3.0.0"
picomatch "^2.0.4"
@@ -2739,13 +2518,12 @@ argparse@^2.0.1:
resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38"
integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==
-aria-query@^4.2.2:
- version "4.2.2"
- resolved "https://registry.yarnpkg.com/aria-query/-/aria-query-4.2.2.tgz#0d2ca6c9aceb56b8977e9fed6aed7e15bbd2f83b"
- integrity sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==
+aria-query@^5.1.3:
+ version "5.1.3"
+ resolved "https://registry.yarnpkg.com/aria-query/-/aria-query-5.1.3.tgz#19db27cd101152773631396f7a95a3b58c22c35e"
+ integrity sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==
dependencies:
- "@babel/runtime" "^7.10.2"
- "@babel/runtime-corejs3" "^7.10.2"
+ deep-equal "^2.0.5"
arr-diff@^4.0.0:
version "4.0.0"
@@ -2762,6 +2540,14 @@ arr-union@^3.1.0:
resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4"
integrity sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==
+array-buffer-byte-length@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz#fabe8bc193fea865f317fe7807085ee0dee5aead"
+ integrity sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==
+ dependencies:
+ call-bind "^1.0.2"
+ is-array-buffer "^3.0.1"
+
array-find-index@^1.0.2:
version "1.0.2"
resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1"
@@ -2772,7 +2558,7 @@ array-ify@^1.0.0:
resolved "https://registry.yarnpkg.com/array-ify/-/array-ify-1.0.0.tgz#9e528762b4a9066ad163a6962a364418e9626ece"
integrity sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==
-array-includes@^3.1.4, array-includes@^3.1.5:
+array-includes@^3.1.5, array-includes@^3.1.6:
version "3.1.6"
resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.6.tgz#9e9e720e194f198266ba9e18c29e6a9b0e4b225f"
integrity sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==
@@ -2793,7 +2579,7 @@ array-unique@^0.3.2:
resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428"
integrity sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ==
-array.prototype.flat@^1.2.5:
+array.prototype.flat@^1.3.1:
version "1.3.1"
resolved "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.3.1.tgz#ffc6576a7ca3efc2f46a143b9d1dda9b4b3cf5e2"
integrity sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==
@@ -2803,7 +2589,7 @@ array.prototype.flat@^1.2.5:
es-abstract "^1.20.4"
es-shim-unscopables "^1.0.0"
-array.prototype.flatmap@^1.3.0:
+array.prototype.flatmap@^1.3.1:
version "1.3.1"
resolved "https://registry.yarnpkg.com/array.prototype.flatmap/-/array.prototype.flatmap-1.3.1.tgz#1aae7903c2100433cb8261cd4ed310aab5c4a183"
integrity sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==
@@ -2813,6 +2599,17 @@ array.prototype.flatmap@^1.3.0:
es-abstract "^1.20.4"
es-shim-unscopables "^1.0.0"
+array.prototype.tosorted@^1.1.1:
+ version "1.1.1"
+ resolved "https://registry.yarnpkg.com/array.prototype.tosorted/-/array.prototype.tosorted-1.1.1.tgz#ccf44738aa2b5ac56578ffda97c03fd3e23dd532"
+ integrity sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ==
+ dependencies:
+ call-bind "^1.0.2"
+ define-properties "^1.1.4"
+ es-abstract "^1.20.4"
+ es-shim-unscopables "^1.0.0"
+ get-intrinsic "^1.1.3"
+
arrify@^1.0.1:
version "1.0.1"
resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d"
@@ -2850,12 +2647,10 @@ async-limiter@~1.0.0:
resolved "https://registry.yarnpkg.com/async-limiter/-/async-limiter-1.0.1.tgz#dd379e94f0db8310b08291f9d64c3209766617fd"
integrity sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==
-async@^2.4.0:
- version "2.6.4"
- resolved "https://registry.yarnpkg.com/async/-/async-2.6.4.tgz#706b7ff6084664cd7eae713f6f965433b5504221"
- integrity sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==
- dependencies:
- lodash "^4.17.14"
+async@^3.2.2:
+ version "3.2.4"
+ resolved "https://registry.yarnpkg.com/async/-/async-3.2.4.tgz#2d22e00f8cddeb5fde5dd33522b56d1cf569a81c"
+ integrity sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==
asynckit@^0.4.0:
version "0.4.0"
@@ -2867,10 +2662,15 @@ atob@^2.1.2:
resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9"
integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==
-axe-core@^4.4.3:
- version "4.5.1"
- resolved "https://registry.yarnpkg.com/axe-core/-/axe-core-4.5.1.tgz#04d561c11b6d76d096d34e9d14ba2c294fb20cdc"
- integrity sha512-1exVbW0X1O/HSr/WMwnaweyqcWOgZgLiVxdLG34pvSQk4NlYQr9OUy0JLwuhFfuVNQzzqgH57eYzkFBCb3bIsQ==
+available-typed-arrays@^1.0.5:
+ version "1.0.5"
+ resolved "https://registry.yarnpkg.com/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz#92f95616501069d07d10edb2fc37d3e1c65123b7"
+ integrity sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==
+
+axe-core@^4.6.2:
+ version "4.7.2"
+ resolved "https://registry.yarnpkg.com/axe-core/-/axe-core-4.7.2.tgz#040a7342b20765cb18bb50b628394c21bccc17a0"
+ integrity sha512-zIURGIS1E1Q4pcrMjp+nnEh+16G56eG/MUllJH8yEvw7asDo7Ac9uhC9KIH5jzpITueEZolfYglnCGIuSBz39g==
axios@^0.27.2:
version "0.27.2"
@@ -2880,31 +2680,19 @@ axios@^0.27.2:
follow-redirects "^1.14.9"
form-data "^4.0.0"
-axobject-query@^2.2.0:
- version "2.2.0"
- resolved "https://registry.yarnpkg.com/axobject-query/-/axobject-query-2.2.0.tgz#943d47e10c0b704aa42275e20edf3722648989be"
- integrity sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==
+axobject-query@^3.1.1:
+ version "3.1.1"
+ resolved "https://registry.yarnpkg.com/axobject-query/-/axobject-query-3.1.1.tgz#3b6e5c6d4e43ca7ba51c5babf99d22a9c68485e1"
+ integrity sha512-goKlv8DZrK9hUh975fnHzhNIO4jUnFCfv/dszV5VwUGDFjI6vQ2VwoyjYjYNEbBE8AH87TduWP5uyDR1D+Iteg==
+ dependencies:
+ deep-equal "^2.0.5"
babel-core@^7.0.0-bridge.0:
version "7.0.0-bridge.0"
resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-7.0.0-bridge.0.tgz#95a492ddd90f9b4e9a4a1da14eb335b87b634ece"
integrity sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg==
-babel-jest@^27.5.1:
- version "27.5.1"
- resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-27.5.1.tgz#a1bf8d61928edfefd21da27eb86a695bfd691444"
- integrity sha512-cdQ5dXjGRd0IBRATiQ4mZGlGlRE8kJpjPOixdNRdT+m3UcNqmYWN6rK6nvtXYfY3D76cb8s/O1Ss8ea24PIwcg==
- dependencies:
- "@jest/transform" "^27.5.1"
- "@jest/types" "^27.5.1"
- "@types/babel__core" "^7.1.14"
- babel-plugin-istanbul "^6.1.1"
- babel-preset-jest "^27.5.1"
- chalk "^4.0.0"
- graceful-fs "^4.2.9"
- slash "^3.0.0"
-
-babel-jest@^29.5.0:
+babel-jest@^29.2.1, babel-jest@^29.5.0:
version "29.5.0"
resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-29.5.0.tgz#3fe3ddb109198e78b1c88f9ebdecd5e4fc2f50a5"
integrity sha512-mA4eCDh5mSo2EcA9xQjVTpmbbNk32Zb3Q3QFQsNhaK56Q+yoXowzFodLux30HRgyOho5rsQ6B0P9QpMkvvnJ0Q==
@@ -2928,16 +2716,6 @@ babel-plugin-istanbul@^6.1.1:
istanbul-lib-instrument "^5.0.4"
test-exclude "^6.0.0"
-babel-plugin-jest-hoist@^27.5.1:
- version "27.5.1"
- resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-27.5.1.tgz#9be98ecf28c331eb9f5df9c72d6f89deb8181c2e"
- integrity sha512-50wCwD5EMNW4aRpOwtqzyZHIewTYNxLA4nhB+09d8BIssfNfzBRhkBIHiaPv1Si226TQSvp8gxAJm2iY2qs2hQ==
- 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-jest-hoist@^29.5.0:
version "29.5.0"
resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.5.0.tgz#a97db437936f441ec196990c9738d4b88538618a"
@@ -2959,29 +2737,29 @@ babel-plugin-module-resolver@^4.0.0, babel-plugin-module-resolver@^4.1.0:
reselect "^4.0.0"
resolve "^1.13.1"
-babel-plugin-polyfill-corejs2@^0.3.3:
- version "0.3.3"
- resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.3.tgz#5d1bd3836d0a19e1b84bbf2d9640ccb6f951c122"
- integrity sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==
+babel-plugin-polyfill-corejs2@^0.4.3:
+ version "0.4.3"
+ resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.3.tgz#75044d90ba5043a5fb559ac98496f62f3eb668fd"
+ integrity sha512-bM3gHc337Dta490gg+/AseNB9L4YLHxq1nGKZZSHbhXv4aTYU2MD2cjza1Ru4S6975YLTaL1K8uJf6ukJhhmtw==
dependencies:
"@babel/compat-data" "^7.17.7"
- "@babel/helper-define-polyfill-provider" "^0.3.3"
+ "@babel/helper-define-polyfill-provider" "^0.4.0"
semver "^6.1.1"
-babel-plugin-polyfill-corejs3@^0.6.0:
- version "0.6.0"
- resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.6.0.tgz#56ad88237137eade485a71b52f72dbed57c6230a"
- integrity sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==
+babel-plugin-polyfill-corejs3@^0.8.1:
+ version "0.8.1"
+ resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.8.1.tgz#39248263c38191f0d226f928d666e6db1b4b3a8a"
+ integrity sha512-ikFrZITKg1xH6pLND8zT14UPgjKHiGLqex7rGEZCH2EvhsneJaJPemmpQaIZV5AL03II+lXylw3UmddDK8RU5Q==
dependencies:
- "@babel/helper-define-polyfill-provider" "^0.3.3"
- core-js-compat "^3.25.1"
+ "@babel/helper-define-polyfill-provider" "^0.4.0"
+ core-js-compat "^3.30.1"
-babel-plugin-polyfill-regenerator@^0.4.1:
- version "0.4.1"
- resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.4.1.tgz#390f91c38d90473592ed43351e801a9d3e0fd747"
- integrity sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==
+babel-plugin-polyfill-regenerator@^0.5.0:
+ version "0.5.0"
+ resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.5.0.tgz#e7344d88d9ef18a3c47ded99362ae4a757609380"
+ integrity sha512-hDJtKjMLVa7Z+LwnTCxoDLQj6wdc+B8dun7ayF2fYieI6OzfuvcLMB32ihJZ4UhCBwNYGl5bg/x/P9cMdnkc2g==
dependencies:
- "@babel/helper-define-polyfill-provider" "^0.3.3"
+ "@babel/helper-define-polyfill-provider" "^0.4.0"
babel-plugin-syntax-trailing-function-commas@^7.0.0-beta.0:
version "7.0.0-beta.0"
@@ -3039,14 +2817,6 @@ babel-preset-fbjs@^3.4.0:
"@babel/plugin-transform-template-literals" "^7.0.0"
babel-plugin-syntax-trailing-function-commas "^7.0.0-beta.0"
-babel-preset-jest@^27.5.1:
- version "27.5.1"
- resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-27.5.1.tgz#91f10f58034cb7989cb4f962b69fa6eef6a6bc81"
- integrity sha512-Nptf2FzlPCWYuJg41HBqXVT8ym6bXOevuCTbhxlUpjwtysGaIWFvDEjp4y+G7fl13FgOdjs7P/DmErqH7da0Ag==
- dependencies:
- babel-plugin-jest-hoist "^27.5.1"
- babel-preset-current-node-syntax "^1.0.0"
-
babel-preset-jest@^29.5.0:
version "29.5.0"
resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-29.5.0.tgz#57bc8cc88097af7ff6a5ab59d1cd29d52a5916e2"
@@ -3060,7 +2830,7 @@ balanced-match@^1.0.0:
resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee"
integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==
-base64-js@^1.1.2, base64-js@^1.5.1:
+base64-js@^1.1.2, base64-js@^1.3.1:
version "1.5.1"
resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a"
integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==
@@ -3078,30 +2848,20 @@ base@^0.11.1:
mixin-deep "^1.2.0"
pascalcase "^0.1.1"
-big-integer@1.6.x:
- version "1.6.51"
- resolved "https://registry.yarnpkg.com/big-integer/-/big-integer-1.6.51.tgz#0df92a5d9880560d3ff2d5fd20245c889d130686"
- integrity sha512-GPEid2Y9QU1Exl1rpO9B2IPJGHPSupF5GnVIP0blYvNOMer2bTvSWs1jGOUg04hTmu67nmLsQ9TBo1puaotBHg==
+bl@^4.1.0:
+ version "4.1.0"
+ resolved "https://registry.yarnpkg.com/bl/-/bl-4.1.0.tgz#451535264182bec2fbbc83a62ab98cf11d9f7b3a"
+ integrity sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==
+ dependencies:
+ buffer "^5.5.0"
+ inherits "^2.0.4"
+ readable-stream "^3.4.0"
boolbase@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e"
integrity sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==
-bplist-creator@0.1.0:
- version "0.1.0"
- resolved "https://registry.yarnpkg.com/bplist-creator/-/bplist-creator-0.1.0.tgz#018a2d1b587f769e379ef5519103730f8963ba1e"
- integrity sha512-sXaHZicyEEmY86WyueLTQesbeoH/mquvarJaQNbjuOQO+7gbFcDEWqKmcWA4cOTLzFlfgvkiVxolk1k5bBIpmg==
- dependencies:
- stream-buffers "2.2.x"
-
-bplist-parser@0.3.1:
- version "0.3.1"
- resolved "https://registry.yarnpkg.com/bplist-parser/-/bplist-parser-0.3.1.tgz#e1c90b2ca2a9f9474cc72f6862bbf3fee8341fd1"
- integrity sha512-PyJxiNtA5T2PlLIeBot4lbp7rj4OadzjnMZD/G5zuBNt8ei/yCU7+wW0h2bag9vr8c+/WuRWmSxbqAl9hL1rBA==
- dependencies:
- big-integer "1.6.x"
-
brace-expansion@^1.1.7:
version "1.1.11"
resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd"
@@ -3133,20 +2893,15 @@ braces@^3.0.2:
dependencies:
fill-range "^7.0.1"
-browser-process-hrtime@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz#3c9b4b7d782c8121e56f10106d84c0d0ffc94626"
- integrity sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==
-
-browserslist@^4.21.3, browserslist@^4.21.4:
- version "4.21.4"
- resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.21.4.tgz#e7496bbc67b9e39dd0f98565feccdcb0d4ff6987"
- integrity sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw==
+browserslist@^4.21.3, browserslist@^4.21.5:
+ version "4.21.7"
+ resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.21.7.tgz#e2b420947e5fb0a58e8f4668ae6e23488127e551"
+ integrity sha512-BauCXrQ7I2ftSqd2mvKHGo85XR0u7Ru3C/Hxsy/0TkfCtjrmAbPdzLGasmoiBxplpDXlPvdjX9u7srIMfgasNA==
dependencies:
- caniuse-lite "^1.0.30001400"
- electron-to-chromium "^1.4.251"
- node-releases "^2.0.6"
- update-browserslist-db "^1.0.9"
+ caniuse-lite "^1.0.30001489"
+ electron-to-chromium "^1.4.411"
+ node-releases "^2.0.12"
+ update-browserslist-db "^1.0.11"
bs-logger@0.x:
version "0.2.6"
@@ -3167,6 +2922,14 @@ buffer-from@^1.0.0:
resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5"
integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==
+buffer@^5.5.0:
+ version "5.7.1"
+ resolved "https://registry.yarnpkg.com/buffer/-/buffer-5.7.1.tgz#ba62e7c13133053582197160851a8f648e99eed0"
+ integrity sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==
+ dependencies:
+ base64-js "^1.3.1"
+ ieee754 "^1.1.13"
+
bytes@3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.0.0.tgz#d32815404d689699f85a4ea4fa8755dd13a96048"
@@ -3238,19 +3001,12 @@ camelcase@^6.0.0, camelcase@^6.2.0:
resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.3.0.tgz#5685b95eb209ac9c0c177467778c9c84df58ba9a"
integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==
-caniuse-lite@^1.0.30001400:
- version "1.0.30001431"
- resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001431.tgz#e7c59bd1bc518fae03a4656be442ce6c4887a795"
- integrity sha512-zBUoFU0ZcxpvSt9IU66dXVT/3ctO1cy4y9cscs1szkPlcWb6pasYM144GqrUygUbT+k7cmUCW61cvskjcv0enQ==
-
-capture-exit@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/capture-exit/-/capture-exit-2.0.0.tgz#fb953bfaebeb781f62898239dabb426d08a509a4"
- integrity sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g==
- dependencies:
- rsvp "^4.8.4"
+caniuse-lite@^1.0.30001489:
+ version "1.0.30001495"
+ resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001495.tgz#64a0ccef1911a9dcff647115b4430f8eff1ef2d9"
+ integrity sha512-F6x5IEuigtUfU5ZMQK2jsy5JqUUlEFRVZq8bO2a+ysq5K7jD6PPc9YXZj78xDNS3uNchesp1Jw47YXEqr+Viyg==
-chalk@^2.0.0, chalk@^2.0.1, chalk@^2.4.1, chalk@^2.4.2:
+chalk@^2.0.0, chalk@^2.4.1:
version "2.4.2"
resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424"
integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==
@@ -3259,7 +3015,7 @@ chalk@^2.0.0, chalk@^2.0.1, chalk@^2.4.1, chalk@^2.4.2:
escape-string-regexp "^1.0.5"
supports-color "^5.3.0"
-chalk@^4.0.0, chalk@^4.1.2:
+chalk@^4.0.0, chalk@^4.1.0, chalk@^4.1.2:
version "4.1.2"
resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01"
integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==
@@ -3278,9 +3034,9 @@ ci-info@^2.0.0:
integrity sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==
ci-info@^3.2.0:
- version "3.6.1"
- resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-3.6.1.tgz#7594f1c95cb7fdfddee7af95a13af7dbc67afdcf"
- integrity sha512-up5ggbaDqOqJ4UqLKZ2naVkyqSJQgJi5lwD6b6mM748ysrghDBX0bx/qJTUHzw7zu6Mq4gycviSF5hJnwceD8w==
+ version "3.8.0"
+ resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-3.8.0.tgz#81408265a5380c929f0bc665d62256628ce9ef91"
+ integrity sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==
cjs-module-lexer@^1.0.0:
version "1.2.2"
@@ -3297,17 +3053,17 @@ class-utils@^0.3.5:
isobject "^3.0.0"
static-extend "^0.1.1"
-cli-cursor@^2.1.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5"
- integrity sha512-8lgKz8LmCRYZZQDpRyT2m5rKJ08TnU4tR9FFFW2rxpxR1FzWi4PQ/NfyODchAatHaUgnSPVcx/R5w6NuTBzFiw==
+cli-cursor@^3.1.0:
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-3.1.0.tgz#264305a7ae490d1d03bf0c9ba7c925d1753af307"
+ integrity sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==
dependencies:
- restore-cursor "^2.0.0"
+ restore-cursor "^3.1.0"
-cli-spinners@^2.0.0:
- version "2.7.0"
- resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-2.7.0.tgz#f815fd30b5f9eaac02db604c7a231ed7cb2f797a"
- integrity sha512-qu3pN8Y3qHNgE2AFweciB1IfMnmZ/fsNTEE+NOFjmGB2F/7rLhnhzppvpCnN4FovtP26k8lHyy9ptEbNwWFLzw==
+cli-spinners@^2.5.0:
+ version "2.9.0"
+ resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-2.9.0.tgz#5881d0ad96381e117bbe07ad91f2008fe6ffd8db"
+ integrity sha512-4/aL9X3Wh0yiMQlE+eeRhWP6vclO3QRtw1JHKIT0FFUs5FjpFmESqtMvYZ0+lbzBw900b95mS0hohy+qn2VK/g==
cliui@^6.0.0:
version "6.0.0"
@@ -3413,11 +3169,6 @@ colorette@^1.0.7:
resolved "https://registry.yarnpkg.com/colorette/-/colorette-1.4.0.tgz#5190fbb87276259a86ad700bff2c6d6faa3fca40"
integrity sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==
-colors@^1.1.2:
- version "1.4.0"
- resolved "https://registry.yarnpkg.com/colors/-/colors-1.4.0.tgz#c50491479d4c1bdaed2c9ced32cf7c7dc2360f78"
- integrity sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==
-
combined-stream@^1.0.8:
version "1.0.8"
resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f"
@@ -3430,7 +3181,7 @@ command-exists@^1.2.8:
resolved "https://registry.yarnpkg.com/command-exists/-/command-exists-1.2.9.tgz#c50725af3808c8ab0260fd60b01fbfa25b954f69"
integrity sha512-LTQ/SGc+s0Xc0Fu5WaKnR0YiygZkm9eKFvyS+fRsU7/ZWFF8ykFM6Pc9aCVf1+xasOOZpO3BAVgVrKvsqKHV7w==
-commander@^2.19.0, commander@^2.20.0:
+commander@^2.20.0:
version "2.20.3"
resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33"
integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==
@@ -3440,6 +3191,11 @@ commander@^7.2.0:
resolved "https://registry.yarnpkg.com/commander/-/commander-7.2.0.tgz#a36cb57d0b501ce108e4d20559a150a391d97ab7"
integrity sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==
+commander@^9.4.1:
+ version "9.5.0"
+ resolved "https://registry.yarnpkg.com/commander/-/commander-9.5.0.tgz#bc08d1eb5cedf7ccb797a96199d41c7bc3e60d30"
+ integrity sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==
+
commander@~2.13.0:
version "2.13.0"
resolved "https://registry.yarnpkg.com/commander/-/commander-2.13.0.tgz#6964bca67685df7c1f1430c584f07d7597885b9c"
@@ -3671,7 +3427,7 @@ conventional-recommended-bump@^6.1.0:
meow "^8.0.0"
q "^1.5.1"
-convert-source-map@^1.4.0, convert-source-map@^1.6.0, convert-source-map@^1.7.0:
+convert-source-map@^1.6.0, convert-source-map@^1.7.0:
version "1.9.0"
resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.9.0.tgz#7faae62353fb4213366d0ca98358d22e8368b05f"
integrity sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==
@@ -3686,17 +3442,12 @@ copy-descriptor@^0.1.0:
resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d"
integrity sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==
-core-js-compat@^3.25.1:
- version "3.26.1"
- resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.26.1.tgz#0e710b09ebf689d719545ac36e49041850f943df"
- integrity sha512-622/KzTudvXCDLRw70iHW4KKs1aGpcRcowGWyYJr2DEBfRrd6hNJybxSWJFuZYD4ma86xhrwDDHxmDaIq4EA8A==
+core-js-compat@^3.30.1, core-js-compat@^3.30.2:
+ version "3.30.2"
+ resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.30.2.tgz#83f136e375babdb8c80ad3c22d67c69098c1dd8b"
+ integrity sha512-nriW1nuJjUgvkEjIot1Spwakz52V9YkYHZAQG6A1eCgC8AA1p0zngrQEP9R0+V6hji5XilWKG1Bd0YRppmGimA==
dependencies:
- browserslist "^4.21.4"
-
-core-js-pure@^3.25.1:
- version "3.26.1"
- resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.26.1.tgz#653f4d7130c427820dcecd3168b594e8bb095a33"
- integrity sha512-VVXcDpp/xJ21KdULRq/lXdLzQAtX7+37LzpyfFM973il0tWSsDEoyzG38G14AjTpK9VTfiNM9jnFauq/CpaWGQ==
+ browserslist "^4.21.5"
core-util-is@~1.0.0:
version "1.0.3"
@@ -3780,33 +3531,16 @@ css-what@^6.0.1, css-what@^6.1.0:
integrity sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==
csso@^4.2.0:
- version "4.2.0"
- resolved "https://registry.yarnpkg.com/csso/-/csso-4.2.0.tgz#ea3a561346e8dc9f546d6febedd50187cf389529"
- integrity sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==
- dependencies:
- css-tree "^1.1.2"
-
-cssom@^0.4.4:
- version "0.4.4"
- resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.4.4.tgz#5a66cf93d2d0b661d80bf6a44fb65f5c2e4e0a10"
- integrity sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==
-
-cssom@~0.3.6:
- version "0.3.8"
- resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.8.tgz#9f1276f5b2b463f2114d3f2c75250af8c1a36f4a"
- integrity sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==
-
-cssstyle@^2.3.0:
- version "2.3.0"
- resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-2.3.0.tgz#ff665a0ddbdc31864b09647f34163443d90b0852"
- integrity sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==
+ version "4.2.0"
+ resolved "https://registry.yarnpkg.com/csso/-/csso-4.2.0.tgz#ea3a561346e8dc9f546d6febedd50187cf389529"
+ integrity sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==
dependencies:
- cssom "~0.3.6"
+ css-tree "^1.1.2"
csstype@^3.0.2:
- version "3.1.1"
- resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.1.1.tgz#841b532c45c758ee546a11d5bd7b7b473c8c30b9"
- integrity sha512-DJR/VvkAvSZW9bTouZue2sSxDwdTN92uHjqeKVm+0dAqdfNykRzQ95tay8aXMBAAPpUiq4Qcug2L7neoRh2Egw==
+ version "3.1.2"
+ resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.1.2.tgz#1d4bf9d572f11c14031f0436e1c10bc1f571f50b"
+ integrity sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==
damerau-levenshtein@^1.0.8:
version "1.0.8"
@@ -3818,39 +3552,23 @@ dargs@^7.0.0:
resolved "https://registry.yarnpkg.com/dargs/-/dargs-7.0.0.tgz#04015c41de0bcb69ec84050f3d9be0caf8d6d5cc"
integrity sha512-2iy1EkLdlBzQGvbweYRFxmFath8+K7+AKB0TlhHWkNuH+TmovaMH/Wp7V7R4u7f4SnX3OgLsU9t1NI9ioDnUpg==
-data-urls@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/data-urls/-/data-urls-2.0.0.tgz#156485a72963a970f5d5821aaf642bef2bf2db9b"
- integrity sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==
- dependencies:
- abab "^2.0.3"
- whatwg-mimetype "^2.3.0"
- whatwg-url "^8.0.0"
-
dateformat@^3.0.0:
version "3.0.3"
resolved "https://registry.yarnpkg.com/dateformat/-/dateformat-3.0.3.tgz#a6e37499a4d9a9cf85ef5872044d62901c9889ae"
integrity sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q==
dayjs@^1.8.15:
- version "1.11.6"
- resolved "https://registry.yarnpkg.com/dayjs/-/dayjs-1.11.6.tgz#2e79a226314ec3ec904e3ee1dd5a4f5e5b1c7afb"
- integrity sha512-zZbY5giJAinCG+7AGaw0wIhNZ6J8AhWuSXKvuc1KAyMiRsvGQWqh4L+MomvhdAYjN+lqvVCMq1I41e3YHvXkyQ==
+ version "1.11.8"
+ resolved "https://registry.yarnpkg.com/dayjs/-/dayjs-1.11.8.tgz#4282f139c8c19dd6d0c7bd571e30c2d0ba7698ea"
+ integrity sha512-LcgxzFoWMEPO7ggRv1Y2N31hUf2R0Vj7fuy/m+Bg1K8rr+KAs1AEy4y9jd5DXe8pbHgX+srkHNS7TH6Q6ZhYeQ==
-debug@2.6.9, debug@^2.2.0, debug@^2.3.3, debug@^2.6.9:
+debug@2.6.9, debug@^2.2.0, debug@^2.3.3:
version "2.6.9"
resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f"
integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==
dependencies:
ms "2.0.0"
-debug@4, debug@^4.1.0, debug@^4.1.1, debug@^4.3.2, debug@^4.3.4:
- version "4.3.4"
- resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865"
- integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==
- dependencies:
- ms "2.1.2"
-
debug@^3.1.0, debug@^3.2.7:
version "3.2.7"
resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz#72580b7e9145fb39b6676f9c5e5fb100b934179a"
@@ -3858,6 +3576,13 @@ debug@^3.1.0, debug@^3.2.7:
dependencies:
ms "^2.1.1"
+debug@^4.1.0, debug@^4.1.1, debug@^4.3.2, debug@^4.3.4:
+ version "4.3.4"
+ resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865"
+ integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==
+ dependencies:
+ ms "2.1.2"
+
debuglog@^1.0.1:
version "1.0.1"
resolved "https://registry.yarnpkg.com/debuglog/-/debuglog-1.0.1.tgz#aa24ffb9ac3df9a2351837cfb2d279360cd78492"
@@ -3876,12 +3601,7 @@ decamelize@^1.1.0, decamelize@^1.2.0:
resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290"
integrity sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==
-decimal.js@^10.2.1:
- version "10.4.2"
- resolved "https://registry.yarnpkg.com/decimal.js/-/decimal.js-10.4.2.tgz#0341651d1d997d86065a2ce3a441fbd0d8e8b98e"
- integrity sha512-ic1yEvwT6GuvaYwBLLY6/aFFgjZdySKTE8en/fkU3QICTmRtgtSlFn0u0BXN06InZwtfCelR7j8LRiDI/02iGA==
-
-decode-uri-component@^0.2.0:
+decode-uri-component@^0.2.0, decode-uri-component@^0.2.2:
version "0.2.2"
resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.2.tgz#e69dbe25d37941171dd540e024c444cd5188e1e9"
integrity sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==
@@ -3896,7 +3616,31 @@ dedent@^0.7.0:
resolved "https://registry.yarnpkg.com/dedent/-/dedent-0.7.0.tgz#2495ddbaf6eb874abb0e1be9df22d2e5a544326c"
integrity sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==
-deep-is@^0.1.3, deep-is@~0.1.3:
+deep-equal@^2.0.5:
+ version "2.2.1"
+ resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-2.2.1.tgz#c72ab22f3a7d3503a4ca87dde976fe9978816739"
+ integrity sha512-lKdkdV6EOGoVn65XaOsPdH4rMxTZOnmFyuIkMjM1i5HHCbfjC97dawgTAy0deYNfuqUqW+Q5VrVaQYtUpSd6yQ==
+ dependencies:
+ array-buffer-byte-length "^1.0.0"
+ call-bind "^1.0.2"
+ es-get-iterator "^1.1.3"
+ get-intrinsic "^1.2.0"
+ is-arguments "^1.1.1"
+ is-array-buffer "^3.0.2"
+ is-date-object "^1.0.5"
+ is-regex "^1.1.4"
+ is-shared-array-buffer "^1.0.2"
+ isarray "^2.0.5"
+ object-is "^1.1.5"
+ object-keys "^1.1.1"
+ object.assign "^4.1.4"
+ regexp.prototype.flags "^1.5.0"
+ side-channel "^1.0.4"
+ which-boxed-primitive "^1.0.2"
+ which-collection "^1.0.1"
+ which-typed-array "^1.1.9"
+
+deep-is@^0.1.3:
version "0.1.4"
resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831"
integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==
@@ -3907,9 +3651,9 @@ deepmerge@^3.2.0:
integrity sha512-GRQOafGHwMHpjPx9iCvTgpu9NojZ49q794EEL94JVEw6VaeA8XTUyBKvAkOOjBX9oJNiV6G3P+T+tihFjo2TqA==
deepmerge@^4.2.2:
- version "4.2.2"
- resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.2.2.tgz#44d2ea3679b8f4d4ffba33f03d865fc1e7bf4955"
- integrity sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==
+ version "4.3.1"
+ resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.3.1.tgz#44b5f2147cd3b00d4b56137685966f26fd25dd4a"
+ integrity sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==
defaults@^1.0.3:
version "1.0.4"
@@ -3918,10 +3662,10 @@ defaults@^1.0.3:
dependencies:
clone "^1.0.2"
-define-properties@^1.1.3, define-properties@^1.1.4:
- version "1.1.4"
- resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.4.tgz#0b14d7bd7fbeb2f3572c3a7eda80ea5d57fb05b1"
- integrity sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA==
+define-properties@^1.1.3, define-properties@^1.1.4, define-properties@^1.2.0:
+ version "1.2.0"
+ resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.2.0.tgz#52988570670c9eacedd8064f4a990f2405849bd5"
+ integrity sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==
dependencies:
has-property-descriptors "^1.0.0"
object-keys "^1.1.1"
@@ -3963,6 +3707,24 @@ depd@2.0.0:
resolved "https://registry.yarnpkg.com/depd/-/depd-2.0.0.tgz#b696163cc757560d09cf22cc8fad1571b79e76df"
integrity sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==
+deprecated-react-native-prop-types@^3.0.1:
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/deprecated-react-native-prop-types/-/deprecated-react-native-prop-types-3.0.1.tgz#a275f84cd8519cd1665e8df3c99e9067d57a23ec"
+ integrity sha512-J0jCJcsk4hMlIb7xwOZKLfMpuJn6l8UtrPEzzQV5ewz5gvKNYakhBuq9h2rWX7YwHHJZFhU5W8ye7dB9oN8VcQ==
+ dependencies:
+ "@react-native/normalize-color" "*"
+ invariant "*"
+ prop-types "*"
+
+deprecated-react-native-prop-types@^4.1.0:
+ version "4.1.0"
+ resolved "https://registry.yarnpkg.com/deprecated-react-native-prop-types/-/deprecated-react-native-prop-types-4.1.0.tgz#8ed03a64c21b7fbdd2d000957b6838d4f38d2c66"
+ integrity sha512-WfepZHmRbbdTvhcolb8aOKEvQdcmTMn5tKLbqbXmkBvjFjRVWAYqsXk/DBsV8TZxws8SdGHLuHaJrHSQUPRdfw==
+ dependencies:
+ "@react-native/normalize-colors" "*"
+ invariant "*"
+ prop-types "*"
+
destroy@1.2.0:
version "1.2.0"
resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.2.0.tgz#4803735509ad8be552934c67df614f94e66fa015"
@@ -3981,16 +3743,6 @@ dezalgo@^1.0.0:
asap "^2.0.0"
wrappy "1"
-diff-sequences@^27.5.1:
- version "27.5.1"
- resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-27.5.1.tgz#eaecc0d327fd68c8d9672a1e64ab8dccb2ef5327"
- integrity sha512-k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ==
-
-diff-sequences@^29.3.1:
- version "29.3.1"
- resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-29.3.1.tgz#104b5b95fe725932421a9c6e5b4bef84c3f2249e"
- integrity sha512-hlM3QR272NXCi4pq+N4Kok4kOp6EsgOM3ZSpJI7Da3UAs+Ttsi8MRmB6trM/lhyzUxGfOgnpkHtgqm5Q/CTcfQ==
-
diff-sequences@^29.4.3:
version "29.4.3"
resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-29.4.3.tgz#9314bc1fabe09267ffeca9cbafc457d8499a13f2"
@@ -4040,13 +3792,6 @@ domelementtype@^2.0.1, domelementtype@^2.2.0, domelementtype@^2.3.0:
resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.3.0.tgz#5c45e8e869952626331d7aab326d01daf65d589d"
integrity sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==
-domexception@^2.0.1:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/domexception/-/domexception-2.0.1.tgz#fb44aefba793e1574b0af6aed2801d057529f304"
- integrity sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==
- dependencies:
- webidl-conversions "^5.0.0"
-
domhandler@^4.2.0, domhandler@^4.3.1:
version "4.3.1"
resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-4.3.1.tgz#8d792033416f59d68bc03a5aa7b018c1ca89279c"
@@ -4054,7 +3799,7 @@ domhandler@^4.2.0, domhandler@^4.3.1:
dependencies:
domelementtype "^2.2.0"
-domhandler@^5.0.1, domhandler@^5.0.2:
+domhandler@^5.0.2, domhandler@^5.0.3:
version "5.0.3"
resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-5.0.3.tgz#cc385f7f751f1d1fc650c21374804254538c7d31"
integrity sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==
@@ -4071,13 +3816,13 @@ domutils@^2.8.0:
domhandler "^4.2.0"
domutils@^3.0.1:
- version "3.0.1"
- resolved "https://registry.yarnpkg.com/domutils/-/domutils-3.0.1.tgz#696b3875238338cb186b6c0612bd4901c89a4f1c"
- integrity sha512-z08c1l761iKhDFtfXO04C7kTdPBLi41zwOZl00WS8b5eiaebNpY00HKbztwBq+e3vyqWNwWF3mP9YLUeqIrF+Q==
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/domutils/-/domutils-3.1.0.tgz#c47f551278d3dc4b0b1ab8cbb42d751a6f0d824e"
+ integrity sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==
dependencies:
dom-serializer "^2.0.0"
domelementtype "^2.3.0"
- domhandler "^5.0.1"
+ domhandler "^5.0.3"
dot-prop@^5.1.0:
version "5.3.0"
@@ -4091,21 +3836,16 @@ ee-first@1.1.1:
resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d"
integrity sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==
-electron-to-chromium@^1.4.251:
- version "1.4.284"
- resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.284.tgz#61046d1e4cab3a25238f6bf7413795270f125592"
- integrity sha512-M8WEXFuKXMYMVr45fo8mq0wUrrJHheiKZf6BArTKk9ZBYCKJEOU5H8cdWgDT+qCVZf7Na4lVUaZsA+h6uA9+PA==
+electron-to-chromium@^1.4.411:
+ version "1.4.423"
+ resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.423.tgz#99567f3a0563fe0d1d0931e9ce851bca239f6658"
+ integrity sha512-y4A7YfQcDGPAeSWM1IuoWzXpg9RY1nwHzHSwRtCSQFp9FgAVDgdWlFf0RbdWfLWQ2WUI+bddUgk5RgTjqRE6FQ==
emittery@^0.13.1:
version "0.13.1"
resolved "https://registry.yarnpkg.com/emittery/-/emittery-0.13.1.tgz#c04b8c3457490e0847ae51fced3af52d338e3dad"
integrity sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==
-emittery@^0.8.1:
- version "0.8.1"
- resolved "https://registry.yarnpkg.com/emittery/-/emittery-0.8.1.tgz#bb23cc86d03b30aa75a7f734819dee2e1ba70860"
- integrity sha512-uDfvUjVrfGJJhymx/kz6prltenw1u7WrCg1oa94zYY8xxVpLLUu045LAT0dhDZdXG58/EpPL/5kA180fQ/qudg==
-
emoji-regex@^8.0.0:
version "8.0.0"
resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37"
@@ -4134,9 +3874,9 @@ entities@^2.0.0:
integrity sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==
entities@^4.2.0, entities@^4.4.0:
- version "4.4.0"
- resolved "https://registry.yarnpkg.com/entities/-/entities-4.4.0.tgz#97bdaba170339446495e653cfd2db78962900174"
- integrity sha512-oYp7156SP8LkeGD0GF85ad1X9Ai79WtRsZ2gxJqtBuzH+98YUV6jkHEKlZkMbcrjJjIVJNIDP/3WL9wQkoPbWA==
+ version "4.5.0"
+ resolved "https://registry.yarnpkg.com/entities/-/entities-4.5.0.tgz#5d268ea5e7113ec74c4d033b79ea5a35a488fb48"
+ integrity sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==
envinfo@^7.7.2:
version "7.8.1"
@@ -4166,34 +3906,68 @@ errorhandler@^1.5.0:
escape-html "~1.0.3"
es-abstract@^1.19.0, es-abstract@^1.20.4:
- version "1.20.4"
- resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.20.4.tgz#1d103f9f8d78d4cf0713edcd6d0ed1a46eed5861"
- integrity sha512-0UtvRN79eMe2L+UNEF1BwRe364sj/DXhQ/k5FmivgoSdpM90b8Jc0mDzKMGo7QS0BVbOP/bTwBKNnDc9rNzaPA==
+ version "1.21.2"
+ resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.21.2.tgz#a56b9695322c8a185dc25975aa3b8ec31d0e7eff"
+ integrity sha512-y/B5POM2iBnIxCiernH1G7rC9qQoM77lLIMQLuob0zhp8C56Po81+2Nj0WFKnd0pNReDTnkYryc+zhOzpEIROg==
dependencies:
+ array-buffer-byte-length "^1.0.0"
+ available-typed-arrays "^1.0.5"
call-bind "^1.0.2"
+ es-set-tostringtag "^2.0.1"
es-to-primitive "^1.2.1"
- function-bind "^1.1.1"
function.prototype.name "^1.1.5"
- get-intrinsic "^1.1.3"
+ get-intrinsic "^1.2.0"
get-symbol-description "^1.0.0"
+ globalthis "^1.0.3"
+ gopd "^1.0.1"
has "^1.0.3"
has-property-descriptors "^1.0.0"
+ has-proto "^1.0.1"
has-symbols "^1.0.3"
- internal-slot "^1.0.3"
+ internal-slot "^1.0.5"
+ is-array-buffer "^3.0.2"
is-callable "^1.2.7"
is-negative-zero "^2.0.2"
is-regex "^1.1.4"
is-shared-array-buffer "^1.0.2"
is-string "^1.0.7"
+ is-typed-array "^1.1.10"
is-weakref "^1.0.2"
- object-inspect "^1.12.2"
+ object-inspect "^1.12.3"
object-keys "^1.1.1"
object.assign "^4.1.4"
regexp.prototype.flags "^1.4.3"
safe-regex-test "^1.0.0"
- string.prototype.trimend "^1.0.5"
- string.prototype.trimstart "^1.0.5"
+ string.prototype.trim "^1.2.7"
+ string.prototype.trimend "^1.0.6"
+ string.prototype.trimstart "^1.0.6"
+ typed-array-length "^1.0.4"
unbox-primitive "^1.0.2"
+ which-typed-array "^1.1.9"
+
+es-get-iterator@^1.1.3:
+ version "1.1.3"
+ resolved "https://registry.yarnpkg.com/es-get-iterator/-/es-get-iterator-1.1.3.tgz#3ef87523c5d464d41084b2c3c9c214f1199763d6"
+ integrity sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==
+ dependencies:
+ call-bind "^1.0.2"
+ get-intrinsic "^1.1.3"
+ has-symbols "^1.0.3"
+ is-arguments "^1.1.1"
+ is-map "^2.0.2"
+ is-set "^2.0.2"
+ is-string "^1.0.7"
+ isarray "^2.0.5"
+ stop-iteration-iterator "^1.0.0"
+
+es-set-tostringtag@^2.0.1:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz#338d502f6f674301d710b80c8592de8a15f09cd8"
+ integrity sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==
+ dependencies:
+ get-intrinsic "^1.1.3"
+ has "^1.0.3"
+ has-tostringtag "^1.0.0"
es-shim-unscopables@^1.0.0:
version "1.0.0"
@@ -4236,18 +4010,6 @@ escape-string-regexp@^4.0.0:
resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34"
integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==
-escodegen@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-2.0.0.tgz#5e32b12833e8aa8fa35e1bf0befa89380484c7dd"
- integrity sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw==
- 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-airbnb-base@^15.0.0:
version "15.0.0"
resolved "https://registry.yarnpkg.com/eslint-config-airbnb-base/-/eslint-config-airbnb-base-15.0.0.tgz#6b09add90ac79c2f8d723a2580e07f3925afd236"
@@ -4268,69 +4030,98 @@ eslint-config-airbnb@^19.0.4:
object.entries "^1.1.5"
eslint-config-prettier@^8.5.0:
- version "8.5.0"
- resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-8.5.0.tgz#5a81680ec934beca02c7b1a61cf8ca34b66feab1"
- integrity sha512-obmWKLUNCnhtQRKc+tmnYuQl0pFU1ibYJQ5BGhTVB08bHe9wC8qUeG7c08dj9XX+AuPj1YSGSQIHl1pnDHZR0Q==
+ version "8.8.0"
+ resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-8.8.0.tgz#bfda738d412adc917fd7b038857110efe98c9348"
+ integrity sha512-wLbQiFre3tdGgpDv67NQKnJuTlcUVYHas3k+DZCc2U2BadthoEY4B7hLPvAxaqdyOGCzuLfii2fqGph10va7oA==
eslint-import-resolver-babel-module@^5.3.1:
- version "5.3.1"
- resolved "https://registry.yarnpkg.com/eslint-import-resolver-babel-module/-/eslint-import-resolver-babel-module-5.3.1.tgz#808a42f311a6c33d473f9f4c846d1d487d29eff4"
- integrity sha512-WomQAkjO7lUNOdU3FG2zgNgylkoAVUmaw04bHgSpM9QrMWuOLLWa2qcP6CrsBd4VWuLRbUPyzrgBc9ZQIx9agw==
+ version "5.3.2"
+ resolved "https://registry.yarnpkg.com/eslint-import-resolver-babel-module/-/eslint-import-resolver-babel-module-5.3.2.tgz#67ed1cd2689d97e9566a8dbc2c6483671a6bde33"
+ integrity sha512-K7D8n0O6p/JJncPote8yiuB7chJfu26Yn/Q3gzT53cNzJNS0NUCkI0iuimj4/vWVRHVQvPnYWeq07V8RvKjz/A==
dependencies:
pkg-up "^3.1.0"
resolve "^1.20.0"
-eslint-import-resolver-node@^0.3.6:
- version "0.3.6"
- resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.6.tgz#4048b958395da89668252001dbd9eca6b83bacbd"
- integrity sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw==
+eslint-import-resolver-node@^0.3.7:
+ version "0.3.7"
+ resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.7.tgz#83b375187d412324a1963d84fa664377a23eb4d7"
+ integrity sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA==
dependencies:
debug "^3.2.7"
- resolve "^1.20.0"
+ is-core-module "^2.11.0"
+ resolve "^1.22.1"
-eslint-module-utils@^2.7.3:
- version "2.7.4"
- resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.7.4.tgz#4f3e41116aaf13a20792261e61d3a2e7e0583974"
- integrity sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA==
+eslint-module-utils@^2.7.4:
+ version "2.8.0"
+ resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.8.0.tgz#e439fee65fc33f6bba630ff621efc38ec0375c49"
+ integrity sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==
dependencies:
debug "^3.2.7"
+eslint-plugin-eslint-comments@^3.2.0:
+ version "3.2.0"
+ resolved "https://registry.yarnpkg.com/eslint-plugin-eslint-comments/-/eslint-plugin-eslint-comments-3.2.0.tgz#9e1cd7b4413526abb313933071d7aba05ca12ffa"
+ integrity sha512-0jkOl0hfojIHHmEHgmNdqv4fmh7300NdpA9FFpF7zaoLvB/QeXOGNLIo86oAveJFrfB1p05kC8hpEMHM8DwWVQ==
+ dependencies:
+ escape-string-regexp "^1.0.5"
+ ignore "^5.0.5"
+
+eslint-plugin-ft-flow@^2.0.1:
+ version "2.0.3"
+ resolved "https://registry.yarnpkg.com/eslint-plugin-ft-flow/-/eslint-plugin-ft-flow-2.0.3.tgz#3b3c113c41902bcbacf0e22b536debcfc3c819e8"
+ integrity sha512-Vbsd/b+LYA99jUbsL6viEUWShFaYQt2YQs3QN3f+aeszOhh2sgdcU0mjzDyD4yyBvMc8qy2uwvBBWfMzEX06tg==
+ dependencies:
+ lodash "^4.17.21"
+ string-natural-compare "^3.0.1"
+
eslint-plugin-import@^2.26.0:
- version "2.26.0"
- resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.26.0.tgz#f812dc47be4f2b72b478a021605a59fc6fe8b88b"
- integrity sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==
+ version "2.27.5"
+ resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.27.5.tgz#876a6d03f52608a3e5bb439c2550588e51dd6c65"
+ integrity sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow==
dependencies:
- array-includes "^3.1.4"
- array.prototype.flat "^1.2.5"
- debug "^2.6.9"
+ array-includes "^3.1.6"
+ array.prototype.flat "^1.3.1"
+ array.prototype.flatmap "^1.3.1"
+ debug "^3.2.7"
doctrine "^2.1.0"
- eslint-import-resolver-node "^0.3.6"
- eslint-module-utils "^2.7.3"
+ eslint-import-resolver-node "^0.3.7"
+ eslint-module-utils "^2.7.4"
has "^1.0.3"
- is-core-module "^2.8.1"
+ is-core-module "^2.11.0"
is-glob "^4.0.3"
minimatch "^3.1.2"
- object.values "^1.1.5"
- resolve "^1.22.0"
+ object.values "^1.1.6"
+ resolve "^1.22.1"
+ semver "^6.3.0"
tsconfig-paths "^3.14.1"
-eslint-plugin-jsx-a11y@^6.6.1:
- version "6.6.1"
- resolved "https://registry.yarnpkg.com/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.6.1.tgz#93736fc91b83fdc38cc8d115deedfc3091aef1ff"
- integrity sha512-sXgFVNHiWffBq23uiS/JaP6eVR622DqwB4yTzKvGZGcPq6/yZ3WmOZfuBks/vHWo9GaFOqC2ZK4i6+C35knx7Q==
+eslint-plugin-jest@^26.5.3:
+ version "26.9.0"
+ resolved "https://registry.yarnpkg.com/eslint-plugin-jest/-/eslint-plugin-jest-26.9.0.tgz#7931c31000b1c19e57dbfb71bbf71b817d1bf949"
+ integrity sha512-TWJxWGp1J628gxh2KhaH1H1paEdgE2J61BBF1I59c6xWeL5+D1BzMxGDN/nXAfX+aSkR5u80K+XhskK6Gwq9ng==
dependencies:
- "@babel/runtime" "^7.18.9"
- aria-query "^4.2.2"
- array-includes "^3.1.5"
+ "@typescript-eslint/utils" "^5.10.0"
+
+eslint-plugin-jsx-a11y@^6.6.1:
+ version "6.7.1"
+ resolved "https://registry.yarnpkg.com/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.7.1.tgz#fca5e02d115f48c9a597a6894d5bcec2f7a76976"
+ integrity sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==
+ dependencies:
+ "@babel/runtime" "^7.20.7"
+ aria-query "^5.1.3"
+ array-includes "^3.1.6"
+ array.prototype.flatmap "^1.3.1"
ast-types-flow "^0.0.7"
- axe-core "^4.4.3"
- axobject-query "^2.2.0"
+ axe-core "^4.6.2"
+ axobject-query "^3.1.1"
damerau-levenshtein "^1.0.8"
emoji-regex "^9.2.2"
has "^1.0.3"
- jsx-ast-utils "^3.3.2"
- language-tags "^1.0.5"
+ jsx-ast-utils "^3.3.3"
+ language-tags "=1.0.5"
minimatch "^3.1.2"
+ object.entries "^1.1.6"
+ object.fromentries "^2.0.6"
semver "^6.3.0"
eslint-plugin-prettier@^4.2.1:
@@ -4345,27 +4136,41 @@ eslint-plugin-react-hooks@^4.6.0:
resolved "https://registry.yarnpkg.com/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz#4c3e697ad95b77e93f8646aaa1630c1ba607edd3"
integrity sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==
-eslint-plugin-react@^7.31.7:
- version "7.31.10"
- resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.31.10.tgz#6782c2c7fe91c09e715d536067644bbb9491419a"
- integrity sha512-e4N/nc6AAlg4UKW/mXeYWd3R++qUano5/o+t+wnWxIf+bLsOaH3a4q74kX3nDjYym3VBN4HyO9nEn1GcAqgQOA==
+eslint-plugin-react-native-globals@^0.1.1:
+ version "0.1.2"
+ resolved "https://registry.yarnpkg.com/eslint-plugin-react-native-globals/-/eslint-plugin-react-native-globals-0.1.2.tgz#ee1348bc2ceb912303ce6bdbd22e2f045ea86ea2"
+ integrity sha512-9aEPf1JEpiTjcFAmmyw8eiIXmcNZOqaZyHO77wgm0/dWfT/oxC1SrIq8ET38pMxHYrcB6Uew+TzUVsBeczF88g==
+
+eslint-plugin-react-native@^4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/eslint-plugin-react-native/-/eslint-plugin-react-native-4.0.0.tgz#eec41984abe4970bdd7c6082dff7a98a5e34d0bb"
+ integrity sha512-kMmdxrSY7A1WgdqaGC+rY/28rh7kBGNBRsk48ovqkQmdg5j4K+DaFmegENDzMrdLkoufKGRNkKX6bgSwQTCAxQ==
dependencies:
- array-includes "^3.1.5"
- array.prototype.flatmap "^1.3.0"
+ "@babel/traverse" "^7.7.4"
+ eslint-plugin-react-native-globals "^0.1.1"
+
+eslint-plugin-react@^7.30.1, eslint-plugin-react@^7.31.7:
+ version "7.32.2"
+ resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.32.2.tgz#e71f21c7c265ebce01bcbc9d0955170c55571f10"
+ integrity sha512-t2fBMa+XzonrrNkyVirzKlvn5RXzzPwRHtMvLAtVZrt8oxgnTQaYbU6SXTOO1mwQgp1y5+toMSKInnzGr0Knqg==
+ dependencies:
+ array-includes "^3.1.6"
+ array.prototype.flatmap "^1.3.1"
+ array.prototype.tosorted "^1.1.1"
doctrine "^2.1.0"
estraverse "^5.3.0"
jsx-ast-utils "^2.4.1 || ^3.0.0"
minimatch "^3.1.2"
- object.entries "^1.1.5"
- object.fromentries "^2.0.5"
- object.hasown "^1.1.1"
- object.values "^1.1.5"
+ object.entries "^1.1.6"
+ object.fromentries "^2.0.6"
+ object.hasown "^1.1.2"
+ object.values "^1.1.6"
prop-types "^15.8.1"
- resolve "^2.0.0-next.3"
+ resolve "^2.0.0-next.4"
semver "^6.3.0"
- string.prototype.matchall "^4.0.7"
+ string.prototype.matchall "^4.0.8"
-eslint-scope@^5.1.1:
+eslint-scope@5.1.1, eslint-scope@^5.1.1:
version "5.1.1"
resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.1.1.tgz#e786e59a66cb92b3f6c1fb0d508aab174848f48c"
integrity sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==
@@ -4373,38 +4178,34 @@ eslint-scope@^5.1.1:
esrecurse "^4.3.0"
estraverse "^4.1.1"
-eslint-scope@^7.1.1:
- version "7.1.1"
- resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-7.1.1.tgz#fff34894c2f65e5226d3041ac480b4513a163642"
- integrity sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==
+eslint-scope@^7.2.0:
+ version "7.2.0"
+ resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-7.2.0.tgz#f21ebdafda02352f103634b96dd47d9f81ca117b"
+ integrity sha512-DYj5deGlHBfMt15J7rdtyKNq/Nqlv5KfU4iodrQ019XESsRnwXH9KAE0y3cwtUHDo2ob7CypAnCqefh6vioWRw==
dependencies:
esrecurse "^4.3.0"
estraverse "^5.2.0"
-eslint-utils@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-3.0.0.tgz#8aebaface7345bb33559db0a1f13a1d2d48c3672"
- integrity sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==
- dependencies:
- eslint-visitor-keys "^2.0.0"
-
-eslint-visitor-keys@^2.0.0:
+eslint-visitor-keys@^2.1.0:
version "2.1.0"
resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz#f65328259305927392c938ed44eb0a5c9b2bd303"
integrity sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==
-eslint-visitor-keys@^3.3.0:
- version "3.3.0"
- resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz#f6480fa6b1f30efe2d1968aa8ac745b862469826"
- integrity sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==
-
-eslint@^8.23.0:
- version "8.27.0"
- resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.27.0.tgz#d547e2f7239994ad1faa4bb5d84e5d809db7cf64"
- integrity sha512-0y1bfG2ho7mty+SiILVf9PfuRA49ek4Nc60Wmmu62QlobNR+CeXa4xXIJgcuwSQgZiWaPH+5BDsctpIW0PR/wQ==
- dependencies:
- "@eslint/eslintrc" "^1.3.3"
- "@humanwhocodes/config-array" "^0.11.6"
+eslint-visitor-keys@^3.3.0, eslint-visitor-keys@^3.4.1:
+ version "3.4.1"
+ resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.1.tgz#c22c48f48942d08ca824cc526211ae400478a994"
+ integrity sha512-pZnmmLwYzf+kWaM/Qgrvpen51upAktaaiI01nsJD/Yr3lMOdNtq0cxkrrg16w64VtisN6okbs7Q8AfGqj4c9fA==
+
+eslint@^8.19.0:
+ version "8.42.0"
+ resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.42.0.tgz#7bebdc3a55f9ed7167251fe7259f75219cade291"
+ integrity sha512-ulg9Ms6E1WPf67PHaEY4/6E2tEn5/f7FXGzr3t9cBMugOmf1INYvuUwwh1aXQN4MfJ6a5K2iNwP3w4AColvI9A==
+ dependencies:
+ "@eslint-community/eslint-utils" "^4.2.0"
+ "@eslint-community/regexpp" "^4.4.0"
+ "@eslint/eslintrc" "^2.0.3"
+ "@eslint/js" "8.42.0"
+ "@humanwhocodes/config-array" "^0.11.10"
"@humanwhocodes/module-importer" "^1.0.1"
"@nodelib/fs.walk" "^1.2.8"
ajv "^6.10.0"
@@ -4413,24 +4214,22 @@ eslint@^8.23.0:
debug "^4.3.2"
doctrine "^3.0.0"
escape-string-regexp "^4.0.0"
- eslint-scope "^7.1.1"
- eslint-utils "^3.0.0"
- eslint-visitor-keys "^3.3.0"
- espree "^9.4.0"
- esquery "^1.4.0"
+ eslint-scope "^7.2.0"
+ eslint-visitor-keys "^3.4.1"
+ espree "^9.5.2"
+ esquery "^1.4.2"
esutils "^2.0.2"
fast-deep-equal "^3.1.3"
file-entry-cache "^6.0.1"
find-up "^5.0.0"
glob-parent "^6.0.2"
- globals "^13.15.0"
- grapheme-splitter "^1.0.4"
+ globals "^13.19.0"
+ graphemer "^1.4.0"
ignore "^5.2.0"
import-fresh "^3.0.0"
imurmurhash "^0.1.4"
is-glob "^4.0.0"
is-path-inside "^3.0.3"
- js-sdsl "^4.1.4"
js-yaml "^4.1.0"
json-stable-stringify-without-jsonify "^1.0.1"
levn "^0.4.1"
@@ -4438,29 +4237,28 @@ eslint@^8.23.0:
minimatch "^3.1.2"
natural-compare "^1.4.0"
optionator "^0.9.1"
- regexpp "^3.2.0"
strip-ansi "^6.0.1"
strip-json-comments "^3.1.0"
text-table "^0.2.0"
-espree@^9.4.0:
- version "9.4.1"
- resolved "https://registry.yarnpkg.com/espree/-/espree-9.4.1.tgz#51d6092615567a2c2cff7833445e37c28c0065bd"
- integrity sha512-XwctdmTO6SIvCzd9810yyNzIrOrqNYV9Koizx4C/mRhf9uq0o4yHoCEU/670pOxOL/MSraektvSAji79kX90Vg==
+espree@^9.5.2:
+ version "9.5.2"
+ resolved "https://registry.yarnpkg.com/espree/-/espree-9.5.2.tgz#e994e7dc33a082a7a82dceaf12883a829353215b"
+ integrity sha512-7OASN1Wma5fum5SrNhFMAMJxOUAbhyfQ8dQ//PJaJbNw0URTPWqIghHWt1MmAANKhHZIYOHruW4Kw4ruUWOdGw==
dependencies:
acorn "^8.8.0"
acorn-jsx "^5.3.2"
- eslint-visitor-keys "^3.3.0"
+ eslint-visitor-keys "^3.4.1"
-esprima@^4.0.0, esprima@^4.0.1, esprima@~4.0.0:
+esprima@^4.0.0, esprima@~4.0.0:
version "4.0.1"
resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71"
integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==
-esquery@^1.4.0:
- version "1.4.0"
- resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.4.0.tgz#2148ffc38b82e8c7057dfed48425b3e61f0f24a5"
- integrity sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==
+esquery@^1.4.2:
+ version "1.5.0"
+ resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.5.0.tgz#6ce17738de8577694edd7361c57182ac8cb0db0b"
+ integrity sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==
dependencies:
estraverse "^5.1.0"
@@ -4496,11 +4294,6 @@ event-target-shim@^5.0.0, event-target-shim@^5.0.1:
resolved "https://registry.yarnpkg.com/event-target-shim/-/event-target-shim-5.0.1.tgz#5d4d3ebdf9583d63a5333ce2deb7480ab2b05789"
integrity sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==
-exec-sh@^0.3.2:
- version "0.3.6"
- resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.3.6.tgz#ff264f9e325519a60cb5e273692943483cca63bc"
- integrity sha512-nQn+hI3yp+oD0huYhKwvYI32+JFeq+XkNcD1GAo3Y/MjxsfVGmrrzrnzjWiNY6f+pUCP440fThsFh5gZrRAU/w==
-
execa@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/execa/-/execa-1.0.0.tgz#c6236a5bb4df6d6f15e88e7f017798216749ddd8"
@@ -4547,17 +4340,7 @@ expand-brackets@^2.1.4:
snapdragon "^0.8.1"
to-regex "^3.0.1"
-expect@^27.5.1:
- version "27.5.1"
- resolved "https://registry.yarnpkg.com/expect/-/expect-27.5.1.tgz#83ce59f1e5bdf5f9d2b94b61d2050db48f3fef74"
- integrity sha512-E1q5hSUG2AmYQwQJ041nvgpkODHQvB+RKlB4IYdru6uJsyFTRyZAP463M+1lINorwbqAmUggi6+WwkD8lCS/Dw==
- dependencies:
- "@jest/types" "^27.5.1"
- jest-get-type "^27.5.1"
- jest-matcher-utils "^27.5.1"
- jest-message-util "^27.5.1"
-
-expect@^29.5.0:
+expect@^29.0.0, expect@^29.5.0:
version "29.5.0"
resolved "https://registry.yarnpkg.com/expect/-/expect-29.5.0.tgz#68c0509156cb2a0adb8865d413b137eeaae682f7"
integrity sha512-yM7xqUrCO2JdpFo4XpM82t+PJBFybdqoQuJLDGeDX2ij8NZzqRHyu3Hp188/JX7SWqud+7t4MUdvcgGBICMHZg==
@@ -4603,9 +4386,9 @@ fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3:
integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==
fast-diff@^1.1.2:
- version "1.2.0"
- resolved "https://registry.yarnpkg.com/fast-diff/-/fast-diff-1.2.0.tgz#73ee11982d86caaf7959828d519cfe927fac5f03"
- integrity sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w==
+ version "1.3.0"
+ resolved "https://registry.yarnpkg.com/fast-diff/-/fast-diff-1.3.0.tgz#ece407fa550a64d638536cd727e129c61616e0f0"
+ integrity sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==
fast-glob@^3.2.9:
version "3.2.12"
@@ -4623,15 +4406,22 @@ fast-json-stable-stringify@2.x, fast-json-stable-stringify@^2.0.0, fast-json-sta
resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633"
integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==
-fast-levenshtein@^2.0.6, fast-levenshtein@~2.0.6:
+fast-levenshtein@^2.0.6:
version "2.0.6"
resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917"
integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==
+fast-xml-parser@^4.0.12:
+ version "4.2.4"
+ resolved "https://registry.yarnpkg.com/fast-xml-parser/-/fast-xml-parser-4.2.4.tgz#6e846ede1e56ad9e5ef07d8720809edf0ed07e9b"
+ integrity sha512-fbfMDvgBNIdDJLdLOwacjFAPYt67tr31H9ZhWSm45CDAxvd0I6WTlSOUo7K2P/K5sA5JgMKG64PI3DMcaFdWpQ==
+ dependencies:
+ strnum "^1.0.5"
+
fastq@^1.6.0:
- version "1.13.0"
- resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.13.0.tgz#616760f88a7526bdfc596b7cab8c18938c36b98c"
- integrity sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==
+ version "1.15.0"
+ resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.15.0.tgz#d04d07c6a2a68fe4599fea8d2e103a937fae6b3a"
+ integrity sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==
dependencies:
reusify "^1.0.4"
@@ -4745,34 +4535,32 @@ flatted@^3.1.0:
integrity sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==
flow-parser@0.*:
- version "0.193.0"
- resolved "https://registry.yarnpkg.com/flow-parser/-/flow-parser-0.193.0.tgz#8d705fc2d6b378a24bae189014f6f0320d040c4f"
- integrity sha512-x7ZoArE1UO3Nk2rkq/KK/Tkp714QDMVzEsxIyK2+p7Alx+88LY7KgqmeQZuiAG8TCHucmYuHefbk3KsVFVjouA==
+ version "0.207.0"
+ resolved "https://registry.yarnpkg.com/flow-parser/-/flow-parser-0.207.0.tgz#376975f6b88991bf0ef9496fa3bffd5eb3120046"
+ integrity sha512-s90OlXqzWj1xc4yUtqD1Gr8pGVx0/5rk9gsqPrOYF1kBAPMH4opkmzdWgQ8aNe3Pckqtwr8DlYGbfE2GnW+zsg==
-flow-parser@^0.121.0:
- version "0.121.0"
- resolved "https://registry.yarnpkg.com/flow-parser/-/flow-parser-0.121.0.tgz#9f9898eaec91a9f7c323e9e992d81ab5c58e618f"
- integrity sha512-1gIBiWJNR0tKUNv8gZuk7l9rVX06OuLzY9AoGio7y/JT4V1IZErEMEq2TJS+PFcw/y0RshZ1J/27VfK1UQzYVg==
+flow-parser@^0.185.0:
+ version "0.185.2"
+ resolved "https://registry.yarnpkg.com/flow-parser/-/flow-parser-0.185.2.tgz#cb7ee57f77377d6c5d69a469e980f6332a15e492"
+ integrity sha512-2hJ5ACYeJCzNtiVULov6pljKOLygy0zddoqSI1fFetM+XRPpRshFdGEijtqlamA1XwyZ+7rhryI6FQFzvtLWUQ==
follow-redirects@^1.14.9:
version "1.15.2"
resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.15.2.tgz#b460864144ba63f2681096f274c4e57026da2c13"
integrity sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==
+for-each@^0.3.3:
+ version "0.3.3"
+ resolved "https://registry.yarnpkg.com/for-each/-/for-each-0.3.3.tgz#69b447e88a0a5d32c3e7084f3f1710034b21376e"
+ integrity sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==
+ dependencies:
+ is-callable "^1.1.3"
+
for-in@^1.0.2:
version "1.0.2"
resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80"
integrity sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==
-form-data@^3.0.0:
- version "3.0.1"
- resolved "https://registry.yarnpkg.com/form-data/-/form-data-3.0.1.tgz#ebd53791b78356a99af9a300d4282c4d5eb9755f"
- integrity sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==
- dependencies:
- asynckit "^0.4.0"
- combined-stream "^1.0.8"
- mime-types "^2.1.12"
-
form-data@^4.0.0:
version "4.0.0"
resolved "https://registry.yarnpkg.com/form-data/-/form-data-4.0.0.tgz#93919daeaf361ee529584b9b31664dc12c9fa452"
@@ -4794,15 +4582,6 @@ fresh@0.5.2:
resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7"
integrity sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==
-fs-extra@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-1.0.0.tgz#cd3ce5f7e7cb6145883fcae3191e9877f8587950"
- integrity sha512-VerQV6vEKuhDWD2HGOybV6v5I73syoc/cXAbKlgTC7M/oFVEtklWlp9QH2Ijw3IaWDOQcMkldSPa7zXy79Z/UQ==
- dependencies:
- graceful-fs "^4.1.2"
- jsonfile "^2.1.0"
- klaw "^1.0.0"
-
fs-extra@^8.1.0:
version "8.1.0"
resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-8.1.0.tgz#49d43c45a88cd9677668cb7be1b46efdb8d2e1c0"
@@ -4817,7 +4596,7 @@ fs.realpath@^1.0.0:
resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==
-fsevents@^2.1.2, fsevents@^2.3.2, fsevents@~2.3.2:
+fsevents@^2.3.2, fsevents@~2.3.2:
version "2.3.2"
resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a"
integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==
@@ -4837,7 +4616,7 @@ function.prototype.name@^1.1.5:
es-abstract "^1.19.0"
functions-have-names "^1.2.2"
-functions-have-names@^1.2.2:
+functions-have-names@^1.2.2, functions-have-names@^1.2.3:
version "1.2.3"
resolved "https://registry.yarnpkg.com/functions-have-names/-/functions-have-names-1.2.3.tgz#0404fe4ee2ba2f607f0e0ec3c80bae994133b834"
integrity sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==
@@ -4852,13 +4631,14 @@ get-caller-file@^2.0.1, get-caller-file@^2.0.5:
resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e"
integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==
-get-intrinsic@^1.0.2, get-intrinsic@^1.1.0, get-intrinsic@^1.1.1, get-intrinsic@^1.1.3:
- version "1.1.3"
- resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.1.3.tgz#063c84329ad93e83893c7f4f243ef63ffa351385"
- integrity sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A==
+get-intrinsic@^1.0.2, get-intrinsic@^1.1.1, get-intrinsic@^1.1.3, get-intrinsic@^1.2.0:
+ version "1.2.1"
+ resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.1.tgz#d295644fed4505fc9cde952c37ee12b477a83d82"
+ integrity sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==
dependencies:
function-bind "^1.1.1"
has "^1.0.3"
+ has-proto "^1.0.1"
has-symbols "^1.0.3"
get-package-type@^0.1.0:
@@ -4949,7 +4729,7 @@ glob-parent@^6.0.2:
dependencies:
is-glob "^4.0.3"
-glob@^7.1.1, glob@^7.1.2, glob@^7.1.3, glob@^7.1.4, glob@^7.1.6:
+glob@^7.1.1, glob@^7.1.3, glob@^7.1.4, glob@^7.1.6:
version "7.2.3"
resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b"
integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==
@@ -4966,13 +4746,20 @@ globals@^11.1.0:
resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e"
integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==
-globals@^13.15.0:
- version "13.17.0"
- resolved "https://registry.yarnpkg.com/globals/-/globals-13.17.0.tgz#902eb1e680a41da93945adbdcb5a9f361ba69bd4"
- integrity sha512-1C+6nQRb1GwGMKm2dH/E7enFAMxGTmGI7/dEdhy/DNelv85w9B72t3uc5frtMNXIbzrarJJ/lTCjcaZwbLJmyw==
+globals@^13.19.0:
+ version "13.20.0"
+ resolved "https://registry.yarnpkg.com/globals/-/globals-13.20.0.tgz#ea276a1e508ffd4f1612888f9d1bad1e2717bf82"
+ integrity sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==
dependencies:
type-fest "^0.20.2"
+globalthis@^1.0.3:
+ version "1.0.3"
+ resolved "https://registry.yarnpkg.com/globalthis/-/globalthis-1.0.3.tgz#5852882a52b80dc301b0660273e1ed082f0b6ccf"
+ integrity sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==
+ dependencies:
+ define-properties "^1.1.3"
+
globby@^11.1.0:
version "11.1.0"
resolved "https://registry.yarnpkg.com/globby/-/globby-11.1.0.tgz#bd4be98bb042f83d796f7e3811991fbe82a0d34b"
@@ -4985,16 +4772,28 @@ globby@^11.1.0:
merge2 "^1.4.1"
slash "^3.0.0"
-graceful-fs@^4.1.11, graceful-fs@^4.1.15, graceful-fs@^4.1.2, graceful-fs@^4.1.3, graceful-fs@^4.1.6, graceful-fs@^4.1.9, graceful-fs@^4.2.0, graceful-fs@^4.2.4, graceful-fs@^4.2.9:
- version "4.2.10"
- resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.10.tgz#147d3a006da4ca3ce14728c7aefc287c367d7a6c"
- integrity sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==
+gopd@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/gopd/-/gopd-1.0.1.tgz#29ff76de69dac7489b7c0918a5788e56477c332c"
+ integrity sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==
+ dependencies:
+ get-intrinsic "^1.1.3"
+
+graceful-fs@^4.1.11, graceful-fs@^4.1.15, graceful-fs@^4.1.2, graceful-fs@^4.1.3, graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.4, graceful-fs@^4.2.9:
+ version "4.2.11"
+ resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz#4183e4e8bf08bb6e05bbb2f7d2e0c8f712ca40e3"
+ integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==
grapheme-splitter@^1.0.4:
version "1.0.4"
resolved "https://registry.yarnpkg.com/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz#9cf3a665c6247479896834af35cf1dbb4400767e"
integrity sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==
+graphemer@^1.4.0:
+ version "1.4.0"
+ resolved "https://registry.yarnpkg.com/graphemer/-/graphemer-1.4.0.tgz#fb2f1d55e0e3a1849aeffc90c4fa0dd53a0e66c6"
+ integrity sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==
+
handlebars@^4.7.7:
version "4.7.7"
resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.7.7.tgz#9ce33416aad02dbd6c8fafa8240d5d98004945a1"
@@ -5034,6 +4833,11 @@ has-property-descriptors@^1.0.0:
dependencies:
get-intrinsic "^1.1.1"
+has-proto@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/has-proto/-/has-proto-1.0.1.tgz#1885c1305538958aff469fef37937c22795408e0"
+ integrity sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==
+
has-symbols@^1.0.2, has-symbols@^1.0.3:
version "1.0.3"
resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8"
@@ -5084,15 +4888,17 @@ has@^1.0.3:
dependencies:
function-bind "^1.1.1"
-hermes-engine@~0.9.0:
- version "0.9.0"
- resolved "https://registry.yarnpkg.com/hermes-engine/-/hermes-engine-0.9.0.tgz#84d9cfe84e8f6b1b2020d6e71b350cec84ed982f"
- integrity sha512-r7U+Y4P2Qg/igFVZN+DpT7JFfXUn1MM4dFne8aW+cCrF6RRymof+VqrUHs1kl07j8h8V2CNesU19RKgWbr3qPw==
+hermes-estree@0.8.0:
+ version "0.8.0"
+ resolved "https://registry.yarnpkg.com/hermes-estree/-/hermes-estree-0.8.0.tgz#530be27243ca49f008381c1f3e8b18fb26bf9ec0"
+ integrity sha512-W6JDAOLZ5pMPMjEiQGLCXSSV7pIBEgRR5zGkxgmzGSXHOxqV5dC/M1Zevqpbm9TZDE5tu358qZf8Vkzmsc+u7Q==
-hermes-parser@0.4.7:
- version "0.4.7"
- resolved "https://registry.yarnpkg.com/hermes-parser/-/hermes-parser-0.4.7.tgz#410f5129d57183784d205a0538e6fbdcf614c9ea"
- integrity sha512-jc+zCtXbtwTiXoMAoXOHepxAaGVFIp89wwE9qcdwnMd/uGVEtPoY8FaFSsx0ThPvyKirdR2EsIIDVrpbSXz1Ag==
+hermes-parser@0.8.0:
+ version "0.8.0"
+ resolved "https://registry.yarnpkg.com/hermes-parser/-/hermes-parser-0.8.0.tgz#116dceaba32e45b16d6aefb5c4c830eaeba2d257"
+ integrity sha512-yZKalg1fTYG5eOiToLUaw69rQfZq/fi+/NtEXRU7N87K/XobNRhRWorh80oSge2lWUiZfTgUvRJH+XgZWrhoqA==
+ dependencies:
+ hermes-estree "0.8.0"
hermes-profile-transformer@^0.0.6:
version "0.0.6"
@@ -5120,13 +4926,6 @@ hosted-git-info@^4.0.0, hosted-git-info@^4.0.1:
dependencies:
lru-cache "^6.0.0"
-html-encoding-sniffer@^2.0.1:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz#42a6dc4fd33f00281176e8b23759ca4e4fa185f3"
- integrity sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==
- dependencies:
- whatwg-encoding "^1.0.5"
-
html-escaper@^2.0.0:
version "2.0.2"
resolved "https://registry.yarnpkg.com/html-escaper/-/html-escaper-2.0.2.tgz#dfd60027da36a36dfcbe236262c00a5822681453"
@@ -5143,39 +4942,20 @@ http-errors@2.0.0:
statuses "2.0.1"
toidentifier "1.0.1"
-http-proxy-agent@^4.0.1:
- version "4.0.1"
- resolved "https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz#8a8c8ef7f5932ccf953c296ca8291b95aa74aa3a"
- integrity sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==
- dependencies:
- "@tootallnate/once" "1"
- agent-base "6"
- debug "4"
-
-https-proxy-agent@^5.0.0:
- version "5.0.1"
- resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz#c59ef224a04fe8b754f3db0063a25ea30d0005d6"
- integrity sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==
- dependencies:
- agent-base "6"
- debug "4"
-
human-signals@^2.1.0:
version "2.1.0"
resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-2.1.0.tgz#dc91fcba42e4d06e4abaed33b3e7a3c02f514ea0"
integrity sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==
-iconv-lite@0.4.24:
- version "0.4.24"
- resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b"
- integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==
- dependencies:
- safer-buffer ">= 2.1.2 < 3"
+ieee754@^1.1.13:
+ version "1.2.1"
+ resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352"
+ integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==
-ignore@^5.2.0:
- version "5.2.0"
- resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.0.tgz#6d3bac8fa7fe0d45d9f9be7bac2fc279577e345a"
- integrity sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==
+ignore@^5.0.5, ignore@^5.2.0:
+ version "5.2.4"
+ resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.4.tgz#a291c0c6178ff1b960befe47fcdec301674a6324"
+ integrity sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==
image-size@^0.6.0:
version "0.6.3"
@@ -5224,7 +5004,7 @@ inflight@^1.0.4:
once "^1.3.0"
wrappy "1"
-inherits@2, inherits@2.0.4, inherits@^2.0.3, inherits@~2.0.3:
+inherits@2, inherits@2.0.4, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.3:
version "2.0.4"
resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c"
integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==
@@ -5234,12 +5014,12 @@ ini@^1.3.2:
resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c"
integrity sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==
-internal-slot@^1.0.3:
- version "1.0.3"
- resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.3.tgz#7347e307deeea2faac2ac6205d4bc7d34967f59c"
- integrity sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==
+internal-slot@^1.0.3, internal-slot@^1.0.4, internal-slot@^1.0.5:
+ version "1.0.5"
+ resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.5.tgz#f2a2ee21f668f8627a4667f309dc0f4fb6674986"
+ integrity sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==
dependencies:
- get-intrinsic "^1.1.0"
+ get-intrinsic "^1.2.0"
has "^1.0.3"
side-channel "^1.0.4"
@@ -5253,7 +5033,7 @@ intl-messageformat@10.1.5:
"@formatjs/icu-messageformat-parser" "2.1.8"
tslib "2.4.0"
-invariant@^2.2.2, invariant@^2.2.4:
+invariant@*, invariant@^2.2.2, invariant@^2.2.4:
version "2.2.4"
resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6"
integrity sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==
@@ -5279,6 +5059,23 @@ is-accessor-descriptor@^1.0.0:
dependencies:
kind-of "^6.0.0"
+is-arguments@^1.1.1:
+ version "1.1.1"
+ resolved "https://registry.yarnpkg.com/is-arguments/-/is-arguments-1.1.1.tgz#15b3f88fda01f2a97fec84ca761a560f123efa9b"
+ integrity sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==
+ dependencies:
+ call-bind "^1.0.2"
+ has-tostringtag "^1.0.0"
+
+is-array-buffer@^3.0.1, is-array-buffer@^3.0.2:
+ version "3.0.2"
+ resolved "https://registry.yarnpkg.com/is-array-buffer/-/is-array-buffer-3.0.2.tgz#f2653ced8412081638ecb0ebbd0c41c6e0aecbbe"
+ integrity sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==
+ dependencies:
+ call-bind "^1.0.2"
+ get-intrinsic "^1.2.0"
+ is-typed-array "^1.1.10"
+
is-arrayish@^0.2.1:
version "0.2.1"
resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d"
@@ -5309,22 +5106,15 @@ is-buffer@^1.1.5:
resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be"
integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==
-is-callable@^1.1.4, is-callable@^1.2.7:
+is-callable@^1.1.3, is-callable@^1.1.4, is-callable@^1.2.7:
version "1.2.7"
resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.7.tgz#3bc2a85ea742d9e36205dcacdd72ca1fdc51b055"
integrity sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==
-is-ci@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-2.0.0.tgz#6bc6334181810e04b5c22b3d589fdca55026404c"
- integrity sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==
- dependencies:
- ci-info "^2.0.0"
-
-is-core-module@^2.5.0, is-core-module@^2.8.1, is-core-module@^2.9.0:
- version "2.11.0"
- resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.11.0.tgz#ad4cb3e3863e814523c96f3f58d26cc570ff0144"
- integrity sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==
+is-core-module@^2.11.0, is-core-module@^2.5.0, is-core-module@^2.9.0:
+ version "2.12.1"
+ resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.12.1.tgz#0c0b6885b6f80011c71541ce15c8d66cf5a4f9fd"
+ integrity sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg==
dependencies:
has "^1.0.3"
@@ -5342,7 +5132,7 @@ is-data-descriptor@^1.0.0:
dependencies:
kind-of "^6.0.0"
-is-date-object@^1.0.1:
+is-date-object@^1.0.1, is-date-object@^1.0.5:
version "1.0.5"
resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.5.tgz#0841d5536e724c25597bf6ea62e1bd38298df31f"
integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==
@@ -5411,6 +5201,16 @@ is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3:
dependencies:
is-extglob "^2.1.1"
+is-interactive@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/is-interactive/-/is-interactive-1.0.0.tgz#cea6e6ae5c870a7b0a0004070b7b587e0252912e"
+ integrity sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==
+
+is-map@^2.0.1, is-map@^2.0.2:
+ version "2.0.2"
+ resolved "https://registry.yarnpkg.com/is-map/-/is-map-2.0.2.tgz#00922db8c9bf73e81b7a335827bc2a43f2b91127"
+ integrity sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==
+
is-negative-zero@^2.0.2:
version "2.0.2"
resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.2.tgz#7bf6f03a28003b8b3965de3ac26f664d765f3150"
@@ -5462,11 +5262,6 @@ is-plain-object@^2.0.3, is-plain-object@^2.0.4:
dependencies:
isobject "^3.0.1"
-is-potential-custom-element-name@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz#171ed6f19e3ac554394edf78caa05784a45bebb5"
- integrity sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==
-
is-regex@^1.1.4:
version "1.1.4"
resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958"
@@ -5475,6 +5270,11 @@ is-regex@^1.1.4:
call-bind "^1.0.2"
has-tostringtag "^1.0.0"
+is-set@^2.0.1, is-set@^2.0.2:
+ version "2.0.2"
+ resolved "https://registry.yarnpkg.com/is-set/-/is-set-2.0.2.tgz#90755fa4c2562dc1c5d4024760d6119b94ca18ec"
+ integrity sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==
+
is-shared-array-buffer@^1.0.2:
version "1.0.2"
resolved "https://registry.yarnpkg.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz#8f259c573b60b6a32d4058a1a07430c0a7344c79"
@@ -5513,10 +5313,26 @@ is-text-path@^1.0.1:
dependencies:
text-extensions "^1.0.0"
-is-typedarray@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a"
- integrity sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==
+is-typed-array@^1.1.10, is-typed-array@^1.1.9:
+ version "1.1.10"
+ resolved "https://registry.yarnpkg.com/is-typed-array/-/is-typed-array-1.1.10.tgz#36a5b5cb4189b575d1a3e4b08536bfb485801e3f"
+ integrity sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==
+ dependencies:
+ available-typed-arrays "^1.0.5"
+ call-bind "^1.0.2"
+ for-each "^0.3.3"
+ gopd "^1.0.1"
+ has-tostringtag "^1.0.0"
+
+is-unicode-supported@^0.1.0:
+ version "0.1.0"
+ resolved "https://registry.yarnpkg.com/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz#3f26c76a809593b52bfa2ecb5710ed2779b522a7"
+ integrity sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==
+
+is-weakmap@^2.0.1:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/is-weakmap/-/is-weakmap-2.0.1.tgz#5008b59bdc43b698201d18f62b37b2ca243e8cf2"
+ integrity sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==
is-weakref@^1.0.2:
version "1.0.2"
@@ -5525,6 +5341,14 @@ is-weakref@^1.0.2:
dependencies:
call-bind "^1.0.2"
+is-weakset@^2.0.1:
+ version "2.0.2"
+ resolved "https://registry.yarnpkg.com/is-weakset/-/is-weakset-2.0.2.tgz#4569d67a747a1ce5a994dfd4ef6dcea76e7c0a1d"
+ integrity sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==
+ dependencies:
+ call-bind "^1.0.2"
+ get-intrinsic "^1.1.1"
+
is-windows@^1.0.2:
version "1.0.2"
resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d"
@@ -5540,6 +5364,11 @@ isarray@1.0.0, isarray@~1.0.0:
resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11"
integrity sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==
+isarray@^2.0.5:
+ version "2.0.5"
+ resolved "https://registry.yarnpkg.com/isarray/-/isarray-2.0.5.tgz#8af1e4c1221244cc62459faf38940d4e644a5723"
+ integrity sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==
+
isexe@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10"
@@ -5599,15 +5428,6 @@ istanbul-reports@^3.1.3:
html-escaper "^2.0.0"
istanbul-lib-report "^3.0.0"
-jest-changed-files@^27.5.1:
- version "27.5.1"
- resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-27.5.1.tgz#a348aed00ec9bf671cc58a66fcbe7c3dfd6a68f5"
- integrity sha512-buBLMiByfWGCoMsLLzGUUSpAmIAGnbR2KJoMN10ziLhOLvP4e0SlypHnAel8iqQXTrcbmfEY9sSqae5sgUsTvw==
- dependencies:
- "@jest/types" "^27.5.1"
- execa "^5.0.0"
- throat "^6.0.1"
-
jest-changed-files@^29.5.0:
version "29.5.0"
resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-29.5.0.tgz#e88786dca8bf2aa899ec4af7644e16d9dcf9b23e"
@@ -5616,31 +5436,6 @@ jest-changed-files@^29.5.0:
execa "^5.0.0"
p-limit "^3.1.0"
-jest-circus@^27.5.1:
- version "27.5.1"
- resolved "https://registry.yarnpkg.com/jest-circus/-/jest-circus-27.5.1.tgz#37a5a4459b7bf4406e53d637b49d22c65d125ecc"
- integrity sha512-D95R7x5UtlMA5iBYsOHFFbMD/GVA4R/Kdq15f7xYWUfWHBto9NYRsOvnSauTgdF+ogCpJ4tyKOXhUifxS65gdw==
- dependencies:
- "@jest/environment" "^27.5.1"
- "@jest/test-result" "^27.5.1"
- "@jest/types" "^27.5.1"
- "@types/node" "*"
- chalk "^4.0.0"
- co "^4.6.0"
- dedent "^0.7.0"
- expect "^27.5.1"
- is-generator-fn "^2.0.0"
- jest-each "^27.5.1"
- jest-matcher-utils "^27.5.1"
- jest-message-util "^27.5.1"
- jest-runtime "^27.5.1"
- jest-snapshot "^27.5.1"
- jest-util "^27.5.1"
- pretty-format "^27.5.1"
- slash "^3.0.0"
- stack-utils "^2.0.3"
- throat "^6.0.1"
-
jest-circus@^29.5.0:
version "29.5.0"
resolved "https://registry.yarnpkg.com/jest-circus/-/jest-circus-29.5.0.tgz#b5926989449e75bff0d59944bae083c9d7fb7317"
@@ -5667,24 +5462,6 @@ jest-circus@^29.5.0:
slash "^3.0.0"
stack-utils "^2.0.3"
-jest-cli@^27.5.1:
- version "27.5.1"
- resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-27.5.1.tgz#278794a6e6458ea8029547e6c6cbf673bd30b145"
- integrity sha512-Hc6HOOwYq4/74/c62dEE3r5elx8wjYqxY0r0G/nFrLDPMFRu6RA/u8qINOIkvhxG7mMQ5EJsOGfRpI8L6eFUVw==
- dependencies:
- "@jest/core" "^27.5.1"
- "@jest/test-result" "^27.5.1"
- "@jest/types" "^27.5.1"
- chalk "^4.0.0"
- exit "^0.1.2"
- graceful-fs "^4.2.9"
- import-local "^3.0.2"
- jest-config "^27.5.1"
- jest-util "^27.5.1"
- jest-validate "^27.5.1"
- prompts "^2.0.1"
- yargs "^16.2.0"
-
jest-cli@^29.5.0:
version "29.5.0"
resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-29.5.0.tgz#b34c20a6d35968f3ee47a7437ff8e53e086b4a67"
@@ -5703,36 +5480,6 @@ jest-cli@^29.5.0:
prompts "^2.0.1"
yargs "^17.3.1"
-jest-config@^27.5.1:
- version "27.5.1"
- resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-27.5.1.tgz#5c387de33dca3f99ad6357ddeccd91bf3a0e4a41"
- integrity sha512-5sAsjm6tGdsVbW9ahcChPAFCk4IlkQUknH5AvKjuLTSlcO/wCZKyFdn7Rg0EkC+OGgWODEy2hDpWB1PgzH0JNA==
- dependencies:
- "@babel/core" "^7.8.0"
- "@jest/test-sequencer" "^27.5.1"
- "@jest/types" "^27.5.1"
- babel-jest "^27.5.1"
- chalk "^4.0.0"
- ci-info "^3.2.0"
- deepmerge "^4.2.2"
- glob "^7.1.1"
- graceful-fs "^4.2.9"
- jest-circus "^27.5.1"
- jest-environment-jsdom "^27.5.1"
- jest-environment-node "^27.5.1"
- jest-get-type "^27.5.1"
- jest-jasmine2 "^27.5.1"
- jest-regex-util "^27.5.1"
- jest-resolve "^27.5.1"
- jest-runner "^27.5.1"
- jest-util "^27.5.1"
- jest-validate "^27.5.1"
- micromatch "^4.0.4"
- parse-json "^5.2.0"
- pretty-format "^27.5.1"
- slash "^3.0.0"
- strip-json-comments "^3.1.1"
-
jest-config@^29.5.0:
version "29.5.0"
resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-29.5.0.tgz#3cc972faec8c8aaea9ae158c694541b79f3748da"
@@ -5761,27 +5508,7 @@ jest-config@^29.5.0:
slash "^3.0.0"
strip-json-comments "^3.1.1"
-jest-diff@^27.5.1:
- version "27.5.1"
- resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-27.5.1.tgz#a07f5011ac9e6643cf8a95a462b7b1ecf6680def"
- integrity sha512-m0NvkX55LDt9T4mctTEgnZk3fmEg3NRYutvMPWM/0iPnkFj2wIeF45O1718cMSOFO1vINkqmxqD8vE37uTEbqw==
- dependencies:
- chalk "^4.0.0"
- diff-sequences "^27.5.1"
- jest-get-type "^27.5.1"
- pretty-format "^27.5.1"
-
-jest-diff@^29.0.1, jest-diff@^29.3.1:
- version "29.3.1"
- resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-29.3.1.tgz#d8215b72fed8f1e647aed2cae6c752a89e757527"
- integrity sha512-vU8vyiO7568tmin2lA3r2DP8oRvzhvRcD4DjpXc6uGveQodyk7CKLhQlCSiwgx3g0pFaE88/KLZ0yaTWMc4Uiw==
- dependencies:
- chalk "^4.0.0"
- diff-sequences "^29.3.1"
- jest-get-type "^29.2.0"
- pretty-format "^29.3.1"
-
-jest-diff@^29.5.0:
+jest-diff@^29.0.1, jest-diff@^29.5.0:
version "29.5.0"
resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-29.5.0.tgz#e0d83a58eb5451dcc1fa61b1c3ee4e8f5a290d63"
integrity sha512-LtxijLLZBduXnHSniy0WMdaHjmQnt3g5sa16W4p0HqukYTTsyTW3GD1q41TyGl5YFXj/5B2U6dlh5FM1LIMgxw==
@@ -5789,14 +5516,7 @@ jest-diff@^29.5.0:
chalk "^4.0.0"
diff-sequences "^29.4.3"
jest-get-type "^29.4.3"
- pretty-format "^29.5.0"
-
-jest-docblock@^27.5.1:
- version "27.5.1"
- resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-27.5.1.tgz#14092f364a42c6108d42c33c8cf30e058e25f6c0"
- integrity sha512-rl7hlABeTsRYxKiUfpHrQrG4e2obOiTQWfMEH3PxPjOtdsfLQO4ReWSZaQ7DETm4xu07rl4q/h4zcKXyU0/OzQ==
- dependencies:
- detect-newline "^3.0.0"
+ pretty-format "^29.5.0"
jest-docblock@^29.4.3:
version "29.4.3"
@@ -5805,17 +5525,6 @@ jest-docblock@^29.4.3:
dependencies:
detect-newline "^3.0.0"
-jest-each@^27.5.1:
- version "27.5.1"
- resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-27.5.1.tgz#5bc87016f45ed9507fed6e4702a5b468a5b2c44e"
- integrity sha512-1Ff6p+FbhT/bXQnEouYy00bkNSY7OUpfIcmdl8vZ31A1UUaurOLPA8a8BbJOF2RDUElwJhmeaV7LnagI+5UwNQ==
- dependencies:
- "@jest/types" "^27.5.1"
- chalk "^4.0.0"
- jest-get-type "^27.5.1"
- jest-util "^27.5.1"
- pretty-format "^27.5.1"
-
jest-each@^29.5.0:
version "29.5.0"
resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-29.5.0.tgz#fc6e7014f83eac68e22b7195598de8554c2e5c06"
@@ -5827,32 +5536,7 @@ jest-each@^29.5.0:
jest-util "^29.5.0"
pretty-format "^29.5.0"
-jest-environment-jsdom@^27.5.1:
- version "27.5.1"
- resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-27.5.1.tgz#ea9ccd1fc610209655a77898f86b2b559516a546"
- integrity sha512-TFBvkTC1Hnnnrka/fUb56atfDtJ9VMZ94JkjTbggl1PEpwrYtUBKMezB3inLmWqQsXYLcMwNoDQwoBTAvFfsfw==
- dependencies:
- "@jest/environment" "^27.5.1"
- "@jest/fake-timers" "^27.5.1"
- "@jest/types" "^27.5.1"
- "@types/node" "*"
- jest-mock "^27.5.1"
- jest-util "^27.5.1"
- jsdom "^16.6.0"
-
-jest-environment-node@^27.5.1:
- version "27.5.1"
- resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-27.5.1.tgz#dedc2cfe52fab6b8f5714b4808aefa85357a365e"
- integrity sha512-Jt4ZUnxdOsTGwSRAfKEnE6BcwsSPNOijjwifq5sDFSA2kesnXTvNqKHYgM0hDq3549Uf/KzdXNYn4wMZJPlFLw==
- dependencies:
- "@jest/environment" "^27.5.1"
- "@jest/fake-timers" "^27.5.1"
- "@jest/types" "^27.5.1"
- "@types/node" "*"
- jest-mock "^27.5.1"
- jest-util "^27.5.1"
-
-jest-environment-node@^29.5.0:
+jest-environment-node@^29.2.1, jest-environment-node@^29.5.0:
version "29.5.0"
resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-29.5.0.tgz#f17219d0f0cc0e68e0727c58b792c040e332c967"
integrity sha512-ExxuIK/+yQ+6PRGaHkKewYtg6hto2uGCgvKdb2nfJfKXgZ17DfXjvbZ+jA1Qt9A8EQSfPnt5FKIfnOO3u1h9qw==
@@ -5869,62 +5553,11 @@ jest-get-type@^26.3.0:
resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-26.3.0.tgz#e97dc3c3f53c2b406ca7afaed4493b1d099199e0"
integrity sha512-TpfaviN1R2pQWkIihlfEanwOXK0zcxrKEE4MlU6Tn7keoXdN6/3gK/xl0yEh8DOunn5pOVGKf8hB4R9gVh04ig==
-jest-get-type@^27.5.1:
- version "27.5.1"
- resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-27.5.1.tgz#3cd613c507b0f7ace013df407a1c1cd578bcb4f1"
- integrity sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw==
-
-jest-get-type@^29.2.0:
- version "29.2.0"
- resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-29.2.0.tgz#726646f927ef61d583a3b3adb1ab13f3a5036408"
- integrity sha512-uXNJlg8hKFEnDgFsrCjznB+sTxdkuqiCL6zMgA75qEbAJjJYTs9XPrvDctrEig2GDow22T/LvHgO57iJhXB/UA==
-
jest-get-type@^29.4.3:
version "29.4.3"
resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-29.4.3.tgz#1ab7a5207c995161100b5187159ca82dd48b3dd5"
integrity sha512-J5Xez4nRRMjk8emnTpWrlkyb9pfRQQanDrvWHhsR1+VUfbwxi30eVcZFlcdGInRibU4G5LwHXpI7IRHU0CY+gg==
-jest-haste-map@^26.5.2:
- version "26.6.2"
- resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-26.6.2.tgz#dd7e60fe7dc0e9f911a23d79c5ff7fb5c2cafeaa"
- integrity sha512-easWIJXIw71B2RdR8kgqpjQrbMRWQBgiBwXYEhtGUTaX+doCjBheluShdDMeR8IMfJiTqH4+zfhtg29apJf/8w==
- 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-haste-map@^27.5.1:
- version "27.5.1"
- resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-27.5.1.tgz#9fd8bd7e7b4fa502d9c6164c5640512b4e811e7f"
- integrity sha512-7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng==
- dependencies:
- "@jest/types" "^27.5.1"
- "@types/graceful-fs" "^4.1.2"
- "@types/node" "*"
- anymatch "^3.0.3"
- fb-watchman "^2.0.0"
- graceful-fs "^4.2.9"
- jest-regex-util "^27.5.1"
- jest-serializer "^27.5.1"
- jest-util "^27.5.1"
- jest-worker "^27.5.1"
- micromatch "^4.0.4"
- walker "^1.0.7"
- optionalDependencies:
- fsevents "^2.3.2"
-
jest-haste-map@^29.5.0:
version "29.5.0"
resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-29.5.0.tgz#69bd67dc9012d6e2723f20a945099e972b2e94de"
@@ -5944,37 +5577,6 @@ jest-haste-map@^29.5.0:
optionalDependencies:
fsevents "^2.3.2"
-jest-jasmine2@^27.5.1:
- version "27.5.1"
- resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-27.5.1.tgz#a037b0034ef49a9f3d71c4375a796f3b230d1ac4"
- integrity sha512-jtq7VVyG8SqAorDpApwiJJImd0V2wv1xzdheGHRGyuT7gZm6gG47QEskOlzsN1PG/6WNaCo5pmwMHDf3AkG2pQ==
- dependencies:
- "@jest/environment" "^27.5.1"
- "@jest/source-map" "^27.5.1"
- "@jest/test-result" "^27.5.1"
- "@jest/types" "^27.5.1"
- "@types/node" "*"
- chalk "^4.0.0"
- co "^4.6.0"
- expect "^27.5.1"
- is-generator-fn "^2.0.0"
- jest-each "^27.5.1"
- jest-matcher-utils "^27.5.1"
- jest-message-util "^27.5.1"
- jest-runtime "^27.5.1"
- jest-snapshot "^27.5.1"
- jest-util "^27.5.1"
- pretty-format "^27.5.1"
- throat "^6.0.1"
-
-jest-leak-detector@^27.5.1:
- version "27.5.1"
- resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-27.5.1.tgz#6ec9d54c3579dd6e3e66d70e3498adf80fde3fb8"
- integrity sha512-POXfWAMvfU6WMUXftV4HolnJfnPOGEu10fscNCA76KBpRRhcMN2c8d3iT2pxQS3HLbA+5X4sOUPzYO2NUyIlHQ==
- dependencies:
- jest-get-type "^27.5.1"
- pretty-format "^27.5.1"
-
jest-leak-detector@^29.5.0:
version "29.5.0"
resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-29.5.0.tgz#cf4bdea9615c72bac4a3a7ba7e7930f9c0610c8c"
@@ -5983,27 +5585,7 @@ jest-leak-detector@^29.5.0:
jest-get-type "^29.4.3"
pretty-format "^29.5.0"
-jest-matcher-utils@^27.0.0, jest-matcher-utils@^27.5.1:
- version "27.5.1"
- resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-27.5.1.tgz#9c0cdbda8245bc22d2331729d1091308b40cf8ab"
- integrity sha512-z2uTx/T6LBaCoNWNFWwChLBKYxTMcGBRjAt+2SbP929/Fflb9aa5LGma654Rz8z9HLxsrUaYzxE9T/EFIL/PAw==
- dependencies:
- chalk "^4.0.0"
- jest-diff "^27.5.1"
- jest-get-type "^27.5.1"
- pretty-format "^27.5.1"
-
-jest-matcher-utils@^29.0.1:
- version "29.3.1"
- resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-29.3.1.tgz#6e7f53512f80e817dfa148672bd2d5d04914a572"
- integrity sha512-fkRMZUAScup3txIKfMe3AIZZmPEjWEdsPJFK3AIy5qRohWqQFg1qrmKfYXR9qEkNc7OdAu2N4KPHibEmy4HPeQ==
- dependencies:
- chalk "^4.0.0"
- jest-diff "^29.3.1"
- jest-get-type "^29.2.0"
- pretty-format "^29.3.1"
-
-jest-matcher-utils@^29.5.0:
+jest-matcher-utils@^29.0.1, jest-matcher-utils@^29.5.0:
version "29.5.0"
resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-29.5.0.tgz#d957af7f8c0692c5453666705621ad4abc2c59c5"
integrity sha512-lecRtgm/rjIK0CQ7LPQwzCs2VwW6WAahA55YBuI+xqmhm7LAaxokSB8C97yJeYyT+HvQkH741StzpU41wohhWw==
@@ -6013,21 +5595,6 @@ jest-matcher-utils@^29.5.0:
jest-get-type "^29.4.3"
pretty-format "^29.5.0"
-jest-message-util@^27.5.1:
- version "27.5.1"
- resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-27.5.1.tgz#bdda72806da10d9ed6425e12afff38cd1458b6cf"
- integrity sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==
- dependencies:
- "@babel/code-frame" "^7.12.13"
- "@jest/types" "^27.5.1"
- "@types/stack-utils" "^2.0.0"
- chalk "^4.0.0"
- graceful-fs "^4.2.9"
- micromatch "^4.0.4"
- pretty-format "^27.5.1"
- slash "^3.0.0"
- stack-utils "^2.0.3"
-
jest-message-util@^29.5.0:
version "29.5.0"
resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-29.5.0.tgz#1f776cac3aca332ab8dd2e3b41625435085c900e"
@@ -6043,14 +5610,6 @@ jest-message-util@^29.5.0:
slash "^3.0.0"
stack-utils "^2.0.3"
-jest-mock@^27.5.1:
- version "27.5.1"
- resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-27.5.1.tgz#19948336d49ef4d9c52021d34ac7b5f36ff967d6"
- integrity sha512-K4jKbY1d4ENhbrG2zuPWaQBvDly+iZ2yAW+T1fATN78hc0sInwn7wZB8XtlNnvHug5RMwV897Xm4LqmPM4e2Og==
- dependencies:
- "@jest/types" "^27.5.1"
- "@types/node" "*"
-
jest-mock@^29.5.0:
version "29.5.0"
resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-29.5.0.tgz#26e2172bcc71d8b0195081ff1f146ac7e1518aed"
@@ -6061,16 +5620,11 @@ jest-mock@^29.5.0:
jest-util "^29.5.0"
jest-pnp-resolver@^1.2.2:
- version "1.2.2"
- resolved "https://registry.yarnpkg.com/jest-pnp-resolver/-/jest-pnp-resolver-1.2.2.tgz#b704ac0ae028a89108a4d040b3f919dfddc8e33c"
- integrity sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w==
-
-jest-regex-util@^26.0.0:
- version "26.0.0"
- resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-26.0.0.tgz#d25e7184b36e39fd466c3bc41be0971e821fee28"
- integrity sha512-Gv3ZIs/nA48/Zvjrl34bf+oD76JHiGDUxNOVgUjh3j890sblXryjY4rss71fPtD/njchl6PSE2hIhvyWa1eT0A==
+ version "1.2.3"
+ resolved "https://registry.yarnpkg.com/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz#930b1546164d4ad5937d5540e711d4d38d4cad2e"
+ integrity sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==
-jest-regex-util@^27.5.1:
+jest-regex-util@^27.0.6:
version "27.5.1"
resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-27.5.1.tgz#4da143f7e9fd1e542d4aa69617b38e4a78365b95"
integrity sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==
@@ -6080,15 +5634,6 @@ jest-regex-util@^29.4.3:
resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-29.4.3.tgz#a42616141e0cae052cfa32c169945d00c0aa0bb8"
integrity sha512-O4FglZaMmWXbGHSQInfXewIsd1LMn9p3ZXB/6r4FOkyhX2/iP/soMG98jGvk/A3HAN78+5VWcBGO0BJAPRh4kg==
-jest-resolve-dependencies@^27.5.1:
- version "27.5.1"
- resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-27.5.1.tgz#d811ecc8305e731cc86dd79741ee98fed06f1da8"
- integrity sha512-QQOOdY4PE39iawDn5rzbIePNigfe5B9Z91GDD1ae/xNDlu9kaat8QQ5EKnNmVWPV54hUdxCVwwj6YMgR2O7IOg==
- dependencies:
- "@jest/types" "^27.5.1"
- jest-regex-util "^27.5.1"
- jest-snapshot "^27.5.1"
-
jest-resolve-dependencies@^29.5.0:
version "29.5.0"
resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-29.5.0.tgz#f0ea29955996f49788bf70996052aa98e7befee4"
@@ -6097,22 +5642,6 @@ jest-resolve-dependencies@^29.5.0:
jest-regex-util "^29.4.3"
jest-snapshot "^29.5.0"
-jest-resolve@^27.5.1:
- version "27.5.1"
- resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-27.5.1.tgz#a2f1c5a0796ec18fe9eb1536ac3814c23617b384"
- integrity sha512-FFDy8/9E6CV83IMbDpcjOhumAQPDyETnU2KZ1O98DwTnz8AOBsW/Xv3GySr1mOZdItLR+zDZ7I/UdTFbgSOVCw==
- dependencies:
- "@jest/types" "^27.5.1"
- chalk "^4.0.0"
- graceful-fs "^4.2.9"
- jest-haste-map "^27.5.1"
- jest-pnp-resolver "^1.2.2"
- jest-util "^27.5.1"
- jest-validate "^27.5.1"
- resolve "^1.20.0"
- resolve.exports "^1.1.0"
- slash "^3.0.0"
-
jest-resolve@^29.5.0:
version "29.5.0"
resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-29.5.0.tgz#b053cc95ad1d5f6327f0ac8aae9f98795475ecdc"
@@ -6128,33 +5657,6 @@ jest-resolve@^29.5.0:
resolve.exports "^2.0.0"
slash "^3.0.0"
-jest-runner@^27.5.1:
- version "27.5.1"
- resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-27.5.1.tgz#071b27c1fa30d90540805c5645a0ec167c7b62e5"
- integrity sha512-g4NPsM4mFCOwFKXO4p/H/kWGdJp9V8kURY2lX8Me2drgXqG7rrZAx5kv+5H7wtt/cdFIjhqYx1HrlqWHaOvDaQ==
- dependencies:
- "@jest/console" "^27.5.1"
- "@jest/environment" "^27.5.1"
- "@jest/test-result" "^27.5.1"
- "@jest/transform" "^27.5.1"
- "@jest/types" "^27.5.1"
- "@types/node" "*"
- chalk "^4.0.0"
- emittery "^0.8.1"
- graceful-fs "^4.2.9"
- jest-docblock "^27.5.1"
- jest-environment-jsdom "^27.5.1"
- jest-environment-node "^27.5.1"
- jest-haste-map "^27.5.1"
- jest-leak-detector "^27.5.1"
- jest-message-util "^27.5.1"
- jest-resolve "^27.5.1"
- jest-runtime "^27.5.1"
- jest-util "^27.5.1"
- jest-worker "^27.5.1"
- source-map-support "^0.5.6"
- throat "^6.0.1"
-
jest-runner@^29.5.0:
version "29.5.0"
resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-29.5.0.tgz#6a57c282eb0ef749778d444c1d758c6a7693b6f8"
@@ -6182,34 +5684,6 @@ jest-runner@^29.5.0:
p-limit "^3.1.0"
source-map-support "0.5.13"
-jest-runtime@^27.5.1:
- version "27.5.1"
- resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-27.5.1.tgz#4896003d7a334f7e8e4a53ba93fb9bcd3db0a1af"
- integrity sha512-o7gxw3Gf+H2IGt8fv0RiyE1+r83FJBRruoA+FXrlHw6xEyBsU8ugA6IPfTdVyA0w8HClpbK+DGJxH59UrNMx8A==
- dependencies:
- "@jest/environment" "^27.5.1"
- "@jest/fake-timers" "^27.5.1"
- "@jest/globals" "^27.5.1"
- "@jest/source-map" "^27.5.1"
- "@jest/test-result" "^27.5.1"
- "@jest/transform" "^27.5.1"
- "@jest/types" "^27.5.1"
- chalk "^4.0.0"
- cjs-module-lexer "^1.0.0"
- collect-v8-coverage "^1.0.0"
- execa "^5.0.0"
- glob "^7.1.3"
- graceful-fs "^4.2.9"
- jest-haste-map "^27.5.1"
- jest-message-util "^27.5.1"
- jest-mock "^27.5.1"
- jest-regex-util "^27.5.1"
- jest-resolve "^27.5.1"
- jest-snapshot "^27.5.1"
- jest-util "^27.5.1"
- slash "^3.0.0"
- strip-bom "^4.0.0"
-
jest-runtime@^29.5.0:
version "29.5.0"
resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-29.5.0.tgz#c83f943ee0c1da7eb91fa181b0811ebd59b03420"
@@ -6238,15 +5712,7 @@ jest-runtime@^29.5.0:
slash "^3.0.0"
strip-bom "^4.0.0"
-jest-serializer@^26.6.2:
- version "26.6.2"
- resolved "https://registry.yarnpkg.com/jest-serializer/-/jest-serializer-26.6.2.tgz#d139aafd46957d3a448f3a6cdabe2919ba0742d1"
- integrity sha512-S5wqyz0DXnNJPd/xfIzZ5Xnp1HrJWBczg8mMfMpN78OJ5eDxXyf+Ygld9wX1DnUWbIbhM1YDY95NjR4CBXkb2g==
- dependencies:
- "@types/node" "*"
- graceful-fs "^4.2.4"
-
-jest-serializer@^27.5.1:
+jest-serializer@^27.0.6:
version "27.5.1"
resolved "https://registry.yarnpkg.com/jest-serializer/-/jest-serializer-27.5.1.tgz#81438410a30ea66fd57ff730835123dea1fb1f64"
integrity sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==
@@ -6254,34 +5720,6 @@ jest-serializer@^27.5.1:
"@types/node" "*"
graceful-fs "^4.2.9"
-jest-snapshot@^27.5.1:
- version "27.5.1"
- resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-27.5.1.tgz#b668d50d23d38054a51b42c4039cab59ae6eb6a1"
- integrity sha512-yYykXI5a0I31xX67mgeLw1DZ0bJB+gpq5IpSuCAoyDi0+BhgU/RIrL+RTzDmkNTchvDFWKP8lp+w/42Z3us5sA==
- dependencies:
- "@babel/core" "^7.7.2"
- "@babel/generator" "^7.7.2"
- "@babel/plugin-syntax-typescript" "^7.7.2"
- "@babel/traverse" "^7.7.2"
- "@babel/types" "^7.0.0"
- "@jest/transform" "^27.5.1"
- "@jest/types" "^27.5.1"
- "@types/babel__traverse" "^7.0.4"
- "@types/prettier" "^2.1.5"
- babel-preset-current-node-syntax "^1.0.0"
- chalk "^4.0.0"
- expect "^27.5.1"
- graceful-fs "^4.2.9"
- jest-diff "^27.5.1"
- jest-get-type "^27.5.1"
- jest-haste-map "^27.5.1"
- jest-matcher-utils "^27.5.1"
- jest-message-util "^27.5.1"
- jest-util "^27.5.1"
- natural-compare "^1.4.0"
- pretty-format "^27.5.1"
- semver "^7.3.2"
-
jest-snapshot@^29.5.0:
version "29.5.0"
resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-29.5.0.tgz#c9c1ce0331e5b63cd444e2f95a55a73b84b1e8ce"
@@ -6311,19 +5749,7 @@ jest-snapshot@^29.5.0:
pretty-format "^29.5.0"
semver "^7.3.5"
-jest-util@^26.6.2:
- version "26.6.2"
- resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-26.6.2.tgz#907535dbe4d5a6cb4c47ac9b926f6af29576cbc1"
- integrity sha512-MDW0fKfsn0OI7MS7Euz6h8HNDXVQ0gaM9uW6RjfDmd1DAFcaxX9OqIakHIqhbnmF08Cf2DLDG+ulq8YQQ0Lp0Q==
- 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-util@^27.0.0, jest-util@^27.5.1:
+jest-util@^27.2.0:
version "27.5.1"
resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-27.5.1.tgz#3ba9771e8e31a0b85da48fe0b0891fb86c01c2f9"
integrity sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==
@@ -6335,7 +5761,7 @@ jest-util@^27.0.0, jest-util@^27.5.1:
graceful-fs "^4.2.9"
picomatch "^2.2.3"
-jest-util@^29.5.0:
+jest-util@^29.0.0, jest-util@^29.5.0:
version "29.5.0"
resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-29.5.0.tgz#24a4d3d92fc39ce90425311b23c27a6e0ef16b8f"
integrity sha512-RYMgG/MTadOr5t8KdhejfvUU82MxsCu5MF6KuDUHl+NuwzUt+Sm6jJWxTJVrDR1j5M/gJVCPKQEpWXY+yIQ6lQ==
@@ -6359,18 +5785,6 @@ jest-validate@^26.5.2:
leven "^3.1.0"
pretty-format "^26.6.2"
-jest-validate@^27.5.1:
- version "27.5.1"
- resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-27.5.1.tgz#9197d54dc0bdb52260b8db40b46ae668e04df067"
- integrity sha512-thkNli0LYTmOI1tDB3FI1S1RTp/Bqyd9pTarJwL87OIBFuqEb5Apv5EaApEudYg4g86e3CT6kM0RowkhtEnCBQ==
- dependencies:
- "@jest/types" "^27.5.1"
- camelcase "^6.2.0"
- chalk "^4.0.0"
- jest-get-type "^27.5.1"
- leven "^3.1.0"
- pretty-format "^27.5.1"
-
jest-validate@^29.5.0:
version "29.5.0"
resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-29.5.0.tgz#8e5a8f36178d40e47138dc00866a5f3bd9916ffc"
@@ -6383,19 +5797,6 @@ jest-validate@^29.5.0:
leven "^3.1.0"
pretty-format "^29.5.0"
-jest-watcher@^27.5.1:
- version "27.5.1"
- resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-27.5.1.tgz#71bd85fb9bde3a2c2ec4dc353437971c43c642a2"
- integrity sha512-z676SuD6Z8o8qbmEGhoEUFOM1+jfEiL3DXHK/xgEiG2EyNYfFG60jluWcupY6dATjfEsKQuibReS1djInQnoVw==
- dependencies:
- "@jest/test-result" "^27.5.1"
- "@jest/types" "^27.5.1"
- "@types/node" "*"
- ansi-escapes "^4.2.1"
- chalk "^4.0.0"
- jest-util "^27.5.1"
- string-length "^4.0.1"
-
jest-watcher@^29.5.0:
version "29.5.0"
resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-29.5.0.tgz#cf7f0f949828ba65ddbbb45c743a382a4d911363"
@@ -6410,7 +5811,7 @@ jest-watcher@^29.5.0:
jest-util "^29.5.0"
string-length "^4.0.1"
-jest-worker@^26.0.0, jest-worker@^26.2.1, jest-worker@^26.6.2:
+jest-worker@^26.2.1:
version "26.6.2"
resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-26.6.2.tgz#7f72cbc4d643c365e27b9fd775f9d0eaa9c7a8ed"
integrity sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==
@@ -6419,7 +5820,7 @@ jest-worker@^26.0.0, jest-worker@^26.2.1, jest-worker@^26.6.2:
merge-stream "^2.0.0"
supports-color "^7.0.0"
-jest-worker@^27.5.1:
+jest-worker@^27.2.0:
version "27.5.1"
resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-27.5.1.tgz#8d146f0900e8973b106b6f73cc1e9a8cb86f8db0"
integrity sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==
@@ -6438,16 +5839,7 @@ jest-worker@^29.5.0:
merge-stream "^2.0.0"
supports-color "^8.0.0"
-jest@^27.5.1:
- version "27.5.1"
- resolved "https://registry.yarnpkg.com/jest/-/jest-27.5.1.tgz#dadf33ba70a779be7a6fc33015843b51494f63fc"
- integrity sha512-Yn0mADZB89zTtjkPJEXwrac3LHudkQMR+Paqa8uxJHCBr9agxztUifWCyiYrjhMPBoUVBjyny0I7XH6ozDr7QQ==
- dependencies:
- "@jest/core" "^27.5.1"
- import-local "^3.0.2"
- jest-cli "^27.5.1"
-
-jest@^29.5.0:
+jest@^29.2.1:
version "29.5.0"
resolved "https://registry.yarnpkg.com/jest/-/jest-29.5.0.tgz#f75157622f5ce7ad53028f2f8888ab53e1f1f24e"
integrity sha512-juMg3he2uru1QoXX078zTa7pO85QyB9xajZc6bU+d9yEGwrKX6+vGmJQ3UdVZsvTEUARIdObzH68QItim6OSSQ==
@@ -6457,27 +5849,17 @@ jest@^29.5.0:
import-local "^3.0.2"
jest-cli "^29.5.0"
-jetifier@^1.6.2:
- version "1.6.8"
- resolved "https://registry.yarnpkg.com/jetifier/-/jetifier-1.6.8.tgz#e88068697875cbda98c32472902c4d3756247798"
- integrity sha512-3Zi16h6L5tXDRQJTb221cnRoVG9/9OvreLdLU2/ZjRv/GILL+2Cemt0IKvkowwkDpvouAU1DQPOJ7qaiHeIdrw==
-
joi@^17.2.1:
- version "17.7.0"
- resolved "https://registry.yarnpkg.com/joi/-/joi-17.7.0.tgz#591a33b1fe1aca2bc27f290bcad9b9c1c570a6b3"
- integrity sha512-1/ugc8djfn93rTE3WRKdCzGGt/EtiYKxITMO4Wiv6q5JL1gl9ePt4kBsl1S499nbosspfctIQTpYIhSmHA3WAg==
+ version "17.9.2"
+ resolved "https://registry.yarnpkg.com/joi/-/joi-17.9.2.tgz#8b2e4724188369f55451aebd1d0b1d9482470690"
+ integrity sha512-Itk/r+V4Dx0V3c7RLFdRh12IOjySm2/WGPMubBT92cQvRfYZhPM2W0hZlctjj72iES8jsRCwp7S/cRmWBnJ4nw==
dependencies:
"@hapi/hoek" "^9.0.0"
"@hapi/topo" "^5.0.0"
"@sideway/address" "^4.1.3"
- "@sideway/formula" "^3.0.0"
+ "@sideway/formula" "^3.0.1"
"@sideway/pinpoint" "^2.0.0"
-js-sdsl@^4.1.4:
- version "4.1.5"
- resolved "https://registry.yarnpkg.com/js-sdsl/-/js-sdsl-4.1.5.tgz#1ff1645e6b4d1b028cd3f862db88c9d887f26e2a"
- integrity sha512-08bOAKweV2NUC1wqTtf3qZlnpOX/R2DU9ikpjOHs0H+ibQv3zpncVQg6um4uYtRtrwIX8M4Nh3ytK4HGlYAq7Q==
-
"js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0:
version "4.0.0"
resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499"
@@ -6498,69 +5880,36 @@ js-yaml@^4.1.0:
dependencies:
argparse "^2.0.1"
-jsc-android@^250230.2.1:
- version "250230.2.1"
- resolved "https://registry.yarnpkg.com/jsc-android/-/jsc-android-250230.2.1.tgz#3790313a970586a03ab0ad47defbc84df54f1b83"
- integrity sha512-KmxeBlRjwoqCnBBKGsihFtvsBHyUFlBxJPK4FzeYcIuBfdjv6jFys44JITAgSTbQD+vIdwMEfyZklsuQX0yI1Q==
-
-jscodeshift@^0.11.0:
- version "0.11.0"
- resolved "https://registry.yarnpkg.com/jscodeshift/-/jscodeshift-0.11.0.tgz#4f95039408f3f06b0e39bb4d53bc3139f5330e2f"
- integrity sha512-SdRK2C7jjs4k/kT2mwtO07KJN9RnjxtKn03d9JVj6c3j9WwaLcFYsICYDnLAzY0hp+wG2nxl+Cm2jWLiNVYb8g==
- 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"
+jsc-android@^250231.0.0:
+ version "250231.0.0"
+ resolved "https://registry.yarnpkg.com/jsc-android/-/jsc-android-250231.0.0.tgz#91720f8df382a108872fa4b3f558f33ba5e95262"
+ integrity sha512-rS46PvsjYmdmuz1OAWXY/1kCYG7pnf1TBqeTiOJr1iDz7s5DLxxC9n/ZMknLDxzYzNVfI7R95MH10emSSG1Wuw==
+
+jscodeshift@^0.13.1:
+ version "0.13.1"
+ resolved "https://registry.yarnpkg.com/jscodeshift/-/jscodeshift-0.13.1.tgz#69bfe51e54c831296380585c6d9e733512aecdef"
+ integrity sha512-lGyiEbGOvmMRKgWk4vf+lUrCWO/8YR8sUR3FKF1Cq5fovjZDlIcw3Hu5ppLHAnEXshVffvaM0eyuY/AbOeYpnQ==
+ dependencies:
+ "@babel/core" "^7.13.16"
+ "@babel/parser" "^7.13.16"
+ "@babel/plugin-proposal-class-properties" "^7.13.0"
+ "@babel/plugin-proposal-nullish-coalescing-operator" "^7.13.8"
+ "@babel/plugin-proposal-optional-chaining" "^7.13.12"
+ "@babel/plugin-transform-modules-commonjs" "^7.13.8"
+ "@babel/preset-flow" "^7.13.13"
+ "@babel/preset-typescript" "^7.13.0"
+ "@babel/register" "^7.13.16"
babel-core "^7.0.0-bridge.0"
- colors "^1.1.2"
+ chalk "^4.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"
+ recast "^0.20.4"
+ temp "^0.8.4"
write-file-atomic "^2.3.0"
-jsdom@^16.6.0:
- version "16.7.0"
- resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-16.7.0.tgz#918ae71965424b197c819f8183a754e18977b710"
- integrity sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw==
- 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.6"
- xml-name-validator "^3.0.0"
-
jsesc@^2.5.1:
version "2.5.2"
resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4"
@@ -6596,35 +5945,23 @@ json-stringify-safe@^5.0.1:
resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb"
integrity sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==
-json5@2.x, json5@^2.2.1:
- version "2.2.1"
- resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.1.tgz#655d50ed1e6f95ad1a3caababd2b0efda10b395c"
- integrity sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==
-
json5@^0.5.1:
version "0.5.1"
resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821"
integrity sha512-4xrs1aW+6N5DalkqSVA8fxh458CXvR99WU8WLKmq4v8eWAL86Xo3BVqyd3SkA9wEVjCMqyvvRRkshAdOnBp5rw==
-json5@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.1.tgz#779fb0018604fa854eacbf6252180d83543e3dbe"
- integrity sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==
+json5@^1.0.2:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.2.tgz#63d98d60f21b313b77c4d6da18bfa69d80e1d593"
+ integrity sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==
dependencies:
minimist "^1.2.0"
-json5@^2.2.2:
+json5@^2.2.2, json5@^2.2.3:
version "2.2.3"
resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz#78cd6f1a19bdc12b73db5ad0c61efd66c1e29283"
integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==
-jsonfile@^2.1.0:
- version "2.4.0"
- resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-2.4.0.tgz#3736a2b428b87bbda0cc83b53fa3d633a35c2ae8"
- integrity sha512-PKllAqbgLgxHaj8TElYymKCAgrASebJrWpTnEkOaTowt23VKXXN0sUeriJ+eh7y6ufb/CC5ap11pz71/cM0hUw==
- optionalDependencies:
- graceful-fs "^4.1.6"
-
jsonfile@^4.0.0:
version "4.0.0"
resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb"
@@ -6637,7 +5974,7 @@ jsonparse@^1.2.0:
resolved "https://registry.yarnpkg.com/jsonparse/-/jsonparse-1.3.1.tgz#3f4dae4a91fac315f71062f8521cc239f1366280"
integrity sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==
-"jsx-ast-utils@^2.4.1 || ^3.0.0", jsx-ast-utils@^3.3.2:
+"jsx-ast-utils@^2.4.1 || ^3.0.0", jsx-ast-utils@^3.3.3:
version "3.3.3"
resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-3.3.3.tgz#76b3e6e6cece5c69d49a5792c3d01bd1a0cdc7ea"
integrity sha512-fYQHZTZ8jSfmWZ0iyzfwiU4WDX4HpHbMCZ3gPlWYiCl3BoeOTsqKBqnTVfH2rYT7eP5c3sVbeSPHnnJOaTrWiw==
@@ -6674,13 +6011,6 @@ kind-of@^6.0.0, kind-of@^6.0.2, kind-of@^6.0.3:
resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd"
integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==
-klaw@^1.0.0:
- version "1.3.1"
- resolved "https://registry.yarnpkg.com/klaw/-/klaw-1.3.1.tgz#4088433b46b3b1ba259d78785d8e96f73ba02439"
- integrity sha512-TED5xi9gGQjGpNnvRWknrwAB1eL5GciPfVFOt3Vk1OJCVDQbzuSfrF3hkUQKlsgKrG1F+0t5W0m+Fje1jIt8rw==
- optionalDependencies:
- graceful-fs "^4.1.9"
-
kleur@^3.0.3:
version "3.0.3"
resolved "https://registry.yarnpkg.com/kleur/-/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e"
@@ -6691,7 +6021,7 @@ language-subtag-registry@~0.3.2:
resolved "https://registry.yarnpkg.com/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz#2e1500861b2e457eba7e7ae86877cbd08fa1fd1d"
integrity sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==
-language-tags@^1.0.5:
+language-tags@=1.0.5:
version "1.0.5"
resolved "https://registry.yarnpkg.com/language-tags/-/language-tags-1.0.5.tgz#d321dbc4da30ba8bf3024e040fa5c14661f9193a"
integrity sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==
@@ -6711,14 +6041,6 @@ levn@^0.4.1:
prelude-ls "^1.2.1"
type-check "~0.4.0"
-levn@~0.3.0:
- version "0.3.0"
- resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee"
- integrity sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==
- dependencies:
- prelude-ls "~1.1.2"
- type-check "~0.3.2"
-
license-checker@^25.0.1:
version "25.0.1"
resolved "https://registry.yarnpkg.com/license-checker/-/license-checker-25.0.1.tgz#4d14504478a5240a857bb3c21cd0491a00d761fa"
@@ -6800,7 +6122,7 @@ lodash.memoize@4.x:
resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe"
integrity sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==
-lodash.merge@^4.6.2:
+lodash.merge@^4.6.1, lodash.merge@^4.6.2:
version "4.6.2"
resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a"
integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==
@@ -6810,17 +6132,18 @@ lodash.throttle@^4.1.1:
resolved "https://registry.yarnpkg.com/lodash.throttle/-/lodash.throttle-4.1.1.tgz#c23e91b710242ac70c37f1e1cda9274cc39bf2f4"
integrity sha512-wIkUCfVKpVsWo3JSZlc+8MB5it+2AN5W8J7YVMST30UrvcQNZ1Okbj+rbVniijTWE6FGYy4XJq/rHkas8qJMLQ==
-lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.21, lodash@^4.7.0:
+lodash@^4.17.15, lodash@^4.17.21:
version "4.17.21"
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c"
integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==
-log-symbols@^2.2.0:
- version "2.2.0"
- resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-2.2.0.tgz#5740e1c5d6f0dfda4ad9323b5332107ef6b4c40a"
- integrity sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg==
+log-symbols@^4.1.0:
+ version "4.1.0"
+ resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-4.1.0.tgz#3fbdbb95b4683ac9fc785111e792e558d4abd503"
+ integrity sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==
dependencies:
- chalk "^2.0.1"
+ chalk "^4.1.0"
+ is-unicode-supported "^0.1.0"
logkitty@^0.7.1:
version "0.7.1"
@@ -6839,9 +6162,9 @@ loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.4.0:
js-tokens "^3.0.0 || ^4.0.0"
lottie-react-native@^5.0.1:
- version "5.1.4"
- resolved "https://registry.yarnpkg.com/lottie-react-native/-/lottie-react-native-5.1.4.tgz#9340a4f63ed115d5f050f1af69e53242e6e63840"
- integrity sha512-Lu6mSG92Wck+vXEX6gfj/9ciqqoz0tJQZqgX0SumGvX/oZu4MbKO/oLApyHdy2V9Rb7qvwF9whOtitADxTswPA==
+ version "5.1.6"
+ resolved "https://registry.yarnpkg.com/lottie-react-native/-/lottie-react-native-5.1.6.tgz#6ae72829c3c0b95952dddd3d78c043f4dfbcb487"
+ integrity sha512-vhdeZstXMfuVKwnddYWjJgQ/1whGL58IJEJu/iSf0XQ5gAb4pp/+vy91mdYQLezlb8Aw4Vu3fKnqErJL2hwchg==
dependencies:
invariant "^2.2.2"
react-native-safe-modules "^1.0.3"
@@ -6914,6 +6237,11 @@ mdn-data@2.0.14:
resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.0.14.tgz#7113fc4281917d63ce29b43446f701e68c25ba50"
integrity sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==
+memoize-one@^5.0.0:
+ version "5.2.1"
+ resolved "https://registry.yarnpkg.com/memoize-one/-/memoize-one-5.2.1.tgz#8337aa3c4335581839ec01c3d594090cebe8f00e"
+ integrity sha512-zYiwtZUcYyXKo/np96AGZAckk+FWWsUdJ3cHGGmld7+AhvcWmQyGCYUh1hc4Q/pkOhb65dQR/pqCyK0cOaHz4Q==
+
meow@^8.0.0:
version "8.1.2"
resolved "https://registry.yarnpkg.com/meow/-/meow-8.1.2.tgz#bcbe45bda0ee1729d350c03cffc8395a36c4e897"
@@ -6948,93 +6276,116 @@ merge2@^1.3.0, merge2@^1.4.1:
resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae"
integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==
-metro-babel-register@0.66.2:
- version "0.66.2"
- resolved "https://registry.yarnpkg.com/metro-babel-register/-/metro-babel-register-0.66.2.tgz#c6bbe36c7a77590687ccd74b425dc020d17d05af"
- integrity sha512-3F+vsVubUPJYKfVMeol8/7pd8CC287Rw92QYzJD8LEmI980xcgwMUEVBZ0UIAUwlLgiJG/f4Mwhuji2EeBXrPg==
+metro-babel-transformer@0.73.7:
+ version "0.73.7"
+ resolved "https://registry.yarnpkg.com/metro-babel-transformer/-/metro-babel-transformer-0.73.7.tgz#561ffa0336eb6d7d112e7128e957114c729fdb71"
+ integrity sha512-s7UVkwovGTEXYEQrv5hcmSBbFJ9s9lhCRNMScn4Itgj3UMdqRr9lU8DXKEFlJ7osgRxN6n5+eXqcvhE4B1H1VQ==
dependencies:
- "@babel/core" "^7.14.0"
- "@babel/plugin-proposal-nullish-coalescing-operator" "^7.0.0"
- "@babel/plugin-proposal-optional-chaining" "^7.0.0"
- "@babel/plugin-syntax-class-properties" "^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"
+ "@babel/core" "^7.20.0"
+ hermes-parser "0.8.0"
+ metro-source-map "0.73.7"
+ nullthrows "^1.1.1"
-metro-babel-transformer@0.66.2:
- version "0.66.2"
- resolved "https://registry.yarnpkg.com/metro-babel-transformer/-/metro-babel-transformer-0.66.2.tgz#fce0a3e314d28a5e7141c135665e1cc9b8e7ce86"
- integrity sha512-aJ/7fc/Xkofw8Fqa51OTDhBzBz26mmpIWrXAZcPdQ8MSTt883EWncxeCEjasc79NJ89BRi7sOkkaWZo2sXlKvw==
+metro-babel-transformer@0.73.9:
+ version "0.73.9"
+ resolved "https://registry.yarnpkg.com/metro-babel-transformer/-/metro-babel-transformer-0.73.9.tgz#bec8aaaf1bbdc2e469fde586fde455f8b2a83073"
+ integrity sha512-DlYwg9wwYIZTHtic7dyD4BP0SDftoltZ3clma76nHu43blMWsCnrImHeHsAVne3XsQ+RJaSRxhN5nkG2VyVHwA==
dependencies:
- "@babel/core" "^7.14.0"
- hermes-parser "0.4.7"
- metro-source-map "0.66.2"
+ "@babel/core" "^7.20.0"
+ hermes-parser "0.8.0"
+ metro-source-map "0.73.9"
nullthrows "^1.1.1"
-metro-cache-key@0.66.2:
- version "0.66.2"
- resolved "https://registry.yarnpkg.com/metro-cache-key/-/metro-cache-key-0.66.2.tgz#d6463d2a53e887a38419d523962cc24ea0e780b4"
- integrity sha512-WtkNmRt41qOpHh1MkNA4nLiQ/m7iGL90ysSKD+fcLqlUnOBKJptPQm0ZUv8Kfqk18ddWX2KmsSbq+Sf3I6XohQ==
+metro-cache-key@0.73.9:
+ version "0.73.9"
+ resolved "https://registry.yarnpkg.com/metro-cache-key/-/metro-cache-key-0.73.9.tgz#7d8c441a3b7150f7b201273087ef3cf7d3435d9f"
+ integrity sha512-uJg+6Al7UoGIuGfoxqPBy6y1Ewq7Y8/YapGYIDh6sohInwt/kYKnPZgLDYHIPvY2deORnQ/2CYo4tOeBTnhCXQ==
-metro-cache@0.66.2:
- version "0.66.2"
- resolved "https://registry.yarnpkg.com/metro-cache/-/metro-cache-0.66.2.tgz#e0af4e0a319898f7d42a980f7ee5da153fcfd019"
- integrity sha512-5QCYJtJOHoBSbL3H4/Fpl36oA697C3oYHqsce+Hk/dh2qtODUGpS3gOBhvP1B8iB+H8jJMyR75lZq129LJEsIQ==
+metro-cache@0.73.9:
+ version "0.73.9"
+ resolved "https://registry.yarnpkg.com/metro-cache/-/metro-cache-0.73.9.tgz#773c2df6ba53434e58ccbe421b0c54e6da8d2890"
+ integrity sha512-upiRxY8rrQkUWj7ieACD6tna7xXuXdu2ZqrheksT79ePI0aN/t0memf6WcyUtJUMHZetke3j+ppELNvlmp3tOw==
dependencies:
- metro-core "0.66.2"
- mkdirp "^0.5.1"
- rimraf "^2.5.4"
+ metro-core "0.73.9"
+ rimraf "^3.0.2"
-metro-config@0.66.2, metro-config@^0.66.1:
- version "0.66.2"
- resolved "https://registry.yarnpkg.com/metro-config/-/metro-config-0.66.2.tgz#e365acdb66ad0cda0182b9c9910760a97ee4293b"
- integrity sha512-0C+PrKKIBNNzLZUKN/8ZDJS2U5FLMOTXDWbvBHIdqb6YXz8WplXR2+xlSlaSCCi5b+GR7cWFWUNeKA4GQS1/AQ==
+metro-config@0.73.9:
+ version "0.73.9"
+ resolved "https://registry.yarnpkg.com/metro-config/-/metro-config-0.73.9.tgz#6b43c70681bdd6b00f44400fc76dddbe53374500"
+ integrity sha512-NiWl1nkYtjqecDmw77tbRbXnzIAwdO6DXGZTuKSkH+H/c1NKq1eizO8Fe+NQyFtwR9YLqn8Q0WN1nmkwM1j8CA==
dependencies:
cosmiconfig "^5.0.5"
jest-validate "^26.5.2"
- metro "0.66.2"
- metro-cache "0.66.2"
- metro-core "0.66.2"
- metro-runtime "0.66.2"
+ metro "0.73.9"
+ metro-cache "0.73.9"
+ metro-core "0.73.9"
+ metro-runtime "0.73.9"
-metro-core@0.66.2, metro-core@^0.66.1:
- version "0.66.2"
- resolved "https://registry.yarnpkg.com/metro-core/-/metro-core-0.66.2.tgz#ead776a17b3e5a307e6dc22259db30bf5c7e8490"
- integrity sha512-JieLZkef/516yxXYvQxWnf3OWw5rcgWRy76K8JV/wr/i8LGVGulPAXlIi445/QZzXVydzRVASKAEVqyxM5F4mA==
+metro-core@0.73.9:
+ version "0.73.9"
+ resolved "https://registry.yarnpkg.com/metro-core/-/metro-core-0.73.9.tgz#410c5c0aeae840536c10039f68098fdab3da568e"
+ integrity sha512-1NTs0IErlKcFTfYyRT3ljdgrISWpl1nys+gaHkXapzTSpvtX9F1NQNn5cgAuE+XIuTJhbsCdfIJiM2JXbrJQaQ==
dependencies:
- jest-haste-map "^26.5.2"
lodash.throttle "^4.1.1"
- metro-resolver "0.66.2"
+ metro-resolver "0.73.9"
+
+metro-file-map@0.73.9:
+ version "0.73.9"
+ resolved "https://registry.yarnpkg.com/metro-file-map/-/metro-file-map-0.73.9.tgz#09c04a8e8ef1eaa6ecb2b9cb8cb53bb0fa0167ec"
+ integrity sha512-R/Wg3HYeQhYY3ehWtfedw8V0ne4lpufG7a21L3GWer8tafnC9pmjoCKEbJz9XZkVj9i1FtxE7UTbrtZNeIILxQ==
+ dependencies:
+ abort-controller "^3.0.0"
+ anymatch "^3.0.3"
+ debug "^2.2.0"
+ fb-watchman "^2.0.0"
+ graceful-fs "^4.2.4"
+ invariant "^2.2.4"
+ jest-regex-util "^27.0.6"
+ jest-serializer "^27.0.6"
+ jest-util "^27.2.0"
+ jest-worker "^27.2.0"
+ micromatch "^4.0.4"
+ nullthrows "^1.1.1"
+ walker "^1.0.7"
+ optionalDependencies:
+ fsevents "^2.3.2"
-metro-hermes-compiler@0.66.2:
- version "0.66.2"
- resolved "https://registry.yarnpkg.com/metro-hermes-compiler/-/metro-hermes-compiler-0.66.2.tgz#30290748f83805faa601aa487632444915795823"
- integrity sha512-nCVL1g9uR6vrw5+X1wjwZruRyMkndnzGRMqjqoljf+nGEqBTD607CR7elXw4fMWn/EM+1y0Vdq5altUu9LdgCA==
+metro-hermes-compiler@0.73.9:
+ version "0.73.9"
+ resolved "https://registry.yarnpkg.com/metro-hermes-compiler/-/metro-hermes-compiler-0.73.9.tgz#6f473e67e8f76066066f00e2e0ecce865f7d445d"
+ integrity sha512-5B3vXIwQkZMSh3DQQY23XpTCpX9kPLqZbA3rDuAcbGW0tzC3f8dCenkyBb0GcCzyTDncJeot/A7oVCVK6zapwg==
-metro-inspector-proxy@0.66.2:
- version "0.66.2"
- resolved "https://registry.yarnpkg.com/metro-inspector-proxy/-/metro-inspector-proxy-0.66.2.tgz#a83c76bd2f2fd7b9240be92acf9a8b1d1404547a"
- integrity sha512-gnLc9121eznwP0iiA9tCBW8qZjwIsCgwHWMF1g1Qaki9le9tzeJv3dK4/lFNGxyfSaLO7vahQEhsEYsiRnTROg==
+metro-inspector-proxy@0.73.9:
+ version "0.73.9"
+ resolved "https://registry.yarnpkg.com/metro-inspector-proxy/-/metro-inspector-proxy-0.73.9.tgz#8e11cd300adf3f904f1f5afe28b198312cdcd8c2"
+ integrity sha512-B3WrWZnlYhtTrv0IaX3aUAhi2qVILPAZQzb5paO1e+xrz4YZHk9c7dXv7qe7B/IQ132e3w46y3AL7rFo90qVjA==
dependencies:
connect "^3.6.5"
debug "^2.2.0"
- ws "^1.1.5"
- yargs "^15.3.1"
+ ws "^7.5.1"
+ yargs "^17.5.1"
-metro-minify-uglify@0.66.2:
- version "0.66.2"
- resolved "https://registry.yarnpkg.com/metro-minify-uglify/-/metro-minify-uglify-0.66.2.tgz#6061dbee4f61e6d5bb3c100e4379ff6f2e16e42b"
- integrity sha512-7TUK+L5CmB5x1PVnFbgmjzHW4CUadq9H5jgp0HfFoWT1skXAyEsx0DHkKDXwnot0khnNhBOEfl62ctQOnE110Q==
+metro-minify-terser@0.73.9:
+ version "0.73.9"
+ resolved "https://registry.yarnpkg.com/metro-minify-terser/-/metro-minify-terser-0.73.9.tgz#301aef2e106b0802f7a14ef0f2b4883b20c80018"
+ integrity sha512-MTGPu2qV5qtzPJ2SqH6s58awHDtZ4jd7lmmLR+7TXDwtZDjIBA0YVfI0Zak2Haby2SqoNKrhhUns/b4dPAQAVg==
+ dependencies:
+ terser "^5.15.0"
+
+metro-minify-uglify@0.73.9:
+ version "0.73.9"
+ resolved "https://registry.yarnpkg.com/metro-minify-uglify/-/metro-minify-uglify-0.73.9.tgz#cf4f8c19b688deea103905689ec736c2f2acd733"
+ integrity sha512-gzxD/7WjYcnCNGiFJaA26z34rjOp+c/Ft++194Wg91lYep3TeWQ0CnH8t2HRS7AYDHU81SGWgvD3U7WV0g4LGA==
dependencies:
uglify-es "^3.1.9"
-metro-react-native-babel-preset@0.66.2, metro-react-native-babel-preset@^0.66.2:
- version "0.66.2"
- resolved "https://registry.yarnpkg.com/metro-react-native-babel-preset/-/metro-react-native-babel-preset-0.66.2.tgz#fddebcf413ad4ea617d4f47f7c1da401052de734"
- integrity sha512-H/nLBAz0MgfDloSe1FjyH4EnbokHFdncyERvLPXDACY3ROVRCeUyFNo70ywRGXW2NMbrV4H7KUyU4zkfWhC2HQ==
+metro-react-native-babel-preset@0.73.7:
+ version "0.73.7"
+ resolved "https://registry.yarnpkg.com/metro-react-native-babel-preset/-/metro-react-native-babel-preset-0.73.7.tgz#78e1ce448aa9a5cf3651c0ebe73cb225465211b4"
+ integrity sha512-RKcmRZREjJCzHKP+JhC9QTCohkeb3xa/DtqHU14U5KWzJHdC0mMrkTZYNXhV0cryxsaVKVEw5873KhbZyZHMVw==
dependencies:
- "@babel/core" "^7.14.0"
+ "@babel/core" "^7.20.0"
+ "@babel/plugin-proposal-async-generator-functions" "^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"
@@ -7043,7 +6394,51 @@ metro-react-native-babel-preset@0.66.2, metro-react-native-babel-preset@^0.66.2:
"@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-flow" "^7.18.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-async-to-generator" "^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-function-name" "^7.0.0"
+ "@babel/plugin-transform-literals" "^7.0.0"
+ "@babel/plugin-transform-modules-commonjs" "^7.0.0"
+ "@babel/plugin-transform-named-capturing-groups-regex" "^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-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-preset@0.73.9:
+ version "0.73.9"
+ resolved "https://registry.yarnpkg.com/metro-react-native-babel-preset/-/metro-react-native-babel-preset-0.73.9.tgz#ef54637dd20f025197beb49e71309a9c539e73e2"
+ integrity sha512-AoD7v132iYDV4K78yN2OLgTPwtAKn0XlD2pOhzyBxiI8PeXzozhbKyPV7zUOJUPETj+pcEVfuYj5ZN/8+bhbCw==
+ dependencies:
+ "@babel/core" "^7.20.0"
+ "@babel/plugin-proposal-async-generator-functions" "^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.18.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"
@@ -7052,19 +6447,16 @@ metro-react-native-babel-preset@0.66.2, metro-react-native-babel-preset@^0.66.2:
"@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-named-capturing-groups-regex" "^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"
@@ -7075,146 +6467,194 @@ metro-react-native-babel-preset@0.66.2, metro-react-native-babel-preset@^0.66.2:
"@babel/template" "^7.0.0"
react-refresh "^0.4.0"
-metro-react-native-babel-transformer@0.66.2, metro-react-native-babel-transformer@^0.66.1:
- version "0.66.2"
- resolved "https://registry.yarnpkg.com/metro-react-native-babel-transformer/-/metro-react-native-babel-transformer-0.66.2.tgz#768f341e7c3d3d1c38189799c9884b90d1c32eb7"
- integrity sha512-z1ab7ihIT0pJrwgi9q2IH+LcW/xUWMQ0hH+Mrk7wbKQB0RnJdXFoxphrfoVHBHMUu+TBPetUcEkKawkK1e7Cng==
+metro-react-native-babel-transformer@0.73.7:
+ version "0.73.7"
+ resolved "https://registry.yarnpkg.com/metro-react-native-babel-transformer/-/metro-react-native-babel-transformer-0.73.7.tgz#a92055fd564cd403255cc34f925c5e99ce457565"
+ integrity sha512-73HW8betjX+VPm3iqsMBe8F/F2Tt+hONO6YJwcF7FonTqQYW1oTz0dOp0dClZGfHUXxpJBz6Vuo7J6TpdzDD+w==
+ dependencies:
+ "@babel/core" "^7.20.0"
+ babel-preset-fbjs "^3.4.0"
+ hermes-parser "0.8.0"
+ metro-babel-transformer "0.73.7"
+ metro-react-native-babel-preset "0.73.7"
+ metro-source-map "0.73.7"
+ nullthrows "^1.1.1"
+
+metro-react-native-babel-transformer@0.73.9:
+ version "0.73.9"
+ resolved "https://registry.yarnpkg.com/metro-react-native-babel-transformer/-/metro-react-native-babel-transformer-0.73.9.tgz#4f4f0cfa5119bab8b53e722fabaf90687d0cbff0"
+ integrity sha512-DSdrEHuQ22ixY7DyipyKkIcqhOJrt5s6h6X7BYJCP9AMUfXOwLe2biY3BcgJz5GOXv8/Akry4vTCvQscVS1otQ==
+ dependencies:
+ "@babel/core" "^7.20.0"
+ babel-preset-fbjs "^3.4.0"
+ hermes-parser "0.8.0"
+ metro-babel-transformer "0.73.9"
+ metro-react-native-babel-preset "0.73.9"
+ metro-source-map "0.73.9"
+ nullthrows "^1.1.1"
+
+metro-resolver@0.73.9:
+ version "0.73.9"
+ resolved "https://registry.yarnpkg.com/metro-resolver/-/metro-resolver-0.73.9.tgz#f3cf77e6c7606a34aa81bad40edb856aad671cf3"
+ integrity sha512-Ej3wAPOeNRPDnJmkK0zk7vJ33iU07n+oPhpcf5L0NFkWneMmSM2bflMPibI86UjzZGmRfn0AhGhs8yGeBwQ/Xg==
+ dependencies:
+ absolute-path "^0.0.0"
+
+metro-runtime@0.73.7:
+ version "0.73.7"
+ resolved "https://registry.yarnpkg.com/metro-runtime/-/metro-runtime-0.73.7.tgz#9f3a7f3ff668c1a87370650e32b47d8f6329fd1e"
+ integrity sha512-2fxRGrF8FyrwwHY0TCitdUljzutfW6CWEpdvPilfrs8p0PI5X8xOWg8ficeYtw+DldHtHIAL2phT59PqzHTyVA==
+ dependencies:
+ "@babel/runtime" "^7.0.0"
+ react-refresh "^0.4.0"
+
+metro-runtime@0.73.9:
+ version "0.73.9"
+ resolved "https://registry.yarnpkg.com/metro-runtime/-/metro-runtime-0.73.9.tgz#0b24c0b066b8629ee855a6e5035b65061fef60d5"
+ integrity sha512-d5Hs83FpKB9r8q8Vb95+fa6ESpwysmPr4lL1I2rM2qXAFiO7OAPT9Bc23WmXgidkBtD0uUFdB2lG+H1ATz8rZg==
+ dependencies:
+ "@babel/runtime" "^7.0.0"
+ react-refresh "^0.4.0"
+
+metro-source-map@0.73.7:
+ version "0.73.7"
+ resolved "https://registry.yarnpkg.com/metro-source-map/-/metro-source-map-0.73.7.tgz#8e9f850a72d60ea7ace05b984f981c8ec843e7a0"
+ integrity sha512-gbC/lfUN52TtQhEsTTA+987MaFUpQlufuCI05blLGLosDcFCsARikHsxa65Gtslm/rG2MqvFLiPA5hviONNv9g==
dependencies:
- "@babel/core" "^7.14.0"
- babel-preset-fbjs "^3.4.0"
- hermes-parser "0.4.7"
- metro-babel-transformer "0.66.2"
- metro-react-native-babel-preset "0.66.2"
- metro-source-map "0.66.2"
+ "@babel/traverse" "^7.20.0"
+ "@babel/types" "^7.20.0"
+ invariant "^2.2.4"
+ metro-symbolicate "0.73.7"
nullthrows "^1.1.1"
+ ob1 "0.73.7"
+ source-map "^0.5.6"
+ vlq "^1.0.0"
-metro-resolver@0.66.2, metro-resolver@^0.66.1:
- version "0.66.2"
- resolved "https://registry.yarnpkg.com/metro-resolver/-/metro-resolver-0.66.2.tgz#f743ddbe7a12dd137d1f7a555732cafcaea421f8"
- integrity sha512-pXQAJR/xauRf4kWFj2/hN5a77B4jLl0Fom5I3PHp6Arw/KxSBp0cnguXpGLwNQ6zQC0nxKCoYGL9gQpzMnN7Hw==
+metro-source-map@0.73.9:
+ version "0.73.9"
+ resolved "https://registry.yarnpkg.com/metro-source-map/-/metro-source-map-0.73.9.tgz#89ca41f6346aeb12f7f23496fa363e520adafebe"
+ integrity sha512-l4VZKzdqafipriETYR6lsrwtavCF1+CMhCOY9XbyWeTrpGSNgJQgdeJpttzEZTHQQTLR0csQo0nD1ef3zEP6IQ==
dependencies:
- absolute-path "^0.0.0"
-
-metro-runtime@0.66.2, metro-runtime@^0.66.1:
- version "0.66.2"
- resolved "https://registry.yarnpkg.com/metro-runtime/-/metro-runtime-0.66.2.tgz#3409ee957b949b6c7b72ef6ed2b9af9a4f4a910e"
- integrity sha512-vFhKBk2ot9FS4b+2v0OTa/guCF/QDAOJubY0CNg7PzCS5+w4y3IvZIcPX4SSS1t8pYEZBLvtdtTDarlDl81xmg==
+ "@babel/traverse" "^7.20.0"
+ "@babel/types" "^7.20.0"
+ invariant "^2.2.4"
+ metro-symbolicate "0.73.9"
+ nullthrows "^1.1.1"
+ ob1 "0.73.9"
+ source-map "^0.5.6"
+ vlq "^1.0.0"
-metro-source-map@0.66.2:
- version "0.66.2"
- resolved "https://registry.yarnpkg.com/metro-source-map/-/metro-source-map-0.66.2.tgz#b5304a282a5d55fa67b599265e9cf3217175cdd7"
- integrity sha512-038tFmB7vSh73VQcDWIbr5O1m+WXWyYafDaOy+1A/2K308YP0oj33gbEgDnZsLZDwcJ+xt1x6KUEBIzlX4YGeQ==
+metro-symbolicate@0.73.7:
+ version "0.73.7"
+ resolved "https://registry.yarnpkg.com/metro-symbolicate/-/metro-symbolicate-0.73.7.tgz#40e4cda81f8030b86afe391b5e686a0b06822b0a"
+ integrity sha512-571ThWmX5o8yGNzoXjlcdhmXqpByHU/bSZtWKhtgV2TyIAzYCYt4hawJAS5+/qDazUvjHdm8BbdqFUheM0EKNQ==
dependencies:
- "@babel/traverse" "^7.14.0"
- "@babel/types" "^7.0.0"
invariant "^2.2.4"
- metro-symbolicate "0.66.2"
+ metro-source-map "0.73.7"
nullthrows "^1.1.1"
- ob1 "0.66.2"
source-map "^0.5.6"
+ through2 "^2.0.1"
vlq "^1.0.0"
-metro-symbolicate@0.66.2:
- version "0.66.2"
- resolved "https://registry.yarnpkg.com/metro-symbolicate/-/metro-symbolicate-0.66.2.tgz#addd095ce5f77e73ca21ddb5dfb396ff5d4fa041"
- integrity sha512-u+DeQHyAFXVD7mVP+GST/894WHJ3i/U8oEJFnT7U3P52ZuLgX8n4tMNxhqZU12RcLR6etF8143aP0Ktx1gFLEQ==
+metro-symbolicate@0.73.9:
+ version "0.73.9"
+ resolved "https://registry.yarnpkg.com/metro-symbolicate/-/metro-symbolicate-0.73.9.tgz#cb452299a36e5b86b2826e7426d51221635c48bf"
+ integrity sha512-4TUOwxRHHqbEHxRqRJ3wZY5TA8xq7AHMtXrXcjegMH9FscgYztsrIG9aNBUBS+VLB6g1qc6BYbfIgoAnLjCDyw==
dependencies:
invariant "^2.2.4"
- metro-source-map "0.66.2"
+ metro-source-map "0.73.9"
nullthrows "^1.1.1"
source-map "^0.5.6"
through2 "^2.0.1"
vlq "^1.0.0"
-metro-transform-plugins@0.66.2:
- version "0.66.2"
- resolved "https://registry.yarnpkg.com/metro-transform-plugins/-/metro-transform-plugins-0.66.2.tgz#39dd044a23b1343e4f2d2ec34d08128cdf255ed4"
- integrity sha512-KTvqplh0ut7oDKovvDG6yzXM02R6X+9b2oVG+qYq8Zd3aCGTi51ASx4ThCNkAHyEvCuJdYg9fxXTL+j+wvhB5w==
+metro-transform-plugins@0.73.9:
+ version "0.73.9"
+ resolved "https://registry.yarnpkg.com/metro-transform-plugins/-/metro-transform-plugins-0.73.9.tgz#9fffbe1b24269e3d114286fa681abc570072d9b8"
+ integrity sha512-r9NeiqMngmooX2VOKLJVQrMuV7PAydbqst5bFhdVBPcFpZkxxqyzjzo+kzrszGy2UpSQBZr2P1L6OMjLHwQwfQ==
dependencies:
- "@babel/core" "^7.14.0"
- "@babel/generator" "^7.14.0"
+ "@babel/core" "^7.20.0"
+ "@babel/generator" "^7.20.0"
"@babel/template" "^7.0.0"
- "@babel/traverse" "^7.14.0"
+ "@babel/traverse" "^7.20.0"
nullthrows "^1.1.1"
-metro-transform-worker@0.66.2:
- version "0.66.2"
- resolved "https://registry.yarnpkg.com/metro-transform-worker/-/metro-transform-worker-0.66.2.tgz#0a8455992132c479721accd52c9bd47deb77769e"
- integrity sha512-dO4PtYOMGB7Vzte8aIzX39xytODhmbJrBYPu+zYzlDjyefJZT7BkZ0LkPIThtyJi96xWcGqi9JBSo0CeRupAHw==
+metro-transform-worker@0.73.9:
+ version "0.73.9"
+ resolved "https://registry.yarnpkg.com/metro-transform-worker/-/metro-transform-worker-0.73.9.tgz#30384cef2d5e35a4abe91b15bf1a8344f5720441"
+ integrity sha512-Rq4b489sIaTUENA+WCvtu9yvlT/C6zFMWhU4sq+97W29Zj0mPBjdk+qGT5n1ZBgtBIJzZWt1KxeYuc17f4aYtQ==
dependencies:
- "@babel/core" "^7.14.0"
- "@babel/generator" "^7.14.0"
- "@babel/parser" "^7.14.0"
- "@babel/types" "^7.0.0"
+ "@babel/core" "^7.20.0"
+ "@babel/generator" "^7.20.0"
+ "@babel/parser" "^7.20.0"
+ "@babel/types" "^7.20.0"
babel-preset-fbjs "^3.4.0"
- metro "0.66.2"
- metro-babel-transformer "0.66.2"
- metro-cache "0.66.2"
- metro-cache-key "0.66.2"
- metro-hermes-compiler "0.66.2"
- metro-source-map "0.66.2"
- metro-transform-plugins "0.66.2"
+ metro "0.73.9"
+ metro-babel-transformer "0.73.9"
+ metro-cache "0.73.9"
+ metro-cache-key "0.73.9"
+ metro-hermes-compiler "0.73.9"
+ metro-source-map "0.73.9"
+ metro-transform-plugins "0.73.9"
nullthrows "^1.1.1"
-metro@0.66.2, metro@^0.66.1:
- version "0.66.2"
- resolved "https://registry.yarnpkg.com/metro/-/metro-0.66.2.tgz#f21759bf00995470e7577b5b88a5277963f24492"
- integrity sha512-uNsISfcQ3iKKSHoN5Q+LAh0l3jeeg7ZcNZ/4BAHGsk02erA0OP+l2m+b5qYVoPptHz9Oc3KyG5oGJoTu41pWjg==
+metro@0.73.9:
+ version "0.73.9"
+ resolved "https://registry.yarnpkg.com/metro/-/metro-0.73.9.tgz#150e69a6735fab0bcb4f6ee97fd1efc65b3ec36f"
+ integrity sha512-BlYbPmTF60hpetyNdKhdvi57dSqutb+/oK0u3ni4emIh78PiI0axGo7RfdsZ/mn3saASXc94tDbpC5yn7+NpEg==
dependencies:
"@babel/code-frame" "^7.0.0"
- "@babel/core" "^7.14.0"
- "@babel/generator" "^7.14.0"
- "@babel/parser" "^7.14.0"
+ "@babel/core" "^7.20.0"
+ "@babel/generator" "^7.20.0"
+ "@babel/parser" "^7.20.0"
"@babel/template" "^7.0.0"
- "@babel/traverse" "^7.14.0"
- "@babel/types" "^7.0.0"
+ "@babel/traverse" "^7.20.0"
+ "@babel/types" "^7.20.0"
absolute-path "^0.0.0"
accepts "^1.3.7"
- async "^2.4.0"
+ async "^3.2.2"
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"
- hermes-parser "0.4.7"
+ graceful-fs "^4.2.4"
+ hermes-parser "0.8.0"
image-size "^0.6.0"
invariant "^2.2.4"
- jest-haste-map "^26.5.2"
- jest-worker "^26.0.0"
+ jest-worker "^27.2.0"
lodash.throttle "^4.1.1"
- metro-babel-register "0.66.2"
- metro-babel-transformer "0.66.2"
- metro-cache "0.66.2"
- metro-cache-key "0.66.2"
- metro-config "0.66.2"
- metro-core "0.66.2"
- metro-hermes-compiler "0.66.2"
- metro-inspector-proxy "0.66.2"
- metro-minify-uglify "0.66.2"
- metro-react-native-babel-preset "0.66.2"
- metro-resolver "0.66.2"
- metro-runtime "0.66.2"
- metro-source-map "0.66.2"
- metro-symbolicate "0.66.2"
- metro-transform-plugins "0.66.2"
- metro-transform-worker "0.66.2"
+ metro-babel-transformer "0.73.9"
+ metro-cache "0.73.9"
+ metro-cache-key "0.73.9"
+ metro-config "0.73.9"
+ metro-core "0.73.9"
+ metro-file-map "0.73.9"
+ metro-hermes-compiler "0.73.9"
+ metro-inspector-proxy "0.73.9"
+ metro-minify-terser "0.73.9"
+ metro-minify-uglify "0.73.9"
+ metro-react-native-babel-preset "0.73.9"
+ metro-resolver "0.73.9"
+ metro-runtime "0.73.9"
+ metro-source-map "0.73.9"
+ metro-symbolicate "0.73.9"
+ metro-transform-plugins "0.73.9"
+ metro-transform-worker "0.73.9"
mime-types "^2.1.27"
- mkdirp "^0.5.1"
node-fetch "^2.2.0"
nullthrows "^1.1.1"
- rimraf "^2.5.4"
+ rimraf "^3.0.2"
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"
+ ws "^7.5.1"
+ yargs "^17.5.1"
-micromatch@^3.1.10, micromatch@^3.1.4:
+micromatch@^3.1.10:
version "3.1.10"
resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23"
integrity sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==
@@ -7233,7 +6673,7 @@ micromatch@^3.1.10, micromatch@^3.1.4:
snapdragon "^0.8.1"
to-regex "^3.0.2"
-micromatch@^4.0.2, micromatch@^4.0.4:
+micromatch@^4.0.4:
version "4.0.5"
resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.5.tgz#bc8999a7cbbf77cdc89f132f6e467051b49090c6"
integrity sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==
@@ -7263,11 +6703,6 @@ mime@^2.4.1:
resolved "https://registry.yarnpkg.com/mime/-/mime-2.6.0.tgz#a2a682a95cd4d0cb1d6257e28f83da7e35800367"
integrity sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==
-mimic-fn@^1.0.0:
- version "1.2.0"
- resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022"
- integrity sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==
-
mimic-fn@^2.1.0:
version "2.1.0"
resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b"
@@ -7294,10 +6729,10 @@ minimist-options@4.1.0:
is-plain-obj "^1.1.0"
kind-of "^6.0.3"
-minimist@^1.1.1, minimist@^1.2.0, minimist@^1.2.5, minimist@^1.2.6:
- version "1.2.7"
- resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.7.tgz#daa1c4d91f507390437c6a8bc01078e7000c4d18"
- integrity sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g==
+minimist@^1.2.0, minimist@^1.2.5, minimist@^1.2.6:
+ version "1.2.8"
+ resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c"
+ integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==
mixin-deep@^1.2.0:
version "1.3.2"
@@ -7335,9 +6770,9 @@ ms@2.1.3, ms@^2.1.1:
integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==
nanoid@^3.1.23, nanoid@^3.3.1:
- version "3.3.4"
- resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.4.tgz#730b67e3cd09e2deacf03c027c81c9d9dbc5e8ab"
- integrity sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==
+ version "3.3.6"
+ resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.6.tgz#443380c856d6e9f9824267d960b4236ad583ea4c"
+ integrity sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==
nanomatch@^1.2.9:
version "1.2.13"
@@ -7381,10 +6816,10 @@ nice-try@^1.0.4:
resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366"
integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==
-nocache@^2.1.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/nocache/-/nocache-2.1.0.tgz#120c9ffec43b5729b1d5de88cd71aa75a0ba491f"
- integrity sha512-0L9FvHG3nfnnmaEQPjT9xhfN4ISk0A8/2j4M37Np4mcDesJjHgEUfgPhdCyZuFI954tjokaIj/A3NdpFNdEh4Q==
+nocache@^3.0.1:
+ version "3.0.4"
+ resolved "https://registry.yarnpkg.com/nocache/-/nocache-3.0.4.tgz#5b37a56ec6e09fc7d401dceaed2eab40c8bfdf79"
+ integrity sha512-WDD0bdg9mbq6F4mRxEYcPWwfA1vxd0mrvKOyxI7Xj/atfRHVeutzuWByG//jfm4uPzp0y4Kj051EORCBSQMycw==
node-dir@^0.1.17:
version "0.1.17"
@@ -7394,9 +6829,9 @@ node-dir@^0.1.17:
minimatch "^3.0.2"
node-fetch@^2.2.0, node-fetch@^2.6.0:
- version "2.6.7"
- resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.7.tgz#24de9fba827e3b4ae44dc8b20256a379160052ad"
- integrity sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==
+ version "2.6.11"
+ resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.11.tgz#cde7fc71deef3131ef80a738919f999e6edfff25"
+ integrity sha512-4I6pdBY1EthSqDmJkiNk3JIT8cswwR9nfeW/cPdUagJYEQG7R95WRH74wpz7ma8Gh/9dI9FP+OU+0E4FvtA55w==
dependencies:
whatwg-url "^5.0.0"
@@ -7405,10 +6840,10 @@ node-int64@^0.4.0:
resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b"
integrity sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==
-node-releases@^2.0.6:
- version "2.0.6"
- resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.6.tgz#8a7088c63a55e493845683ebf3c828d8c51c5503"
- integrity sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==
+node-releases@^2.0.12:
+ version "2.0.12"
+ resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.12.tgz#35627cc224a23bfb06fb3380f2b3afaaa7eb1039"
+ integrity sha512-QzsYKWhXTWx8h1kIvqfnC++o0pEmpRQA/aenALsL2F4pqNVr7YzcdMlDij5WBnwftRbJCNJL/O7zdKaxKPHqgQ==
node-stream-zip@^1.9.1:
version "1.15.0"
@@ -7443,13 +6878,6 @@ normalize-package-data@^3.0.0:
semver "^7.3.4"
validate-npm-package-license "^3.0.1"
-normalize-path@^2.1.1:
- version "2.1.1"
- resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9"
- integrity sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==
- dependencies:
- remove-trailing-separator "^1.0.1"
-
normalize-path@^3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65"
@@ -7486,15 +6914,15 @@ nullthrows@^1.1.1:
resolved "https://registry.yarnpkg.com/nullthrows/-/nullthrows-1.1.1.tgz#7818258843856ae971eae4208ad7d7eb19a431b1"
integrity sha512-2vPPEi+Z7WqML2jZYddDIfy5Dqb0r2fze2zTxNNknZaFpVHU3mFB3R+DWeJWGVx0ecvttSGlJTI+WG+8Z4cDWw==
-nwsapi@^2.2.0:
- version "2.2.2"
- resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.2.2.tgz#e5418863e7905df67d51ec95938d67bf801f0bb0"
- integrity sha512-90yv+6538zuvUMnN+zCr8LuV6bPFdq50304114vJYJ8RDyK8D5O9Phpbd6SZWgI7PwzmmfN1upeOJlvybDSgCw==
+ob1@0.73.7:
+ version "0.73.7"
+ resolved "https://registry.yarnpkg.com/ob1/-/ob1-0.73.7.tgz#14c9b6ddc26cf99144f59eb542d7ae956e6b3192"
+ integrity sha512-DfelfvR843KADhSUATGGhuepVMRcf5VQX+6MQLy5AW0BKDLlO7Usj6YZeAAZP7P86QwsoTxB0RXCFiA7t6S1IQ==
-ob1@0.66.2:
- version "0.66.2"
- resolved "https://registry.yarnpkg.com/ob1/-/ob1-0.66.2.tgz#8caf548202cf2688944bae47db405a08bca17a61"
- integrity sha512-RFewnL/RjE0qQBOuM+2bbY96zmJPIge/aDtsiDbLSb+MOiK8CReAhBHDgL+zrA3F1hQk00lMWpUwYcep750plA==
+ob1@0.73.9:
+ version "0.73.9"
+ resolved "https://registry.yarnpkg.com/ob1/-/ob1-0.73.9.tgz#d5677a0dd3e2f16ad84231278d79424436c38c59"
+ integrity sha512-kHOzCOFXmAM26fy7V/YuXNKne2TyRiXbFAvPBIbuedJCZZWQZHLdPzMeXJI4Egt6IcfDttRzN3jQ90wOwq1iNw==
object-assign@^4.1.1:
version "4.1.1"
@@ -7510,10 +6938,18 @@ object-copy@^0.1.0:
define-property "^0.2.5"
kind-of "^3.0.3"
-object-inspect@^1.12.2, object-inspect@^1.9.0:
- version "1.12.2"
- resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.2.tgz#c0641f26394532f28ab8d796ab954e43c009a8ea"
- integrity sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==
+object-inspect@^1.12.3, object-inspect@^1.9.0:
+ version "1.12.3"
+ resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.3.tgz#ba62dffd67ee256c8c086dfae69e016cd1f198b9"
+ integrity sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==
+
+object-is@^1.1.5:
+ version "1.1.5"
+ resolved "https://registry.yarnpkg.com/object-is/-/object-is-1.1.5.tgz#b9deeaa5fc7f1846a0faecdceec138e5778f53ac"
+ integrity sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==
+ dependencies:
+ call-bind "^1.0.2"
+ define-properties "^1.1.3"
object-keys@^1.1.1:
version "1.1.1"
@@ -7537,7 +6973,7 @@ object.assign@^4.1.2, object.assign@^4.1.3, object.assign@^4.1.4:
has-symbols "^1.0.3"
object-keys "^1.1.1"
-object.entries@^1.1.5:
+object.entries@^1.1.5, object.entries@^1.1.6:
version "1.1.6"
resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.6.tgz#9737d0e5b8291edd340a3e3264bb8a3b00d5fa23"
integrity sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==
@@ -7546,7 +6982,7 @@ object.entries@^1.1.5:
define-properties "^1.1.4"
es-abstract "^1.20.4"
-object.fromentries@^2.0.5:
+object.fromentries@^2.0.6:
version "2.0.6"
resolved "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.6.tgz#cdb04da08c539cffa912dcd368b886e0904bfa73"
integrity sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==
@@ -7555,7 +6991,7 @@ object.fromentries@^2.0.5:
define-properties "^1.1.4"
es-abstract "^1.20.4"
-object.hasown@^1.1.1:
+object.hasown@^1.1.2:
version "1.1.2"
resolved "https://registry.yarnpkg.com/object.hasown/-/object.hasown-1.1.2.tgz#f919e21fad4eb38a57bc6345b3afd496515c3f92"
integrity sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==
@@ -7570,7 +7006,7 @@ object.pick@^1.3.0:
dependencies:
isobject "^3.0.1"
-object.values@^1.1.5:
+object.values@^1.1.6:
version "1.1.6"
resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.6.tgz#4abbaa71eba47d63589d402856f908243eea9b1d"
integrity sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==
@@ -7605,14 +7041,7 @@ once@^1.3.0, once@^1.3.1, once@^1.4.0:
dependencies:
wrappy "1"
-onetime@^2.0.0:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4"
- integrity sha512-oyyPpiMaKARvvcgip+JV+7zci5L8D1W9RZIz2l1o08AM3pfspitVWnPt3mzHcBPp12oYMTy0pqrFs/C+m3EwsQ==
- dependencies:
- mimic-fn "^1.0.0"
-
-onetime@^5.1.2:
+onetime@^5.1.0, onetime@^5.1.2:
version "5.1.2"
resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e"
integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==
@@ -7626,18 +7055,6 @@ open@^6.2.0:
dependencies:
is-wsl "^1.1.0"
-optionator@^0.8.1:
- version "0.8.3"
- resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.3.tgz#84fa1d036fe9d3c7e21d99884b601167ec8fb495"
- integrity sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==
- 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:
version "0.9.1"
resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.1.tgz#4f236a6373dae0566a6d43e1326674f50c291499"
@@ -7650,21 +7067,19 @@ optionator@^0.9.1:
type-check "^0.4.0"
word-wrap "^1.2.3"
-options@>=0.0.5:
- version "0.0.6"
- resolved "https://registry.yarnpkg.com/options/-/options-0.0.6.tgz#ec22d312806bb53e731773e7cdaefcf1c643128f"
- integrity sha512-bOj3L1ypm++N+n7CEbbe473A414AB7z+amKYshRb//iuL3MpdDCLhPnw6aVTdKB9g5ZRVHIEp8eUln6L2NUStg==
-
-ora@^3.4.0:
- version "3.4.0"
- resolved "https://registry.yarnpkg.com/ora/-/ora-3.4.0.tgz#bf0752491059a3ef3ed4c85097531de9fdbcd318"
- integrity sha512-eNwHudNbO1folBP3JsZ19v9azXWtQZjICdr3Q0TDPIaeBQ3mXLrh54wM+er0+hSp+dWKf+Z8KM58CYzEyIYxYg==
- 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"
+ora@^5.4.1:
+ version "5.4.1"
+ resolved "https://registry.yarnpkg.com/ora/-/ora-5.4.1.tgz#1b2678426af4ac4a509008e5e4ac9e9959db9e18"
+ integrity sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==
+ dependencies:
+ bl "^4.1.0"
+ chalk "^4.1.0"
+ cli-cursor "^3.1.0"
+ cli-spinners "^2.5.0"
+ is-interactive "^1.0.0"
+ is-unicode-supported "^0.1.0"
+ log-symbols "^4.1.0"
+ strip-ansi "^6.0.0"
wcwidth "^1.0.1"
os-homedir@^1.0.0:
@@ -7774,11 +7189,6 @@ parse-json@^5.0.0, parse-json@^5.2.0:
json-parse-even-better-errors "^2.3.0"
lines-and-columns "^1.1.6"
-parse5@6.0.1:
- version "6.0.1"
- resolved "https://registry.yarnpkg.com/parse5/-/parse5-6.0.1.tgz#e1a1c085c569b3dc08321184f19a39cc27f7c30b"
- integrity sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==
-
parseurl@~1.3.3:
version "1.3.3"
resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.3.tgz#9da19e7bee8d12dff0513ed5b76957793bc2e8d4"
@@ -7880,6 +7290,13 @@ pkg-dir@^4.2.0:
dependencies:
find-up "^4.0.0"
+pkg-dir@^5.0.0:
+ version "5.0.0"
+ resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-5.0.0.tgz#a02d6aebe6ba133a928f74aec20bafdfe6b8e760"
+ integrity sha512-NPE8TDbzl/3YQYY7CSS228s3g2ollTFnc+Qi3tqmqJp9Vg2ovUpixcJEo2HJScN2Ez+kEaal6y70c0ehqJBJeA==
+ dependencies:
+ find-up "^5.0.0"
+
pkg-up@^3.1.0:
version "3.1.0"
resolved "https://registry.yarnpkg.com/pkg-up/-/pkg-up-3.1.0.tgz#100ec235cc150e4fd42519412596a28512a0def5"
@@ -7887,14 +7304,6 @@ pkg-up@^3.1.0:
dependencies:
find-up "^3.0.0"
-plist@^3.0.2, plist@^3.0.5:
- version "3.0.6"
- resolved "https://registry.yarnpkg.com/plist/-/plist-3.0.6.tgz#7cfb68a856a7834bca6dbfe3218eb9c7740145d3"
- integrity sha512-WiIVYyrp8TD4w8yCvyeIr+lkmrGRd5u0VbRnU+tP/aRLxP/YadJUYOMZJ/6hIa3oUyVCsycXvtNRgd5XBJIbiA==
- dependencies:
- base64-js "^1.5.1"
- xmlbuilder "^15.1.1"
-
pod-install@^0.1.0:
version "0.1.38"
resolved "https://registry.yarnpkg.com/pod-install/-/pod-install-0.1.38.tgz#1c16a800a5fc1abea0cafcc0e190f376368c76ab"
@@ -7910,11 +7319,6 @@ prelude-ls@^1.2.1:
resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396"
integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==
-prelude-ls@~1.1.2:
- version "1.1.2"
- resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54"
- integrity sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==
-
prepend-file@^2.0.0:
version "2.0.1"
resolved "https://registry.yarnpkg.com/prepend-file/-/prepend-file-2.0.1.tgz#6a624b474a65ab1f87dc24d1757d5a6d989eb2db"
@@ -7929,10 +7333,10 @@ prettier-linter-helpers@^1.0.0:
dependencies:
fast-diff "^1.1.2"
-prettier@2.7.1:
- version "2.7.1"
- resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.7.1.tgz#e235806850d057f97bb08368a4f7d899f7760c64"
- integrity sha512-ujppO+MkdPqoVINuDFDRLClm7D78qbDt0/NR+wp5FqEZOoTNAjPHWj17QRhu7geIHJfcNhRk1XVQmF8Bp3ye+g==
+prettier@^2.4.1:
+ version "2.8.8"
+ resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.8.8.tgz#e8c5d7e98a4305ffe3de2e1fc4aca1a71c28b1da"
+ integrity sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==
pretty-format@^26.5.2, pretty-format@^26.6.2:
version "26.6.2"
@@ -7944,7 +7348,7 @@ pretty-format@^26.5.2, pretty-format@^26.6.2:
ansi-styles "^4.0.0"
react-is "^17.0.1"
-pretty-format@^27.0.0, pretty-format@^27.5.1:
+pretty-format@^27.0.0:
version "27.5.1"
resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-27.5.1.tgz#2181879fdea51a7a5851fb39d920faa63f01d88e"
integrity sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==
@@ -7953,16 +7357,7 @@ pretty-format@^27.0.0, pretty-format@^27.5.1:
ansi-styles "^5.0.0"
react-is "^17.0.1"
-pretty-format@^29.0.1, pretty-format@^29.3.1:
- version "29.3.1"
- resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-29.3.1.tgz#1841cac822b02b4da8971dacb03e8a871b4722da"
- integrity sha512-FyLnmb1cYJV8biEIiRyzRFvs2lry7PPIvOqKVe1GCUEYg4YGmlx1qG9EJNMxArYm7piII4qb8UV1Pncq5dxmcg==
- dependencies:
- "@jest/schemas" "^29.0.0"
- ansi-styles "^5.0.0"
- react-is "^18.0.0"
-
-pretty-format@^29.5.0:
+pretty-format@^29.0.0, pretty-format@^29.0.1, pretty-format@^29.5.0:
version "29.5.0"
resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-29.5.0.tgz#283134e74f70e2e3e7229336de0e4fce94ccde5a"
integrity sha512-V2mGkI31qdttvTFX7Mt4efOqHXqJWMu4/r66Xh3Z3BwZaPfPJgp6/gbwoujRpPUtfEF6AUUWx3Jim3GCw5g/Qw==
@@ -7976,7 +7371,7 @@ process-nextick-args@~2.0.0:
resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2"
integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==
-promise@^8.0.3:
+promise@^8.3.0:
version "8.3.0"
resolved "https://registry.yarnpkg.com/promise/-/promise-8.3.0.tgz#8cb333d1edeb61ef23869fbb8a4ea0279ab60e0a"
integrity sha512-rZPNPKTOYVNEEKFaq1HqTgOwZD+4/YHS5ukLzQCypkj+OkYx7iv0mA91lJlpPPZ8vMau3IIGj5Qlwrx+8iiSmg==
@@ -7991,7 +7386,7 @@ prompts@^2.0.1, prompts@^2.4.0:
kleur "^3.0.3"
sisteransi "^1.0.5"
-prop-types@^15.5.10, prop-types@^15.6.2, prop-types@^15.7.2, prop-types@^15.8.1:
+prop-types@*, prop-types@^15.5.10, prop-types@^15.6.2, prop-types@^15.7.2, prop-types@^15.8.1:
version "15.8.1"
resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.8.1.tgz#67d87bf1a694f48435cf332c24af10214a3140b5"
integrity sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==
@@ -8000,11 +7395,6 @@ prop-types@^15.5.10, prop-types@^15.6.2, prop-types@^15.7.2, prop-types@^15.8.1:
object-assign "^4.1.1"
react-is "^16.13.1"
-psl@^1.1.33:
- version "1.9.0"
- resolved "https://registry.yarnpkg.com/psl/-/psl-1.9.0.tgz#d0df2a137f00794565fcaf3b2c00cd09f8d5a5a7"
- integrity sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==
-
pump@^3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64"
@@ -8013,10 +7403,10 @@ pump@^3.0.0:
end-of-stream "^1.1.0"
once "^1.3.1"
-punycode@^2.1.0, punycode@^2.1.1:
- version "2.1.1"
- resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec"
- integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==
+punycode@^2.1.0:
+ version "2.3.0"
+ resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.3.0.tgz#f67fa67c94da8f4d0cfff981aee4118064199b8f"
+ integrity sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==
pure-rand@^6.0.0:
version "6.0.2"
@@ -8028,21 +7418,16 @@ q@^1.5.1:
resolved "https://registry.yarnpkg.com/q/-/q-1.5.1.tgz#7e32f75b41381291d04611f1bf14109ac00651d7"
integrity sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==
-query-string@^7.0.0:
- version "7.1.1"
- resolved "https://registry.yarnpkg.com/query-string/-/query-string-7.1.1.tgz#754620669db978625a90f635f12617c271a088e1"
- integrity sha512-MplouLRDHBZSG9z7fpuAAcI7aAYjDLhtsiVZsevsfaHWDS2IDdORKbSd1kWUA+V4zyva/HZoSfpwnYMMQDhb0w==
+query-string@^7.1.3:
+ version "7.1.3"
+ resolved "https://registry.yarnpkg.com/query-string/-/query-string-7.1.3.tgz#a1cf90e994abb113a325804a972d98276fe02328"
+ integrity sha512-hh2WYhq4fi8+b+/2Kg9CEge4fDPvHS534aOOvOZeQ3+Vf2mCFsaFBYj0i+iXcAq6I9Vzp5fjMFBlONvayDC1qg==
dependencies:
- decode-uri-component "^0.2.0"
+ decode-uri-component "^0.2.2"
filter-obj "^1.1.0"
split-on-first "^1.0.0"
strict-uri-encode "^2.0.0"
-querystringify@^2.1.1:
- version "2.2.0"
- resolved "https://registry.yarnpkg.com/querystringify/-/querystringify-2.2.0.tgz#3345941b4153cb9d082d8eee4cda2016a9aef7f6"
- integrity sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==
-
queue-microtask@^1.2.2:
version "1.2.3"
resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243"
@@ -8065,10 +7450,10 @@ range-parser@~1.2.1:
resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.1.tgz#3cf37023d199e1c24d1a55b84800c2f3e6468031"
integrity sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==
-react-devtools-core@4.19.1:
- version "4.19.1"
- resolved "https://registry.yarnpkg.com/react-devtools-core/-/react-devtools-core-4.19.1.tgz#bc37c2ef2f48f28c6af4c7292be9dca1b63deace"
- integrity sha512-2wJiGffPWK0KggBjVwnTaAk+Z3MSxKInHmdzPTrBh1mAarexsa93Kw+WMX88+XjN+TtYgAiLe9xeTqcO5FfJTw==
+react-devtools-core@^4.26.1:
+ version "4.27.8"
+ resolved "https://registry.yarnpkg.com/react-devtools-core/-/react-devtools-core-4.27.8.tgz#b7b387b079c14ae9a214d4846a402da2b6efd164"
+ integrity sha512-KwoH8/wN/+m5wTItLnsgVraGNmFrcTWR3k1VimP1HjtMMw4CNF+F5vg4S/0tzTEKIdpCi2R7mPNTC+/dswZMgw==
dependencies:
shell-quote "^1.6.1"
ws "^7"
@@ -8116,13 +7501,14 @@ react-native-camera@^4.2.1:
dependencies:
prop-types "^15.6.2"
-react-native-codegen@^0.0.8:
- version "0.0.8"
- resolved "https://registry.yarnpkg.com/react-native-codegen/-/react-native-codegen-0.0.8.tgz#b7796a54074139d956fff2862cf1285db43c891b"
- integrity sha512-k/944+0XD+8l7zDaiKfYabyEKmAmyZgS1mj+4LcSRPyHnrjgCHKrh/Y6jM6kucQ6xU1+1uyMmF/dSkikxK8i+Q==
+react-native-codegen@^0.71.5:
+ version "0.71.5"
+ resolved "https://registry.yarnpkg.com/react-native-codegen/-/react-native-codegen-0.71.5.tgz#454a42a891cd4ca5fc436440d301044dc1349c14"
+ integrity sha512-rfsuc0zkuUuMjFnrT55I1mDZ+pBRp2zAiRwxck3m6qeGJBGK5OV5JH66eDQ4aa+3m0of316CqrJDRzVlYufzIg==
dependencies:
- flow-parser "^0.121.0"
- jscodeshift "^0.11.0"
+ "@babel/parser" "^7.14.0"
+ flow-parser "^0.185.0"
+ jscodeshift "^0.13.1"
nullthrows "^1.1.1"
react-native-encrypted-storage@^4.0.2:
@@ -8130,10 +7516,10 @@ react-native-encrypted-storage@^4.0.2:
resolved "https://registry.yarnpkg.com/react-native-encrypted-storage/-/react-native-encrypted-storage-4.0.3.tgz#2a4d65459870511e8f4ccd22f02433dab7fa5e91"
integrity sha512-0pJA4Aj2S1PIJEbU7pN/Qvf7JIJx3hFywx+i+bLHtgK0/6Zryf1V2xVsWcrD50dfiu3jY1eN2gesQ5osGxE7jA==
-react-native-gesture-handler@^2.3.2:
- version "2.8.0"
- resolved "https://registry.yarnpkg.com/react-native-gesture-handler/-/react-native-gesture-handler-2.8.0.tgz#ef9857871c10663c95a51546225b6e00cd4740cf"
- integrity sha512-poOSfz/w0IyD6Qwq7aaIRRfEaVTl1ecQFoyiIbpOpfNTjm2B1niY2FLrdVQIOtIOe+K9nH55Qal04nr4jGkHdQ==
+react-native-gesture-handler@^2.10.2:
+ version "2.11.0"
+ resolved "https://registry.yarnpkg.com/react-native-gesture-handler/-/react-native-gesture-handler-2.11.0.tgz#cc325430369030ec420d3d455eb2ea2e3fe2c27a"
+ integrity sha512-qiGS2HFnuxxA067kcC4PHfp5hzB8pn6K9UqI5kdkM48DLkzv3vUJptdPlffRSvUJggsfwIyAMYVM+xM4sxg2/A==
dependencies:
"@egjs/hammerjs" "^2.0.17"
hoist-non-react-statics "^3.3.0"
@@ -8141,6 +7527,11 @@ react-native-gesture-handler@^2.3.2:
lodash "^4.17.21"
prop-types "^15.7.2"
+react-native-gradle-plugin@^0.71.15:
+ version "0.71.18"
+ resolved "https://registry.yarnpkg.com/react-native-gradle-plugin/-/react-native-gradle-plugin-0.71.18.tgz#20ef199bc85be32e45bb6cc069ec2e7dcb1a74a6"
+ integrity sha512-7F6bD7B8Xsn3JllxcwHhFcsl9aHIig47+3eN4IHFNqfLhZr++3ElDrcqfMzugM+niWbaMi7bJ0kAkAL8eCpdWg==
+
react-native-linear-gradient@^2.5.6:
version "2.6.2"
resolved "https://registry.yarnpkg.com/react-native-linear-gradient/-/react-native-linear-gradient-2.6.2.tgz#56598a76832724b2afa7889747635b5c80948f38"
@@ -8151,10 +7542,13 @@ react-native-permissions@^2.0.2:
resolved "https://registry.yarnpkg.com/react-native-permissions/-/react-native-permissions-2.2.2.tgz#3d2a63f6b7d6be52fc86e30f77412a9566283028"
integrity sha512-ihf4shQDSX5Oo9ChQXb9kr13mmyyNem5MaEvOpr3dCjhBOBWyEMztXm9/uPK1Qg5PsNpaYLa1KpcPZDCw87LXg==
-react-native-permissions@^3.6.1:
- version "3.6.1"
- resolved "https://registry.yarnpkg.com/react-native-permissions/-/react-native-permissions-3.6.1.tgz#73adcc1cef8cd57a9ef167b4507405f4ff5749c4"
- integrity sha512-fzPpPQXeD34inUccqtoResSwYubfrwUguP4qrVUUv8+KSMjYSaHGoS5HaIJLZHlN9gO+TvLJZ2L5ZljTsb6qnQ==
+react-native-permissions@^3.8.0:
+ version "3.8.0"
+ resolved "https://registry.yarnpkg.com/react-native-permissions/-/react-native-permissions-3.8.0.tgz#7c1f75ae126c7d0b863eec9d2f5cd93ff8ad8310"
+ integrity sha512-BfZ7ksgdpGchHZH8M/kxCGZbWeACANbnPmb3hNjVOMDQusc4PWlPpobX3eBqYMSKbpi7bMECeV9BVU4QuwAf9A==
+ dependencies:
+ picocolors "^1.0.0"
+ pkg-dir "^5.0.0"
react-native-qrcode-scanner@^1.5.5:
version "1.5.5"
@@ -8166,22 +7560,21 @@ react-native-qrcode-scanner@^1.5.5:
react-native-permissions "^2.0.2"
react-native-reanimated@^2.12.0:
- version "2.12.0"
- resolved "https://registry.yarnpkg.com/react-native-reanimated/-/react-native-reanimated-2.12.0.tgz#5821eecfb1769b1617a67a2d4dec12fdeedb2b6e"
- integrity sha512-nrlPyw+Hx9u4iJhZk9PoTvDo/QmVAd+bo7OK9Tv3hveNEF9++5oig/g3Uv9V93shy9avTYGsUprUvAEt/xdzeQ==
+ version "2.17.0"
+ resolved "https://registry.yarnpkg.com/react-native-reanimated/-/react-native-reanimated-2.17.0.tgz#eae2308235961cdd79810e01dfdd7e88b1ae5b5c"
+ integrity sha512-bVy+FUEaHXq4i+aPPqzGeor1rG4scgVNBbBz21ohvC7iMpB9IIgvGsmy1FAoodZhZ5sa3EPF67Rcec76F1PXlQ==
dependencies:
"@babel/plugin-transform-object-assign" "^7.16.7"
"@babel/preset-typescript" "^7.16.7"
- "@types/invariant" "^2.2.35"
invariant "^2.2.4"
lodash.isequal "^4.5.0"
setimmediate "^1.0.5"
string-hash-64 "^1.0.3"
react-native-safe-area-context@^4.2.2:
- version "4.4.1"
- resolved "https://registry.yarnpkg.com/react-native-safe-area-context/-/react-native-safe-area-context-4.4.1.tgz#239c60b8a9a80eac70a38a822b04c0f1d15ffc01"
- integrity sha512-N9XTjiuD73ZpVlejHrUWIFZc+6Z14co1K/p1IFMkImU7+avD69F3y+lhkqA2hN/+vljdZrBSiOwXPkuo43nFQA==
+ version "4.5.3"
+ resolved "https://registry.yarnpkg.com/react-native-safe-area-context/-/react-native-safe-area-context-4.5.3.tgz#e98eb1a73a6b3846d296545fe74760754dbaaa69"
+ integrity sha512-ihYeGDEBSkYH+1aWnadNhVtclhppVgd/c0tm4mj0+HV11FoiWJ8N6ocnnZnRLvM5Fxc+hUqxR9bm5AXU3rXiyA==
react-native-safe-modules@^1.0.3:
version "1.0.3"
@@ -8191,9 +7584,9 @@ react-native-safe-modules@^1.0.3:
dedent "^0.6.0"
react-native-screens@^3.13.1:
- version "3.18.2"
- resolved "https://registry.yarnpkg.com/react-native-screens/-/react-native-screens-3.18.2.tgz#d7ab2d145258d3db9fa630fa5379dc4474117866"
- integrity sha512-ANUEuvMUlsYJ1QKukEhzhfrvOUO9BVH9Nzg+6eWxpn3cfD/O83yPBOF8Mx6x5H/2+sMy+VS5x/chWOOo/U7QJw==
+ version "3.20.0"
+ resolved "https://registry.yarnpkg.com/react-native-screens/-/react-native-screens-3.20.0.tgz#4d154177395e5541387d9a05bc2e12e54d2fb5b1"
+ integrity sha512-joWUKWAVHxymP3mL9gYApFHAsbd9L6ZcmpoZa6Sl3W/82bvvNVMqcfP7MeNqVCg73qZ8yL4fW+J/syusHleUgg==
dependencies:
react-freeze "^1.0.0"
warn-once "^0.1.0"
@@ -8207,49 +7600,53 @@ react-native-svg-transformer@^1.0.0:
"@svgr/plugin-svgo" "^6.1.2"
path-dirname "^1.0.2"
-react-native-svg@^12.3.0:
- version "12.4.4"
- resolved "https://registry.yarnpkg.com/react-native-svg/-/react-native-svg-12.4.4.tgz#2ba684eaea9a7402fbbe0ed9737e77284631d00e"
- integrity sha512-LpcNlEVCURexqPAvQ9ne8KrPVfYz0wIDygwud8VMRmXLezysXzyQN/DTsjm1BO9lIfYp55WQsr3u3yW/vk6iiA==
+react-native-svg@^13.9.0:
+ version "13.9.0"
+ resolved "https://registry.yarnpkg.com/react-native-svg/-/react-native-svg-13.9.0.tgz#8df8a690dd00362601f074dec5d3a86dd0f99c7f"
+ integrity sha512-Ey18POH0dA0ob/QiwCBVrxIiwflhYuw0P0hBlOHeY4J5cdbs8ngdKHeWC/Kt9+ryP6fNoEQ1PUgPYw2Bs/rp5Q==
dependencies:
css-select "^5.1.0"
css-tree "^1.1.3"
-react-native@0.67.2:
- version "0.67.2"
- resolved "https://registry.yarnpkg.com/react-native/-/react-native-0.67.2.tgz#312224bc2271c3cecd374d4bc425619cff4ea5dc"
- integrity sha512-grEtpOLLvtSg8Bivg0ffVRCjTkresqMt7Jdog/geF6VAYhb4RnLaaUCWvyrfyB9buf135FKnqg5BIuve/XQNXA==
+react-native@0.71.3:
+ version "0.71.3"
+ resolved "https://registry.yarnpkg.com/react-native/-/react-native-0.71.3.tgz#0faab799c49e61ba12df9e6525c3ac7d595d673c"
+ integrity sha512-RYJXCcQGa4NTfKiPgl92eRDUuQ6JGDnHqFEzRwJSqEx9lWvlvRRIebstJfurzPDKLQWQrvITR7aI7e09E25mLw==
dependencies:
- "@jest/create-cache-key-function" "^27.0.1"
- "@react-native-community/cli" "^6.0.0"
- "@react-native-community/cli-platform-android" "^6.0.0"
- "@react-native-community/cli-platform-ios" "^6.0.0"
+ "@jest/create-cache-key-function" "^29.2.1"
+ "@react-native-community/cli" "10.1.3"
+ "@react-native-community/cli-platform-android" "10.1.3"
+ "@react-native-community/cli-platform-ios" "10.1.1"
"@react-native/assets" "1.0.0"
- "@react-native/normalize-color" "2.0.0"
+ "@react-native/normalize-color" "2.1.0"
"@react-native/polyfills" "2.0.0"
abort-controller "^3.0.0"
anser "^1.4.9"
base64-js "^1.1.2"
+ deprecated-react-native-prop-types "^3.0.1"
event-target-shim "^5.0.1"
- hermes-engine "~0.9.0"
invariant "^2.2.4"
- jsc-android "^250230.2.1"
- metro-react-native-babel-transformer "0.66.2"
- metro-runtime "0.66.2"
- metro-source-map "0.66.2"
+ jest-environment-node "^29.2.1"
+ jsc-android "^250231.0.0"
+ memoize-one "^5.0.0"
+ metro-react-native-babel-transformer "0.73.7"
+ metro-runtime "0.73.7"
+ metro-source-map "0.73.7"
+ mkdirp "^0.5.1"
nullthrows "^1.1.1"
pretty-format "^26.5.2"
- promise "^8.0.3"
- prop-types "^15.7.2"
- react-devtools-core "4.19.1"
- react-native-codegen "^0.0.8"
+ promise "^8.3.0"
+ react-devtools-core "^4.26.1"
+ react-native-codegen "^0.71.5"
+ react-native-gradle-plugin "^0.71.15"
react-refresh "^0.4.0"
+ react-shallow-renderer "^16.15.0"
regenerator-runtime "^0.13.2"
- scheduler "^0.20.2"
+ scheduler "^0.23.0"
stacktrace-parser "^0.1.3"
- use-subscription "^1.0.0"
+ use-sync-external-store "^1.0.0"
whatwg-fetch "^3.0.0"
- ws "^6.1.4"
+ ws "^6.2.2"
react-refresh@^0.4.0:
version "0.4.3"
@@ -8340,19 +7737,19 @@ read-pkg@^5.2.0:
parse-json "^5.0.0"
type-fest "^0.6.0"
-readable-stream@3, readable-stream@^3.0.0, readable-stream@^3.0.2:
- version "3.6.0"
- resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.0.tgz#337bbda3adc0706bd3e024426a286d4b4b2c9198"
- integrity sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==
+readable-stream@3, readable-stream@^3.0.0, readable-stream@^3.0.2, readable-stream@^3.4.0:
+ version "3.6.2"
+ resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.2.tgz#56a9b36ea965c00c5a93ef31eb111a0f11056967"
+ integrity sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==
dependencies:
inherits "^2.0.3"
string_decoder "^1.1.1"
util-deprecate "^1.0.1"
readable-stream@~2.3.6:
- version "2.3.7"
- resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.7.tgz#1eca1cf711aef814c04f62252a36a62f6cb23b57"
- integrity sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==
+ version "2.3.8"
+ resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.8.tgz#91125e8042bba1b9887f49345f6277027ce8be9b"
+ integrity sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==
dependencies:
core-util-is "~1.0.0"
inherits "~2.0.3"
@@ -8377,7 +7774,7 @@ readline@^1.3.0:
resolved "https://registry.yarnpkg.com/readline/-/readline-1.3.0.tgz#c580d77ef2cfc8752b132498060dc9793a7ac01c"
integrity sha512-k2d6ACCkiNYz222Fs/iNze30rRJ1iIicW7JuX/7/cozvih6YCkFZH+J6mAFDVgv0dRBaAyr4jDqC95R2y4IADg==
-recast@^0.20.3:
+recast@^0.20.4:
version "0.20.5"
resolved "https://registry.yarnpkg.com/recast/-/recast-0.20.5.tgz#8e2c6c96827a1b339c634dd232957d230553ceae"
integrity sha512-E5qICoPoNL4yU0H0NoBDntNB0Q5oMSNh9usFctYniLBluTthi3RsQVBXIJNbApOlvSwW/RGxIuokPcAc59J5fQ==
@@ -8407,15 +7804,15 @@ regenerate@^1.4.2:
resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.2.tgz#b9346d8827e8f5a32f7ba29637d398b69014848a"
integrity sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==
-regenerator-runtime@^0.13.10, regenerator-runtime@^0.13.2:
- version "0.13.10"
- resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.10.tgz#ed07b19616bcbec5da6274ebc75ae95634bfc2ee"
- integrity sha512-KepLsg4dU12hryUO7bp/axHAKvwGOCV0sGloQtpagJ12ai+ojVDqkeGSiRX1zlq+kjIMZ1t7gpze+26QqtdGqw==
+regenerator-runtime@^0.13.11, regenerator-runtime@^0.13.2:
+ version "0.13.11"
+ resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz#f6dca3e7ceec20590d07ada785636a90cdca17f9"
+ integrity sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==
-regenerator-transform@^0.15.0:
- version "0.15.0"
- resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.15.0.tgz#cbd9ead5d77fae1a48d957cf889ad0586adb6537"
- integrity sha512-LsrGtPmbYg19bcPHwdtmXwbW+TqNvtY4riE3P83foeHRroMbH6/2ddFBfab3t7kbzc7v7p4wbkIecHImqt0QNg==
+regenerator-transform@^0.15.1:
+ version "0.15.1"
+ resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.15.1.tgz#f6c4e99fc1b4591f780db2586328e4d9a9d8dc56"
+ integrity sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg==
dependencies:
"@babel/runtime" "^7.8.4"
@@ -8427,36 +7824,26 @@ regex-not@^1.0.0, regex-not@^1.0.2:
extend-shallow "^3.0.2"
safe-regex "^1.1.0"
-regexp.prototype.flags@^1.4.3:
- version "1.4.3"
- resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz#87cab30f80f66660181a3bb7bf5981a872b367ac"
- integrity sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==
+regexp.prototype.flags@^1.4.3, regexp.prototype.flags@^1.5.0:
+ version "1.5.0"
+ resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.5.0.tgz#fe7ce25e7e4cca8db37b6634c8a2c7009199b9cb"
+ integrity sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA==
dependencies:
call-bind "^1.0.2"
- define-properties "^1.1.3"
- functions-have-names "^1.2.2"
-
-regexpp@^3.2.0:
- version "3.2.0"
- resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-3.2.0.tgz#0425a2768d8f23bad70ca4b90461fa2f1213e1b2"
- integrity sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==
+ define-properties "^1.2.0"
+ functions-have-names "^1.2.3"
-regexpu-core@^5.1.0:
- version "5.2.1"
- resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-5.2.1.tgz#a69c26f324c1e962e9ffd0b88b055caba8089139"
- integrity sha512-HrnlNtpvqP1Xkb28tMhBUO2EbyUHdQlsnlAhzWcwHy8WJR53UWr7/MAvqrsQKMbV4qdpv03oTMG8iIhfsPFktQ==
+regexpu-core@^5.3.1:
+ version "5.3.2"
+ resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-5.3.2.tgz#11a2b06884f3527aec3e93dbbf4a3b958a95546b"
+ integrity sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==
dependencies:
+ "@babel/regjsgen" "^0.8.0"
regenerate "^1.4.2"
regenerate-unicode-properties "^10.1.0"
- regjsgen "^0.7.1"
regjsparser "^0.9.1"
unicode-match-property-ecmascript "^2.0.0"
- unicode-match-property-value-ecmascript "^2.0.0"
-
-regjsgen@^0.7.1:
- version "0.7.1"
- resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.7.1.tgz#ee5ef30e18d3f09b7c369b76e7c2373ed25546f6"
- integrity sha512-RAt+8H2ZEzHeYWxZ3H2z6tF18zyyOnlcdaafLrm21Bguj7uZy6ULibiAFdXEtKQY4Sy7wDTwDiOazasMLc4KPA==
+ unicode-match-property-value-ecmascript "^2.1.0"
regjsparser@^0.9.1:
version "0.9.1"
@@ -8465,11 +7852,6 @@ regjsparser@^0.9.1:
dependencies:
jsesc "~0.5.0"
-remove-trailing-separator@^1.0.1:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef"
- integrity sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==
-
repeat-element@^1.1.2:
version "1.1.4"
resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.4.tgz#be681520847ab58c7568ac75fbfad28ed42d39e9"
@@ -8490,15 +7872,10 @@ require-main-filename@^2.0.0:
resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-2.0.0.tgz#d0b329ecc7cc0f61649f62215be69af54aa8989b"
integrity sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==
-requires-port@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff"
- integrity sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==
-
reselect@^4.0.0:
- version "4.1.7"
- resolved "https://registry.yarnpkg.com/reselect/-/reselect-4.1.7.tgz#56480d9ff3d3188970ee2b76527bd94a95567a42"
- integrity sha512-Zu1xbUt3/OPwsXL46hvOOoQrap2azE7ZQbokq61BQfiXvhewsKDwhMeZjTX9sX0nvw1t/U5Audyn1I9P/m9z0A==
+ version "4.1.8"
+ resolved "https://registry.yarnpkg.com/reselect/-/reselect-4.1.8.tgz#3f5dc671ea168dccdeb3e141236f69f02eaec524"
+ integrity sha512-ab9EmR80F/zQTMNeneUr4cv+jSwPJgIlvEmVwLerwrWVbpLlBuls9XHzIeTFy4cegU2NHBp3va0LKOzU5qFEYQ==
resolve-cwd@^3.0.0:
version "3.0.0"
@@ -8527,26 +7904,21 @@ resolve-url@^0.2.1:
resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a"
integrity sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==
-resolve.exports@^1.1.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/resolve.exports/-/resolve.exports-1.1.0.tgz#5ce842b94b05146c0e03076985d1d0e7e48c90c9"
- integrity sha512-J1l+Zxxp4XK3LUDZ9m60LRJF/mAe4z6a4xyabPHk7pvK5t35dACV32iIjJDFeWZFfZlO29w6SZ67knR0tHzJtQ==
-
resolve.exports@^2.0.0:
version "2.0.2"
resolved "https://registry.yarnpkg.com/resolve.exports/-/resolve.exports-2.0.2.tgz#f8c934b8e6a13f539e38b7098e2e36134f01e800"
integrity sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==
-resolve@^1.10.0, resolve@^1.13.1, resolve@^1.14.2, resolve@^1.20.0, resolve@^1.22.0:
- version "1.22.1"
- resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.1.tgz#27cb2ebb53f91abb49470a928bba7558066ac177"
- integrity sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==
+resolve@^1.10.0, resolve@^1.13.1, resolve@^1.14.2, resolve@^1.20.0, resolve@^1.22.1:
+ version "1.22.2"
+ resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.2.tgz#0ed0943d4e301867955766c9f3e1ae6d01c6845f"
+ integrity sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==
dependencies:
- is-core-module "^2.9.0"
+ is-core-module "^2.11.0"
path-parse "^1.0.7"
supports-preserve-symlinks-flag "^1.0.0"
-resolve@^2.0.0-next.3:
+resolve@^2.0.0-next.4:
version "2.0.0-next.4"
resolved "https://registry.yarnpkg.com/resolve/-/resolve-2.0.0-next.4.tgz#3d37a113d6429f496ec4752d2a2e58efb1fd4660"
integrity sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==
@@ -8555,12 +7927,12 @@ resolve@^2.0.0-next.3:
path-parse "^1.0.7"
supports-preserve-symlinks-flag "^1.0.0"
-restore-cursor@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf"
- integrity sha512-6IzJLuGi4+R14vwagDHX+JrXmPVtPpn4mffDJ1UdR7/Edm87fl6yi8mMBIVvFtJaNTUvjughmW4hwLhRG7gC1Q==
+restore-cursor@^3.1.0:
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-3.1.0.tgz#39f67c54b3a7a58cea5236d95cf0034239631f7e"
+ integrity sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==
dependencies:
- onetime "^2.0.0"
+ onetime "^5.1.0"
signal-exit "^3.0.2"
ret@~0.1.10:
@@ -8573,14 +7945,7 @@ reusify@^1.0.4:
resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76"
integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==
-rimraf@^2.5.4:
- version "2.7.1"
- resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec"
- integrity sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==
- dependencies:
- glob "^7.1.3"
-
-rimraf@^3.0.0, rimraf@^3.0.2:
+rimraf@^3.0.2:
version "3.0.2"
resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a"
integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==
@@ -8621,11 +7986,6 @@ rollup@^2.66.0:
optionalDependencies:
fsevents "~2.3.2"
-rsvp@^4.8.4:
- version "4.8.5"
- resolved "https://registry.yarnpkg.com/rsvp/-/rsvp-4.8.5.tgz#c8f155311d167f68f21e168df71ec5b083113734"
- integrity sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA==
-
run-parallel@^1.1.9:
version "1.2.0"
resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee"
@@ -8659,46 +8019,6 @@ safe-regex@^1.1.0:
dependencies:
ret "~0.1.10"
-"safer-buffer@>= 2.1.2 < 3":
- version "2.1.2"
- resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a"
- integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==
-
-sane@^4.0.3:
- version "4.1.0"
- resolved "https://registry.yarnpkg.com/sane/-/sane-4.1.0.tgz#ed881fd922733a6c461bc189dc2b6c006f3ffded"
- integrity sha512-hhbzAgTIX8O7SHfp2c8/kREfEn4qO/9q8C9beyY6+tvZ87EpoZ3i1RIEvp27YBswnNbY9mWd6paKVmKbAgLfZA==
- 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.4:
- version "1.2.4"
- resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9"
- integrity sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==
-
-saxes@^5.0.1:
- version "5.0.1"
- resolved "https://registry.yarnpkg.com/saxes/-/saxes-5.0.1.tgz#eebab953fa3b7608dbe94e5dadb15c888fa6696d"
- integrity sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==
- dependencies:
- xmlchars "^2.2.0"
-
-scheduler@^0.20.2:
- version "0.20.2"
- resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.20.2.tgz#4baee39436e34aa93b4874bddcbf0fe8b8b50e91"
- integrity sha512-2eWfGgAqqWFGqtdMmcL5zCMK1U8KlXv8SQFGglL3CEtd0aDVDWgeF/YoCmvln55m5zSk3J/20hTaSBeSObsQDQ==
- dependencies:
- loose-envify "^1.1.0"
- object-assign "^4.1.1"
-
scheduler@^0.23.0:
version "0.23.0"
resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.23.0.tgz#ba8041afc3d30eb206a487b6b384002e4e61fdfe"
@@ -8711,10 +8031,10 @@ scheduler@^0.23.0:
resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7"
integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==
-semver@7.x, semver@^7.3.2, semver@^7.3.4, semver@^7.3.7:
- version "7.3.8"
- resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.8.tgz#07a78feafb3f7b32347d725e33de7e2a2df67798"
- integrity sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==
+semver@7.x, semver@^7.3.4, semver@^7.3.5, semver@^7.3.7:
+ version "7.5.1"
+ resolved "https://registry.yarnpkg.com/semver/-/semver-7.5.1.tgz#c90c4d631cf74720e46b21c1d37ea07edfab91ec"
+ integrity sha512-Wvss5ivl8TMRZXXESstBA4uR5iXgEN/VC5/sOcuXdVLzcdkz4HWetIoRfG5gb5X+ij/G9rw9YoGn3QoQ8OCSpw==
dependencies:
lru-cache "^6.0.0"
@@ -8723,13 +8043,6 @@ semver@^6.0.0, semver@^6.1.1, semver@^6.1.2, semver@^6.3.0:
resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d"
integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==
-semver@^7.3.5:
- version "7.5.0"
- resolved "https://registry.yarnpkg.com/semver/-/semver-7.5.0.tgz#ed8c5dc8efb6c629c88b23d41dc9bf40c1d96cd0"
- integrity sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA==
- dependencies:
- lru-cache "^6.0.0"
-
send@0.18.0:
version "0.18.0"
resolved "https://registry.yarnpkg.com/send/-/send-0.18.0.tgz#670167cc654b05f5aa4a767f9113bb371bc706be"
@@ -8828,9 +8141,9 @@ shebang-regex@^3.0.0:
integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==
shell-quote@^1.6.1, shell-quote@^1.7.3:
- version "1.7.4"
- resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.7.4.tgz#33fe15dee71ab2a81fcbd3a52106c5cfb9fb75d8"
- integrity sha512-8o/QEhSSRb1a5i7TFR0iM4G16Z0vYB2OQVs4G3aAFXjn3T6yEx8AZxy1PgDF7I00LZHYA3WxaSYIf5e5sAX8Rw==
+ version "1.8.1"
+ resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.8.1.tgz#6dbf4db75515ad5bac63b4f1894c3a154c766680"
+ integrity sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==
side-channel@^1.0.4:
version "1.0.4"
@@ -8846,15 +8159,6 @@ signal-exit@^3.0.0, signal-exit@^3.0.2, signal-exit@^3.0.3, signal-exit@^3.0.7:
resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9"
integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==
-simple-plist@^1.0.0:
- version "1.3.1"
- resolved "https://registry.yarnpkg.com/simple-plist/-/simple-plist-1.3.1.tgz#16e1d8f62c6c9b691b8383127663d834112fb017"
- integrity sha512-iMSw5i0XseMnrhtIzRb7XpQEXepa9xhWxGUojHBL43SIpQuDQkh3Wpy67ZbDzZVr6EKxvwVChnVpdl8hEVLDiw==
- dependencies:
- bplist-creator "0.1.0"
- bplist-parser "0.3.1"
- plist "^3.0.5"
-
simple-swizzle@^0.2.2:
version "0.2.2"
resolved "https://registry.yarnpkg.com/simple-swizzle/-/simple-swizzle-0.2.2.tgz#a4da6b635ffcccca33f70d17cb92592de95e557a"
@@ -8935,7 +8239,7 @@ source-map-support@0.5.13:
buffer-from "^1.0.0"
source-map "^0.6.0"
-source-map-support@^0.5.16, source-map-support@^0.5.6, source-map-support@~0.5.20:
+source-map-support@^0.5.16, source-map-support@~0.5.20:
version "0.5.21"
resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.21.tgz#04fe7c7f9e1ed2d662233c28cb2b35b9f63f6e4f"
integrity sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==
@@ -8973,9 +8277,9 @@ spdx-compare@^1.0.0:
spdx-ranges "^2.0.0"
spdx-correct@^3.0.0:
- version "3.1.1"
- resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.1.tgz#dece81ac9c1e6713e5f7d1b6f17d468fa53d89a9"
- integrity sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==
+ version "3.2.0"
+ resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.2.0.tgz#4f5ab0668f0059e34f9c00dce331784a12de4e9c"
+ integrity sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==
dependencies:
spdx-expression-parse "^3.0.0"
spdx-license-ids "^3.0.0"
@@ -8994,9 +8298,9 @@ spdx-expression-parse@^3.0.0:
spdx-license-ids "^3.0.0"
spdx-license-ids@^3.0.0:
- version "3.0.12"
- resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.12.tgz#69077835abe2710b65f03969898b6637b505a779"
- integrity sha512-rr+VVSXtRhO4OHbXUiAF7xW3Bo9DuuF6C5jH+q/x15j2jniycgKbxU09Hr0WqlSLUs4i4ltHGXqTe7VHclYWyA==
+ version "3.0.13"
+ resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.13.tgz#7189a474c46f8d47c7b0da4b987bb45e908bd2d5"
+ integrity sha512-XkD+zwiqXHikFZm4AX/7JSCXA98U5Db4AFd5XUg/+9UNtnH75+Z9KxtpYiJZx36mUDVOwH83pl7yvCer6ewM3w==
spdx-ranges@^2.0.0:
version "2.1.1"
@@ -9085,10 +8389,12 @@ statuses@~1.5.0:
resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c"
integrity sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==
-stream-buffers@2.2.x:
- version "2.2.0"
- resolved "https://registry.yarnpkg.com/stream-buffers/-/stream-buffers-2.2.0.tgz#91d5f5130d1cef96dcfa7f726945188741d09ee4"
- integrity sha512-uyQK/mx5QjHun80FLJTfaWE7JtwfRMKBLkMne6udYOmvH0CawotVa7TfgYHzAnpphn4+TweIx1QKMnRIbipmUg==
+stop-iteration-iterator@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/stop-iteration-iterator/-/stop-iteration-iterator-1.0.0.tgz#6a60be0b4ee757d1ed5254858ec66b10c49285e4"
+ integrity sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==
+ dependencies:
+ internal-slot "^1.0.4"
strict-uri-encode@^2.0.0:
version "2.0.0"
@@ -9108,6 +8414,11 @@ string-length@^4.0.1:
char-regex "^1.0.2"
strip-ansi "^6.0.0"
+string-natural-compare@^3.0.1:
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/string-natural-compare/-/string-natural-compare-3.0.1.tgz#7a42d58474454963759e8e8b7ae63d71c1e7fdf4"
+ integrity sha512-n3sPwynL1nwKi3WJ6AIsClwBMa0zTi54fn2oLU6ndfTSIO05xaznjSf15PcBZU6FNWbmN5Q6cxT4V5hGvB4taw==
+
string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3:
version "4.2.3"
resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010"
@@ -9117,7 +8428,7 @@ string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3:
is-fullwidth-code-point "^3.0.0"
strip-ansi "^6.0.1"
-string.prototype.matchall@^4.0.7:
+string.prototype.matchall@^4.0.8:
version "4.0.8"
resolved "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-4.0.8.tgz#3bf85722021816dcd1bf38bb714915887ca79fd3"
integrity sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==
@@ -9131,7 +8442,16 @@ string.prototype.matchall@^4.0.7:
regexp.prototype.flags "^1.4.3"
side-channel "^1.0.4"
-string.prototype.trimend@^1.0.5:
+string.prototype.trim@^1.2.7:
+ version "1.2.7"
+ resolved "https://registry.yarnpkg.com/string.prototype.trim/-/string.prototype.trim-1.2.7.tgz#a68352740859f6893f14ce3ef1bb3037f7a90533"
+ integrity sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg==
+ dependencies:
+ call-bind "^1.0.2"
+ define-properties "^1.1.4"
+ es-abstract "^1.20.4"
+
+string.prototype.trimend@^1.0.6:
version "1.0.6"
resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz#c4a27fa026d979d79c04f17397f250a462944533"
integrity sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==
@@ -9140,7 +8460,7 @@ string.prototype.trimend@^1.0.5:
define-properties "^1.1.4"
es-abstract "^1.20.4"
-string.prototype.trimstart@^1.0.5:
+string.prototype.trimstart@^1.0.6:
version "1.0.6"
resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz#e90ab66aa8e4007d92ef591bbf3cd422c56bdcf4"
integrity sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==
@@ -9209,6 +8529,11 @@ strip-json-comments@^3.1.0, strip-json-comments@^3.1.1:
resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006"
integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==
+strnum@^1.0.5:
+ version "1.0.5"
+ resolved "https://registry.yarnpkg.com/strnum/-/strnum-1.0.5.tgz#5c4e829fe15ad4ff0d20c3db5ac97b73c9b072db"
+ integrity sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==
+
sudo-prompt@^9.0.0:
version "9.2.1"
resolved "https://registry.yarnpkg.com/sudo-prompt/-/sudo-prompt-9.2.1.tgz#77efb84309c9ca489527a4e749f287e6bdd52afd"
@@ -9235,14 +8560,6 @@ supports-color@^8.0.0:
dependencies:
has-flag "^4.0.0"
-supports-hyperlinks@^2.0.0:
- version "2.3.0"
- resolved "https://registry.yarnpkg.com/supports-hyperlinks/-/supports-hyperlinks-2.3.0.tgz#3943544347c1ff90b15effb03fc14ae45ec10624"
- integrity sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==
- dependencies:
- has-flag "^4.0.0"
- supports-color "^7.0.0"
-
supports-preserve-symlinks-flag@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09"
@@ -9266,11 +8583,6 @@ svgo@^2.8.0:
picocolors "^1.0.0"
stable "^0.1.8"
-symbol-tree@^3.2.4:
- version "3.2.4"
- resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.4.tgz#430637d248ba77e078883951fb9aa0eed7c63fa2"
- integrity sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==
-
temp-dir@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/temp-dir/-/temp-dir-1.0.0.tgz#0a7c0ea26d3a39afa7e0ebea9c1fc0bc4daa011d"
@@ -9295,28 +8607,20 @@ temp@0.8.3:
os-tmpdir "^1.0.0"
rimraf "~2.2.6"
-temp@^0.8.1:
+temp@^0.8.4:
version "0.8.4"
resolved "https://registry.yarnpkg.com/temp/-/temp-0.8.4.tgz#8c97a33a4770072e0a05f919396c7665a7dd59f2"
integrity sha512-s0ZZzd0BzYv5tLSptZooSjK8oj6C+c19p7Vqta9+6NPOf7r+fxq0cJe6/oN4LTC79sy5NY8ucOJNgwsKCSbfqg==
dependencies:
rimraf "~2.6.2"
-terminal-link@^2.0.0:
- version "2.1.1"
- resolved "https://registry.yarnpkg.com/terminal-link/-/terminal-link-2.1.1.tgz#14a64a27ab3c0df933ea546fba55f2d078edc994"
- integrity sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==
- dependencies:
- ansi-escapes "^4.2.1"
- supports-hyperlinks "^2.0.0"
-
-terser@^5.0.0:
- version "5.15.1"
- resolved "https://registry.yarnpkg.com/terser/-/terser-5.15.1.tgz#8561af6e0fd6d839669c73b92bdd5777d870ed6c"
- integrity sha512-K1faMUvpm/FBxjBXud0LWVAGxmvoPbZbfTCYbSgaaYQaIXI3/TdI7a7ZGA73Zrou6Q8Zmz3oeUTsp/dj+ag2Xw==
+terser@^5.0.0, terser@^5.15.0:
+ version "5.17.7"
+ resolved "https://registry.yarnpkg.com/terser/-/terser-5.17.7.tgz#2a8b134826fe179b711969fd9d9a0c2479b2a8c3"
+ integrity sha512-/bi0Zm2C6VAexlGgLlVxA0P2lru/sdLyfCVaRMfKVo9nWxbmz7f/sD8VPybPeSUJaJcwmCJis9pBIhcVcG1QcQ==
dependencies:
- "@jridgewell/source-map" "^0.3.2"
- acorn "^8.5.0"
+ "@jridgewell/source-map" "^0.3.3"
+ acorn "^8.8.2"
commander "^2.20.0"
source-map-support "~0.5.20"
@@ -9344,11 +8648,6 @@ throat@^5.0.0:
resolved "https://registry.yarnpkg.com/throat/-/throat-5.0.0.tgz#c5199235803aad18754a667d659b5e72ce16764b"
integrity sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA==
-throat@^6.0.1:
- version "6.0.1"
- resolved "https://registry.yarnpkg.com/throat/-/throat-6.0.1.tgz#d514fedad95740c12c2d7fc70ea863eb51ade375"
- integrity sha512-8hmiGIJMDlwjg7dlJ4yKGLK8EsYqKgPWbG3b4wjJddKNwc7N7Dpn08Df4szr/sZdMVeOstrdYSsqzX6BYbcB+w==
-
through2@^2.0.0, through2@^2.0.1:
version "2.0.5"
resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.5.tgz#01c1e39eb31d07cb7d03a96a70823260b23132cd"
@@ -9416,23 +8715,6 @@ toidentifier@1.0.1:
resolved "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.1.tgz#3be34321a88a820ed1bd80dfaa33e479fbb8dd35"
integrity sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==
-tough-cookie@^4.0.0:
- version "4.1.2"
- resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-4.1.2.tgz#e53e84b85f24e0b65dd526f46628db6c85f6b874"
- integrity sha512-G9fqXWoYFZgTc2z8Q5zaHy/vJMjm+WV0AkAeHxVCQiEB1b+dGvWzFW6QV07cY5jQ5gRkeid2qIkzkxUnmoQZUQ==
- dependencies:
- psl "^1.1.33"
- punycode "^2.1.1"
- universalify "^0.2.0"
- url-parse "^1.5.3"
-
-tr46@^2.1.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/tr46/-/tr46-2.1.0.tgz#fa87aa81ca5d5941da8cbf1f9b749dc969a4e240"
- integrity sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==
- dependencies:
- punycode "^2.1.1"
-
tr46@~0.0.3:
version "0.0.3"
resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a"
@@ -9448,27 +8730,27 @@ trim-newlines@^3.0.0:
resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-3.0.1.tgz#260a5d962d8b752425b32f3a7db0dcacd176c144"
integrity sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==
-ts-jest@^27.1.3:
- version "27.1.5"
- resolved "https://registry.yarnpkg.com/ts-jest/-/ts-jest-27.1.5.tgz#0ddf1b163fbaae3d5b7504a1e65c914a95cff297"
- integrity sha512-Xv6jBQPoBEvBq/5i2TeSG9tt/nqkbpcurrEG1b+2yfBrcJelOZF9Ml6dmyMh7bcW9JyFbRYpR5rxROSlBLTZHA==
+ts-jest@^29.1.0:
+ version "29.1.0"
+ resolved "https://registry.yarnpkg.com/ts-jest/-/ts-jest-29.1.0.tgz#4a9db4104a49b76d2b368ea775b6c9535c603891"
+ integrity sha512-ZhNr7Z4PcYa+JjMl62ir+zPiNJfXJN6E8hSLnaUKhOgqcn8vb3e537cpkd0FuAfRK3sR1LSqM1MOhliXNgOFPA==
dependencies:
bs-logger "0.x"
fast-json-stable-stringify "2.x"
- jest-util "^27.0.0"
- json5 "2.x"
+ jest-util "^29.0.0"
+ json5 "^2.2.3"
lodash.memoize "4.x"
make-error "1.x"
semver "7.x"
- yargs-parser "20.x"
+ yargs-parser "^21.0.1"
tsconfig-paths@^3.14.1:
- version "3.14.1"
- resolved "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.14.1.tgz#ba0734599e8ea36c862798e920bcf163277b137a"
- integrity sha512-fxDhWnFSLt3VuTwtvJt5fpwxBHg5AdKWMsgcPOOIilyjymcYVZoCQF8fvFRezCNfblEXmi+PcM1eYHeOAgXCOQ==
+ version "3.14.2"
+ resolved "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.14.2.tgz#6e32f1f79412decd261f92d633a9dc1cfa99f088"
+ integrity sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==
dependencies:
"@types/json5" "^0.0.29"
- json5 "^1.0.1"
+ json5 "^1.0.2"
minimist "^1.2.6"
strip-bom "^3.0.0"
@@ -9483,9 +8765,9 @@ tslib@^1.8.1:
integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==
tslib@^2.0.1:
- version "2.4.1"
- resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.4.1.tgz#0d0bfbaac2880b91e22df0768e55be9753a5b17e"
- integrity sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==
+ version "2.5.3"
+ resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.5.3.tgz#24944ba2d990940e6e982c4bea147aba80209913"
+ integrity sha512-mSxlJJwl3BMEQCUNnxXBU9jP4JBktcEGhURcPR6VQVlnP0FdDEsIaz0C35dXNGLyRfrATNofF0F5p2KPxQgB+w==
tsutils@^3.21.0:
version "3.21.0"
@@ -9501,13 +8783,6 @@ type-check@^0.4.0, type-check@~0.4.0:
dependencies:
prelude-ls "^1.2.1"
-type-check@~0.3.2:
- version "0.3.2"
- resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72"
- integrity sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==
- dependencies:
- prelude-ls "~1.1.2"
-
type-detect@4.0.8:
version "4.0.8"
resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.8.tgz#7646fb5f18871cfbb7749e69bd39a6388eb7450c"
@@ -9543,22 +8818,24 @@ type-fest@^0.8.1:
resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d"
integrity sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==
-typedarray-to-buffer@^3.1.5:
- version "3.1.5"
- resolved "https://registry.yarnpkg.com/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz#a97ee7a9ff42691b9f783ff1bc5112fe3fca9080"
- integrity sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==
+typed-array-length@^1.0.4:
+ version "1.0.4"
+ resolved "https://registry.yarnpkg.com/typed-array-length/-/typed-array-length-1.0.4.tgz#89d83785e5c4098bec72e08b319651f0eac9c1bb"
+ integrity sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==
dependencies:
- is-typedarray "^1.0.0"
+ call-bind "^1.0.2"
+ for-each "^0.3.3"
+ is-typed-array "^1.1.9"
typedarray@^0.0.6:
version "0.0.6"
resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777"
integrity sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==
-typescript@4.8.3:
- version "4.8.3"
- resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.8.3.tgz#d59344522c4bc464a65a730ac695007fdb66dd88"
- integrity sha512-goMHfm00nWPa8UvR/CPSvykqf6dVV8x/dp0c5mFTMTIu0u0FlGWRioyy7Nn0PGAdHxpJZnuO/ut+PpQ8UiHAig==
+typescript@4.8.4:
+ version "4.8.4"
+ resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.8.4.tgz#c464abca159669597be5f96b8943500b238e60e6"
+ integrity sha512-QCh+85mCy+h0IGff8r5XWzOVSbBO+KfeYrMQh7NJ58QujwcE22u+NUSmUxqF+un70P9GXKxa2HCNiTTMJknyjQ==
uglify-es@^3.1.9:
version "3.3.9"
@@ -9573,11 +8850,6 @@ uglify-js@^3.1.4:
resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.17.4.tgz#61678cf5fa3f5b7eb789bb345df29afb8257c22c"
integrity sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==
-ultron@1.0.x:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/ultron/-/ultron-1.0.2.tgz#ace116ab557cd197386a4e88f4685378c8b2e4fa"
- integrity sha512-QMpnpVtYaWEeY+MwKDN/UdKlE/LsFZXM5lO1u7GaZzNgmIbGixHEmVMIKT+vqYOALu3m5GYQy9kz4Xu4IVn7Ow==
-
unbox-primitive@^1.0.2:
version "1.0.2"
resolved "https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.0.2.tgz#29032021057d5e6cdbd08c5129c226dff8ed6f9e"
@@ -9601,10 +8873,10 @@ unicode-match-property-ecmascript@^2.0.0:
unicode-canonical-property-names-ecmascript "^2.0.0"
unicode-property-aliases-ecmascript "^2.0.0"
-unicode-match-property-value-ecmascript@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.0.0.tgz#1a01aa57247c14c568b89775a54938788189a714"
- integrity sha512-7Yhkc0Ye+t4PNYzOGKedDhXbYIBe1XEQYQxOPyhcXNMJ0WCABqqj6ckydd6pWRZTHV4GuCPKdBAUiMc60tsKVw==
+unicode-match-property-value-ecmascript@^2.1.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz#cb5fffdcd16a05124f5a4b0bf7c3770208acbbe0"
+ integrity sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==
unicode-property-aliases-ecmascript@^2.0.0:
version "2.1.0"
@@ -9626,11 +8898,6 @@ universalify@^0.1.0:
resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66"
integrity sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==
-universalify@^0.2.0:
- version "0.2.0"
- resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.2.0.tgz#6451760566fa857534745ab1dde952d1b1761be0"
- integrity sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==
-
unpipe@~1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec"
@@ -9644,10 +8911,10 @@ unset-value@^1.0.0:
has-value "^0.3.1"
isobject "^3.0.0"
-update-browserslist-db@^1.0.9:
- version "1.0.10"
- resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.10.tgz#0f54b876545726f17d00cd9a2561e6dade943ff3"
- integrity sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ==
+update-browserslist-db@^1.0.11:
+ version "1.0.11"
+ resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz#9a2a641ad2907ae7b3616506f4b977851db5b940"
+ integrity sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==
dependencies:
escalade "^3.1.1"
picocolors "^1.0.0"
@@ -9664,27 +8931,12 @@ urix@^0.1.0:
resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72"
integrity sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg==
-url-parse@^1.5.3:
- version "1.5.10"
- resolved "https://registry.yarnpkg.com/url-parse/-/url-parse-1.5.10.tgz#9d3c2f736c1d75dd3bd2be507dcc111f1e2ea9c1"
- integrity sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==
- dependencies:
- querystringify "^2.1.1"
- requires-port "^1.0.0"
-
use-latest-callback@^0.1.5:
- version "0.1.5"
- resolved "https://registry.yarnpkg.com/use-latest-callback/-/use-latest-callback-0.1.5.tgz#a4a836c08fa72f6608730b5b8f4bbd9c57c04f51"
- integrity sha512-HtHatS2U4/h32NlkhupDsPlrbiD27gSH5swBdtXbCAlc6pfOFzaj0FehW/FO12rx8j2Vy4/lJScCiJyM01E+bQ==
-
-use-subscription@^1.0.0:
- version "1.8.0"
- resolved "https://registry.yarnpkg.com/use-subscription/-/use-subscription-1.8.0.tgz#f118938c29d263c2bce12fc5585d3fe694d4dbce"
- integrity sha512-LISuG0/TmmoDoCRmV5XAqYkd3UCBNM0ML3gGBndze65WITcsExCD3DTvXXTLyNcOC0heFQZzluW88bN/oC1DQQ==
- dependencies:
- use-sync-external-store "^1.2.0"
+ version "0.1.6"
+ resolved "https://registry.yarnpkg.com/use-latest-callback/-/use-latest-callback-0.1.6.tgz#3fa6e7babbb5f9bfa24b5094b22939e1e92ebcf6"
+ integrity sha512-VO/P91A/PmKH9bcN9a7O3duSuxe6M14ZoYXgA6a8dab8doWNdhiIHzEkX/jFeTTRBsX0Ubk6nG4q2NIjNsj+bg==
-use-sync-external-store@^1.2.0:
+use-sync-external-store@^1.0.0:
version "1.2.0"
resolved "https://registry.yarnpkg.com/use-sync-external-store/-/use-sync-external-store-1.2.0.tgz#7dbefd6ef3fe4e767a0cf5d7287aacfb5846928a"
integrity sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==
@@ -9714,15 +8966,6 @@ uuid@^3.3.2:
resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.4.0.tgz#b23e4358afa8a202fe7a100af1f5f883f02007ee"
integrity sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==
-v8-to-istanbul@^8.1.0:
- version "8.1.1"
- resolved "https://registry.yarnpkg.com/v8-to-istanbul/-/v8-to-istanbul-8.1.1.tgz#77b752fd3975e31bbcef938f85e9bd1c7a8d60ed"
- integrity sha512-FGtKtv3xIpR6BYhvgH8MI/y78oT7d8Au3ww4QIxymrCtZEh5b8gCw2siywE+puhEmuWKDtmfrvF5UlB298ut3w==
- dependencies:
- "@types/istanbul-lib-coverage" "^2.0.1"
- convert-source-map "^1.6.0"
- source-map "^0.7.3"
-
v8-to-istanbul@^9.0.1:
version "9.1.0"
resolved "https://registry.yarnpkg.com/v8-to-istanbul/-/v8-to-istanbul-9.1.0.tgz#1b83ed4e397f58c85c266a570fc2558b5feb9265"
@@ -9750,21 +8993,7 @@ vlq@^1.0.0:
resolved "https://registry.yarnpkg.com/vlq/-/vlq-1.0.1.tgz#c003f6e7c0b4c1edd623fd6ee50bbc0d6a1de468"
integrity sha512-gQpnTgkubC6hQgdIcRdYGDSDc+SaujOdyesZQMv6JlfQee/9Mp0Qhnys6WxDWvQnL5WZdT7o2Ul187aSt0Rq+w==
-w3c-hr-time@^1.0.2:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz#0a89cdf5cc15822df9c360543676963e0cc308cd"
- integrity sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==
- dependencies:
- browser-process-hrtime "^1.0.0"
-
-w3c-xmlserializer@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/w3c-xmlserializer/-/w3c-xmlserializer-2.0.0.tgz#3e7104a05b75146cc60f564380b7f683acf1020a"
- integrity sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==
- dependencies:
- xml-name-validator "^3.0.0"
-
-walker@^1.0.7, walker@^1.0.8, walker@~1.0.5:
+walker@^1.0.7, walker@^1.0.8:
version "1.0.8"
resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.8.tgz#bd498db477afe573dc04185f011d3ab8a8d7653f"
integrity sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==
@@ -9788,33 +9017,11 @@ webidl-conversions@^3.0.0:
resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871"
integrity sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==
-webidl-conversions@^5.0.0:
- version "5.0.0"
- resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-5.0.0.tgz#ae59c8a00b121543a2acc65c0434f57b0fc11aff"
- integrity sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==
-
-webidl-conversions@^6.1.0:
- version "6.1.0"
- resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-6.1.0.tgz#9111b4d7ea80acd40f5270d666621afa78b69514"
- integrity sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==
-
-whatwg-encoding@^1.0.5:
- version "1.0.5"
- resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz#5abacf777c32166a51d085d6b4f3e7d27113ddb0"
- integrity sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==
- dependencies:
- iconv-lite "0.4.24"
-
whatwg-fetch@^3.0.0:
version "3.6.2"
resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-3.6.2.tgz#dced24f37f2624ed0281725d51d0e2e3fe677f8c"
integrity sha512-bJlen0FcuU/0EMLrdbJ7zOnW6ITZLrZMIarMUVmdKtsGvZna8vxKYaexICWPfZ8qwf9fzNq+UEIZrnSaApt6RA==
-whatwg-mimetype@^2.3.0:
- version "2.3.0"
- resolved "https://registry.yarnpkg.com/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz#3d4b1e0312d2079879f826aff18dbeeca5960fbf"
- integrity sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==
-
whatwg-url@^5.0.0:
version "5.0.0"
resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-5.0.0.tgz#966454e8765462e37644d3626f6742ce8b70965d"
@@ -9823,15 +9030,6 @@ whatwg-url@^5.0.0:
tr46 "~0.0.3"
webidl-conversions "^3.0.0"
-whatwg-url@^8.0.0, whatwg-url@^8.5.0:
- version "8.7.0"
- resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-8.7.0.tgz#656a78e510ff8f3937bc0bcbe9f5c0ac35941b77"
- integrity sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==
- dependencies:
- lodash "^4.7.0"
- tr46 "^2.1.0"
- webidl-conversions "^6.1.0"
-
which-boxed-primitive@^1.0.2:
version "1.0.2"
resolved "https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6"
@@ -9843,10 +9041,32 @@ which-boxed-primitive@^1.0.2:
is-string "^1.0.5"
is-symbol "^1.0.3"
+which-collection@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/which-collection/-/which-collection-1.0.1.tgz#70eab71ebbbd2aefaf32f917082fc62cdcb70906"
+ integrity sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==
+ dependencies:
+ is-map "^2.0.1"
+ is-set "^2.0.1"
+ is-weakmap "^2.0.1"
+ is-weakset "^2.0.1"
+
which-module@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a"
- integrity sha512-B+enWhmw6cjfVC7kS8Pj9pCrKSc5txArRyaYGe088shv/FGWH+0Rjx/xPgtsWfsUtS27FkP697E4DDhgrgoc0Q==
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.1.tgz#776b1fe35d90aebe99e8ac15eb24093389a4a409"
+ integrity sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==
+
+which-typed-array@^1.1.9:
+ version "1.1.9"
+ resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.9.tgz#307cf898025848cf995e795e8423c7f337efbde6"
+ integrity sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==
+ dependencies:
+ available-typed-arrays "^1.0.5"
+ call-bind "^1.0.2"
+ for-each "^0.3.3"
+ gopd "^1.0.1"
+ has-tostringtag "^1.0.0"
+ is-typed-array "^1.1.10"
which@^1.2.9:
version "1.3.1"
@@ -9862,7 +9082,7 @@ which@^2.0.1:
dependencies:
isexe "^2.0.0"
-word-wrap@^1.2.3, word-wrap@~1.2.3:
+word-wrap@^1.2.3:
version "1.2.3"
resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c"
integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==
@@ -9904,16 +9124,6 @@ write-file-atomic@^2.3.0:
imurmurhash "^0.1.4"
signal-exit "^3.0.2"
-write-file-atomic@^3.0.0:
- version "3.0.3"
- resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-3.0.3.tgz#56bd5c5a5c70481cd19c571bd39ab965a5de56e8"
- integrity sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==
- dependencies:
- imurmurhash "^0.1.4"
- is-typedarray "^1.0.0"
- signal-exit "^3.0.2"
- typedarray-to-buffer "^3.1.5"
-
write-file-atomic@^4.0.2:
version "4.0.2"
resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-4.0.2.tgz#a9df01ae5b77858a027fd2e80768ee433555fcfd"
@@ -9922,56 +9132,18 @@ write-file-atomic@^4.0.2:
imurmurhash "^0.1.4"
signal-exit "^3.0.7"
-ws@^1.1.0, ws@^1.1.5:
- version "1.1.5"
- resolved "https://registry.yarnpkg.com/ws/-/ws-1.1.5.tgz#cbd9e6e75e09fc5d2c90015f21f0c40875e0dd51"
- integrity sha512-o3KqipXNUdS7wpQzBHSe180lBGO60SoK0yVo3CYJgb2MkobuWuBX6dhkYP5ORCLd55y+SaflMOV5fqAB53ux4w==
- dependencies:
- options ">=0.0.5"
- ultron "1.0.x"
-
-ws@^6.1.4:
+ws@^6.2.2:
version "6.2.2"
resolved "https://registry.yarnpkg.com/ws/-/ws-6.2.2.tgz#dd5cdbd57a9979916097652d78f1cc5faea0c32e"
integrity sha512-zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw==
dependencies:
async-limiter "~1.0.0"
-ws@^7, ws@^7.4.6:
+ws@^7, ws@^7.5.1:
version "7.5.9"
resolved "https://registry.yarnpkg.com/ws/-/ws-7.5.9.tgz#54fa7db29f4c7cec68b1ddd3a89de099942bb591"
integrity sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==
-xcode@^2.0.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/xcode/-/xcode-2.1.0.tgz#bab64a7e954bb50ca8d19da7e09531c65a43ecfe"
- integrity sha512-uCrmPITrqTEzhn0TtT57fJaNaw8YJs1aCzs+P/QqxsDbvPZSv7XMPPwXrKvHtD6pLjBM/NaVwraWJm8q83Y4iQ==
- dependencies:
- simple-plist "^1.0.0"
- uuid "^3.3.2"
-
-xml-name-validator@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-3.0.0.tgz#6ae73e06de4d8c6e47f9fb181f78d648ad457c6a"
- integrity sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==
-
-xmlbuilder@^15.1.1:
- version "15.1.1"
- resolved "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-15.1.1.tgz#9dcdce49eea66d8d10b42cae94a79c3c8d0c2ec5"
- integrity sha512-yMqGBqtXyeN1e3TGYvgNgDVZ3j84W4cwkOXQswghol6APgZWaff9lnbvN7MHYJOiXsvGPXtjTYJEiC9J2wv9Eg==
-
-xmlchars@^2.2.0:
- version "2.2.0"
- resolved "https://registry.yarnpkg.com/xmlchars/-/xmlchars-2.2.0.tgz#060fe1bcb7f9c76fe2a17db86a9bc3ab894210cb"
- integrity sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==
-
-xmldoc@^1.1.2:
- version "1.2.0"
- resolved "https://registry.yarnpkg.com/xmldoc/-/xmldoc-1.2.0.tgz#7554371bfd8c138287cff01841ae4566d26e5541"
- integrity sha512-2eN8QhjBsMW2uVj7JHLHkMytpvGHLHxKXBy4J3fAT/HujsEtM6yU84iGjpESYGHg6XwK0Vu4l+KgqQ2dv2cCqg==
- dependencies:
- sax "^1.2.4"
-
xtend@~4.0.1:
version "4.0.2"
resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54"
@@ -10002,11 +9174,6 @@ yaml@^1.10.0:
resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.2.tgz#2301c5ffbf12b467de8da2333a459e29e7920e4b"
integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==
-yargs-parser@20.x, yargs-parser@^20.2.2, yargs-parser@^20.2.3:
- version "20.2.9"
- resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.9.tgz#2eb7dc3b0289718fc295f362753845c41a0c94ee"
- integrity sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==
-
yargs-parser@^18.1.2:
version "18.1.3"
resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-18.1.3.tgz#be68c4975c6b2abf469236b0c870362fab09a7b0"
@@ -10015,12 +9182,17 @@ yargs-parser@^18.1.2:
camelcase "^5.0.0"
decamelize "^1.2.0"
-yargs-parser@^21.1.1:
+yargs-parser@^20.2.2, yargs-parser@^20.2.3:
+ version "20.2.9"
+ resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.9.tgz#2eb7dc3b0289718fc295f362753845c41a0c94ee"
+ integrity sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==
+
+yargs-parser@^21.0.1, yargs-parser@^21.1.1:
version "21.1.1"
resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-21.1.1.tgz#9096bceebf990d21bb31fa9516e0ede294a77d35"
integrity sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==
-yargs@^15.1.0, yargs@^15.3.1:
+yargs@^15.1.0:
version "15.4.1"
resolved "https://registry.yarnpkg.com/yargs/-/yargs-15.4.1.tgz#0d87a16de01aee9d8bec2bfbf74f67851730f4f8"
integrity sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==
@@ -10050,7 +9222,7 @@ yargs@^16.2.0:
y18n "^5.0.5"
yargs-parser "^20.2.2"
-yargs@^17.3.1:
+yargs@^17.3.1, yargs@^17.5.1:
version "17.7.2"
resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.7.2.tgz#991df39aca675a192b816e1e0363f9d75d2aa269"
integrity sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==