diff --git a/pkg/apiserver/user/auth.go b/pkg/apiserver/user/auth.go index 002c6d68e0..4b05ef3200 100644 --- a/pkg/apiserver/user/auth.go +++ b/pkg/apiserver/user/auth.go @@ -3,7 +3,6 @@ package user import ( - "crypto/rsa" "encoding/base64" "encoding/json" "errors" @@ -36,9 +35,6 @@ type AuthService struct { middleware *jwt.GinJWTMiddleware authenticators map[utils.AuthType]Authenticator - - RsaPublicKey *rsa.PublicKey - RsaPrivateKey *rsa.PrivateKey } type AuthenticateForm struct { @@ -94,17 +90,10 @@ func NewAuthService(featureFlags *featureflag.Registry) *AuthService { secret = cryptopasta.NewEncryptionKey() } - privateKey, publicKey, err := GenerateKey() - if err != nil { - log.Fatal("Failed to generate rsa key pairs", zap.Error(err)) - } - service := &AuthService{ FeatureFlagNonRootLogin: featureFlags.Register("nonRootLogin", ">= 5.3.0"), middleware: nil, authenticators: map[utils.AuthType]Authenticator{}, - RsaPrivateKey: privateKey, - RsaPublicKey: publicKey, } middleware, err := jwt.New(&jwt.GinJWTMiddleware{ @@ -122,16 +111,6 @@ func NewAuthService(featureFlags *featureflag.Registry) *AuthService { if err != nil { return nil, errorx.Decorate(err, "authenticate failed") } - // TODO: uncomment it after thinking clearly - // if form.Type == 0 { - // // generate new rsa key pair for each sql auth login - // privateKey, publicKey, err := GenerateKey() - // // if generate successfully, replace the old key pair - // if err == nil { - // service.RsaPrivateKey = privateKey - // service.RsaPublicKey = publicKey - // } - // } return u, nil }, PayloadFunc: func(data interface{}) jwt.MapClaims { @@ -299,8 +278,7 @@ func (s *AuthService) RegisterAuthenticator(typeID utils.AuthType, a Authenticat } type GetLoginInfoResponse struct { - SupportedAuthTypes []int `json:"supported_auth_types"` - SQLAuthPublicKey string `json:"sql_auth_public_key"` + SupportedAuthTypes []int `json:"supported_auth_types"` } // @ID userGetLoginInfo @@ -320,16 +298,8 @@ func (s *AuthService) GetLoginInfoHandler(c *gin.Context) { } } sort.Ints(supportedAuth) - // both work - // publicKeyStr, err := ExportPublicKeyAsString(s.rsaPublicKey) - publicKeyStr, err := DumpPublicKeyBase64(s.RsaPublicKey) - if err != nil { - rest.Error(c, err) - return - } resp := GetLoginInfoResponse{ SupportedAuthTypes: supportedAuth, - SQLAuthPublicKey: publicKeyStr, } c.JSON(http.StatusOK, resp) } diff --git a/pkg/apiserver/user/rsa_utils.go b/pkg/apiserver/user/rsa_utils.go deleted file mode 100644 index a1bc65791f..0000000000 --- a/pkg/apiserver/user/rsa_utils.go +++ /dev/null @@ -1,108 +0,0 @@ -// Copyright 2023 PingCAP, Inc. Licensed under Apache-2.0. - -package user - -import ( - "crypto/rand" - "crypto/rsa" - "crypto/x509" - "encoding/base64" - "encoding/pem" -) - -// Generate RSA private/public key. -func GenerateKey() (*rsa.PrivateKey, *rsa.PublicKey, error) { - privateKey, err := rsa.GenerateKey(rand.Reader, 2048) - if err != nil { - return nil, nil, err - } - - publicKey := &privateKey.PublicKey - return privateKey, publicKey, nil -} - -// Export public key to string -// Output format: -// -----BEGIN PUBLIC KEY----- -// MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA67F1RPMUO4SjARRe4UfX -// J7ZOCbcysna0jx2Av14KteGo6AWFHhuIxZwgp83GDqFv0Dhc/be7n+9V5vfq0Ob4 -// fUtdjBio5ciF4pcqzVGbddfJ0R2e52DF6TI2pDgUFdN+1bmGDwZOCyrwBvVh0wW2 -// jAI+QfQyRimZOMqFeX97XjW32vGk7cxNYMys9ExyJcfzfLanbzOwp6kdNbPXnYtU -// Y2nmp+evlPKrRzBPnmO0bpZhYHklrRxLo/u/mThysMEttLkgzCare+JPQyb3z3Si -// Q2E7WG4yz6+6L/wB4etHDfRljMOtqEwv9z4inUfh5716Mg23Div/AbwqGPiKPZf7 -// cQIDAQAB -// -----END PUBLIC KEY-----. -func ExportPublicKeyAsString(publicKey *rsa.PublicKey) (string, error) { - publicKeyBytes, err := x509.MarshalPKIXPublicKey(publicKey) - if err != nil { - return "", err - } - - publicKeyPEM := &pem.Block{ - Type: "PUBLIC KEY", - Bytes: publicKeyBytes, - } - - publicKeyString := string(pem.EncodeToMemory(publicKeyPEM)) - - return publicKeyString, nil -} - -// Dump public key to base64 string -// 1. Have no header/tailer line -// 2. Key content is merged into one-line format -// -// The output is: -// -// MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA2y8mEdCRE8siiI7udpge......2QIDAQAB -func DumpPublicKeyBase64(publicKey *rsa.PublicKey) (string, error) { - keyBytes, err := x509.MarshalPKIXPublicKey(publicKey) - if err != nil { - return "", err - } - - keyBase64 := base64.StdEncoding.EncodeToString(keyBytes) - return keyBase64, nil -} - -// Dump private key to base64 string -// 1. Have no header/tailer line -// 2. Key content is merged into one-line format -// -// The output is: -// -// MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA2y8mEdCRE8siiI7udpge......2QIDAQAB -func DumpPrivateKeyBase64(privatekey *rsa.PrivateKey) (string, error) { - keyBytes := x509.MarshalPKCS1PrivateKey(privatekey) - - keyBase64 := base64.StdEncoding.EncodeToString(keyBytes) - return keyBase64, nil -} - -// Encrypt by public key. -func Encrypt(plainText string, publicKey *rsa.PublicKey) (string, error) { - encryptedText, err := rsa.EncryptPKCS1v15(rand.Reader, publicKey, []byte(plainText)) - if err != nil { - return "", err - } - - // the encryptedText is encoded by base64 in the frontend by jsEncrypt - encodedText := base64.StdEncoding.EncodeToString(encryptedText) - return encodedText, nil -} - -// Decrypt by private key. -func Decrypt(cipherText string, privateKey *rsa.PrivateKey) (string, error) { - // the cipherText is encoded by base64 in the frontend by jsEncrypt - decodedText, err := base64.StdEncoding.DecodeString(cipherText) - if err != nil { - return "", err - } - - decryptedText, err := rsa.DecryptPKCS1v15(rand.Reader, privateKey, decodedText) - if err != nil { - return "", err - } - - return string(decryptedText), nil -} diff --git a/pkg/apiserver/user/sqlauth/sqlauth.go b/pkg/apiserver/user/sqlauth/sqlauth.go old mode 100644 new mode 100755 index a93394f4c6..f90a05b808 --- a/pkg/apiserver/user/sqlauth/sqlauth.go +++ b/pkg/apiserver/user/sqlauth/sqlauth.go @@ -15,8 +15,7 @@ const typeID utils.AuthType = 0 type Authenticator struct { user.BaseAuthenticator - tidbClient *tidb.Client - authService *user.AuthService + tidbClient *tidb.Client } func NewAuthenticator(tidbClient *tidb.Client) *Authenticator { @@ -27,7 +26,6 @@ func NewAuthenticator(tidbClient *tidb.Client) *Authenticator { func registerAuthenticator(a *Authenticator, authService *user.AuthService) { authService.RegisterAuthenticator(typeID, a) - a.authService = authService } var Module = fx.Options( @@ -36,12 +34,7 @@ var Module = fx.Options( ) func (a *Authenticator) Authenticate(f user.AuthenticateForm) (*utils.SessionUser, error) { - plainPwd, err := user.Decrypt(f.Password, a.authService.RsaPrivateKey) - if err != nil { - return nil, user.ErrSignInOther.WrapWithNoMessage(err) - } - - writeable, err := user.VerifySQLUser(a.tidbClient, f.Username, plainPwd) + writeable, err := user.VerifySQLUser(a.tidbClient, f.Username, f.Password) if err != nil { if errorx.Cast(err) == nil { return nil, user.ErrSignInOther.WrapWithNoMessage(err) @@ -59,7 +52,7 @@ func (a *Authenticator) Authenticate(f user.AuthenticateForm) (*utils.SessionUse Version: utils.SessionVersion, HasTiDBAuth: true, TiDBUsername: f.Username, - TiDBPassword: plainPwd, + TiDBPassword: f.Password, DisplayName: f.Username, IsShareable: true, IsWriteable: writeable, diff --git a/release-version b/release-version index 5b9134d514..9245e026a4 100644 --- a/release-version +++ b/release-version @@ -1,3 +1,3 @@ # This file specifies the TiDB Dashboard internal version, which will be printed in `--version` # and UI. In release branch, changing this file will result in publishing a new version and tag. -2023.09.21.1 +2023.11.02.1 diff --git a/tests/integration/info/info_test.go b/tests/integration/info/info_test.go index 6f9bc1a6dc..6c7c8941bd 100644 --- a/tests/integration/info/info_test.go +++ b/tests/integration/info/info_test.go @@ -96,8 +96,7 @@ func (s *testInfoSuite) getTokenBySQLRoot() string { param := make(map[string]interface{}) param["type"] = 0 param["username"] = "root" - pwd, _ := user.Encrypt("", s.authService.RsaPublicKey) - param["password"] = pwd + param["password"] = "" jsonByte, _ := json.Marshal(param) req, _ := http.NewRequest(http.MethodPost, "/user/login", bytes.NewReader(jsonByte)) diff --git a/tests/integration/user/user_test.go b/tests/integration/user/user_test.go index 2b3734b673..89da258767 100644 --- a/tests/integration/user/user_test.go +++ b/tests/integration/user/user_test.go @@ -93,8 +93,7 @@ func (s *testUserSuite) TestLoginWithNotExistUser() { param := make(map[string]interface{}) param["type"] = 0 param["username"] = "not_exist" - pwd, _ := user.Encrypt("aaa", s.authService.RsaPublicKey) - param["password"] = pwd + param["password"] = "aaa" jsonByte, _ := json.Marshal(param) req, _ := http.NewRequest(http.MethodPost, "/user/login", bytes.NewReader(jsonByte)) @@ -110,8 +109,7 @@ func (s *testUserSuite) TestLoginWithWrongPassword() { param := make(map[string]interface{}) param["type"] = 0 param["username"] = "dashboardAdmin" - pwd, _ := user.Encrypt("123456789", s.authService.RsaPublicKey) - param["password"] = pwd + param["password"] = "123456789" jsonByte, _ := json.Marshal(param) req, _ := http.NewRequest(http.MethodPost, "/user/login", bytes.NewReader(jsonByte)) @@ -127,8 +125,7 @@ func (s *testUserSuite) TestLoginWithInsufficientPrivs() { param := make(map[string]interface{}) param["type"] = 0 param["username"] = "dashboardAdmin-2" - pwd, _ := user.Encrypt("12345678", s.authService.RsaPublicKey) - param["password"] = pwd + param["password"] = "12345678" jsonByte, _ := json.Marshal(param) req, _ := http.NewRequest(http.MethodPost, "/user/login", bytes.NewReader(jsonByte)) @@ -145,8 +142,7 @@ func (s *testUserSuite) TestLoginWithSufficientPrivs() { param := make(map[string]interface{}) param["type"] = 0 param["username"] = "dashboardAdmin" - pwd, _ := user.Encrypt("12345678", s.authService.RsaPublicKey) - param["password"] = pwd + param["password"] = "12345678" jsonByte, _ := json.Marshal(param) req, _ := http.NewRequest(http.MethodPost, "/user/login", bytes.NewReader(jsonByte)) @@ -181,8 +177,7 @@ func (s *testUserSuite) TestLoginWithWrongPasswordForRoot() { param := make(map[string]interface{}) param["type"] = 0 param["username"] = "root" - pwd, _ := user.Encrypt("aaa", s.authService.RsaPublicKey) - param["password"] = pwd + param["password"] = "aaa" jsonByte, _ := json.Marshal(param) req, _ := http.NewRequest(http.MethodPost, "/user/login", bytes.NewReader(jsonByte)) @@ -198,8 +193,7 @@ func (s *testUserSuite) TestLoginWithCorrectPasswordForRoot() { param := make(map[string]interface{}) param["type"] = 0 param["username"] = "root" - pwd, _ := user.Encrypt("", s.authService.RsaPublicKey) - param["password"] = pwd + param["password"] = "" jsonByte, _ := json.Marshal(param) req, _ := http.NewRequest(http.MethodPost, "/user/login", bytes.NewReader(jsonByte)) @@ -216,33 +210,6 @@ func (s *testUserSuite) TestLoginWithCorrectPasswordForRoot() { s.Require().Nil(err) } -// TODO: uncomment it after thinking clearly -// func (s *testUserSuite) TestLoginWithSamePayloadTwice() { -// param := make(map[string]interface{}) -// param["type"] = 0 -// param["username"] = "root" -// pwd, _ := user.Encrypt("", s.authService.RsaPublicKey) -// param["password"] = pwd - -// // success at the first time -// jsonByte, _ := json.Marshal(param) -// req, _ := http.NewRequest(http.MethodPost, "/user/login", bytes.NewReader(jsonByte)) -// c, w := util.TestReqWithHandlers(req, s.authService.LoginHandler) - -// s.Require().Len(c.Errors, 0) -// s.Require().Equal(200, c.Writer.Status()) -// s.Require().Equal(200, w.Code) - -// // fail at the second time -// req, _ = http.NewRequest(http.MethodPost, "/user/login", bytes.NewReader(jsonByte)) -// c, w = util.TestReqWithHandlers(req, s.authService.LoginHandler) - -// s.Require().Contains(c.Errors.Last().Err.Error(), "authenticate failed") -// s.Require().Contains(c.Errors.Last().Err.Error(), "crypto/rsa: decryption error") -// s.Require().Equal(401, c.Writer.Status()) -// s.Require().Equal(401, w.Code) -// } - func (s *testUserSuite) TestLoginInfo() { req, _ := http.NewRequest(http.MethodGet, "/user/login_info", nil) c, w := util.TestReqWithHandlers(req, s.authService.GetLoginInfoHandler) diff --git a/ui/packages/tidb-dashboard-client/src/client/api/models/user-get-login-info-response.ts b/ui/packages/tidb-dashboard-client/src/client/api/models/user-get-login-info-response.ts index 2a458165a9..58a2d43cdd 100644 --- a/ui/packages/tidb-dashboard-client/src/client/api/models/user-get-login-info-response.ts +++ b/ui/packages/tidb-dashboard-client/src/client/api/models/user-get-login-info-response.ts @@ -20,12 +20,6 @@ * @interface UserGetLoginInfoResponse */ export interface UserGetLoginInfoResponse { - /** - * - * @type {string} - * @memberof UserGetLoginInfoResponse - */ - 'sql_auth_public_key'?: string; /** * * @type {Array} diff --git a/ui/packages/tidb-dashboard-client/swagger/spec.json b/ui/packages/tidb-dashboard-client/swagger/spec.json index 9b8d95abbc..2e988d6a54 100644 --- a/ui/packages/tidb-dashboard-client/swagger/spec.json +++ b/ui/packages/tidb-dashboard-client/swagger/spec.json @@ -5776,9 +5776,6 @@ "user.GetLoginInfoResponse": { "type": "object", "properties": { - "sql_auth_public_key": { - "type": "string" - }, "supported_auth_types": { "type": "array", "items": { diff --git a/ui/packages/tidb-dashboard-for-op/package.json b/ui/packages/tidb-dashboard-for-op/package.json index ea0fb85f5a..628b9782d9 100644 --- a/ui/packages/tidb-dashboard-for-op/package.json +++ b/ui/packages/tidb-dashboard-for-op/package.json @@ -29,7 +29,6 @@ "compare-versions": "^5.0.1", "eventemitter2": "^6.4.5", "i18next": "^23.2.9", - "jsencrypt": "^3.3.2", "nprogress": "^0.2.0", "rc-animate": "^3.1.0", "react": "^17.0.2", diff --git a/ui/packages/tidb-dashboard-for-op/src/dashboardApp/layout/signin/index.tsx b/ui/packages/tidb-dashboard-for-op/src/dashboardApp/layout/signin/index.tsx index b7df5c2f77..93a2a065e6 100755 --- a/ui/packages/tidb-dashboard-for-op/src/dashboardApp/layout/signin/index.tsx +++ b/ui/packages/tidb-dashboard-for-op/src/dashboardApp/layout/signin/index.tsx @@ -23,7 +23,6 @@ import { useTranslation } from 'react-i18next' import { useMount } from 'react-use' import Flexbox from '@g07cha/flexbox-react' import { useMemoizedFn } from 'ahooks' -import JSEncrypt from 'jsencrypt' import { // distro @@ -229,7 +228,7 @@ function useSignInSubmit( const LAST_LOGIN_USERNAME_KEY = 'dashboard_last_login_username' -function TiDBSignInForm({ successRoute, onClickAlternative, publicKey }) { +function TiDBSignInForm({ successRoute, onClickAlternative }) { const supportNonRootLogin = useIsFeatureSupport('nonRootLogin') const { t } = useTranslation() @@ -239,29 +238,11 @@ function TiDBSignInForm({ successRoute, onClickAlternative, publicKey }) { const { handleSubmit, loading, errorMsg, clearErrorMsg } = useSignInSubmit( successRoute, - (form) => { - let password = form.password ?? '' - if (!!publicKey) { - const jsEncrypt = new JSEncrypt() - if (publicKey.startsWith('-----BEGIN PUBLIC KEY-----')) { - // if publicKey is generated by `ExportPublicKeyAsString(s.rsaPublicKey)`, it has header and footer, so we use it directly - jsEncrypt.setPublicKey(publicKey) - } else { - // if publicKey is generated by `DumpPublicKeyBase64(s.rsaPublicKey)`, it has no header and footer, so we need to add them - jsEncrypt.setPublicKey( - '-----BEGIN PUBLIC KEY-----' + - publicKey + - '-----END PUBLIC KEY-----' - ) - } - password = jsEncrypt.encrypt(password) - } - return { - username: form.username, - password, - type: auth.AuthTypes.SQLUser - } - }, + (form) => ({ + username: form.username, + password: form.password, + type: auth.AuthTypes.SQLUser + }), (form) => { localStorage.setItem(LAST_LOGIN_USERNAME_KEY, form.username) }, @@ -468,7 +449,6 @@ function App({ registry }) { const [supportedAuthTypes, setSupportedAuthTypes] = useState>([ 0 ]) - const [publicKey, setPublicKey] = useState('') const handleClickAlternative = useCallback(() => { setAlternativeVisible(true) @@ -499,9 +479,6 @@ function App({ registry }) { setFormType(DisplayFormType.tidbCredential) } setSupportedAuthTypes(loginInfo.supported_auth_types ?? []) - if (!!loginInfo.sql_auth_public_key) { - setPublicKey(loginInfo.sql_auth_public_key) - } } catch (e) { if ((e as any).response?.status === 404) { setFormType(DisplayFormType.tidbCredential) @@ -540,7 +517,6 @@ function App({ registry }) { )} {formType === DisplayFormType.shareCode && ( diff --git a/ui/packages/tidb-dashboard-lib/src/client/models.ts b/ui/packages/tidb-dashboard-lib/src/client/models.ts index a24848bc82..20f9f39ee1 100644 --- a/ui/packages/tidb-dashboard-lib/src/client/models.ts +++ b/ui/packages/tidb-dashboard-lib/src/client/models.ts @@ -3809,12 +3809,6 @@ export interface UserAuthenticateForm { * @interface UserGetLoginInfoResponse */ export interface UserGetLoginInfoResponse { - /** - * - * @type {string} - * @memberof UserGetLoginInfoResponse - */ - 'sql_auth_public_key'?: string; /** * * @type {Array} diff --git a/ui/pnpm-lock.yaml b/ui/pnpm-lock.yaml index 701a248928..94a8b5d24c 100644 --- a/ui/pnpm-lock.yaml +++ b/ui/pnpm-lock.yaml @@ -19,7 +19,7 @@ importers: version: 8.20.0 eslint-config-react-app: specifier: ^7.0.0 - version: 7.0.1(@babel/plugin-syntax-flow@7.22.5)(@babel/plugin-transform-react-jsx@7.18.6)(eslint@8.20.0)(typescript@4.7.4) + version: 7.0.1(@babel/plugin-syntax-flow@7.18.6)(@babel/plugin-transform-react-jsx@7.18.6)(eslint@8.20.0)(typescript@4.7.4) husky: specifier: ^8.0.0 version: 8.0.1 @@ -154,13 +154,13 @@ importers: devDependencies: '@baurine/esbuild-plugin-babel': specifier: ^0.3.0 - version: 0.3.0(@babel/core@7.22.10) + version: 0.3.0(@babel/core@7.18.9) '@baurine/esbuild-plugin-postcss3': specifier: ^0.3.3 version: 0.3.3(less@4.1.3)(postcss@8.4.14)(sass@1.53.0)(stylus@0.58.1) '@cypress/code-coverage': specifier: ^3.9.12 - version: 3.10.0(@babel/core@7.22.10)(@babel/preset-env@7.18.9)(babel-loader@8.3.0)(cypress@8.5.0)(webpack@5.88.2) + version: 3.10.0(@babel/core@7.18.9)(@babel/preset-env@7.18.9)(babel-loader@8.3.0)(cypress@8.5.0)(webpack@5.88.2) '@cypress/skip-test': specifier: ^2.6.1 version: 2.6.1 @@ -457,9 +457,6 @@ importers: i18next: specifier: ^23.2.9 version: 23.2.9 - jsencrypt: - specifier: ^3.3.2 - version: 3.3.2 nprogress: specifier: ^0.2.0 version: 0.2.0 @@ -496,13 +493,13 @@ importers: devDependencies: '@baurine/esbuild-plugin-babel': specifier: ^0.3.0 - version: 0.3.0(@babel/core@7.22.10) + version: 0.3.0(@babel/core@7.18.9) '@baurine/esbuild-plugin-postcss3': specifier: ^0.3.3 version: 0.3.3(less@4.1.3)(postcss@8.4.14)(sass@1.53.0)(stylus@0.58.1) '@cypress/code-coverage': specifier: ^3.9.12 - version: 3.10.0(@babel/core@7.22.10)(@babel/preset-env@7.18.9)(babel-loader@8.3.0)(cypress@8.5.0)(webpack@5.88.2) + version: 3.10.0(@babel/core@7.18.9)(@babel/preset-env@7.18.9)(babel-loader@8.3.0)(cypress@8.5.0)(webpack@5.88.2) '@cypress/skip-test': specifier: ^2.6.1 version: 2.6.1 @@ -1633,12 +1630,19 @@ packages: - reflect-metadata dev: false + /@babel/code-frame@7.18.6: + resolution: {integrity: sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/highlight': 7.18.6 + /@babel/code-frame@7.22.10: resolution: {integrity: sha512-/KKIMG4UEL35WmI9OlvMhurwtytjvXoFcGNrOvyG9zIzA8YmPjVtIZUf7b05+TPO7G7/GEmLHDaoCgACHl9hhA==} engines: {node: '>=6.9.0'} dependencies: '@babel/highlight': 7.22.10 chalk: 2.4.2 + dev: false /@babel/compat-data@7.18.8: resolution: {integrity: sha512-HSmX4WZPPK3FUxYp7g2T6EyO8j96HlZJlxmKPSh6KAcqwyDrfx7hKjXpAW/0FhFfTJsR0Yt4lAjLI2coMptIHQ==} @@ -1647,6 +1651,7 @@ packages: /@babel/compat-data@7.22.9: resolution: {integrity: sha512-5UamI7xkUcJ3i9qVDS+KFDEK8/7oJ55/sJMB1Ge7IEapr7KfdfV/HErR+koZwOfd+SgtFKOKRhRakdg++DcJpQ==} engines: {node: '>=6.9.0'} + dev: false /@babel/core@7.18.9: resolution: {integrity: sha512-1LIb1eL8APMy91/IMW+31ckrfBM4yCoLaVzoDhZUKSM4cu1L1nIidyxkCgzPAgrC5WEz36IPEr/eSeSF9pIn+g==} @@ -1663,13 +1668,12 @@ packages: '@babel/traverse': 7.18.9 '@babel/types': 7.18.9 convert-source-map: 1.8.0 - debug: 4.3.4(supports-color@8.1.1) + debug: registry.npmmirror.com/debug@4.3.4 gensync: 1.0.0-beta.2 json5: 2.2.1 semver: registry.npmmirror.com/semver@6.3.0 transitivePeerDependencies: - supports-color - dev: true /@babel/core@7.22.10: resolution: {integrity: sha512-fTmqbbUBAwCcre6zPzNngvsI0aNrPZe77AeqvDxWM9Nm+04RrJ3CAmGHA9f7lJQY6ZMhRztNemy4uslDxTX4Qw==} @@ -1692,6 +1696,7 @@ packages: semver: 6.3.1 transitivePeerDependencies: - supports-color + dev: false /@babel/eslint-parser@7.18.9(@babel/core@7.18.9)(eslint@8.20.0): resolution: {integrity: sha512-KzSGpMBggz4fKbRbWLNyPVTuQr6cmCcBhOyXTw/fieOVaw5oYAwcAj4a7UKcDYCPxQq+CG1NCDZH9e2JTXquiQ==} @@ -1723,12 +1728,20 @@ packages: '@jridgewell/gen-mapping': 0.3.2 '@jridgewell/trace-mapping': 0.3.19 jsesc: 2.5.2 + dev: false + + /@babel/helper-annotate-as-pure@7.18.6: + resolution: {integrity: sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.18.9 /@babel/helper-annotate-as-pure@7.22.5: resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==} engines: {node: '>=6.9.0'} dependencies: '@babel/types': 7.22.10 + dev: false /@babel/helper-builder-binary-assignment-operator-visitor@7.18.9: resolution: {integrity: sha512-yFQ0YCHoIqarl8BCRwBL8ulYUaZpz3bNsA7oFepAzee+8/+ImtADXNOmO5vJvsPff3qi+hvpkY/NYBTrBQgdNw==} @@ -1748,7 +1761,6 @@ packages: '@babel/helper-validator-option': 7.18.6 browserslist: 4.21.2 semver: registry.npmmirror.com/semver@6.3.0 - dev: true /@babel/helper-compilation-targets@7.18.9(@babel/core@7.22.10): resolution: {integrity: sha512-tzLCyVmqUiFlcFoAPLA/gL9TeYrF61VLNtb+hvkuVaB5SUjW7jcfrglBIX1vUIoT7CLP3bBlIMeyEsIl2eFQNg==} @@ -1761,6 +1773,7 @@ packages: '@babel/helper-validator-option': 7.18.6 browserslist: 4.21.2 semver: registry.npmmirror.com/semver@6.3.0 + dev: false /@babel/helper-compilation-targets@7.22.10: resolution: {integrity: sha512-JMSwHD4J7SLod0idLq5PKgI+6g/hLD/iuWBq08ZX49xE14VpVEojJ5rHWptpirV2j020MvypRLAXAO50igCJ5Q==} @@ -1771,6 +1784,7 @@ packages: browserslist: 4.21.10 lru-cache: 5.1.1 semver: 6.3.1 + dev: false /@babel/helper-create-class-features-plugin@7.18.9(@babel/core@7.18.9): resolution: {integrity: sha512-WvypNAYaVh23QcjpMR24CwZY2Nz6hqdOcFdPbNpV56hL5H6KiFheO7Xm1aPdlLQ7d5emYZX7VZwPp9x3z+2opw==} @@ -1788,7 +1802,6 @@ packages: '@babel/helper-split-export-declaration': 7.18.6 transitivePeerDependencies: - supports-color - dev: true /@babel/helper-create-class-features-plugin@7.18.9(@babel/core@7.22.10): resolution: {integrity: sha512-WvypNAYaVh23QcjpMR24CwZY2Nz6hqdOcFdPbNpV56hL5H6KiFheO7Xm1aPdlLQ7d5emYZX7VZwPp9x3z+2opw==} @@ -1806,6 +1819,7 @@ packages: '@babel/helper-split-export-declaration': 7.18.6 transitivePeerDependencies: - supports-color + dev: false /@babel/helper-create-regexp-features-plugin@7.18.6(@babel/core@7.18.9): resolution: {integrity: sha512-7LcpH1wnQLGrI+4v+nPp+zUvIkF9x0ddv1Hkdue10tg3gmRnLy97DXh4STiOf1qeIInyD69Qv5kKSZzKD8B/7A==} @@ -1816,7 +1830,6 @@ packages: '@babel/core': 7.18.9 '@babel/helper-annotate-as-pure': registry.npmmirror.com/@babel/helper-annotate-as-pure@7.18.6 regexpu-core: 5.1.0 - dev: true /@babel/helper-create-regexp-features-plugin@7.18.6(@babel/core@7.22.10): resolution: {integrity: sha512-7LcpH1wnQLGrI+4v+nPp+zUvIkF9x0ddv1Hkdue10tg3gmRnLy97DXh4STiOf1qeIInyD69Qv5kKSZzKD8B/7A==} @@ -1827,6 +1840,7 @@ packages: '@babel/core': 7.22.10 '@babel/helper-annotate-as-pure': registry.npmmirror.com/@babel/helper-annotate-as-pure@7.18.6 regexpu-core: 5.1.0 + dev: false /@babel/helper-define-polyfill-provider@0.3.1(@babel/core@7.18.9): resolution: {integrity: sha512-J9hGMpJQmtWmj46B3kBHmL38UhJGhYX7eqkcq+2gsstyYt341HmPeWspihX43yVRA0mS+8GGk2Gckc7bY/HCmA==} @@ -1844,7 +1858,6 @@ packages: semver: registry.npmmirror.com/semver@6.3.0 transitivePeerDependencies: - supports-color - dev: true /@babel/helper-define-polyfill-provider@0.3.1(@babel/core@7.22.10): resolution: {integrity: sha512-J9hGMpJQmtWmj46B3kBHmL38UhJGhYX7eqkcq+2gsstyYt341HmPeWspihX43yVRA0mS+8GGk2Gckc7bY/HCmA==} @@ -1862,6 +1875,7 @@ packages: semver: registry.npmmirror.com/semver@6.3.0 transitivePeerDependencies: - supports-color + dev: false /@babel/helper-environment-visitor@7.18.9: resolution: {integrity: sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==} @@ -1870,6 +1884,7 @@ packages: /@babel/helper-environment-visitor@7.22.5: resolution: {integrity: sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q==} engines: {node: '>=6.9.0'} + dev: false /@babel/helper-explode-assignable-expression@7.18.6: resolution: {integrity: sha512-eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg==} @@ -1890,6 +1905,7 @@ packages: dependencies: '@babel/template': 7.22.5 '@babel/types': 7.22.10 + dev: false /@babel/helper-hoist-variables@7.18.6: resolution: {integrity: sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==} @@ -1902,6 +1918,7 @@ packages: engines: {node: '>=6.9.0'} dependencies: '@babel/types': 7.22.10 + dev: false /@babel/helper-member-expression-to-functions@7.18.9: resolution: {integrity: sha512-RxifAh2ZoVU67PyKIO4AMi1wTenGfMR/O/ae0CCRqwgBAt5v7xjdtRw7UoSbsreKrQn5t7r89eruK/9JjYHuDg==} @@ -1909,11 +1926,18 @@ packages: dependencies: '@babel/types': registry.npmmirror.com/@babel/types@7.18.9 + /@babel/helper-module-imports@7.18.6: + resolution: {integrity: sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.18.9 + /@babel/helper-module-imports@7.22.5: resolution: {integrity: sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg==} engines: {node: '>=6.9.0'} dependencies: '@babel/types': 7.22.10 + dev: false /@babel/helper-module-transforms@7.18.9: resolution: {integrity: sha512-KYNqY0ICwfv19b31XzvmI/mfcylOzbLtowkw+mfvGPAQ3kfCnMLYbED3YecL5tPd8nAYFQFAd6JHp2LxZk/J1g==} @@ -1942,6 +1966,7 @@ packages: '@babel/helper-simple-access': 7.22.5 '@babel/helper-split-export-declaration': 7.22.6 '@babel/helper-validator-identifier': 7.22.5 + dev: false /@babel/helper-optimise-call-expression@7.18.6: resolution: {integrity: sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==} @@ -1954,9 +1979,14 @@ packages: engines: {node: '>=6.9.0'} dev: true + /@babel/helper-plugin-utils@7.20.2: + resolution: {integrity: sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==} + engines: {node: '>=6.9.0'} + /@babel/helper-plugin-utils@7.22.5: resolution: {integrity: sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==} engines: {node: '>=6.9.0'} + dev: false /@babel/helper-remap-async-to-generator@7.18.9(@babel/core@7.18.9): resolution: {integrity: sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==} @@ -1971,7 +2001,6 @@ packages: '@babel/types': registry.npmmirror.com/@babel/types@7.18.9 transitivePeerDependencies: - supports-color - dev: true /@babel/helper-remap-async-to-generator@7.18.9(@babel/core@7.22.10): resolution: {integrity: sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==} @@ -1986,6 +2015,19 @@ packages: '@babel/types': registry.npmmirror.com/@babel/types@7.18.9 transitivePeerDependencies: - supports-color + dev: false + + /@babel/helper-remap-async-to-generator@7.22.9(@babel/core@7.18.9): + resolution: {integrity: sha512-8WWC4oR4Px+tr+Fp0X3RHDVfINGpF3ad1HIbrc8A77epiR6eMMc6jsgozkzT2uDiOOdoS9cLIQ+XD2XvI2WSmQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.18.9 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-environment-visitor': 7.22.5 + '@babel/helper-wrap-function': 7.22.10 + dev: false /@babel/helper-remap-async-to-generator@7.22.9(@babel/core@7.22.10): resolution: {integrity: sha512-8WWC4oR4Px+tr+Fp0X3RHDVfINGpF3ad1HIbrc8A77epiR6eMMc6jsgozkzT2uDiOOdoS9cLIQ+XD2XvI2WSmQ==} @@ -2022,6 +2064,7 @@ packages: engines: {node: '>=6.9.0'} dependencies: '@babel/types': 7.22.10 + dev: false /@babel/helper-skip-transparent-expression-wrappers@7.18.9: resolution: {integrity: sha512-imytd2gHi3cJPsybLRbmFrF7u5BIEuI2cNheyKi3/iOBC63kNn3q8Crn2xVuESli0aM4KYsyEqKyS7lFL8YVtw==} @@ -2047,11 +2090,16 @@ packages: engines: {node: '>=6.9.0'} dependencies: '@babel/types': 7.22.10 + dev: false /@babel/helper-string-parser@7.22.5: resolution: {integrity: sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==} engines: {node: '>=6.9.0'} + /@babel/helper-validator-identifier@7.18.6: + resolution: {integrity: sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==} + engines: {node: '>=6.9.0'} + /@babel/helper-validator-identifier@7.22.5: resolution: {integrity: sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ==} engines: {node: '>=6.9.0'} @@ -2063,6 +2111,7 @@ packages: /@babel/helper-validator-option@7.22.5: resolution: {integrity: sha512-R3oB6xlIVKUnxNUxbmgq7pKjxpru24zlimpE8WK47fACIlM0II/Hm1RS8IaOI7NgCr6LNS+jl5l75m20npAziw==} engines: {node: '>=6.9.0'} + dev: false /@babel/helper-wrap-function@7.18.9: resolution: {integrity: sha512-cG2ru3TRAL6a60tfQflpEfs4ldiPwF6YW3zfJiRgmoFVIaC1vGnBBgatfec+ZUziPHkHSaXAuEck3Cdkf3eRpQ==} @@ -2093,7 +2142,6 @@ packages: '@babel/types': registry.npmmirror.com/@babel/types@7.18.9 transitivePeerDependencies: - supports-color - dev: true /@babel/helpers@7.22.10: resolution: {integrity: sha512-a41J4NW8HyZa1I1vAndrraTlPZ/eZoga2ZgS7fEr0tZJGVU4xqdE80CEm0CcNjha5EZ8fTBYLKHF0kqDUuAwQw==} @@ -2104,6 +2152,15 @@ packages: '@babel/types': 7.22.10 transitivePeerDependencies: - supports-color + dev: false + + /@babel/highlight@7.18.6: + resolution: {integrity: sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-validator-identifier': 7.18.6 + chalk: 2.4.2 + js-tokens: 4.0.0 /@babel/highlight@7.22.10: resolution: {integrity: sha512-78aUtVcT7MUscr0K5mIEnkwxPE0MaxkR5RxRwuHaQ+JuU5AmTPhY+do2mdzVTnIJJpyBglql2pehuBIWHug+WQ==} @@ -2112,6 +2169,7 @@ packages: '@babel/helper-validator-identifier': 7.22.5 chalk: 2.4.2 js-tokens: 4.0.0 + dev: false /@babel/parser@7.18.9: resolution: {integrity: sha512-9uJveS9eY9DJ0t64YbIBZICtJy8a5QrDEVdiLCG97fVLpDTpGX7t8mMSb6OWw6Lrnjqj4O8zwjELX3dhoMgiBg==} @@ -2125,7 +2183,7 @@ packages: engines: {node: '>=6.0.0'} hasBin: true dependencies: - '@babel/types': 7.22.10 + '@babel/types': 7.18.9 /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.18.6(@babel/core@7.18.9): resolution: {integrity: sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==} @@ -2135,16 +2193,6 @@ packages: dependencies: '@babel/core': 7.18.9 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 - dev: true - - /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.18.6(@babel/core@7.22.10): - resolution: {integrity: sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.18.9(@babel/core@7.18.9): resolution: {integrity: sha512-AHrP9jadvH7qlOj6PINbgSuphjQUAK7AOT7DPjBo9EHoLhQTnnK5u45e1Hd4DbSQEO9nqPWtQ89r+XEOWFScKg==} @@ -2156,18 +2204,6 @@ packages: '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 '@babel/helper-skip-transparent-expression-wrappers': 7.18.9 '@babel/plugin-proposal-optional-chaining': 7.18.9(@babel/core@7.18.9) - dev: true - - /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.18.9(@babel/core@7.22.10): - resolution: {integrity: sha512-AHrP9jadvH7qlOj6PINbgSuphjQUAK7AOT7DPjBo9EHoLhQTnnK5u45e1Hd4DbSQEO9nqPWtQ89r+XEOWFScKg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.13.0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 - '@babel/helper-skip-transparent-expression-wrappers': 7.18.9 - '@babel/plugin-proposal-optional-chaining': 7.18.9(@babel/core@7.22.10) /@babel/plugin-proposal-async-generator-functions@7.18.6(@babel/core@7.18.9): resolution: {integrity: sha512-WAz4R9bvozx4qwf74M+sfqPMKfSqwM0phxPTR6iJIi8robgzXwkEgmeJG1gEKhm6sDqT/U9aV3lfcqybIpev8w==} @@ -2182,7 +2218,6 @@ packages: '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.18.9) transitivePeerDependencies: - supports-color - dev: true /@babel/plugin-proposal-async-generator-functions@7.18.6(@babel/core@7.22.10): resolution: {integrity: sha512-WAz4R9bvozx4qwf74M+sfqPMKfSqwM0phxPTR6iJIi8robgzXwkEgmeJG1gEKhm6sDqT/U9aV3lfcqybIpev8w==} @@ -2197,6 +2232,7 @@ packages: '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.22.10) transitivePeerDependencies: - supports-color + dev: false /@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.18.9): resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==} @@ -2209,7 +2245,6 @@ packages: '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 transitivePeerDependencies: - supports-color - dev: true /@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.22.10): resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==} @@ -2222,6 +2257,7 @@ packages: '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 transitivePeerDependencies: - supports-color + dev: false /@babel/plugin-proposal-class-static-block@7.18.6(@babel/core@7.18.9): resolution: {integrity: sha512-+I3oIiNxrCpup3Gi8n5IGMwj0gOCAjcJUSQEcotNnCCPMEnixawOQ+KeJPlgfjzx+FKQ1QSyZOWe7wmoJp7vhw==} @@ -2235,20 +2271,6 @@ packages: '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.18.9) transitivePeerDependencies: - supports-color - dev: true - - /@babel/plugin-proposal-class-static-block@7.18.6(@babel/core@7.22.10): - resolution: {integrity: sha512-+I3oIiNxrCpup3Gi8n5IGMwj0gOCAjcJUSQEcotNnCCPMEnixawOQ+KeJPlgfjzx+FKQ1QSyZOWe7wmoJp7vhw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.12.0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-create-class-features-plugin': 7.18.9(@babel/core@7.22.10) - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 - '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.22.10) - transitivePeerDependencies: - - supports-color /@babel/plugin-proposal-decorators@7.18.9(@babel/core@7.18.9): resolution: {integrity: sha512-KD7zDNaD14CRpjQjVbV4EnH9lsKYlcpUrhZH37ei2IY+AlXrfAPy5pTmRUE4X6X1k8EsKXPraykxeaogqQvSGA==} @@ -2275,17 +2297,17 @@ packages: '@babel/core': 7.18.9 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.18.9) - dev: true - /@babel/plugin-proposal-dynamic-import@7.18.6(@babel/core@7.22.10): - resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==} + /@babel/plugin-proposal-export-default-from@7.22.5(@babel/core@7.18.9): + resolution: {integrity: sha512-UCe1X/hplyv6A5g2WnQ90tnHRvYL29dabCWww92lO7VdfMVTVReBTRrhiMrKQejHD9oVkdnRdwYuzUZkBVQisg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.22.10) + '@babel/core': 7.18.9 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-export-default-from': 7.22.5(@babel/core@7.18.9) + dev: false /@babel/plugin-proposal-export-default-from@7.22.5(@babel/core@7.22.10): resolution: {integrity: sha512-UCe1X/hplyv6A5g2WnQ90tnHRvYL29dabCWww92lO7VdfMVTVReBTRrhiMrKQejHD9oVkdnRdwYuzUZkBVQisg==} @@ -2307,17 +2329,6 @@ packages: '@babel/core': 7.18.9 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.18.9) - dev: true - - /@babel/plugin-proposal-export-namespace-from@7.18.9(@babel/core@7.22.10): - resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 - '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.22.10) /@babel/plugin-proposal-json-strings@7.18.6(@babel/core@7.18.9): resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==} @@ -2328,17 +2339,6 @@ packages: '@babel/core': 7.18.9 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.18.9) - dev: true - - /@babel/plugin-proposal-json-strings@7.18.6(@babel/core@7.22.10): - resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.22.10) /@babel/plugin-proposal-logical-assignment-operators@7.18.9(@babel/core@7.18.9): resolution: {integrity: sha512-128YbMpjCrP35IOExw2Fq+x55LMP42DzhOhX2aNNIdI9avSWl2PI0yuBWarr3RYpZBSPtabfadkH2yeRiMD61Q==} @@ -2349,17 +2349,6 @@ packages: '@babel/core': 7.18.9 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.18.9) - dev: true - - /@babel/plugin-proposal-logical-assignment-operators@7.18.9(@babel/core@7.22.10): - resolution: {integrity: sha512-128YbMpjCrP35IOExw2Fq+x55LMP42DzhOhX2aNNIdI9avSWl2PI0yuBWarr3RYpZBSPtabfadkH2yeRiMD61Q==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.22.10) /@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.18.9): resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==} @@ -2370,7 +2359,6 @@ packages: '@babel/core': 7.18.9 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.18.9) - dev: true /@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.22.10): resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==} @@ -2381,6 +2369,7 @@ packages: '@babel/core': 7.22.10 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.22.10) + dev: false /@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.18.9): resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==} @@ -2391,7 +2380,6 @@ packages: '@babel/core': 7.18.9 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.18.9) - dev: true /@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.22.10): resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==} @@ -2402,6 +2390,7 @@ packages: '@babel/core': 7.22.10 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.22.10) + dev: false /@babel/plugin-proposal-object-rest-spread@7.18.9(@babel/core@7.18.9): resolution: {integrity: sha512-kDDHQ5rflIeY5xl69CEqGEZ0KY369ehsCIEbTGb4siHG5BE9sga/T0r0OUwyZNLMmZE79E1kbsqAjwFCW4ds6Q==} @@ -2415,7 +2404,6 @@ packages: '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.18.9) '@babel/plugin-transform-parameters': 7.18.8(@babel/core@7.18.9) - dev: true /@babel/plugin-proposal-object-rest-spread@7.18.9(@babel/core@7.22.10): resolution: {integrity: sha512-kDDHQ5rflIeY5xl69CEqGEZ0KY369ehsCIEbTGb4siHG5BE9sga/T0r0OUwyZNLMmZE79E1kbsqAjwFCW4ds6Q==} @@ -2429,6 +2417,21 @@ packages: '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.22.10) '@babel/plugin-transform-parameters': 7.18.8(@babel/core@7.22.10) + dev: false + + /@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.18.9): + resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/compat-data': 7.22.9 + '@babel/core': 7.18.9 + '@babel/helper-compilation-targets': 7.22.10 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.18.9) + '@babel/plugin-transform-parameters': 7.22.5(@babel/core@7.18.9) + dev: false /@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.22.10): resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==} @@ -2439,7 +2442,7 @@ packages: '@babel/compat-data': 7.22.9 '@babel/core': 7.22.10 '@babel/helper-compilation-targets': 7.22.10 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-plugin-utils': 7.20.2 '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.22.10) '@babel/plugin-transform-parameters': 7.22.5(@babel/core@7.22.10) dev: false @@ -2453,7 +2456,6 @@ packages: '@babel/core': 7.18.9 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.18.9) - dev: true /@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.22.10): resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==} @@ -2464,6 +2466,7 @@ packages: '@babel/core': 7.22.10 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.22.10) + dev: false /@babel/plugin-proposal-optional-chaining@7.18.9(@babel/core@7.18.9): resolution: {integrity: sha512-v5nwt4IqBXihxGsW2QmCWMDS3B3bzGIk/EQVZz2ei7f3NJl8NzAJVvUmpDW5q1CRNY+Beb/k58UAH1Km1N411w==} @@ -2475,18 +2478,18 @@ packages: '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 '@babel/helper-skip-transparent-expression-wrappers': 7.18.9 '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.18.9) - dev: true - /@babel/plugin-proposal-optional-chaining@7.18.9(@babel/core@7.22.10): - resolution: {integrity: sha512-v5nwt4IqBXihxGsW2QmCWMDS3B3bzGIk/EQVZz2ei7f3NJl8NzAJVvUmpDW5q1CRNY+Beb/k58UAH1Km1N411w==} + /@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.18.9): + resolution: {integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 - '@babel/helper-skip-transparent-expression-wrappers': 7.18.9 - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.22.10) + '@babel/core': 7.18.9 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.18.9) + dev: false /@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.22.10): resolution: {integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==} @@ -2495,7 +2498,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.10 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-plugin-utils': 7.20.2 '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.22.10) dev: false @@ -2511,19 +2514,6 @@ packages: '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 transitivePeerDependencies: - supports-color - dev: true - - /@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.22.10): - resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-create-class-features-plugin': 7.18.9(@babel/core@7.22.10) - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 - transitivePeerDependencies: - - supports-color /@babel/plugin-proposal-private-property-in-object@7.18.6(@babel/core@7.18.9): resolution: {integrity: sha512-9Rysx7FOctvT5ouj5JODjAFAkgGoudQuLPamZb0v1TGLpapdNaftzifU8NTWQm0IRjqoYypdrSmyWgkocDQ8Dw==} @@ -2538,21 +2528,6 @@ packages: '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.18.9) transitivePeerDependencies: - supports-color - dev: true - - /@babel/plugin-proposal-private-property-in-object@7.18.6(@babel/core@7.22.10): - resolution: {integrity: sha512-9Rysx7FOctvT5ouj5JODjAFAkgGoudQuLPamZb0v1TGLpapdNaftzifU8NTWQm0IRjqoYypdrSmyWgkocDQ8Dw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-annotate-as-pure': registry.npmmirror.com/@babel/helper-annotate-as-pure@7.18.6 - '@babel/helper-create-class-features-plugin': 7.18.9(@babel/core@7.22.10) - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 - '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.22.10) - transitivePeerDependencies: - - supports-color /@babel/plugin-proposal-unicode-property-regex@7.18.6(@babel/core@7.18.9): resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==} @@ -2563,17 +2538,6 @@ packages: '@babel/core': 7.18.9 '@babel/helper-create-regexp-features-plugin': 7.18.6(@babel/core@7.18.9) '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 - dev: true - - /@babel/plugin-proposal-unicode-property-regex@7.18.6(@babel/core@7.22.10): - resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==} - engines: {node: '>=4'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-create-regexp-features-plugin': 7.18.6(@babel/core@7.22.10) - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.18.9): resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} @@ -2582,7 +2546,6 @@ packages: dependencies: '@babel/core': 7.18.9 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 - dev: true /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.22.10): resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} @@ -2591,14 +2554,15 @@ packages: dependencies: '@babel/core': 7.22.10 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 + dev: false - /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.22.10): + /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.18.9): resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.18.9 + '@babel/helper-plugin-utils': 7.20.2 dev: true /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.18.9): @@ -2608,7 +2572,6 @@ packages: dependencies: '@babel/core': 7.18.9 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 - dev: true /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.22.10): resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} @@ -2617,6 +2580,7 @@ packages: dependencies: '@babel/core': 7.22.10 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 + dev: false /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.18.9): resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} @@ -2626,16 +2590,6 @@ packages: dependencies: '@babel/core': 7.18.9 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 - dev: true - - /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.22.10): - resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 /@babel/plugin-syntax-decorators@7.18.6(@babel/core@7.18.9): resolution: {integrity: sha512-fqyLgjcxf/1yhyZ6A+yo1u9gJ7eleFQod2lkaUsF9DQ7sbbY3Ligym3L0+I2c0WmqNKDpoD9UTb1AKP3qRMOAQ==} @@ -2654,7 +2608,6 @@ packages: dependencies: '@babel/core': 7.18.9 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 - dev: true /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.22.10): resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} @@ -2663,6 +2616,17 @@ packages: dependencies: '@babel/core': 7.22.10 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 + dev: false + + /@babel/plugin-syntax-export-default-from@7.22.5(@babel/core@7.18.9): + resolution: {integrity: sha512-ODAqWWXB/yReh/jVQDag/3/tl6lgBueQkk/TcfW/59Oykm4c8a55XloX0CTk2k2VJiFWMgHby9xNX29IbCv9dQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.9 + '@babel/helper-plugin-utils': 7.22.5 + dev: false /@babel/plugin-syntax-export-default-from@7.22.5(@babel/core@7.22.10): resolution: {integrity: sha512-ODAqWWXB/yReh/jVQDag/3/tl6lgBueQkk/TcfW/59Oykm4c8a55XloX0CTk2k2VJiFWMgHby9xNX29IbCv9dQ==} @@ -2681,15 +2645,35 @@ packages: dependencies: '@babel/core': 7.18.9 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 - dev: true - /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.22.10): - resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} + /@babel/plugin-syntax-flow@7.18.6(@babel/core@7.18.9): + resolution: {integrity: sha512-LUbR+KNTBWCUAqRG9ex5Gnzu2IOkt8jRJbHHXFT9q+L9zm7M/QQbEqXyw1n1pohYvOyWC8CjeyjrSaIwiYjK7A==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.9 + '@babel/helper-plugin-utils': 7.20.2 + + /@babel/plugin-syntax-flow@7.18.6(@babel/core@7.22.10): + resolution: {integrity: sha512-LUbR+KNTBWCUAqRG9ex5Gnzu2IOkt8jRJbHHXFT9q+L9zm7M/QQbEqXyw1n1pohYvOyWC8CjeyjrSaIwiYjK7A==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.10 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 + '@babel/helper-plugin-utils': 7.20.2 + dev: false + + /@babel/plugin-syntax-flow@7.22.5(@babel/core@7.18.9): + resolution: {integrity: sha512-9RdCl0i+q0QExayk2nOS7853w08yLucnnPML6EN9S8fgMPVtdLDCdx/cOQ/i44Lb9UeQX9A35yaqBBOMMZxPxQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.9 + '@babel/helper-plugin-utils': 7.22.5 + dev: false /@babel/plugin-syntax-flow@7.22.5(@babel/core@7.22.10): resolution: {integrity: sha512-9RdCl0i+q0QExayk2nOS7853w08yLucnnPML6EN9S8fgMPVtdLDCdx/cOQ/i44Lb9UeQX9A35yaqBBOMMZxPxQ==} @@ -2699,6 +2683,7 @@ packages: dependencies: '@babel/core': 7.22.10 '@babel/helper-plugin-utils': 7.22.5 + dev: false /@babel/plugin-syntax-import-assertions@7.18.6(@babel/core@7.18.9): resolution: {integrity: sha512-/DU3RXad9+bZwrgWJQKbr39gYbJpLJHezqEzRzi/BHRlJ9zsQb4CK2CA/5apllXNomwA1qHwzvHl+AdEmC5krQ==} @@ -2708,24 +2693,14 @@ packages: dependencies: '@babel/core': 7.18.9 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 - dev: true - /@babel/plugin-syntax-import-assertions@7.18.6(@babel/core@7.22.10): - resolution: {integrity: sha512-/DU3RXad9+bZwrgWJQKbr39gYbJpLJHezqEzRzi/BHRlJ9zsQb4CK2CA/5apllXNomwA1qHwzvHl+AdEmC5krQ==} - engines: {node: '>=6.9.0'} + /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.18.9): + resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 - - /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.22.10): - resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.18.9 + '@babel/helper-plugin-utils': 7.20.2 dev: true /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.18.9): @@ -2735,15 +2710,15 @@ packages: dependencies: '@babel/core': 7.18.9 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 - dev: true - /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.22.10): - resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} + /@babel/plugin-syntax-jsx@7.18.6(@babel/core@7.18.9): + resolution: {integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==} + engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 + '@babel/core': 7.18.9 + '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-syntax-jsx@7.18.6(@babel/core@7.22.10): resolution: {integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==} @@ -2752,7 +2727,8 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.10 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-plugin-utils': 7.20.2 + dev: false /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.18.9): resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} @@ -2761,15 +2737,6 @@ packages: dependencies: '@babel/core': 7.18.9 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 - dev: true - - /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.22.10): - resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.18.9): resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} @@ -2778,7 +2745,6 @@ packages: dependencies: '@babel/core': 7.18.9 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 - dev: true /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.22.10): resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} @@ -2787,6 +2753,7 @@ packages: dependencies: '@babel/core': 7.22.10 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 + dev: false /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.18.9): resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} @@ -2795,7 +2762,6 @@ packages: dependencies: '@babel/core': 7.18.9 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 - dev: true /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.22.10): resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} @@ -2804,6 +2770,7 @@ packages: dependencies: '@babel/core': 7.22.10 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 + dev: false /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.18.9): resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} @@ -2812,7 +2779,6 @@ packages: dependencies: '@babel/core': 7.18.9 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 - dev: true /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.22.10): resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} @@ -2821,6 +2787,7 @@ packages: dependencies: '@babel/core': 7.22.10 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 + dev: false /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.18.9): resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} @@ -2829,7 +2796,6 @@ packages: dependencies: '@babel/core': 7.18.9 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 - dev: true /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.22.10): resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} @@ -2838,6 +2804,7 @@ packages: dependencies: '@babel/core': 7.22.10 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 + dev: false /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.18.9): resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} @@ -2846,7 +2813,6 @@ packages: dependencies: '@babel/core': 7.18.9 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 - dev: true /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.22.10): resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} @@ -2855,6 +2821,7 @@ packages: dependencies: '@babel/core': 7.22.10 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 + dev: false /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.18.9): resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} @@ -2864,16 +2831,6 @@ packages: dependencies: '@babel/core': 7.18.9 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 - dev: true - - /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.22.10): - resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.18.9): resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} @@ -2883,16 +2840,6 @@ packages: dependencies: '@babel/core': 7.18.9 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 - dev: true - - /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.22.10): - resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 /@babel/plugin-syntax-typescript@7.18.6(@babel/core@7.18.9): resolution: {integrity: sha512-mAWAuq4rvOepWCBid55JuRNvpTNf2UGVgoz4JV0fXEKolsVZDzsa4NqCef758WZJj/GDu0gVGItjKFiClTAmZA==} @@ -2902,7 +2849,6 @@ packages: dependencies: '@babel/core': 7.18.9 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 - dev: true /@babel/plugin-syntax-typescript@7.18.6(@babel/core@7.22.10): resolution: {integrity: sha512-mAWAuq4rvOepWCBid55JuRNvpTNf2UGVgoz4JV0fXEKolsVZDzsa4NqCef758WZJj/GDu0gVGItjKFiClTAmZA==} @@ -2922,7 +2868,6 @@ packages: dependencies: '@babel/core': 7.18.9 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 - dev: true /@babel/plugin-transform-arrow-functions@7.18.6(@babel/core@7.22.10): resolution: {integrity: sha512-9S9X9RUefzrsHZmKMbDXxweEH+YlE8JJEuat9FdvW9Qh1cw7W64jELCtWNkPBPX5En45uy28KGvA/AySqUh8CQ==} @@ -2932,6 +2877,7 @@ packages: dependencies: '@babel/core': 7.22.10 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 + dev: false /@babel/plugin-transform-async-to-generator@7.18.6(@babel/core@7.18.9): resolution: {integrity: sha512-ARE5wZLKnTgPW7/1ftQmSi1CmkqqHo2DNmtztFhvgtOWSDfq0Cq9/9L+KnZNYSNrydBekhW3rwShduf59RoXag==} @@ -2945,20 +2891,18 @@ packages: '@babel/helper-remap-async-to-generator': 7.18.9(@babel/core@7.18.9) transitivePeerDependencies: - supports-color - dev: true - /@babel/plugin-transform-async-to-generator@7.18.6(@babel/core@7.22.10): - resolution: {integrity: sha512-ARE5wZLKnTgPW7/1ftQmSi1CmkqqHo2DNmtztFhvgtOWSDfq0Cq9/9L+KnZNYSNrydBekhW3rwShduf59RoXag==} + /@babel/plugin-transform-async-to-generator@7.22.5(@babel/core@7.18.9): + resolution: {integrity: sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 - '@babel/helper-module-imports': registry.npmmirror.com/@babel/helper-module-imports@7.18.6 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 - '@babel/helper-remap-async-to-generator': 7.18.9(@babel/core@7.22.10) - transitivePeerDependencies: - - supports-color + '@babel/core': 7.18.9 + '@babel/helper-module-imports': 7.22.5 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-remap-async-to-generator': 7.22.9(@babel/core@7.18.9) + dev: false /@babel/plugin-transform-async-to-generator@7.22.5(@babel/core@7.22.10): resolution: {integrity: sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ==} @@ -2980,7 +2924,6 @@ packages: dependencies: '@babel/core': 7.18.9 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 - dev: true /@babel/plugin-transform-block-scoped-functions@7.18.6(@babel/core@7.22.10): resolution: {integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==} @@ -2990,6 +2933,7 @@ packages: dependencies: '@babel/core': 7.22.10 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 + dev: false /@babel/plugin-transform-block-scoping@7.18.9(@babel/core@7.18.9): resolution: {integrity: sha512-5sDIJRV1KtQVEbt/EIBwGy4T01uYIo4KRB3VUqzkhrAIOGx7AoctL9+Ux88btY0zXdDyPJ9mW+bg+v+XEkGmtw==} @@ -2999,7 +2943,6 @@ packages: dependencies: '@babel/core': 7.18.9 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 - dev: true /@babel/plugin-transform-block-scoping@7.18.9(@babel/core@7.22.10): resolution: {integrity: sha512-5sDIJRV1KtQVEbt/EIBwGy4T01uYIo4KRB3VUqzkhrAIOGx7AoctL9+Ux88btY0zXdDyPJ9mW+bg+v+XEkGmtw==} @@ -3009,6 +2952,7 @@ packages: dependencies: '@babel/core': 7.22.10 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 + dev: false /@babel/plugin-transform-classes@7.18.9(@babel/core@7.18.9): resolution: {integrity: sha512-EkRQxsxoytpTlKJmSPYrsOMjCILacAjtSVkd4gChEe2kXjFCun3yohhW5I7plXJhCemM0gKsaGMcO8tinvCA5g==} @@ -3027,7 +2971,6 @@ packages: globals: registry.npmmirror.com/globals@11.12.0 transitivePeerDependencies: - supports-color - dev: true /@babel/plugin-transform-classes@7.18.9(@babel/core@7.22.10): resolution: {integrity: sha512-EkRQxsxoytpTlKJmSPYrsOMjCILacAjtSVkd4gChEe2kXjFCun3yohhW5I7plXJhCemM0gKsaGMcO8tinvCA5g==} @@ -3046,6 +2989,7 @@ packages: globals: registry.npmmirror.com/globals@11.12.0 transitivePeerDependencies: - supports-color + dev: false /@babel/plugin-transform-computed-properties@7.18.9(@babel/core@7.18.9): resolution: {integrity: sha512-+i0ZU1bCDymKakLxn5srGHrsAPRELC2WIbzwjLhHW9SIE1cPYkLCL0NlnXMZaM1vhfgA2+M7hySk42VBvrkBRw==} @@ -3055,7 +2999,6 @@ packages: dependencies: '@babel/core': 7.18.9 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 - dev: true /@babel/plugin-transform-computed-properties@7.18.9(@babel/core@7.22.10): resolution: {integrity: sha512-+i0ZU1bCDymKakLxn5srGHrsAPRELC2WIbzwjLhHW9SIE1cPYkLCL0NlnXMZaM1vhfgA2+M7hySk42VBvrkBRw==} @@ -3065,6 +3008,7 @@ packages: dependencies: '@babel/core': 7.22.10 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 + dev: false /@babel/plugin-transform-destructuring@7.18.9(@babel/core@7.18.9): resolution: {integrity: sha512-p5VCYNddPLkZTq4XymQIaIfZNJwT9YsjkPOhkVEqt6QIpQFZVM9IltqqYpOEkJoN1DPznmxUDyZ5CTZs/ZCuHA==} @@ -3074,7 +3018,6 @@ packages: dependencies: '@babel/core': 7.18.9 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 - dev: true /@babel/plugin-transform-destructuring@7.18.9(@babel/core@7.22.10): resolution: {integrity: sha512-p5VCYNddPLkZTq4XymQIaIfZNJwT9YsjkPOhkVEqt6QIpQFZVM9IltqqYpOEkJoN1DPznmxUDyZ5CTZs/ZCuHA==} @@ -3084,36 +3027,36 @@ packages: dependencies: '@babel/core': 7.22.10 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 + dev: false - /@babel/plugin-transform-destructuring@7.22.10(@babel/core@7.22.10): + /@babel/plugin-transform-destructuring@7.22.10(@babel/core@7.18.9): resolution: {integrity: sha512-dPJrL0VOyxqLM9sritNbMSGx/teueHF/htMKrPT7DNxccXxRDPYqlgPFFdr8u+F+qUZOkZoXue/6rL5O5GduEw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.18.9 '@babel/helper-plugin-utils': 7.22.5 dev: false - /@babel/plugin-transform-dotall-regex@7.18.6(@babel/core@7.18.9): - resolution: {integrity: sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==} + /@babel/plugin-transform-destructuring@7.22.10(@babel/core@7.22.10): + resolution: {integrity: sha512-dPJrL0VOyxqLM9sritNbMSGx/teueHF/htMKrPT7DNxccXxRDPYqlgPFFdr8u+F+qUZOkZoXue/6rL5O5GduEw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.18.9 - '@babel/helper-create-regexp-features-plugin': 7.18.6(@babel/core@7.18.9) - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 - dev: true + '@babel/core': 7.22.10 + '@babel/helper-plugin-utils': 7.22.5 + dev: false - /@babel/plugin-transform-dotall-regex@7.18.6(@babel/core@7.22.10): + /@babel/plugin-transform-dotall-regex@7.18.6(@babel/core@7.18.9): resolution: {integrity: sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 - '@babel/helper-create-regexp-features-plugin': 7.18.6(@babel/core@7.22.10) + '@babel/core': 7.18.9 + '@babel/helper-create-regexp-features-plugin': 7.18.6(@babel/core@7.18.9) '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 /@babel/plugin-transform-duplicate-keys@7.18.9(@babel/core@7.18.9): @@ -3124,48 +3067,48 @@ packages: dependencies: '@babel/core': 7.18.9 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 - dev: true - /@babel/plugin-transform-duplicate-keys@7.18.9(@babel/core@7.22.10): - resolution: {integrity: sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==} + /@babel/plugin-transform-exponentiation-operator@7.18.6(@babel/core@7.18.9): + resolution: {integrity: sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.18.9 + '@babel/helper-builder-binary-assignment-operator-visitor': 7.18.9 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 - /@babel/plugin-transform-exponentiation-operator@7.18.6(@babel/core@7.18.9): - resolution: {integrity: sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==} + /@babel/plugin-transform-flow-strip-types@7.18.9(@babel/core@7.18.9): + resolution: {integrity: sha512-+G6rp2zRuOAInY5wcggsx4+QVao1qPM0osC9fTUVlAV3zOrzTCnrMAFVnR6+a3T8wz1wFIH7KhYMcMB3u1n80A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.9 - '@babel/helper-builder-binary-assignment-operator-visitor': 7.18.9 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 - dev: true + '@babel/plugin-syntax-flow': registry.npmmirror.com/@babel/plugin-syntax-flow@7.18.6(@babel/core@7.18.9) - /@babel/plugin-transform-exponentiation-operator@7.18.6(@babel/core@7.22.10): - resolution: {integrity: sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==} + /@babel/plugin-transform-flow-strip-types@7.18.9(@babel/core@7.22.10): + resolution: {integrity: sha512-+G6rp2zRuOAInY5wcggsx4+QVao1qPM0osC9fTUVlAV3zOrzTCnrMAFVnR6+a3T8wz1wFIH7KhYMcMB3u1n80A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.10 - '@babel/helper-builder-binary-assignment-operator-visitor': 7.18.9 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 + '@babel/plugin-syntax-flow': registry.npmmirror.com/@babel/plugin-syntax-flow@7.18.6(@babel/core@7.22.10) + dev: false - /@babel/plugin-transform-flow-strip-types@7.18.9(@babel/core@7.18.9): - resolution: {integrity: sha512-+G6rp2zRuOAInY5wcggsx4+QVao1qPM0osC9fTUVlAV3zOrzTCnrMAFVnR6+a3T8wz1wFIH7KhYMcMB3u1n80A==} + /@babel/plugin-transform-flow-strip-types@7.22.5(@babel/core@7.18.9): + resolution: {integrity: sha512-tujNbZdxdG0/54g/oua8ISToaXTFBf8EnSb5PgQSciIXWOWKX3S4+JR7ZE9ol8FZwf9kxitzkGQ+QWeov/mCiA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.9 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 - '@babel/plugin-syntax-flow': registry.npmmirror.com/@babel/plugin-syntax-flow@7.18.6(@babel/core@7.18.9) - dev: true + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-flow': 7.22.5(@babel/core@7.18.9) + dev: false /@babel/plugin-transform-flow-strip-types@7.22.5(@babel/core@7.22.10): resolution: {integrity: sha512-tujNbZdxdG0/54g/oua8ISToaXTFBf8EnSb5PgQSciIXWOWKX3S4+JR7ZE9ol8FZwf9kxitzkGQ+QWeov/mCiA==} @@ -3186,7 +3129,6 @@ packages: dependencies: '@babel/core': 7.18.9 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 - dev: true /@babel/plugin-transform-for-of@7.18.8(@babel/core@7.22.10): resolution: {integrity: sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==} @@ -3196,6 +3138,7 @@ packages: dependencies: '@babel/core': 7.22.10 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 + dev: false /@babel/plugin-transform-function-name@7.18.9(@babel/core@7.18.9): resolution: {integrity: sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==} @@ -3207,7 +3150,6 @@ packages: '@babel/helper-compilation-targets': 7.18.9(@babel/core@7.18.9) '@babel/helper-function-name': 7.18.9 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 - dev: true /@babel/plugin-transform-function-name@7.18.9(@babel/core@7.22.10): resolution: {integrity: sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==} @@ -3219,6 +3161,7 @@ packages: '@babel/helper-compilation-targets': 7.18.9(@babel/core@7.22.10) '@babel/helper-function-name': 7.18.9 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 + dev: false /@babel/plugin-transform-literals@7.18.9(@babel/core@7.18.9): resolution: {integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==} @@ -3228,7 +3171,6 @@ packages: dependencies: '@babel/core': 7.18.9 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 - dev: true /@babel/plugin-transform-literals@7.18.9(@babel/core@7.22.10): resolution: {integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==} @@ -3238,6 +3180,7 @@ packages: dependencies: '@babel/core': 7.22.10 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 + dev: false /@babel/plugin-transform-member-expression-literals@7.18.6(@babel/core@7.18.9): resolution: {integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==} @@ -3247,7 +3190,6 @@ packages: dependencies: '@babel/core': 7.18.9 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 - dev: true /@babel/plugin-transform-member-expression-literals@7.18.6(@babel/core@7.22.10): resolution: {integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==} @@ -3257,6 +3199,7 @@ packages: dependencies: '@babel/core': 7.22.10 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 + dev: false /@babel/plugin-transform-modules-amd@7.18.6(@babel/core@7.18.9): resolution: {integrity: sha512-Pra5aXsmTsOnjM3IajS8rTaLCy++nGM4v3YR4esk5PCsyg9z8NA5oQLwxzMUtDBd8F+UmVza3VxoAaWCbzH1rg==} @@ -3270,20 +3213,6 @@ packages: babel-plugin-dynamic-import-node: 2.3.3 transitivePeerDependencies: - supports-color - dev: true - - /@babel/plugin-transform-modules-amd@7.18.6(@babel/core@7.22.10): - resolution: {integrity: sha512-Pra5aXsmTsOnjM3IajS8rTaLCy++nGM4v3YR4esk5PCsyg9z8NA5oQLwxzMUtDBd8F+UmVza3VxoAaWCbzH1rg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-module-transforms': 7.18.9 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 - babel-plugin-dynamic-import-node: 2.3.3 - transitivePeerDependencies: - - supports-color /@babel/plugin-transform-modules-commonjs@7.18.6(@babel/core@7.18.9): resolution: {integrity: sha512-Qfv2ZOWikpvmedXQJDSbxNqy7Xr/j2Y8/KfijM0iJyKkBTmWuvCA1yeH1yDM7NJhBW/2aXxeucLj6i80/LAJ/Q==} @@ -3298,7 +3227,6 @@ packages: babel-plugin-dynamic-import-node: 2.3.3 transitivePeerDependencies: - supports-color - dev: true /@babel/plugin-transform-modules-commonjs@7.18.6(@babel/core@7.22.10): resolution: {integrity: sha512-Qfv2ZOWikpvmedXQJDSbxNqy7Xr/j2Y8/KfijM0iJyKkBTmWuvCA1yeH1yDM7NJhBW/2aXxeucLj6i80/LAJ/Q==} @@ -3313,6 +3241,7 @@ packages: babel-plugin-dynamic-import-node: 2.3.3 transitivePeerDependencies: - supports-color + dev: false /@babel/plugin-transform-modules-systemjs@7.18.9(@babel/core@7.18.9): resolution: {integrity: sha512-zY/VSIbbqtoRoJKo2cDTewL364jSlZGvn0LKOf9ntbfxOvjfmyrdtEEOAdswOswhZEb8UH3jDkCKHd1sPgsS0A==} @@ -3328,22 +3257,6 @@ packages: babel-plugin-dynamic-import-node: 2.3.3 transitivePeerDependencies: - supports-color - dev: true - - /@babel/plugin-transform-modules-systemjs@7.18.9(@babel/core@7.22.10): - resolution: {integrity: sha512-zY/VSIbbqtoRoJKo2cDTewL364jSlZGvn0LKOf9ntbfxOvjfmyrdtEEOAdswOswhZEb8UH3jDkCKHd1sPgsS0A==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-hoist-variables': 7.18.6 - '@babel/helper-module-transforms': 7.18.9 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 - '@babel/helper-validator-identifier': registry.npmmirror.com/@babel/helper-validator-identifier@7.18.6 - babel-plugin-dynamic-import-node: 2.3.3 - transitivePeerDependencies: - - supports-color /@babel/plugin-transform-modules-umd@7.18.6(@babel/core@7.18.9): resolution: {integrity: sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==} @@ -3356,19 +3269,6 @@ packages: '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 transitivePeerDependencies: - supports-color - dev: true - - /@babel/plugin-transform-modules-umd@7.18.6(@babel/core@7.22.10): - resolution: {integrity: sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-module-transforms': 7.18.9 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 - transitivePeerDependencies: - - supports-color /@babel/plugin-transform-named-capturing-groups-regex@7.18.6(@babel/core@7.18.9): resolution: {integrity: sha512-UmEOGF8XgaIqD74bC8g7iV3RYj8lMf0Bw7NJzvnS9qQhM4mg+1WHKotUIdjxgD2RGrgFLZZPCFPFj3P/kVDYhg==} @@ -3379,7 +3279,6 @@ packages: '@babel/core': 7.18.9 '@babel/helper-create-regexp-features-plugin': 7.18.6(@babel/core@7.18.9) '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 - dev: true /@babel/plugin-transform-named-capturing-groups-regex@7.18.6(@babel/core@7.22.10): resolution: {integrity: sha512-UmEOGF8XgaIqD74bC8g7iV3RYj8lMf0Bw7NJzvnS9qQhM4mg+1WHKotUIdjxgD2RGrgFLZZPCFPFj3P/kVDYhg==} @@ -3390,6 +3289,7 @@ packages: '@babel/core': 7.22.10 '@babel/helper-create-regexp-features-plugin': 7.18.6(@babel/core@7.22.10) '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 + dev: false /@babel/plugin-transform-new-target@7.18.6(@babel/core@7.18.9): resolution: {integrity: sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==} @@ -3399,16 +3299,6 @@ packages: dependencies: '@babel/core': 7.18.9 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 - dev: true - - /@babel/plugin-transform-new-target@7.18.6(@babel/core@7.22.10): - resolution: {integrity: sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 /@babel/plugin-transform-object-super@7.18.6(@babel/core@7.18.9): resolution: {integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==} @@ -3421,7 +3311,6 @@ packages: '@babel/helper-replace-supers': 7.18.9 transitivePeerDependencies: - supports-color - dev: true /@babel/plugin-transform-object-super@7.18.6(@babel/core@7.22.10): resolution: {integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==} @@ -3434,6 +3323,7 @@ packages: '@babel/helper-replace-supers': 7.18.9 transitivePeerDependencies: - supports-color + dev: false /@babel/plugin-transform-parameters@7.18.8(@babel/core@7.18.9): resolution: {integrity: sha512-ivfbE3X2Ss+Fj8nnXvKJS6sjRG4gzwPMsP+taZC+ZzEGjAYlvENixmt1sZ5Ca6tWls+BlKSGKPJ6OOXvXCbkFg==} @@ -3443,7 +3333,6 @@ packages: dependencies: '@babel/core': 7.18.9 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 - dev: true /@babel/plugin-transform-parameters@7.18.8(@babel/core@7.22.10): resolution: {integrity: sha512-ivfbE3X2Ss+Fj8nnXvKJS6sjRG4gzwPMsP+taZC+ZzEGjAYlvENixmt1sZ5Ca6tWls+BlKSGKPJ6OOXvXCbkFg==} @@ -3453,6 +3342,17 @@ packages: dependencies: '@babel/core': 7.22.10 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 + dev: false + + /@babel/plugin-transform-parameters@7.22.5(@babel/core@7.18.9): + resolution: {integrity: sha512-AVkFUBurORBREOmHRKo06FjHYgjrabpdqRSwq6+C7R5iTCZOsM4QbcB27St0a4U6fffyAOqh3s/qEfybAhfivg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.9 + '@babel/helper-plugin-utils': 7.22.5 + dev: false /@babel/plugin-transform-parameters@7.22.5(@babel/core@7.22.10): resolution: {integrity: sha512-AVkFUBurORBREOmHRKo06FjHYgjrabpdqRSwq6+C7R5iTCZOsM4QbcB27St0a4U6fffyAOqh3s/qEfybAhfivg==} @@ -3472,7 +3372,6 @@ packages: dependencies: '@babel/core': 7.18.9 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 - dev: true /@babel/plugin-transform-property-literals@7.18.6(@babel/core@7.22.10): resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==} @@ -3482,6 +3381,7 @@ packages: dependencies: '@babel/core': 7.22.10 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 + dev: false /@babel/plugin-transform-react-display-name@7.18.6(@babel/core@7.18.9): resolution: {integrity: sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==} @@ -3491,7 +3391,6 @@ packages: dependencies: '@babel/core': 7.18.9 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 - dev: true /@babel/plugin-transform-react-display-name@7.18.6(@babel/core@7.22.10): resolution: {integrity: sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==} @@ -3513,6 +3412,16 @@ packages: '@babel/plugin-transform-react-jsx': registry.npmmirror.com/@babel/plugin-transform-react-jsx@7.18.6(@babel/core@7.18.9) dev: true + /@babel/plugin-transform-react-jsx-self@7.22.5(@babel/core@7.18.9): + resolution: {integrity: sha512-nTh2ogNUtxbiSbxaT4Ds6aXnXEipHweN9YRgOX/oNXdf0cCrGn/+2LozFa3lnPV5D90MkjhgckCPBrsoSc1a7g==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.9 + '@babel/helper-plugin-utils': 7.22.5 + dev: false + /@babel/plugin-transform-react-jsx-self@7.22.5(@babel/core@7.22.10): resolution: {integrity: sha512-nTh2ogNUtxbiSbxaT4Ds6aXnXEipHweN9YRgOX/oNXdf0cCrGn/+2LozFa3lnPV5D90MkjhgckCPBrsoSc1a7g==} engines: {node: '>=6.9.0'} @@ -3523,6 +3432,16 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: false + /@babel/plugin-transform-react-jsx-source@7.22.5(@babel/core@7.18.9): + resolution: {integrity: sha512-yIiRO6yobeEIaI0RTbIr8iAK9FcBHLtZq0S89ZPjDLQXBA4xvghaKqI0etp/tF3htTM0sazJKKLz9oEiGRtu7w==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.9 + '@babel/helper-plugin-utils': 7.22.5 + dev: false + /@babel/plugin-transform-react-jsx-source@7.22.5(@babel/core@7.22.10): resolution: {integrity: sha512-yIiRO6yobeEIaI0RTbIr8iAK9FcBHLtZq0S89ZPjDLQXBA4xvghaKqI0etp/tF3htTM0sazJKKLz9oEiGRtu7w==} engines: {node: '>=6.9.0'} @@ -3533,6 +3452,19 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: false + /@babel/plugin-transform-react-jsx@7.18.6(@babel/core@7.18.9): + resolution: {integrity: sha512-Mz7xMPxoy9kPS/JScj6fJs03TZ/fZ1dJPlMjRAgTaxaS0fUBk8FV/A2rRgfPsVCZqALNwMexD+0Uaf5zlcKPpw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.9 + '@babel/helper-annotate-as-pure': 7.18.6 + '@babel/helper-module-imports': 7.18.6 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/plugin-syntax-jsx': 7.18.6(@babel/core@7.18.9) + '@babel/types': 7.18.9 + /@babel/plugin-transform-react-jsx@7.18.6(@babel/core@7.22.10): resolution: {integrity: sha512-Mz7xMPxoy9kPS/JScj6fJs03TZ/fZ1dJPlMjRAgTaxaS0fUBk8FV/A2rRgfPsVCZqALNwMexD+0Uaf5zlcKPpw==} engines: {node: '>=6.9.0'} @@ -3540,11 +3472,12 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.10 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-module-imports': 7.22.5 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-annotate-as-pure': 7.18.6 + '@babel/helper-module-imports': 7.18.6 + '@babel/helper-plugin-utils': 7.20.2 '@babel/plugin-syntax-jsx': 7.18.6(@babel/core@7.22.10) - '@babel/types': 7.22.10 + '@babel/types': 7.18.9 + dev: false /@babel/plugin-transform-react-pure-annotations@7.18.6(@babel/core@7.18.9): resolution: {integrity: sha512-I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ==} @@ -3566,17 +3499,6 @@ packages: '@babel/core': 7.18.9 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 regenerator-transform: 0.15.0 - dev: true - - /@babel/plugin-transform-regenerator@7.18.6(@babel/core@7.22.10): - resolution: {integrity: sha512-poqRI2+qiSdeldcz4wTSTXBRryoq3Gc70ye7m7UD5Ww0nE29IXqMl6r7Nd15WBgRd74vloEMlShtH6CKxVzfmQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 - regenerator-transform: 0.15.0 /@babel/plugin-transform-reserved-words@7.18.6(@babel/core@7.18.9): resolution: {integrity: sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==} @@ -3586,16 +3508,6 @@ packages: dependencies: '@babel/core': 7.18.9 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 - dev: true - - /@babel/plugin-transform-reserved-words@7.18.6(@babel/core@7.22.10): - resolution: {integrity: sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 /@babel/plugin-transform-runtime@7.18.9(@babel/core@7.18.9): resolution: {integrity: sha512-wS8uJwBt7/b/mzE13ktsJdmS4JP/j7PQSaADtnb4I2wL0zK51MQ0pmF8/Jy0wUIS96fr+fXT6S/ifiPXnvrlSg==} @@ -3612,7 +3524,6 @@ packages: semver: registry.npmmirror.com/semver@6.3.0 transitivePeerDependencies: - supports-color - dev: true /@babel/plugin-transform-runtime@7.18.9(@babel/core@7.22.10): resolution: {integrity: sha512-wS8uJwBt7/b/mzE13ktsJdmS4JP/j7PQSaADtnb4I2wL0zK51MQ0pmF8/Jy0wUIS96fr+fXT6S/ifiPXnvrlSg==} @@ -3639,7 +3550,6 @@ packages: dependencies: '@babel/core': 7.18.9 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 - dev: true /@babel/plugin-transform-shorthand-properties@7.18.6(@babel/core@7.22.10): resolution: {integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==} @@ -3649,6 +3559,7 @@ packages: dependencies: '@babel/core': 7.22.10 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 + dev: false /@babel/plugin-transform-spread@7.18.9(@babel/core@7.18.9): resolution: {integrity: sha512-39Q814wyoOPtIB/qGopNIL9xDChOE1pNU0ZY5dO0owhiVt/5kFm4li+/bBtwc7QotG0u5EPzqhZdjMtmqBqyQA==} @@ -3659,7 +3570,6 @@ packages: '@babel/core': 7.18.9 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 '@babel/helper-skip-transparent-expression-wrappers': 7.18.9 - dev: true /@babel/plugin-transform-spread@7.18.9(@babel/core@7.22.10): resolution: {integrity: sha512-39Q814wyoOPtIB/qGopNIL9xDChOE1pNU0ZY5dO0owhiVt/5kFm4li+/bBtwc7QotG0u5EPzqhZdjMtmqBqyQA==} @@ -3670,6 +3580,7 @@ packages: '@babel/core': 7.22.10 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 '@babel/helper-skip-transparent-expression-wrappers': 7.18.9 + dev: false /@babel/plugin-transform-sticky-regex@7.18.6(@babel/core@7.18.9): resolution: {integrity: sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==} @@ -3679,7 +3590,6 @@ packages: dependencies: '@babel/core': 7.18.9 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 - dev: true /@babel/plugin-transform-sticky-regex@7.18.6(@babel/core@7.22.10): resolution: {integrity: sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==} @@ -3689,6 +3599,7 @@ packages: dependencies: '@babel/core': 7.22.10 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 + dev: false /@babel/plugin-transform-template-literals@7.18.9(@babel/core@7.18.9): resolution: {integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==} @@ -3698,7 +3609,6 @@ packages: dependencies: '@babel/core': 7.18.9 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 - dev: true /@babel/plugin-transform-template-literals@7.18.9(@babel/core@7.22.10): resolution: {integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==} @@ -3708,6 +3618,7 @@ packages: dependencies: '@babel/core': 7.22.10 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 + dev: false /@babel/plugin-transform-typeof-symbol@7.18.9(@babel/core@7.18.9): resolution: {integrity: sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==} @@ -3717,16 +3628,6 @@ packages: dependencies: '@babel/core': 7.18.9 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 - dev: true - - /@babel/plugin-transform-typeof-symbol@7.18.9(@babel/core@7.22.10): - resolution: {integrity: sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 /@babel/plugin-transform-typescript@7.18.8(@babel/core@7.18.9): resolution: {integrity: sha512-p2xM8HI83UObjsZGofMV/EdYjamsDm6MoN3hXPYIT0+gxIoopE+B7rPYKAxfrz9K9PK7JafTTjqYC6qipLExYA==} @@ -3740,7 +3641,6 @@ packages: '@babel/plugin-syntax-typescript': 7.18.6(@babel/core@7.18.9) transitivePeerDependencies: - supports-color - dev: true /@babel/plugin-transform-typescript@7.18.8(@babel/core@7.22.10): resolution: {integrity: sha512-p2xM8HI83UObjsZGofMV/EdYjamsDm6MoN3hXPYIT0+gxIoopE+B7rPYKAxfrz9K9PK7JafTTjqYC6qipLExYA==} @@ -3764,16 +3664,6 @@ packages: dependencies: '@babel/core': 7.18.9 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 - dev: true - - /@babel/plugin-transform-unicode-escapes@7.18.6(@babel/core@7.22.10): - resolution: {integrity: sha512-XNRwQUXYMP7VLuy54cr/KS/WeL3AZeORhrmeZ7iewgu+X2eBqmpaLI/hzqr9ZxCeUoq0ASK4GUzSM0BDhZkLFw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 /@babel/plugin-transform-unicode-regex@7.18.6(@babel/core@7.18.9): resolution: {integrity: sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==} @@ -3784,7 +3674,6 @@ packages: '@babel/core': 7.18.9 '@babel/helper-create-regexp-features-plugin': 7.18.6(@babel/core@7.18.9) '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 - dev: true /@babel/plugin-transform-unicode-regex@7.18.6(@babel/core@7.22.10): resolution: {integrity: sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==} @@ -3795,6 +3684,7 @@ packages: '@babel/core': 7.22.10 '@babel/helper-create-regexp-features-plugin': 7.18.6(@babel/core@7.22.10) '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 + dev: false /@babel/polyfill@7.12.1: resolution: {integrity: sha512-X0pi0V6gxLi6lFZpGmeNa4zxtwEmCs42isWLNjZZDE0Y8yVfgu0T2OAHlzBbdYlqbW/YXVvoBHpATEM+goCj8g==} @@ -3888,127 +3778,28 @@ packages: semver: registry.npmmirror.com/semver@6.3.0 transitivePeerDependencies: - supports-color - dev: true - - /@babel/preset-env@7.18.9(@babel/core@7.22.10): - resolution: {integrity: sha512-75pt/q95cMIHWssYtyfjVlvI+QEZQThQbKvR9xH+F/Agtw/s4Wfc2V9Bwd/P39VtixB7oWxGdH4GteTTwYJWMg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/compat-data': 7.18.8 - '@babel/core': 7.22.10 - '@babel/helper-compilation-targets': 7.18.9(@babel/core@7.22.10) - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 - '@babel/helper-validator-option': 7.18.6 - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6(@babel/core@7.22.10) - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.18.9(@babel/core@7.22.10) - '@babel/plugin-proposal-async-generator-functions': 7.18.6(@babel/core@7.22.10) - '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.22.10) - '@babel/plugin-proposal-class-static-block': 7.18.6(@babel/core@7.22.10) - '@babel/plugin-proposal-dynamic-import': 7.18.6(@babel/core@7.22.10) - '@babel/plugin-proposal-export-namespace-from': 7.18.9(@babel/core@7.22.10) - '@babel/plugin-proposal-json-strings': 7.18.6(@babel/core@7.22.10) - '@babel/plugin-proposal-logical-assignment-operators': 7.18.9(@babel/core@7.22.10) - '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.22.10) - '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.22.10) - '@babel/plugin-proposal-object-rest-spread': 7.18.9(@babel/core@7.22.10) - '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.22.10) - '@babel/plugin-proposal-optional-chaining': 7.18.9(@babel/core@7.22.10) - '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.22.10) - '@babel/plugin-proposal-private-property-in-object': 7.18.6(@babel/core@7.22.10) - '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.22.10) - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.22.10) - '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.22.10) - '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.22.10) - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.22.10) - '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.22.10) - '@babel/plugin-syntax-import-assertions': 7.18.6(@babel/core@7.22.10) - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.22.10) - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.22.10) - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.22.10) - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.22.10) - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.22.10) - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.22.10) - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.22.10) - '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.22.10) - '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.22.10) - '@babel/plugin-transform-arrow-functions': 7.18.6(@babel/core@7.22.10) - '@babel/plugin-transform-async-to-generator': 7.18.6(@babel/core@7.22.10) - '@babel/plugin-transform-block-scoped-functions': 7.18.6(@babel/core@7.22.10) - '@babel/plugin-transform-block-scoping': 7.18.9(@babel/core@7.22.10) - '@babel/plugin-transform-classes': 7.18.9(@babel/core@7.22.10) - '@babel/plugin-transform-computed-properties': 7.18.9(@babel/core@7.22.10) - '@babel/plugin-transform-destructuring': 7.18.9(@babel/core@7.22.10) - '@babel/plugin-transform-dotall-regex': 7.18.6(@babel/core@7.22.10) - '@babel/plugin-transform-duplicate-keys': 7.18.9(@babel/core@7.22.10) - '@babel/plugin-transform-exponentiation-operator': 7.18.6(@babel/core@7.22.10) - '@babel/plugin-transform-for-of': 7.18.8(@babel/core@7.22.10) - '@babel/plugin-transform-function-name': 7.18.9(@babel/core@7.22.10) - '@babel/plugin-transform-literals': 7.18.9(@babel/core@7.22.10) - '@babel/plugin-transform-member-expression-literals': 7.18.6(@babel/core@7.22.10) - '@babel/plugin-transform-modules-amd': 7.18.6(@babel/core@7.22.10) - '@babel/plugin-transform-modules-commonjs': 7.18.6(@babel/core@7.22.10) - '@babel/plugin-transform-modules-systemjs': 7.18.9(@babel/core@7.22.10) - '@babel/plugin-transform-modules-umd': 7.18.6(@babel/core@7.22.10) - '@babel/plugin-transform-named-capturing-groups-regex': 7.18.6(@babel/core@7.22.10) - '@babel/plugin-transform-new-target': 7.18.6(@babel/core@7.22.10) - '@babel/plugin-transform-object-super': 7.18.6(@babel/core@7.22.10) - '@babel/plugin-transform-parameters': 7.18.8(@babel/core@7.22.10) - '@babel/plugin-transform-property-literals': 7.18.6(@babel/core@7.22.10) - '@babel/plugin-transform-regenerator': 7.18.6(@babel/core@7.22.10) - '@babel/plugin-transform-reserved-words': 7.18.6(@babel/core@7.22.10) - '@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.22.10) - '@babel/plugin-transform-spread': 7.18.9(@babel/core@7.22.10) - '@babel/plugin-transform-sticky-regex': 7.18.6(@babel/core@7.22.10) - '@babel/plugin-transform-template-literals': 7.18.9(@babel/core@7.22.10) - '@babel/plugin-transform-typeof-symbol': 7.18.9(@babel/core@7.22.10) - '@babel/plugin-transform-unicode-escapes': 7.18.6(@babel/core@7.22.10) - '@babel/plugin-transform-unicode-regex': 7.18.6(@babel/core@7.22.10) - '@babel/preset-modules': 0.1.5(@babel/core@7.22.10) - '@babel/types': registry.npmmirror.com/@babel/types@7.18.9 - babel-plugin-polyfill-corejs2: 0.3.1(@babel/core@7.22.10) - babel-plugin-polyfill-corejs3: 0.5.2(@babel/core@7.22.10) - babel-plugin-polyfill-regenerator: 0.3.1(@babel/core@7.22.10) - core-js-compat: 3.23.5 - semver: registry.npmmirror.com/semver@6.3.0 - transitivePeerDependencies: - - supports-color - /@babel/preset-flow@7.22.5(@babel/core@7.22.10): + /@babel/preset-flow@7.22.5(@babel/core@7.18.9): resolution: {integrity: sha512-ta2qZ+LSiGCrP5pgcGt8xMnnkXQrq8Sa4Ulhy06BOlF5QbLw9q5hIx7bn5MrsvyTGAfh6kTOo07Q+Pfld/8Y5Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-validator-option': 7.22.5 - '@babel/plugin-transform-flow-strip-types': 7.22.5(@babel/core@7.22.10) - dev: false - - /@babel/preset-modules@0.1.5(@babel/core@7.18.9): - resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.18.9 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 - '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.18.9) - '@babel/plugin-transform-dotall-regex': 7.18.6(@babel/core@7.18.9) - '@babel/types': registry.npmmirror.com/@babel/types@7.18.9 - esutils: registry.npmmirror.com/esutils@2.0.3 - dev: true + '@babel/core': 7.18.9 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-validator-option': 7.22.5 + '@babel/plugin-transform-flow-strip-types': 7.22.5(@babel/core@7.18.9) + dev: false - /@babel/preset-modules@0.1.5(@babel/core@7.22.10): + /@babel/preset-modules@0.1.5(@babel/core@7.18.9): resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.18.9 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 - '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.22.10) - '@babel/plugin-transform-dotall-regex': 7.18.6(@babel/core@7.22.10) + '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.18.9) + '@babel/plugin-transform-dotall-regex': 7.18.6(@babel/core@7.18.9) '@babel/types': registry.npmmirror.com/@babel/types@7.18.9 esutils: registry.npmmirror.com/esutils@2.0.3 @@ -4039,29 +3830,14 @@ packages: '@babel/plugin-transform-typescript': 7.18.8(@babel/core@7.18.9) transitivePeerDependencies: - supports-color - dev: true - - /@babel/preset-typescript@7.18.6(@babel/core@7.22.10): - resolution: {integrity: sha512-s9ik86kXBAnD760aybBucdpnLsAt0jK1xqJn2juOn9lkOvSHV60os5hxoVJsPzMQxvnUJFAlkont2DvvaYEBtQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.10 - '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 - '@babel/helper-validator-option': 7.18.6 - '@babel/plugin-transform-typescript': 7.18.8(@babel/core@7.22.10) - transitivePeerDependencies: - - supports-color - dev: false - /@babel/register@7.22.5(@babel/core@7.22.10): + /@babel/register@7.22.5(@babel/core@7.18.9): resolution: {integrity: sha512-vV6pm/4CijSQ8Y47RH5SopXzursN35RQINfGJkmOlcpAtGuf94miFvIPhCKGQN7WGIcsgG1BHEX2KVdTYwTwUQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.18.9 clone-deep: 4.0.1 find-cache-dir: 2.1.0 make-dir: 2.1.0 @@ -4104,6 +3880,7 @@ packages: '@babel/code-frame': 7.22.10 '@babel/parser': 7.22.10 '@babel/types': 7.22.10 + dev: false /@babel/traverse@7.18.9: resolution: {integrity: sha512-LcPAnujXGwBgv3/WHv01pHtb2tihcyW1XuL9wd7jqh1Z8AQkTd+QVjMrMijrln0T7ED3UXLIy36P9Ao7W75rYg==} @@ -4138,6 +3915,7 @@ packages: globals: 11.12.0 transitivePeerDependencies: - supports-color + dev: false /@babel/types@7.18.9: resolution: {integrity: sha512-WwMLAg2MvJmt/rKEVQBBhIVffMmnilX4oe0sRe7iPOHIGsqpruFHHdrfj4O1CMMtgMtCU4oPafZjDPCRgO57Wg==} @@ -4145,7 +3923,6 @@ packages: dependencies: '@babel/helper-validator-identifier': registry.npmmirror.com/@babel/helper-validator-identifier@7.18.6 to-fast-properties: 2.0.0 - dev: true /@babel/types@7.22.10: resolution: {integrity: sha512-obaoigiLrlDZ7TUQln/8m4mSqIW2QFeOrCQc9r+xsaHGNoplVNYlRVpsfE8Vj35GEm2ZH4ZhrNYogs/3fj85kg==} @@ -4155,12 +3932,12 @@ packages: '@babel/helper-validator-identifier': 7.22.5 to-fast-properties: 2.0.0 - /@baurine/esbuild-plugin-babel@0.3.0(@babel/core@7.22.10): + /@baurine/esbuild-plugin-babel@0.3.0(@babel/core@7.18.9): resolution: {integrity: sha512-AKa/svOQUhHE7HNa8vU3qEXL+U1ln211Sl5mCBX+AQIldEEcvA80udzVENGh6VEztUtbpsXRsPdP9VI8tyX96w==} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.18.9 dev: true /@baurine/esbuild-plugin-postcss3@0.3.3(less@4.1.3)(postcss@8.4.14)(sass@1.53.0)(stylus@0.58.1): @@ -4224,12 +4001,12 @@ packages: engines: {node: '>=10'} dev: false - /@cypress/code-coverage@3.10.0(@babel/core@7.22.10)(@babel/preset-env@7.18.9)(babel-loader@8.3.0)(cypress@8.5.0)(webpack@5.88.2): + /@cypress/code-coverage@3.10.0(@babel/core@7.18.9)(@babel/preset-env@7.18.9)(babel-loader@8.3.0)(cypress@8.5.0)(webpack@5.88.2): resolution: {integrity: sha512-K5pW2KPpK4vKMXqxd6vuzo6m9BNgpAv1LcrrtmqAtOJ1RGoEILXYZVost0L6Q+V01NyY7n7jXIIfS7LR3nP6YA==} peerDependencies: cypress: '*' dependencies: - '@cypress/webpack-preprocessor': 5.12.0(@babel/core@7.22.10)(@babel/preset-env@7.18.9)(babel-loader@8.3.0)(webpack@5.88.2) + '@cypress/webpack-preprocessor': 5.12.0(@babel/core@7.18.9)(@babel/preset-env@7.18.9)(babel-loader@8.3.0)(webpack@5.88.2) chalk: 4.1.2 cypress: 8.5.0 dayjs: 1.10.7 @@ -4275,7 +4052,7 @@ packages: resolution: {integrity: sha512-X+ibefBiuOmC5gKG91wRIT0/OqXeETYvu7zXktjZ3yLeO186Y8ia0K7/gQUpAwuUi28DuqMd1+7tBQVtPkzbPA==} dev: true - /@cypress/webpack-preprocessor@5.12.0(@babel/core@7.22.10)(@babel/preset-env@7.18.9)(babel-loader@8.3.0)(webpack@5.88.2): + /@cypress/webpack-preprocessor@5.12.0(@babel/core@7.18.9)(@babel/preset-env@7.18.9)(babel-loader@8.3.0)(webpack@5.88.2): resolution: {integrity: sha512-D/eLKKlgx6c/307FaCmjZGjFA64G29aA8KcCy6WqpNK/bSnRdPquMW2plemIsT/B80TK2DDKzZX/H3FcS41ZDA==} peerDependencies: '@babel/core': ^7.0.1 @@ -4283,9 +4060,9 @@ packages: babel-loader: ^8.0.2 webpack: ^4 || ^5 dependencies: - '@babel/core': 7.22.10 - '@babel/preset-env': 7.18.9(@babel/core@7.22.10) - babel-loader: 8.3.0(@babel/core@7.22.10)(webpack@5.88.2) + '@babel/core': 7.18.9 + '@babel/preset-env': 7.18.9(@babel/core@7.18.9) + babel-loader: 8.3.0(@babel/core@7.18.9)(webpack@5.88.2) bluebird: registry.npmmirror.com/bluebird@3.7.1 debug: registry.npmmirror.com/debug@4.3.4 lodash: registry.npmmirror.com/lodash@4.17.21 @@ -4732,7 +4509,7 @@ packages: resolution: {integrity: sha512-E9JjhUgNzvuQ+vVAL21vlyfy12gP0GhazGgJC4h6qUt1jSdUXGWJ1wfu/X7Sd8etSgxV4ovT1pb9v5D6QW4XgA==} engines: {node: '>= 10.14.2'} dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.18.9 '@jest/types': 26.6.2 babel-plugin-istanbul: 6.1.1 chalk: 4.1.2 @@ -5124,7 +4901,7 @@ packages: - encoding dev: false - /@react-native-community/cli-plugin-metro@11.3.6(@babel/core@7.22.10): + /@react-native-community/cli-plugin-metro@11.3.6(@babel/core@7.18.9): resolution: {integrity: sha512-D97racrPX3069ibyabJNKw9aJpVcaZrkYiEzsEnx50uauQtPDoQ1ELb/5c6CtMhAEGKoZ0B5MS23BbsSZcLs2g==} dependencies: '@react-native-community/cli-server-api': 11.3.6 @@ -5134,7 +4911,7 @@ packages: metro: 0.76.7 metro-config: 0.76.7 metro-core: 0.76.7 - metro-react-native-babel-transformer: 0.76.7(@babel/core@7.22.10) + metro-react-native-babel-transformer: 0.76.7(@babel/core@7.18.9) metro-resolver: 0.76.7 metro-runtime: 0.76.7 readline: 1.3.0 @@ -5187,7 +4964,7 @@ packages: joi: 17.9.2 dev: false - /@react-native-community/cli@11.3.6(@babel/core@7.22.10): + /@react-native-community/cli@11.3.6(@babel/core@7.18.9): resolution: {integrity: sha512-bdwOIYTBVQ9VK34dsf6t3u6vOUU5lfdhKaAxiAVArjsr7Je88Bgs4sAbsOYsNK3tkE8G77U6wLpekknXcanlww==} engines: {node: '>=16'} hasBin: true @@ -5197,7 +4974,7 @@ packages: '@react-native-community/cli-debugger-ui': 11.3.6 '@react-native-community/cli-doctor': 11.3.6 '@react-native-community/cli-hermes': 11.3.6 - '@react-native-community/cli-plugin-metro': 11.3.6(@babel/core@7.22.10) + '@react-native-community/cli-plugin-metro': 11.3.6(@babel/core@7.18.9) '@react-native-community/cli-server-api': 11.3.6 '@react-native-community/cli-tools': 11.3.6 '@react-native-community/cli-types': 11.3.6 @@ -5227,7 +5004,7 @@ packages: '@babel/preset-env': ^7.1.6 dependencies: '@babel/parser': 7.22.10 - '@babel/preset-env': 7.18.9(@babel/core@7.22.10) + '@babel/preset-env': 7.18.9(@babel/core@7.18.9) flow-parser: 0.206.0 jscodeshift: 0.14.0(@babel/preset-env@7.18.9) nullthrows: 1.1.1 @@ -5254,7 +5031,7 @@ packages: dependencies: invariant: 2.2.4 nullthrows: 1.1.1 - react-native: 0.72.4(@babel/core@7.22.10)(@babel/preset-env@7.18.9)(react@17.0.2) + react-native: 0.72.4(@babel/core@7.18.9)(@babel/preset-env@7.18.9)(react@17.0.2) dev: false /@react-spring/animated@9.5.0(react@17.0.2): @@ -5306,7 +5083,7 @@ packages: '@react-spring/shared': 9.5.0(react@17.0.2) '@react-spring/types': 9.5.0 react: 17.0.2 - react-native: 0.72.4(@babel/core@7.22.10)(@babel/preset-env@7.18.9)(react@17.0.2) + react-native: 0.72.4(@babel/core@7.18.9)(@babel/preset-env@7.18.9)(react@17.0.2) dev: false /@react-spring/rafz@9.5.0: @@ -5402,7 +5179,7 @@ packages: its-fine: 1.1.1(react@17.0.2) react: 17.0.2 react-dom: 17.0.2(react@17.0.2) - react-native: 0.72.4(@babel/core@7.22.10)(@babel/preset-env@7.18.9)(react@17.0.2) + react-native: 0.72.4(@babel/core@7.18.9)(@babel/preset-env@7.18.9)(react@17.0.2) react-reconciler: 0.27.0(react@17.0.2) react-use-measure: 2.1.1(react-dom@17.0.2)(react@17.0.2) scheduler: 0.21.0 @@ -6143,7 +5920,7 @@ packages: '@typescript-eslint/scope-manager': 5.30.7 '@typescript-eslint/type-utils': 5.30.7(eslint@8.20.0)(typescript@4.7.4) '@typescript-eslint/utils': 5.30.7(eslint@8.20.0)(typescript@4.7.4) - debug: 4.3.4(supports-color@8.1.1) + debug: registry.npmmirror.com/debug@4.3.4 eslint: 8.20.0 functional-red-black-tree: registry.npmmirror.com/functional-red-black-tree@1.0.1 ignore: registry.npmmirror.com/ignore@5.2.0 @@ -6219,7 +5996,7 @@ packages: '@typescript-eslint/scope-manager': 5.30.7 '@typescript-eslint/types': 5.30.7 '@typescript-eslint/typescript-estree': 5.30.7(typescript@4.7.4) - debug: 4.3.4(supports-color@8.1.1) + debug: registry.npmmirror.com/debug@4.3.4 eslint: 8.20.0 typescript: 4.7.4 transitivePeerDependencies: @@ -6282,7 +6059,7 @@ packages: dependencies: '@typescript-eslint/types': 4.33.0 '@typescript-eslint/visitor-keys': 4.33.0 - debug: 4.3.4(supports-color@8.1.1) + debug: registry.npmmirror.com/debug@4.3.4 globby: 11.1.0 is-glob: registry.npmmirror.com/is-glob@4.0.3 semver: registry.npmmirror.com/semver@7.3.7 @@ -6601,12 +6378,12 @@ packages: acorn-walk: 7.2.0 dev: true - /acorn-import-assertions@1.9.0(acorn@8.10.0): + /acorn-import-assertions@1.9.0(acorn@8.7.1): resolution: {integrity: sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==} peerDependencies: acorn: ^8 dependencies: - acorn: 8.10.0 + acorn: 8.7.1 dev: true /acorn-jsx@5.3.2(acorn@8.7.1): @@ -7156,26 +6933,26 @@ packages: resolution: {integrity: sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==} dev: true - /babel-core@7.0.0-bridge.0(@babel/core@7.22.10): + /babel-core@7.0.0-bridge.0(@babel/core@7.18.9): resolution: {integrity: sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.18.9 dev: false - /babel-jest@26.6.3(@babel/core@7.22.10): + /babel-jest@26.6.3(@babel/core@7.18.9): resolution: {integrity: sha512-pl4Q+GAVOHwvjrck6jKjvmGhnO3jHX/xuB9d27f+EJZ/6k+6nMuPjorrYp7s++bKKdANwzElBWnLWaObvTnaZA==} engines: {node: '>= 10.14.2'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.18.9 '@jest/transform': 26.6.2 '@jest/types': 26.6.2 '@types/babel__core': 7.20.1 babel-plugin-istanbul: 6.1.1 - babel-preset-jest: 26.6.2(@babel/core@7.22.10) + babel-preset-jest: 26.6.2(@babel/core@7.18.9) chalk: 4.1.2 graceful-fs: 4.2.10 slash: 3.0.0 @@ -7183,14 +6960,14 @@ packages: - supports-color dev: true - /babel-loader@8.3.0(@babel/core@7.22.10)(webpack@5.88.2): + /babel-loader@8.3.0(@babel/core@7.18.9)(webpack@5.88.2): resolution: {integrity: sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q==} engines: {node: '>= 8.9'} peerDependencies: '@babel/core': ^7.0.0 webpack: '>=2' dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.18.9 find-cache-dir: 3.3.2 loader-utils: 2.0.4 make-dir: 3.1.0 @@ -7220,8 +6997,8 @@ packages: resolution: {integrity: sha512-PO9t0697lNTmcEHH69mdtYiOIkkOlj9fySqfO3K1eCcdISevLAE0xY59VLLUj0SoiPiTX/JU2CYFpILydUa5Lw==} engines: {node: '>= 10.14.2'} dependencies: - '@babel/template': 7.22.5 - '@babel/types': 7.22.10 + '@babel/template': 7.18.6 + '@babel/types': 7.18.9 '@types/babel__core': 7.20.1 '@types/babel__traverse': 7.20.1 dev: true @@ -7246,7 +7023,6 @@ packages: semver: registry.npmmirror.com/semver@6.3.0 transitivePeerDependencies: - supports-color - dev: true /babel-plugin-polyfill-corejs2@0.3.1(@babel/core@7.22.10): resolution: {integrity: sha512-v7/T6EQcNfVLfcN2X8Lulb7DjprieyLWJK/zOWH5DUYcAgex9sP3h25Q+DLsX9TloXe3y1O8l2q2Jv9q8UVB9w==} @@ -7259,6 +7035,7 @@ packages: semver: registry.npmmirror.com/semver@6.3.0 transitivePeerDependencies: - supports-color + dev: false /babel-plugin-polyfill-corejs3@0.5.2(@babel/core@7.18.9): resolution: {integrity: sha512-G3uJih0XWiID451fpeFaYGVuxHEjzKTHtc9uGFEjR6hHrvNzeS/PX+LLLcetJcytsB5m4j+K3o/EpXJNb/5IEQ==} @@ -7270,7 +7047,6 @@ packages: core-js-compat: 3.23.5 transitivePeerDependencies: - supports-color - dev: true /babel-plugin-polyfill-corejs3@0.5.2(@babel/core@7.22.10): resolution: {integrity: sha512-G3uJih0XWiID451fpeFaYGVuxHEjzKTHtc9uGFEjR6hHrvNzeS/PX+LLLcetJcytsB5m4j+K3o/EpXJNb/5IEQ==} @@ -7282,6 +7058,7 @@ packages: core-js-compat: 3.23.5 transitivePeerDependencies: - supports-color + dev: false /babel-plugin-polyfill-regenerator@0.3.1(@babel/core@7.18.9): resolution: {integrity: sha512-Y2B06tvgHYt1x0yz17jGkGeeMr5FeKUu+ASJ+N6nB5lQ8Dapfg42i0OVrf8PNGJ3zKL4A23snMi1IRwrqqND7A==} @@ -7292,7 +7069,6 @@ packages: '@babel/helper-define-polyfill-provider': 0.3.1(@babel/core@7.18.9) transitivePeerDependencies: - supports-color - dev: true /babel-plugin-polyfill-regenerator@0.3.1(@babel/core@7.22.10): resolution: {integrity: sha512-Y2B06tvgHYt1x0yz17jGkGeeMr5FeKUu+ASJ+N6nB5lQ8Dapfg42i0OVrf8PNGJ3zKL4A23snMi1IRwrqqND7A==} @@ -7303,15 +7079,24 @@ packages: '@babel/helper-define-polyfill-provider': 0.3.1(@babel/core@7.22.10) transitivePeerDependencies: - supports-color + dev: false /babel-plugin-syntax-trailing-function-commas@7.0.0-beta.0: resolution: {integrity: sha512-Xj9XuRuz3nTSbaTXWv3itLOcxyF4oPD8douBBmj7U9BBC6nEBYfyOJYQMf/8PJAFotC62UY5dFfIGEPr7WswzQ==} dev: false + /babel-plugin-transform-flow-enums@0.0.2(@babel/core@7.18.9): + resolution: {integrity: sha512-g4aaCrDDOsWjbm0PUUeVnkcVd6AKJsVc/MbnPhEotEpkeJQP6b8nzewohQi7+QS8UyPehOhGWn0nOwjvWpmMvQ==} + dependencies: + '@babel/plugin-syntax-flow': 7.18.6(@babel/core@7.18.9) + transitivePeerDependencies: + - '@babel/core' + dev: false + /babel-plugin-transform-flow-enums@0.0.2(@babel/core@7.22.10): resolution: {integrity: sha512-g4aaCrDDOsWjbm0PUUeVnkcVd6AKJsVc/MbnPhEotEpkeJQP6b8nzewohQi7+QS8UyPehOhGWn0nOwjvWpmMvQ==} dependencies: - '@babel/plugin-syntax-flow': 7.22.5(@babel/core@7.22.10) + '@babel/plugin-syntax-flow': 7.18.6(@babel/core@7.22.10) transitivePeerDependencies: - '@babel/core' dev: false @@ -7320,26 +7105,63 @@ packages: resolution: {integrity: sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA==} dev: true - /babel-preset-current-node-syntax@1.0.1(@babel/core@7.22.10): + /babel-preset-current-node-syntax@1.0.1(@babel/core@7.18.9): resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.22.10 - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.22.10) - '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.22.10) - '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.22.10) - '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.22.10) - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.22.10) - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.22.10) - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.22.10) - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.22.10) - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.22.10) - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.22.10) - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.22.10) - '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.22.10) + '@babel/core': 7.18.9 + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.18.9) + '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.18.9) + '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.18.9) + '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.18.9) + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.18.9) + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.18.9) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.18.9) + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.18.9) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.18.9) + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.18.9) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.18.9) + '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.18.9) dev: true + /babel-preset-fbjs@3.4.0(@babel/core@7.18.9): + resolution: {integrity: sha512-9ywCsCvo1ojrw0b+XYk7aFvTH6D9064t0RIL1rtMf3nsa02Xw41MS7sZw216Im35xj/UY0PDBQsa1brUDDF1Ow==} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.18.9 + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.18.9) + '@babel/plugin-proposal-object-rest-spread': 7.18.9(@babel/core@7.18.9) + '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.18.9) + '@babel/plugin-syntax-flow': 7.18.6(@babel/core@7.18.9) + '@babel/plugin-syntax-jsx': 7.18.6(@babel/core@7.18.9) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.18.9) + '@babel/plugin-transform-arrow-functions': 7.18.6(@babel/core@7.18.9) + '@babel/plugin-transform-block-scoped-functions': 7.18.6(@babel/core@7.18.9) + '@babel/plugin-transform-block-scoping': 7.18.9(@babel/core@7.18.9) + '@babel/plugin-transform-classes': 7.18.9(@babel/core@7.18.9) + '@babel/plugin-transform-computed-properties': 7.18.9(@babel/core@7.18.9) + '@babel/plugin-transform-destructuring': 7.18.9(@babel/core@7.18.9) + '@babel/plugin-transform-flow-strip-types': 7.18.9(@babel/core@7.18.9) + '@babel/plugin-transform-for-of': 7.18.8(@babel/core@7.18.9) + '@babel/plugin-transform-function-name': 7.18.9(@babel/core@7.18.9) + '@babel/plugin-transform-literals': 7.18.9(@babel/core@7.18.9) + '@babel/plugin-transform-member-expression-literals': 7.18.6(@babel/core@7.18.9) + '@babel/plugin-transform-modules-commonjs': 7.18.6(@babel/core@7.18.9) + '@babel/plugin-transform-object-super': 7.18.6(@babel/core@7.18.9) + '@babel/plugin-transform-parameters': 7.18.8(@babel/core@7.18.9) + '@babel/plugin-transform-property-literals': 7.18.6(@babel/core@7.18.9) + '@babel/plugin-transform-react-display-name': 7.18.6(@babel/core@7.18.9) + '@babel/plugin-transform-react-jsx': 7.18.6(@babel/core@7.18.9) + '@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.18.9) + '@babel/plugin-transform-spread': 7.18.9(@babel/core@7.18.9) + '@babel/plugin-transform-template-literals': 7.18.9(@babel/core@7.18.9) + babel-plugin-syntax-trailing-function-commas: 7.0.0-beta.0 + transitivePeerDependencies: + - supports-color + dev: false + /babel-preset-fbjs@3.4.0(@babel/core@7.22.10): resolution: {integrity: sha512-9ywCsCvo1ojrw0b+XYk7aFvTH6D9064t0RIL1rtMf3nsa02Xw41MS7sZw216Im35xj/UY0PDBQsa1brUDDF1Ow==} peerDependencies: @@ -7347,9 +7169,9 @@ packages: dependencies: '@babel/core': 7.22.10 '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.22.10) - '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.22.10) + '@babel/plugin-proposal-object-rest-spread': 7.18.9(@babel/core@7.22.10) '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.22.10) - '@babel/plugin-syntax-flow': 7.22.5(@babel/core@7.22.10) + '@babel/plugin-syntax-flow': 7.18.6(@babel/core@7.22.10) '@babel/plugin-syntax-jsx': 7.18.6(@babel/core@7.22.10) '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.22.10) '@babel/plugin-transform-arrow-functions': 7.18.6(@babel/core@7.22.10) @@ -7357,15 +7179,15 @@ packages: '@babel/plugin-transform-block-scoping': 7.18.9(@babel/core@7.22.10) '@babel/plugin-transform-classes': 7.18.9(@babel/core@7.22.10) '@babel/plugin-transform-computed-properties': 7.18.9(@babel/core@7.22.10) - '@babel/plugin-transform-destructuring': 7.22.10(@babel/core@7.22.10) - '@babel/plugin-transform-flow-strip-types': 7.22.5(@babel/core@7.22.10) + '@babel/plugin-transform-destructuring': 7.18.9(@babel/core@7.22.10) + '@babel/plugin-transform-flow-strip-types': 7.18.9(@babel/core@7.22.10) '@babel/plugin-transform-for-of': 7.18.8(@babel/core@7.22.10) '@babel/plugin-transform-function-name': 7.18.9(@babel/core@7.22.10) '@babel/plugin-transform-literals': 7.18.9(@babel/core@7.22.10) '@babel/plugin-transform-member-expression-literals': 7.18.6(@babel/core@7.22.10) '@babel/plugin-transform-modules-commonjs': 7.18.6(@babel/core@7.22.10) '@babel/plugin-transform-object-super': 7.18.6(@babel/core@7.22.10) - '@babel/plugin-transform-parameters': 7.22.5(@babel/core@7.22.10) + '@babel/plugin-transform-parameters': 7.18.8(@babel/core@7.22.10) '@babel/plugin-transform-property-literals': 7.18.6(@babel/core@7.22.10) '@babel/plugin-transform-react-display-name': 7.18.6(@babel/core@7.22.10) '@babel/plugin-transform-react-jsx': 7.18.6(@babel/core@7.22.10) @@ -7377,15 +7199,15 @@ packages: - supports-color dev: false - /babel-preset-jest@26.6.2(@babel/core@7.22.10): + /babel-preset-jest@26.6.2(@babel/core@7.18.9): resolution: {integrity: sha512-YvdtlVm9t3k777c5NPQIv6cxFFFapys25HiUmuSgHwIZhfifweR5c5Sf5nwE3MAbfu327CYSvps8Yx6ANLyleQ==} engines: {node: '>= 10.14.2'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.18.9 babel-plugin-jest-hoist: 26.6.2 - babel-preset-current-node-syntax: 1.0.1(@babel/core@7.22.10) + babel-preset-current-node-syntax: 1.0.1(@babel/core@7.18.9) dev: true /babel-preset-react-app@10.0.1: @@ -7564,6 +7386,7 @@ packages: electron-to-chromium: 1.4.498 node-releases: 2.0.13 update-browserslist-db: 1.0.11(browserslist@4.21.10) + dev: false /browserslist@4.21.2: resolution: {integrity: sha512-MonuOgAtUB46uP5CezYbRaYKBNt2LxP0yX+Pmj4LkcDFGkn9Cbpi83d9sCjwQDErXsIJSzY5oKGDbgOlF/LPAA==} @@ -7688,6 +7511,7 @@ packages: /caniuse-lite@1.0.30001522: resolution: {integrity: sha512-TKiyTVZxJGhsTszLuzb+6vUZSjVOAhClszBr2Ta2k9IwtNBT/4dzmL6aywt0HCgEZlmwJzXJd8yNiob6HgwTRg==} + dev: false /capture-exit@2.0.0: resolution: {integrity: sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g==} @@ -9154,6 +8978,7 @@ packages: /electron-to-chromium@1.4.498: resolution: {integrity: sha512-4LODxAzKGVy7CJyhhN5mebwe7U2L29P+0G+HUriHnabm0d7LSff8Yn7t+Wq+2/9ze2Fu1dhX7mww090xfv7qXQ==} + dev: false /element-resize-event@3.0.6: resolution: {integrity: sha512-sSeXY9rNDp86bJODW68pxLcy3A5FrPZfIgOrJHzqgYzX513Zq6/ytdBigp7KeJEpZZopBBSiO1cVuiRkZpNxLw==} @@ -9611,7 +9436,7 @@ packages: source-map: 0.6.1 dev: true - /eslint-config-react-app@7.0.1(@babel/plugin-syntax-flow@7.22.5)(@babel/plugin-transform-react-jsx@7.18.6)(eslint@8.20.0)(typescript@4.7.4): + /eslint-config-react-app@7.0.1(@babel/plugin-syntax-flow@7.18.6)(@babel/plugin-transform-react-jsx@7.18.6)(eslint@8.20.0)(typescript@4.7.4): resolution: {integrity: sha512-K6rNzvkIeHaTd8m/QEh1Zko0KI7BACWkkneSs6s9cKZC/J27X3eZR6Upt1jkmZ/4FK+XUOPPxMEN7+lbUXfSlA==} engines: {node: '>=14.0.0'} peerDependencies: @@ -9629,7 +9454,7 @@ packages: babel-preset-react-app: 10.0.1 confusing-browser-globals: 1.0.11 eslint: 8.20.0 - eslint-plugin-flowtype: 8.0.3(@babel/plugin-syntax-flow@7.22.5)(@babel/plugin-transform-react-jsx@7.18.6)(eslint@8.20.0) + eslint-plugin-flowtype: 8.0.3(@babel/plugin-syntax-flow@7.18.6)(@babel/plugin-transform-react-jsx@7.18.6)(eslint@8.20.0) eslint-plugin-import: 2.26.0(@typescript-eslint/parser@5.30.7)(eslint@8.20.0) eslint-plugin-jest: 25.7.0(@typescript-eslint/eslint-plugin@5.30.7)(eslint@8.20.0)(typescript@4.7.4) eslint-plugin-jsx-a11y: 6.6.0(eslint@8.20.0) @@ -9690,7 +9515,7 @@ packages: globals: 11.12.0 dev: true - /eslint-plugin-flowtype@8.0.3(@babel/plugin-syntax-flow@7.22.5)(@babel/plugin-transform-react-jsx@7.18.6)(eslint@8.20.0): + /eslint-plugin-flowtype@8.0.3(@babel/plugin-syntax-flow@7.18.6)(@babel/plugin-transform-react-jsx@7.18.6)(eslint@8.20.0): resolution: {integrity: sha512-dX8l6qUL6O+fYPtpNRideCFSpmWOUVx5QcaGLVqe/vlDiBSe4vYljDWDETwnyFzpl7By/WVIu6rcrniCgH9BqQ==} engines: {node: '>=12.0.0'} peerDependencies: @@ -9698,8 +9523,8 @@ packages: '@babel/plugin-transform-react-jsx': ^7.14.9 eslint: ^8.1.0 dependencies: - '@babel/plugin-syntax-flow': 7.22.5(@babel/core@7.22.10) - '@babel/plugin-transform-react-jsx': 7.18.6(@babel/core@7.22.10) + '@babel/plugin-syntax-flow': 7.18.6(@babel/core@7.18.9) + '@babel/plugin-transform-react-jsx': 7.18.6(@babel/core@7.18.9) eslint: 8.20.0 lodash: 4.17.21 string-natural-compare: 3.0.1 @@ -9718,7 +9543,7 @@ packages: '@typescript-eslint/parser': 5.30.7(eslint@8.20.0)(typescript@4.7.4) array-includes: 3.1.5 array.prototype.flat: 1.3.0 - debug: 2.6.9 + debug: registry.npmmirror.com/debug@2.6.9 doctrine: registry.npmmirror.com/doctrine@2.1.0 eslint: 8.20.0 eslint-import-resolver-node: 0.3.6 @@ -12101,10 +11926,10 @@ packages: ts-node: optional: true dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.18.9 '@jest/test-sequencer': 26.6.3 '@jest/types': 26.6.2 - babel-jest: 26.6.3(@babel/core@7.22.10) + babel-jest: 26.6.3(@babel/core@7.18.9) chalk: 4.1.2 deepmerge: 4.3.1 glob: 7.2.3 @@ -12251,7 +12076,7 @@ packages: resolution: {integrity: sha512-kPKUrQtc8aYwBV7CqBg5pu+tmYXlvFlSFYn18ev4gPFtrRzB15N2gW/Roew3187q2w2eHuu0MU9TJz6w0/nPEg==} engines: {node: '>= 10.14.2'} dependencies: - '@babel/traverse': 7.22.10 + '@babel/traverse': 7.18.9 '@jest/environment': 26.6.2 '@jest/source-map': 26.6.2 '@jest/test-result': 26.6.2 @@ -12299,7 +12124,7 @@ packages: resolution: {integrity: sha512-rGiLePzQ3AzwUshu2+Rn+UMFk0pHN58sOG+IaJbk5Jxuqo3NYO1U2/MIR4S1sKgsoYSXSzdtSa0TgrmtUwEbmA==} engines: {node: '>= 10.14.2'} dependencies: - '@babel/code-frame': 7.22.10 + '@babel/code-frame': 7.18.6 '@jest/types': 26.6.2 '@types/stack-utils': 2.0.1 chalk: 4.1.2 @@ -12314,7 +12139,7 @@ packages: resolution: {integrity: sha512-FtzaEEHzjDpQp51HX4UMkPZjy46ati4T5pEMyM6Ik48ztu4T9LQplZ6OsimHx7EuM9dfEh5HJa6D3trEftu3dA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@babel/code-frame': 7.22.10 + '@babel/code-frame': 7.18.6 '@jest/types': 29.6.3 '@types/stack-utils': 2.0.1 chalk: 4.1.2 @@ -12473,7 +12298,7 @@ packages: resolution: {integrity: sha512-OLhxz05EzUtsAmOMzuupt1lHYXCNib0ECyuZ/PZOx9TrZcC8vL0x+DUG3TL+GLX3yHG45e6YGjIm0XwDc3q3og==} engines: {node: '>= 10.14.2'} dependencies: - '@babel/types': 7.22.10 + '@babel/types': 7.18.9 '@jest/types': 26.6.2 '@types/babel__traverse': 7.20.1 '@types/prettier': 2.7.3 @@ -12488,7 +12313,7 @@ packages: jest-resolve: 26.6.2 natural-compare: 1.4.0 pretty-format: 26.6.2 - semver: 7.5.4 + semver: 7.3.7 transitivePeerDependencies: - supports-color dev: true @@ -12656,17 +12481,17 @@ packages: peerDependencies: '@babel/preset-env': ^7.1.6 dependencies: - '@babel/core': 7.22.10 + '@babel/core': 7.18.9 '@babel/parser': 7.22.10 - '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.22.10) - '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.22.10) - '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.22.10) - '@babel/plugin-transform-modules-commonjs': 7.18.6(@babel/core@7.22.10) - '@babel/preset-env': 7.18.9(@babel/core@7.22.10) - '@babel/preset-flow': 7.22.5(@babel/core@7.22.10) - '@babel/preset-typescript': 7.18.6(@babel/core@7.22.10) - '@babel/register': 7.22.5(@babel/core@7.22.10) - babel-core: 7.0.0-bridge.0(@babel/core@7.22.10) + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.18.9) + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.18.9) + '@babel/plugin-proposal-optional-chaining': 7.18.9(@babel/core@7.18.9) + '@babel/plugin-transform-modules-commonjs': 7.18.6(@babel/core@7.18.9) + '@babel/preset-env': 7.18.9(@babel/core@7.18.9) + '@babel/preset-flow': 7.22.5(@babel/core@7.18.9) + '@babel/preset-typescript': 7.18.6(@babel/core@7.18.9) + '@babel/register': 7.22.5(@babel/core@7.18.9) + babel-core: 7.0.0-bridge.0(@babel/core@7.18.9) chalk: 4.1.2 flow-parser: 0.206.0 graceful-fs: 4.2.10 @@ -12690,7 +12515,7 @@ packages: optional: true dependencies: abab: 2.0.6 - acorn: 8.10.0 + acorn: 8.7.1 acorn-globals: 6.0.0 cssom: 0.4.4 cssstyle: 2.3.0 @@ -12722,10 +12547,6 @@ packages: - utf-8-validate dev: true - /jsencrypt@3.3.2: - resolution: {integrity: sha512-arQR1R1ESGdAxY7ZheWr12wCaF2yF47v5qpB76TtV64H1pyGudk9Hvw8Y9tb/FiTIaaTRUyaSnm5T/Y53Ghm/A==} - dev: false - /jsesc@0.5.0: resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==} hasBin: true @@ -12782,12 +12603,12 @@ packages: resolution: {integrity: sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==} engines: {node: '>=6'} hasBin: true - dev: true /json5@2.2.3: resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==} engines: {node: '>=6'} hasBin: true + dev: false /jsonfile@4.0.0: resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==} @@ -13077,7 +12898,7 @@ packages: dependencies: big.js: 5.2.2 emojis-list: 3.0.0 - json5: 2.2.3 + json5: 2.2.1 dev: true /loader-utils@3.2.0: @@ -13246,6 +13067,7 @@ packages: resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==} dependencies: yallist: 3.1.1 + dev: false /lru-cache@6.0.0: resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} @@ -13269,7 +13091,7 @@ packages: resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==} engines: {node: '>=8'} dependencies: - semver: 6.3.1 + semver: 6.3.0 dev: true /make-iterator@1.0.1: @@ -13554,6 +13376,55 @@ packages: uglify-es: 3.3.9 dev: false + /metro-react-native-babel-preset@0.76.7(@babel/core@7.18.9): + resolution: {integrity: sha512-R25wq+VOSorAK3hc07NW0SmN8z9S/IR0Us0oGAsBcMZnsgkbOxu77Mduqf+f4is/wnWHc5+9bfiqdLnaMngiVw==} + engines: {node: '>=16'} + peerDependencies: + '@babel/core': '*' + dependencies: + '@babel/core': 7.18.9 + '@babel/plugin-proposal-async-generator-functions': 7.18.6(@babel/core@7.18.9) + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.18.9) + '@babel/plugin-proposal-export-default-from': 7.22.5(@babel/core@7.18.9) + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.18.9) + '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.18.9) + '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.18.9) + '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.18.9) + '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.18.9) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.18.9) + '@babel/plugin-syntax-export-default-from': 7.22.5(@babel/core@7.18.9) + '@babel/plugin-syntax-flow': 7.18.6(@babel/core@7.18.9) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.18.9) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.18.9) + '@babel/plugin-transform-arrow-functions': 7.18.6(@babel/core@7.18.9) + '@babel/plugin-transform-async-to-generator': 7.22.5(@babel/core@7.18.9) + '@babel/plugin-transform-block-scoping': 7.18.9(@babel/core@7.18.9) + '@babel/plugin-transform-classes': 7.18.9(@babel/core@7.18.9) + '@babel/plugin-transform-computed-properties': 7.18.9(@babel/core@7.18.9) + '@babel/plugin-transform-destructuring': 7.22.10(@babel/core@7.18.9) + '@babel/plugin-transform-flow-strip-types': 7.22.5(@babel/core@7.18.9) + '@babel/plugin-transform-function-name': 7.18.9(@babel/core@7.18.9) + '@babel/plugin-transform-literals': 7.18.9(@babel/core@7.18.9) + '@babel/plugin-transform-modules-commonjs': 7.18.6(@babel/core@7.18.9) + '@babel/plugin-transform-named-capturing-groups-regex': 7.18.6(@babel/core@7.18.9) + '@babel/plugin-transform-parameters': 7.18.8(@babel/core@7.18.9) + '@babel/plugin-transform-react-display-name': 7.18.6(@babel/core@7.18.9) + '@babel/plugin-transform-react-jsx': 7.18.6(@babel/core@7.18.9) + '@babel/plugin-transform-react-jsx-self': 7.22.5(@babel/core@7.18.9) + '@babel/plugin-transform-react-jsx-source': 7.22.5(@babel/core@7.18.9) + '@babel/plugin-transform-runtime': 7.18.9(@babel/core@7.18.9) + '@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.18.9) + '@babel/plugin-transform-spread': 7.18.9(@babel/core@7.18.9) + '@babel/plugin-transform-sticky-regex': 7.18.6(@babel/core@7.18.9) + '@babel/plugin-transform-typescript': 7.18.8(@babel/core@7.18.9) + '@babel/plugin-transform-unicode-regex': 7.18.6(@babel/core@7.18.9) + '@babel/template': 7.18.6 + babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.18.9) + react-refresh: 0.4.3 + transitivePeerDependencies: + - supports-color + dev: false + /metro-react-native-babel-preset@0.76.7(@babel/core@7.22.10): resolution: {integrity: sha512-R25wq+VOSorAK3hc07NW0SmN8z9S/IR0Us0oGAsBcMZnsgkbOxu77Mduqf+f4is/wnWHc5+9bfiqdLnaMngiVw==} engines: {node: '>=16'} @@ -13571,7 +13442,7 @@ packages: '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.22.10) '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.22.10) '@babel/plugin-syntax-export-default-from': 7.22.5(@babel/core@7.22.10) - '@babel/plugin-syntax-flow': 7.22.5(@babel/core@7.22.10) + '@babel/plugin-syntax-flow': 7.18.6(@babel/core@7.22.10) '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.22.10) '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.22.10) '@babel/plugin-transform-arrow-functions': 7.18.6(@babel/core@7.22.10) @@ -13585,7 +13456,7 @@ packages: '@babel/plugin-transform-literals': 7.18.9(@babel/core@7.22.10) '@babel/plugin-transform-modules-commonjs': 7.18.6(@babel/core@7.22.10) '@babel/plugin-transform-named-capturing-groups-regex': 7.18.6(@babel/core@7.22.10) - '@babel/plugin-transform-parameters': 7.22.5(@babel/core@7.22.10) + '@babel/plugin-transform-parameters': 7.18.8(@babel/core@7.22.10) '@babel/plugin-transform-react-display-name': 7.18.6(@babel/core@7.22.10) '@babel/plugin-transform-react-jsx': 7.18.6(@babel/core@7.22.10) '@babel/plugin-transform-react-jsx-self': 7.22.5(@babel/core@7.22.10) @@ -13596,23 +13467,23 @@ packages: '@babel/plugin-transform-sticky-regex': 7.18.6(@babel/core@7.22.10) '@babel/plugin-transform-typescript': 7.18.8(@babel/core@7.22.10) '@babel/plugin-transform-unicode-regex': 7.18.6(@babel/core@7.22.10) - '@babel/template': 7.22.5 + '@babel/template': 7.18.6 babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.22.10) react-refresh: 0.4.3 transitivePeerDependencies: - supports-color dev: false - /metro-react-native-babel-transformer@0.76.7(@babel/core@7.22.10): + /metro-react-native-babel-transformer@0.76.7(@babel/core@7.18.9): resolution: {integrity: sha512-W6lW3J7y/05ph3c2p3KKJNhH0IdyxdOCbQ5it7aM2MAl0SM4wgKjaV6EYv9b3rHklpV6K3qMH37UKVcjMooWiA==} engines: {node: '>=16'} peerDependencies: '@babel/core': '*' dependencies: - '@babel/core': 7.22.10 - babel-preset-fbjs: 3.4.0(@babel/core@7.22.10) + '@babel/core': 7.18.9 + babel-preset-fbjs: 3.4.0(@babel/core@7.18.9) hermes-parser: 0.12.0 - metro-react-native-babel-preset: 0.76.7(@babel/core@7.22.10) + metro-react-native-babel-preset: 0.76.7(@babel/core@7.18.9) nullthrows: 1.1.1 transitivePeerDependencies: - supports-color @@ -13707,7 +13578,7 @@ packages: dependencies: '@babel/core': 7.22.10 '@babel/generator': 7.22.10 - '@babel/template': 7.22.5 + '@babel/template': 7.18.6 '@babel/traverse': 7.22.10 nullthrows: 1.1.1 transitivePeerDependencies: @@ -13742,11 +13613,11 @@ packages: engines: {node: '>=16'} hasBin: true dependencies: - '@babel/code-frame': 7.22.10 + '@babel/code-frame': 7.18.6 '@babel/core': 7.22.10 '@babel/generator': 7.22.10 '@babel/parser': 7.22.10 - '@babel/template': 7.22.5 + '@babel/template': 7.18.6 '@babel/traverse': 7.22.10 '@babel/types': 7.22.10 accepts: 1.3.8 @@ -14135,7 +14006,6 @@ packages: /ms@2.1.2: resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} - dev: true /ms@2.1.3: resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} @@ -14317,7 +14187,7 @@ packages: dependencies: growly: 1.3.0 is-wsl: 2.2.0 - semver: 7.5.4 + semver: 7.3.7 shellwords: 0.1.1 uuid: 8.3.2 which: 2.0.2 @@ -14333,6 +14203,7 @@ packages: /node-releases@2.0.13: resolution: {integrity: sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==} + dev: false /node-releases@2.0.6: resolution: {integrity: sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==} @@ -16090,7 +15961,7 @@ packages: i18next: 23.2.9 react: 17.0.2 react-dom: 17.0.2(react@17.0.2) - react-native: 0.72.4(@babel/core@7.22.10)(@babel/preset-env@7.18.9)(react@17.0.2) + react-native: 0.72.4(@babel/core@7.18.9)(@babel/preset-env@7.18.9)(react@17.0.2) dev: false /react-intersection-observer@9.3.5(react@17.0.2): @@ -16173,7 +16044,7 @@ packages: - supports-color dev: false - /react-native@0.72.4(@babel/core@7.22.10)(@babel/preset-env@7.18.9)(react@17.0.2): + /react-native@0.72.4(@babel/core@7.18.9)(@babel/preset-env@7.18.9)(react@17.0.2): resolution: {integrity: sha512-+vrObi0wZR+NeqL09KihAAdVlQ9IdplwznJWtYrjnQ4UbCW6rkzZJebRsugwUneSOKNFaHFEo1uKU89HsgtYBg==} engines: {node: '>=16'} hasBin: true @@ -16181,7 +16052,7 @@ packages: react: 18.2.0 dependencies: '@jest/create-cache-key-function': 29.6.3 - '@react-native-community/cli': 11.3.6(@babel/core@7.22.10) + '@react-native-community/cli': 11.3.6(@babel/core@7.18.9) '@react-native-community/cli-platform-android': 11.3.6 '@react-native-community/cli-platform-ios': 11.3.6 '@react-native/assets-registry': 0.72.0 @@ -16270,7 +16141,7 @@ packages: react: 17.0.2 react-dom: 17.0.2(react@17.0.2) react-is: 17.0.2 - react-native: 0.72.4(@babel/core@7.22.10)(@babel/preset-env@7.18.9)(react@17.0.2) + react-native: 0.72.4(@babel/core@7.18.9)(@babel/preset-env@7.18.9)(react@17.0.2) dev: false /react-refresh@0.4.3: @@ -17132,9 +17003,15 @@ packages: resolution: {integrity: sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==} hasBin: true + /semver@6.3.0: + resolution: {integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==} + hasBin: true + dev: true + /semver@6.3.1: resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} hasBin: true + dev: false /semver@7.3.7: resolution: {integrity: sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==} @@ -17150,6 +17027,7 @@ packages: hasBin: true dependencies: lru-cache: 6.0.0 + dev: false /send@0.18.0: resolution: {integrity: sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==} @@ -18492,6 +18370,7 @@ packages: browserslist: 4.21.10 escalade: 3.1.1 picocolors: 1.0.0 + dev: false /update-browserslist-db@1.0.5(browserslist@4.21.2): resolution: {integrity: sha512-dteFFpCyvuDdr9S/ff1ISkKt/9YZxKjI9WlRR99c180GaztJtRa/fn18FdxGVKVsnPY7/a/FDN68mcvUmP4U7Q==} @@ -18826,9 +18705,9 @@ packages: '@webassemblyjs/ast': 1.11.6 '@webassemblyjs/wasm-edit': 1.11.6 '@webassemblyjs/wasm-parser': 1.11.6 - acorn: 8.10.0 - acorn-import-assertions: 1.9.0(acorn@8.10.0) - browserslist: 4.21.10 + acorn: 8.7.1 + acorn-import-assertions: 1.9.0(acorn@8.7.1) + browserslist: 4.21.2 chrome-trace-event: 1.0.3 enhanced-resolve: 5.15.0 es-module-lexer: 1.3.0 @@ -19044,6 +18923,7 @@ packages: /yallist@3.1.1: resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==} + dev: false /yallist@4.0.0: resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} @@ -19652,7 +19532,19 @@ packages: dependencies: '@babel/core': 7.18.9 '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 - dev: true + + registry.npmmirror.com/@babel/plugin-syntax-flow@7.18.6(@babel/core@7.22.10): + resolution: {integrity: sha512-LUbR+KNTBWCUAqRG9ex5Gnzu2IOkt8jRJbHHXFT9q+L9zm7M/QQbEqXyw1n1pohYvOyWC8CjeyjrSaIwiYjK7A==, registry: https://registry.npmjs.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.18.6.tgz} + id: registry.npmmirror.com/@babel/plugin-syntax-flow/7.18.6 + name: '@babel/plugin-syntax-flow' + version: 7.18.6 + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.10 + '@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.20.2 + dev: false registry.npmmirror.com/@babel/plugin-syntax-jsx@7.18.6(@babel/core@7.18.9): resolution: {integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==, registry: https://registry.npmjs.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.18.6.tgz} @@ -20186,6 +20078,19 @@ packages: version: 1.11.6 dev: false + registry.npmmirror.com/debug@2.6.9: + resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==, registry: https://registry.npmjs.org/, tarball: https://registry.npmmirror.com/debug/-/debug-2.6.9.tgz} + name: debug + version: 2.6.9 + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + dependencies: + ms: 2.0.0 + dev: true + registry.npmmirror.com/debug@4.3.4: resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==, registry: https://registry.npmjs.org/, tarball: https://registry.npmmirror.com/debug/-/debug-4.3.4.tgz} name: debug @@ -20198,7 +20103,6 @@ packages: optional: true dependencies: ms: 2.1.2 - dev: true registry.npmmirror.com/decamelize@1.2.0: resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==, registry: https://registry.npmjs.org/, tarball: https://registry.npmmirror.com/decamelize/-/decamelize-1.2.0.tgz}