├── .dockerignore ├── .env.example ├── .eslintrc.json ├── .github └── workflows │ └── ci.yaml ├── .gitignore ├── .vscode └── settings.json ├── Dockerfile ├── Makefile ├── README.md ├── deployments ├── .helmignore ├── Chart.yaml ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── deployment.yaml │ ├── route.yaml │ ├── service.yaml │ └── tests │ │ └── test-connection.yaml └── values.yaml ├── docker-compose.yml ├── next.config.js ├── package-lock.json ├── package.json ├── pnpm-lock.yaml ├── public ├── favicon.ico ├── next.svg ├── thirteen.svg └── vercel.svg ├── src ├── components │ ├── AppBar.tsx │ ├── AppHead.tsx │ ├── Logo.tsx │ └── Services.tsx ├── pages │ ├── _app.tsx │ └── index.tsx └── styles │ └── globals.css ├── tsconfig.json └── yarn.lock /.dockerignore: -------------------------------------------------------------------------------- 1 | Dockerfile 2 | .dockerignore 3 | node_modules 4 | npm-debug.log 5 | README.md 6 | .next 7 | . 8 | -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- 1 | # TEH1_BACKEND_URL,TEH2_BACKEND_URL,SNAPPGROUP_BACKEND_URL = "https://status-be." 2 | TEH1_BACKEND_URL=https://status-be.apps.private.okd4.teh-1.snappcloud.io 3 | TEH2_BACKEND_URL=https://status-be.apps.private.okd4.teh-2.snappcloud.io 4 | SNAPPGROUP_BACKEND_URL=https://status-be.apps.private.snappgroup.teh-1.snappcloud.io -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- 1 | name: ci 2 | 3 | on: 4 | push: 5 | tags: 6 | - '**' 7 | 8 | jobs: 9 | build: 10 | name: build 11 | runs-on: ubuntu-latest 12 | permissions: 13 | packages: write 14 | steps: 15 | - uses: actions/checkout@v3 16 | 17 | - name: Rename .env.example to .env 18 | run: mv .env.example .env 19 | 20 | - uses: docker/setup-buildx-action@v2 21 | - uses: docker/setup-qemu-action@v2 22 | - uses: docker/login-action@v2 23 | with: 24 | registry: ghcr.io 25 | username: ${{ github.repository_owner }} 26 | password: ${{ secrets.GITHUB_TOKEN }} 27 | - uses: docker/build-push-action@v4 28 | with: 29 | context: . 30 | push: true 31 | tags: | 32 | ghcr.io/${{ github.repository_owner }}/${{ github.event.repository.name }}:${{ github.ref_name }} 33 | ghcr.io/${{ github.repository_owner }}/${{ github.event.repository.name }}:latest 34 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. 2 | 3 | # dependencies 4 | /node_modules 5 | /.pnp 6 | .pnp.js 7 | 8 | # testing 9 | /coverage 10 | 11 | # next.js 12 | /.next/ 13 | /out/ 14 | .env 15 | 16 | # production 17 | /build 18 | 19 | # misc 20 | .DS_Store 21 | *.pem 22 | 23 | # debug 24 | npm-debug.log* 25 | yarn-debug.log* 26 | yarn-error.log* 27 | .pnpm-debug.log* 28 | 29 | # local env files 30 | .env*.local 31 | 32 | # vercel 33 | .vercel 34 | 35 | # typescript 36 | *.tsbuildinfo 37 | next-env.d.ts 38 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "typescript.tsdk": "node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib", 3 | "typescript.enablePromptUseWorkspaceTsdk": true 4 | } -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | # ---------------------------------------> Dependencies 2 | 3 | FROM node:18-alpine AS dependencies 4 | 5 | RUN apk add --no-cache libc6-compat 6 | WORKDIR /app 7 | 8 | COPY package.json package-lock.json ./ 9 | RUN npm install --production 10 | 11 | # ---------------------------------------> Builder 12 | 13 | FROM node:18-alpine AS builder 14 | WORKDIR /app 15 | COPY --from=dependencies /app/node_modules ./node_modules 16 | COPY . . 17 | 18 | ENV NEXT_TELEMETRY_DISABLED 1 19 | 20 | RUN npm run build 21 | 22 | # remove dev dependencies 23 | RUN npm prune --production 24 | 25 | # ---------------------------------------> Runner 26 | 27 | FROM node:18-alpine AS runner 28 | WORKDIR /app 29 | 30 | ENV NODE_ENV production 31 | ENV NEXT_TELEMETRY_DISABLED 1 32 | 33 | RUN addgroup --system --gid 1001 nodejs 34 | RUN adduser --system --uid 1001 nextjs 35 | 36 | COPY --from=builder --chown=nextjs:nodejs /app/.next/standalone ./ 37 | COPY --from=builder --chown=nextjs:nodejs /app/.next/static ./.next/static 38 | COPY --from=builder --chown=nextjs:nodejs /app/public ./public 39 | 40 | USER nextjs 41 | 42 | EXPOSE 3000 43 | 44 | ENV PORT 3000 45 | 46 | CMD ["node", "server.js"] 47 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | helm-install: 2 | helm upgrade --install "snappcloud-status-frontend" ./deployments 3 | 4 | helm-uninstall: 5 | helm uninstall "snappcloud-status-frontend" 6 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Service Health 2 | 3 | This page provides status information on the services that are part of SnappCloud. It allows users to check the current status of the listed services. If you encounter an issue that is not listed here, please contact our Support team for assistance. 4 | 5 | ## Contents 6 | 7 | - [Introduction](#introduction) 8 | - [Service Status](#service-status) 9 | - [Environment Variables](#environment-variables) 10 | - [Launching the Code](#launching-the-code) 11 | - [Contact](#contact) 12 | - [Additional Resources](#additional-resources) 13 | 14 | ## Introduction 15 | 16 | The Service Health page is designed to keep users informed about the status of the services offered by SnappCloud. It serves as a central location to monitor any ongoing issues or disruptions in service. By regularly checking this page, users can stay updated and be aware of any potential impacts on their workflows or applications. 17 | 18 | ## Service Status 19 | 20 | The current status of each service is displayed on this page. It indicates whether the service is operating normally or experiencing any known issues or outages. The list is continuously updated to reflect the most recent information. 21 | 22 | ## Environment Variables 23 | 24 | The following environment variables are used in the SnappCloud services: 25 | 26 | - `TEH1_BACKEND_URL`: The URL for TEH1 backend. 27 | - `TEH2_BACKEND_URL`: The URL for TEH2 backend. 28 | - `SNAPPGROUP_BACKEND_URL`: The URL for SNAPPGROUP backend. 29 | 30 | Make sure to properly configure these environment variables in your deployment or application setup. To set up the environment variables, you can create a file named `.env` in the root directory of your project. You can use the provided `.env.example` file as a template. Rename the `.env.example` file to `.env` and update the values of the environment variables as required. 31 | 32 | ## Launching the Code 33 | 34 | To launch the code and start the SnappCloud services, ensure that you have set up the necessary environment variables in the `.env` file. Then, follow the instructions provided in the documentation to run the code and deploy the services. 35 | 36 | ## Contact 37 | 38 | If you encounter an issue that is not listed on the Service Health page or require further assistance, please contact our Support team. They will promptly address your concerns and provide the necessary support to resolve any service-related problems. 39 | 40 | - Support Team: [https://docs.snappcloud.io/docs/support](https://docs.snappcloud.io/docs/support) 41 | 42 | ## Additional Resources 43 | 44 | For additional information about the services offered by SnappCloud, please refer to our comprehensive documentation available at [https://docs.snappcloud.io/](https://docs.snappcloud.io/). The documentation covers various aspects of our services, including setup instructions, troubleshooting guides, and best practices. 45 | 46 | ## Getting Started 47 | 48 | First, run the development server: 49 | 50 | ```bash 51 | npm run dev 52 | # or 53 | yarn dev 54 | # or 55 | pnpm dev 56 | ``` 57 | 58 | Open [http://localhost:3000](http://localhost:3000) with your browser to see the result. 59 | 60 | ## Learn More about this Framework 61 | 62 | To learn more about Next.js, take a look at the following resources: 63 | 64 | - [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API. 65 | - [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial. 66 | -------------------------------------------------------------------------------- /deployments/.helmignore: -------------------------------------------------------------------------------- 1 | # Patterns to ignore when building packages. 2 | # This supports shell glob matching, relative path matching, and 3 | # negation (prefixed with !). Only one pattern per line. 4 | .DS_Store 5 | # Common VCS dirs 6 | .git/ 7 | .gitignore 8 | .bzr/ 9 | .bzrignore 10 | .hg/ 11 | .hgignore 12 | .svn/ 13 | # Common backup files 14 | *.swp 15 | *.bak 16 | *.tmp 17 | *.orig 18 | *~ 19 | # Various IDEs 20 | .project 21 | .idea/ 22 | *.tmproj 23 | .vscode/ 24 | -------------------------------------------------------------------------------- /deployments/Chart.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v2 2 | name: snappcloud-status-frontend 3 | description: A Helm chart for Kubernetes 4 | 5 | # A chart can be either an 'application' or a 'library' chart. 6 | # 7 | # Application charts are a collection of templates that can be packaged into versioned archives 8 | # to be deployed. 9 | # 10 | # Library charts provide useful utilities or functions for the chart developer. They're included as 11 | # a dependency of application charts to inject those utilities and functions into the rendering 12 | # pipeline. Library charts do not define any templates and therefore cannot be deployed. 13 | type: application 14 | 15 | # This is the chart version. This version number should be incremented each time you make changes 16 | # to the chart and its templates, including the app version. 17 | # Versions are expected to follow Semantic Versioning (https://semver.org/) 18 | version: 0.1.0 19 | 20 | # This is the version number of the application being deployed. This version number should be 21 | # incremented each time you make changes to the application. Versions are not expected to 22 | # follow Semantic Versioning. They should reflect the version the application is using. 23 | # It is recommended to use it with quotes. 24 | appVersion: "v0.1.24" 25 | -------------------------------------------------------------------------------- /deployments/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | 1. Get the application URL by running these commands: 2 | {{- if .Values.route.enabled }} 3 | {{- range $host := .Values.route.hosts }} 4 | http{{ if $.Values.route.tls }}s{{ end }}://{{ $host.host }}{{ .path }} 5 | {{- end }} 6 | {{- else if contains "NodePort" .Values.service.type }} 7 | export NODE_PORT=$(kubectl get --namespace {{ .Release.Namespace }} -o jsonpath="{.spec.ports[0].nodePort}" services {{ include "snappcloud-status-frontend.fullname" . }}) 8 | export NODE_IP=$(kubectl get nodes --namespace {{ .Release.Namespace }} -o jsonpath="{.items[0].status.addresses[0].address}") 9 | echo http://$NODE_IP:$NODE_PORT 10 | {{- else if contains "LoadBalancer" .Values.service.type }} 11 | NOTE: It may take a few minutes for the LoadBalancer IP to be available. 12 | You can watch the status of by running 'kubectl get --namespace {{ .Release.Namespace }} svc -w {{ include "snappcloud-status-frontend.fullname" . }}' 13 | export SERVICE_IP=$(kubectl get svc --namespace {{ .Release.Namespace }} {{ include "snappcloud-status-frontend.fullname" . }} --template "{{"{{ range (index .status.loadBalancer.ingress 0) }}{{.}}{{ end }}"}}") 14 | echo http://$SERVICE_IP:{{ .Values.service.port }} 15 | {{- else if contains "ClusterIP" .Values.service.type }} 16 | export POD_NAME=$(kubectl get pods --namespace {{ .Release.Namespace }} -l "app.kubernetes.io/name={{ include "snappcloud-status-frontend.name" . }},app.kubernetes.io/instance={{ .Release.Name }}" -o jsonpath="{.items[0].metadata.name}") 17 | export CONTAINER_PORT=$(kubectl get pod --namespace {{ .Release.Namespace }} $POD_NAME -o jsonpath="{.spec.containers[0].ports[0].containerPort}") 18 | echo "Visit http://127.0.0.1:8080 to use your application" 19 | kubectl --namespace {{ .Release.Namespace }} port-forward $POD_NAME 8080:$CONTAINER_PORT 20 | {{- end }} 21 | -------------------------------------------------------------------------------- /deployments/templates/_helpers.tpl: -------------------------------------------------------------------------------- 1 | {{/* 2 | Expand the name of the chart. 3 | */}} 4 | {{- define "snappcloud-status-frontend.name" -}} 5 | {{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" }} 6 | {{- end }} 7 | 8 | {{/* 9 | Create a default fully qualified app name. 10 | We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec). 11 | If release name contains chart name it will be used as a full name. 12 | */}} 13 | {{- define "snappcloud-status-frontend.fullname" -}} 14 | {{- if .Values.fullnameOverride }} 15 | {{- .Values.fullnameOverride | trunc 63 | trimSuffix "-" }} 16 | {{- else }} 17 | {{- $name := default .Chart.Name .Values.nameOverride }} 18 | {{- if contains $name .Release.Name }} 19 | {{- .Release.Name | trunc 63 | trimSuffix "-" }} 20 | {{- else }} 21 | {{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" }} 22 | {{- end }} 23 | {{- end }} 24 | {{- end }} 25 | 26 | {{/* 27 | Create chart name and version as used by the chart label. 28 | */}} 29 | {{- define "snappcloud-status-frontend.chart" -}} 30 | {{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" }} 31 | {{- end }} 32 | 33 | {{/* 34 | Common labels 35 | */}} 36 | {{- define "snappcloud-status-frontend.labels" -}} 37 | helm.sh/chart: {{ include "snappcloud-status-frontend.chart" . }} 38 | {{ include "snappcloud-status-frontend.selectorLabels" . }} 39 | {{- if .Chart.AppVersion }} 40 | app.kubernetes.io/version: {{ .Chart.AppVersion | quote }} 41 | {{- end }} 42 | app.kubernetes.io/managed-by: {{ .Release.Service }} 43 | {{- end }} 44 | 45 | {{/* 46 | Selector labels 47 | */}} 48 | {{- define "snappcloud-status-frontend.selectorLabels" -}} 49 | app.kubernetes.io/name: {{ include "snappcloud-status-frontend.name" . }} 50 | app.kubernetes.io/instance: {{ .Release.Name }} 51 | {{- end }} 52 | 53 | {{/* 54 | Create the name of the service account to use 55 | */}} 56 | {{- define "snappcloud-status-frontend.serviceAccountName" -}} 57 | {{- if .Values.serviceAccount.create }} 58 | {{- default (include "snappcloud-status-frontend.fullname" .) .Values.serviceAccount.name }} 59 | {{- else }} 60 | {{- default "default" .Values.serviceAccount.name }} 61 | {{- end }} 62 | {{- end }} 63 | -------------------------------------------------------------------------------- /deployments/templates/deployment.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: apps/v1 2 | kind: Deployment 3 | metadata: 4 | name: {{ include "snappcloud-status-frontend.fullname" . }} 5 | labels: 6 | {{- include "snappcloud-status-frontend.labels" . | nindent 4 }} 7 | spec: 8 | {{- if not .Values.autoscaling.enabled }} 9 | replicas: {{ .Values.replicaCount }} 10 | {{- end }} 11 | selector: 12 | matchLabels: 13 | {{- include "snappcloud-status-frontend.selectorLabels" . | nindent 6 }} 14 | template: 15 | metadata: 16 | {{- with .Values.podAnnotations }} 17 | annotations: 18 | {{- toYaml . | nindent 8 }} 19 | {{- end }} 20 | labels: 21 | {{- include "snappcloud-status-frontend.selectorLabels" . | nindent 8 }} 22 | spec: 23 | {{- with .Values.imagePullSecrets }} 24 | imagePullSecrets: 25 | {{- toYaml . | nindent 8 }} 26 | {{- end }} 27 | serviceAccountName: {{ include "snappcloud-status-frontend.serviceAccountName" . }} 28 | securityContext: 29 | {{- toYaml .Values.podSecurityContext | nindent 8 }} 30 | containers: 31 | - name: {{ .Chart.Name }} 32 | securityContext: 33 | {{- toYaml .Values.securityContext | nindent 12 }} 34 | image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}" 35 | imagePullPolicy: {{ .Values.image.pullPolicy }} 36 | ports: 37 | - name: http 38 | containerPort: {{ .Values.service.port }} 39 | protocol: {{ .Values.service.protocol }} 40 | resources: 41 | {{- toYaml .Values.resources | nindent 12 }} 42 | {{- with .Values.nodeSelector }} 43 | nodeSelector: 44 | {{- toYaml . | nindent 8 }} 45 | {{- end }} 46 | {{- with .Values.affinity }} 47 | affinity: 48 | {{- toYaml . | nindent 8 }} 49 | {{- end }} 50 | {{- with .Values.tolerations }} 51 | tolerations: 52 | {{- toYaml . | nindent 8 }} 53 | {{- end }} 54 | -------------------------------------------------------------------------------- /deployments/templates/route.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | {{- if .Values.route.enabled -}} 3 | apiVersion: route.openshift.io/v1 4 | kind: Route 5 | metadata: 6 | name: {{ include "snappcloud-status-frontend.fullname" $ }} 7 | spec: 8 | host: {{ .Values.route.host | quote }} 9 | port: 10 | targetPort: {{ $.Values.service.port }} 11 | to: 12 | kind: Service 13 | name: {{ include "snappcloud-status-frontend.fullname" $ }} 14 | weight: 100 15 | wildcardPolicy: None 16 | tls: 17 | termination: edge 18 | insecureEdgeTerminationPolicy: Redirect 19 | {{- end }} 20 | -------------------------------------------------------------------------------- /deployments/templates/service.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Service 3 | metadata: 4 | name: {{ include "snappcloud-status-frontend.fullname" . }} 5 | labels: 6 | {{- include "snappcloud-status-frontend.labels" . | nindent 4 }} 7 | spec: 8 | type: {{ .Values.service.type }} 9 | ports: 10 | - port: {{ .Values.service.port }} 11 | targetPort: http 12 | protocol: TCP 13 | name: http 14 | selector: 15 | {{- include "snappcloud-status-frontend.selectorLabels" . | nindent 4 }} 16 | -------------------------------------------------------------------------------- /deployments/templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Pod 3 | metadata: 4 | name: "{{ include "snappcloud-status-frontend.fullname" . }}-test-connection" 5 | labels: 6 | {{- include "snappcloud-status-frontend.labels" . | nindent 4 }} 7 | annotations: 8 | "helm.sh/hook": test 9 | spec: 10 | containers: 11 | - name: wget 12 | image: busybox 13 | command: ['wget'] 14 | args: ['{{ include "snappcloud-status-frontend.fullname" . }}:{{ .Values.service.port }}'] 15 | restartPolicy: Never 16 | -------------------------------------------------------------------------------- /deployments/values.yaml: -------------------------------------------------------------------------------- 1 | # Default values for snappcloud-status-frontend-server. 2 | # This is a YAML-formatted file. 3 | # Declare variables to be passed into your templates. 4 | 5 | replicaCount: 1 6 | 7 | image: 8 | repository: ghcr.io/snapp-incubator/snappcloud-status-frontend 9 | pullPolicy: Always 10 | # Overrides the image tag whose default is the chart appVersion. 11 | tag: "v0.2.0" 12 | 13 | imagePullSecrets: [] 14 | nameOverride: "" 15 | fullnameOverride: "" 16 | 17 | serviceAccount: 18 | # Specifies whether a service account should be created 19 | create: false 20 | # Annotations to add to the service account 21 | annotations: {} 22 | # The name of the service account to use. 23 | # If not set and create is true, a name is generated using the fullname template 24 | name: "" 25 | 26 | podAnnotations: {} 27 | 28 | podSecurityContext: {} 29 | # fsGroup: 2000 30 | 31 | securityContext: {} 32 | # capabilities: 33 | # drop: 34 | # - ALL 35 | # readOnlyRootFilesystem: true 36 | # runAsNonRoot: true 37 | # runAsUser: 1000 38 | 39 | service: 40 | type: ClusterIP 41 | protocol: TCP 42 | port: 3000 43 | 44 | route: 45 | enabled: true 46 | annotations: {} 47 | host: status.snappcloud.io 48 | tls: {} 49 | 50 | resources: 51 | limits: 52 | cpu: 1000m 53 | memory: 512Mi 54 | requests: 55 | cpu: 800m 56 | memory: 512Mi 57 | 58 | autoscaling: 59 | enabled: false 60 | minReplicas: 1 61 | maxReplicas: 100 62 | targetCPUUtilizationPercentage: 80 63 | # targetMemoryUtilizationPercentage: 80 64 | 65 | nodeSelector: {} 66 | 67 | tolerations: [] 68 | 69 | affinity: {} 70 | -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- 1 | version: '3.8' 2 | services: 3 | web: 4 | build: 5 | context: ./ 6 | target: runner 7 | volumes: 8 | - .:/app 9 | command: npm run dev 10 | ports: 11 | - "3000:3000" 12 | environment: 13 | NODE_ENV: development 14 | -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- 1 | /** @type {import('next').NextConfig} */ 2 | 3 | require('dotenv').config(); 4 | 5 | const isProduction = process.env.NODE_ENV === 'production'; 6 | 7 | module.exports = { 8 | env: { 9 | TEH1_BACKEND_URL: isProduction ? process.env.TEH1_BACKEND_URL : '' , 10 | TEH2_BACKEND_URL: isProduction ? process.env.TEH2_BACKEND_URL : '', 11 | SNAPPGROUP_BACKEND_URL: isProduction ? process.env.SNAPPGROUP_BACKEND_URL : '', 12 | }, 13 | output: 'standalone', 14 | }; 15 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "my-app", 3 | "version": "0.1.0", 4 | "private": true, 5 | "scripts": { 6 | "dev": "next dev", 7 | "build": "next build", 8 | "start": "next start", 9 | "lint": "next lint" 10 | }, 11 | "dependencies": { 12 | "@emotion/react": "^11.10.5", 13 | "@emotion/styled": "^11.10.5", 14 | "@mui/icons-material": "^5.11.0", 15 | "@mui/lab": "^5.0.0-alpha.118", 16 | "@mui/material": "^5.11.7", 17 | "@next/font": "13.1.6", 18 | "@types/node": "18.11.18", 19 | "@types/react": "18.0.27", 20 | "@types/react-dom": "18.0.10", 21 | "dotenv": "^16.3.1", 22 | "eslint": "8.33.0", 23 | "eslint-config-next": "13.1.6", 24 | "next": "13.1.6", 25 | "next-themes": "^0.2.1", 26 | "react": "18.2.0", 27 | "react-dom": "18.2.0", 28 | "react-icons": "^4.7.1", 29 | "sass": "^1.58.0", 30 | "typescript": "4.9.5" 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapp-incubator/snappcloud-status-frontend/0513795918c0de09e4f87e7f4dabe62da0c45a46/public/favicon.ico -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/thirteen.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/AppBar.tsx: -------------------------------------------------------------------------------- 1 | import Link from 'next/link'; 2 | import { useRouter } from 'next/router'; 3 | 4 | import CheckCircleIcon from '@mui/icons-material/CheckCircle'; 5 | import WarningIcon from '@mui/icons-material/Warning'; 6 | import CancelIcon from '@mui/icons-material/Cancel'; 7 | 8 | import Logo from "./Logo"; 9 | 10 | 11 | const AppBar: React.FC = () => { 12 | const router = useRouter(); 13 | 14 | const handleRefresh = () => { 15 | router.reload(); 16 | }; 17 | 18 | return ( 19 | <> 20 |
21 | 22 |
23 | 24 |
25 |

Service Health

26 |

This page provides status information on the services that are part of SnappCloud. Check back here to view the current status of the services listed below. If you are experiencing an issue not listed here, please contact Support. For additional information on these services, please visit https://docs.snappcloud.io/.

27 |
28 |
29 |
30 | 31 |

Available

32 |
33 |
34 | 35 |

Disruption

36 |
37 |
38 | 39 |

Outage

40 |
41 |
42 | 43 |
44 |
45 | 46 | ); 47 | }; 48 | 49 | export default AppBar; 50 | -------------------------------------------------------------------------------- /src/components/AppHead.tsx: -------------------------------------------------------------------------------- 1 | import Head from "next/head"; 2 | 3 | const AppHead: React.FC = () => { 4 | return ( 5 | 6 | Snappcloud Status Page 7 | 8 | 9 | 10 | ); 11 | }; 12 | 13 | export default AppHead; 14 | -------------------------------------------------------------------------------- /src/components/Logo.tsx: -------------------------------------------------------------------------------- 1 | const Logo = () => { 2 | return ( 3 |
4 | 5 |
6 | ); 7 | }; 8 | 9 | export default Logo; 10 | -------------------------------------------------------------------------------- /src/components/Services.tsx: -------------------------------------------------------------------------------- 1 | import React, { useState, useEffect } from "react"; 2 | 3 | import CheckCircleIcon from '@mui/icons-material/CheckCircle'; 4 | import WarningIcon from '@mui/icons-material/Warning'; 5 | import CancelIcon from '@mui/icons-material/Cancel'; 6 | 7 | enum Status { 8 | LOADING = 'loading', 9 | SUCCESS = 'success', 10 | FAILURE = 'failure', 11 | } 12 | 13 | type Service = { 14 | name: string, 15 | status: string 16 | } 17 | 18 | const Services = ({ title, backend }: { title: string, backend: string }) => { 19 | const [status, setStatus] = useState(Status.LOADING); 20 | const [services, setServices] = useState>([]); 21 | 22 | useEffect(() => { 23 | async function getServices() { 24 | try { 25 | const req = await fetch(backend + '/api/v1/services'); 26 | if (req.status != 200) { 27 | setStatus(Status.FAILURE); 28 | setServices([]); 29 | return; 30 | } 31 | 32 | const data = await req.json(); 33 | setStatus(Status.SUCCESS); 34 | setServices(data.services); 35 | return; 36 | } catch (e) { 37 | setStatus(Status.FAILURE); 38 | setServices([]); 39 | return; 40 | } 41 | } 42 | 43 | getServices() 44 | }, []); 45 | 46 | return <> 47 |

{title}

48 | {status === Status.LOADING && ( 49 |

Loading...

50 | )} 51 | {status === Status.SUCCESS && 52 | 53 | 54 | { 55 | services.map((service, index) => { 56 | const status: string = service.status 57 | var result // TODO: add result type 58 | 59 | if (status === "operational") { 60 | result = ; 61 | } else if (status === "disruption") { 62 | result = ; 63 | } else if (status === "outage") { 64 | result = ; 65 | } else { 66 | result = 67 | } 68 | 69 | return 70 | 71 | {result} 72 | 73 | } 74 | ) 75 | } 76 | 77 |

Unknown

{service.name}
78 | } 79 | {status === Status.FAILURE && ( 80 |

FAILURE

81 | )} 82 | 83 | }; 84 | 85 | export default Services; 86 | -------------------------------------------------------------------------------- /src/pages/_app.tsx: -------------------------------------------------------------------------------- 1 | import type { AppProps } from "next/app"; 2 | import Head from "next/head"; 3 | import { ThemeProvider } from "next-themes"; 4 | 5 | import AppHead from "src/components/AppHead"; 6 | 7 | import "../styles/globals.css"; 8 | 9 | function App({ Component, pageProps }: AppProps) { 10 | return ( 11 | <> 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | ); 21 | }; 22 | 23 | export default App; 24 | -------------------------------------------------------------------------------- /src/pages/index.tsx: -------------------------------------------------------------------------------- 1 | import AppBar from "src/components/AppBar"; 2 | import Services from "src/components/Services"; 3 | 4 | const regions = [ 5 | { name: "Cab Teh-1", url: process.env.TEH1_BACKEND_URL! }, 6 | { name: "Cab Teh-2", url: process.env.TEH2_BACKEND_URL! }, 7 | { name: "SnappGroup", url: process.env.SNAPPGROUP_BACKEND_URL! } 8 | ]; 9 | 10 | const Home = () => { 11 | return ( 12 | <> 13 | 14 |
15 | { 16 | regions.map((service, index) => 17 |
18 | 19 |
20 | ) 21 | } 22 |
23 | 24 | ); 25 | } 26 | 27 | export default Home; 28 | -------------------------------------------------------------------------------- /src/styles/globals.css: -------------------------------------------------------------------------------- 1 | body { 2 | font-family: Arial, sans-serif; 3 | margin: 0; 4 | padding: 0; 5 | } 6 | 7 | .status-icon { 8 | display: flex; 9 | justify-content: space-between; 10 | margin-right: 25px; 11 | } 12 | 13 | /* ICONS */ 14 | 15 | .transform-icon { 16 | transform: translateY(13px); 17 | margin-right: 5px; 18 | } 19 | 20 | .operational-icon { 21 | color: green; 22 | } 23 | 24 | .warning-icon { 25 | color: rgb(247, 161, 1); 26 | } 27 | 28 | .outage-icon { 29 | color: rgb(236, 1, 1); 30 | } 31 | 32 | .service-head { 33 | color: white; 34 | border: 1px solid #ddd; 35 | text-align: center; 36 | padding: 8px; 37 | background-color: #777; 38 | } 39 | 40 | .container { 41 | display: grid; 42 | grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); 43 | } 44 | 45 | /* TABLE */ 46 | 47 | table { 48 | width: 100%; 49 | border-collapse: collapse; 50 | } 51 | 52 | th, 53 | td { 54 | border: 1px solid #bdbdbd; 55 | padding: 8px; 56 | color: #333; 57 | text-align: center; 58 | } 59 | 60 | .table th { 61 | background-color: #777; 62 | } 63 | 64 | .table tr:nth-child(odd) { 65 | background-color: #e6e6e6; 66 | } 67 | 68 | .table tr:nth-child(even) { 69 | background-color: #dbdbdb; 70 | } 71 | 72 | @media (prefers-color-scheme: dark) { 73 | .table tr:nth-child(even) { 74 | background-color: #444; 75 | } 76 | .table tr:nth-child(odd) { 77 | background-color: #333; 78 | } 79 | th, td { 80 | border: 1px solid #ddd; 81 | color: #fff; 82 | } 83 | } -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "es5", 4 | "lib": ["dom", "dom.iterable", "esnext"], 5 | "allowJs": true, 6 | "skipLibCheck": true, 7 | "strict": true, 8 | "forceConsistentCasingInFileNames": true, 9 | "noEmit": true, 10 | "esModuleInterop": true, 11 | "module": "esnext", 12 | "moduleResolution": "node", 13 | "resolveJsonModule": true, 14 | "isolatedModules": true, 15 | "jsx": "preserve", 16 | "incremental": true, 17 | "plugins": [ 18 | { 19 | "name": "next" 20 | } 21 | ], 22 | "baseUrl": ".", 23 | "paths": { 24 | "@/*": ["./*"] 25 | } 26 | }, 27 | "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"], 28 | "exclude": ["node_modules"] 29 | } 30 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@babel/code-frame@^7.0.0": 6 | version "7.18.6" 7 | resolved "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz" 8 | integrity sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q== 9 | dependencies: 10 | "@babel/highlight" "^7.18.6" 11 | 12 | "@babel/helper-module-imports@^7.16.7": 13 | version "7.18.6" 14 | resolved "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz" 15 | integrity sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA== 16 | dependencies: 17 | "@babel/types" "^7.18.6" 18 | 19 | "@babel/helper-plugin-utils@^7.18.6": 20 | version "7.20.2" 21 | resolved "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz" 22 | integrity sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ== 23 | 24 | "@babel/helper-string-parser@^7.19.4": 25 | version "7.19.4" 26 | resolved "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.19.4.tgz" 27 | integrity sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw== 28 | 29 | "@babel/helper-validator-identifier@^7.18.6", "@babel/helper-validator-identifier@^7.19.1": 30 | version "7.19.1" 31 | resolved "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz" 32 | integrity sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w== 33 | 34 | "@babel/highlight@^7.18.6": 35 | version "7.18.6" 36 | resolved "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz" 37 | integrity sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g== 38 | dependencies: 39 | "@babel/helper-validator-identifier" "^7.18.6" 40 | chalk "^2.0.0" 41 | js-tokens "^4.0.0" 42 | 43 | "@babel/plugin-syntax-jsx@^7.17.12": 44 | version "7.18.6" 45 | resolved "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.18.6.tgz" 46 | integrity sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q== 47 | dependencies: 48 | "@babel/helper-plugin-utils" "^7.18.6" 49 | 50 | "@babel/runtime@^7.12.5", "@babel/runtime@^7.18.3", "@babel/runtime@^7.20.6", "@babel/runtime@^7.20.7", "@babel/runtime@^7.5.5", "@babel/runtime@^7.8.7": 51 | version "7.20.13" 52 | resolved "https://registry.npmjs.org/@babel/runtime/-/runtime-7.20.13.tgz" 53 | integrity sha512-gt3PKXs0DBoL9xCvOIIZ2NEqAGZqHjAnmVbfQtB620V0uReIQutpel14KcneZuer7UioY8ALKZ7iocavvzTNFA== 54 | dependencies: 55 | regenerator-runtime "^0.13.11" 56 | 57 | "@babel/types@^7.18.6": 58 | version "7.20.7" 59 | resolved "https://registry.npmjs.org/@babel/types/-/types-7.20.7.tgz" 60 | integrity sha512-69OnhBxSSgK0OzTJai4kyPDiKTIe3j+ctaHdIGVbRahTLAT7L3R9oeXHC2aVSuGYt3cVnoAMDmOCgJ2yaiLMvg== 61 | dependencies: 62 | "@babel/helper-string-parser" "^7.19.4" 63 | "@babel/helper-validator-identifier" "^7.19.1" 64 | to-fast-properties "^2.0.0" 65 | 66 | "@emotion/babel-plugin@^11.10.5": 67 | version "11.10.5" 68 | resolved "https://registry.npmjs.org/@emotion/babel-plugin/-/babel-plugin-11.10.5.tgz" 69 | integrity sha512-xE7/hyLHJac7D2Ve9dKroBBZqBT7WuPQmWcq7HSGb84sUuP4mlOWoB8dvVfD9yk5DHkU1m6RW7xSoDtnQHNQeA== 70 | dependencies: 71 | "@babel/helper-module-imports" "^7.16.7" 72 | "@babel/plugin-syntax-jsx" "^7.17.12" 73 | "@babel/runtime" "^7.18.3" 74 | "@emotion/hash" "^0.9.0" 75 | "@emotion/memoize" "^0.8.0" 76 | "@emotion/serialize" "^1.1.1" 77 | babel-plugin-macros "^3.1.0" 78 | convert-source-map "^1.5.0" 79 | escape-string-regexp "^4.0.0" 80 | find-root "^1.1.0" 81 | source-map "^0.5.7" 82 | stylis "4.1.3" 83 | 84 | "@emotion/cache@^11.10.5": 85 | version "11.10.5" 86 | resolved "https://registry.npmjs.org/@emotion/cache/-/cache-11.10.5.tgz" 87 | integrity sha512-dGYHWyzTdmK+f2+EnIGBpkz1lKc4Zbj2KHd4cX3Wi8/OWr5pKslNjc3yABKH4adRGCvSX4VDC0i04mrrq0aiRA== 88 | dependencies: 89 | "@emotion/memoize" "^0.8.0" 90 | "@emotion/sheet" "^1.2.1" 91 | "@emotion/utils" "^1.2.0" 92 | "@emotion/weak-memoize" "^0.3.0" 93 | stylis "4.1.3" 94 | 95 | "@emotion/hash@^0.9.0": 96 | version "0.9.0" 97 | resolved "https://registry.npmjs.org/@emotion/hash/-/hash-0.9.0.tgz" 98 | integrity sha512-14FtKiHhy2QoPIzdTcvh//8OyBlknNs2nXRwIhG904opCby3l+9Xaf/wuPvICBF0rc1ZCNBd3nKe9cd2mecVkQ== 99 | 100 | "@emotion/is-prop-valid@^1.2.0": 101 | version "1.2.0" 102 | resolved "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-1.2.0.tgz" 103 | integrity sha512-3aDpDprjM0AwaxGE09bOPkNxHpBd+kA6jty3RnaEXdweX1DF1U3VQpPYb0g1IStAuK7SVQ1cy+bNBBKp4W3Fjg== 104 | dependencies: 105 | "@emotion/memoize" "^0.8.0" 106 | 107 | "@emotion/memoize@^0.8.0": 108 | version "0.8.0" 109 | resolved "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.8.0.tgz" 110 | integrity sha512-G/YwXTkv7Den9mXDO7AhLWkE3q+I92B+VqAE+dYG4NGPaHZGvt3G8Q0p9vmE+sq7rTGphUbAvmQ9YpbfMQGGlA== 111 | 112 | "@emotion/react@^11.10.5": 113 | version "11.10.5" 114 | resolved "https://registry.npmjs.org/@emotion/react/-/react-11.10.5.tgz" 115 | integrity sha512-TZs6235tCJ/7iF6/rvTaOH4oxQg2gMAcdHemjwLKIjKz4rRuYe1HJ2TQJKnAcRAfOUDdU8XoDadCe1rl72iv8A== 116 | dependencies: 117 | "@babel/runtime" "^7.18.3" 118 | "@emotion/babel-plugin" "^11.10.5" 119 | "@emotion/cache" "^11.10.5" 120 | "@emotion/serialize" "^1.1.1" 121 | "@emotion/use-insertion-effect-with-fallbacks" "^1.0.0" 122 | "@emotion/utils" "^1.2.0" 123 | "@emotion/weak-memoize" "^0.3.0" 124 | hoist-non-react-statics "^3.3.1" 125 | 126 | "@emotion/serialize@^1.1.1": 127 | version "1.1.1" 128 | resolved "https://registry.npmjs.org/@emotion/serialize/-/serialize-1.1.1.tgz" 129 | integrity sha512-Zl/0LFggN7+L1liljxXdsVSVlg6E/Z/olVWpfxUTxOAmi8NU7YoeWeLfi1RmnB2TATHoaWwIBRoL+FvAJiTUQA== 130 | dependencies: 131 | "@emotion/hash" "^0.9.0" 132 | "@emotion/memoize" "^0.8.0" 133 | "@emotion/unitless" "^0.8.0" 134 | "@emotion/utils" "^1.2.0" 135 | csstype "^3.0.2" 136 | 137 | "@emotion/sheet@^1.2.1": 138 | version "1.2.1" 139 | resolved "https://registry.npmjs.org/@emotion/sheet/-/sheet-1.2.1.tgz" 140 | integrity sha512-zxRBwl93sHMsOj4zs+OslQKg/uhF38MB+OMKoCrVuS0nyTkqnau+BM3WGEoOptg9Oz45T/aIGs1qbVAsEFo3nA== 141 | 142 | "@emotion/styled@^11.10.5": 143 | version "11.10.5" 144 | resolved "https://registry.npmjs.org/@emotion/styled/-/styled-11.10.5.tgz" 145 | integrity sha512-8EP6dD7dMkdku2foLoruPCNkRevzdcBaY6q0l0OsbyJK+x8D9HWjX27ARiSIKNF634hY9Zdoedh8bJCiva8yZw== 146 | dependencies: 147 | "@babel/runtime" "^7.18.3" 148 | "@emotion/babel-plugin" "^11.10.5" 149 | "@emotion/is-prop-valid" "^1.2.0" 150 | "@emotion/serialize" "^1.1.1" 151 | "@emotion/use-insertion-effect-with-fallbacks" "^1.0.0" 152 | "@emotion/utils" "^1.2.0" 153 | 154 | "@emotion/unitless@^0.8.0": 155 | version "0.8.0" 156 | resolved "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.8.0.tgz" 157 | integrity sha512-VINS5vEYAscRl2ZUDiT3uMPlrFQupiKgHz5AA4bCH1miKBg4qtwkim1qPmJj/4WG6TreYMY111rEFsjupcOKHw== 158 | 159 | "@emotion/use-insertion-effect-with-fallbacks@^1.0.0": 160 | version "1.0.0" 161 | resolved "https://registry.npmjs.org/@emotion/use-insertion-effect-with-fallbacks/-/use-insertion-effect-with-fallbacks-1.0.0.tgz" 162 | integrity sha512-1eEgUGmkaljiBnRMTdksDV1W4kUnmwgp7X9G8B++9GYwl1lUdqSndSriIrTJ0N7LQaoauY9JJ2yhiOYK5+NI4A== 163 | 164 | "@emotion/utils@^1.2.0": 165 | version "1.2.0" 166 | resolved "https://registry.npmjs.org/@emotion/utils/-/utils-1.2.0.tgz" 167 | integrity sha512-sn3WH53Kzpw8oQ5mgMmIzzyAaH2ZqFEbozVVBSYp538E06OSE6ytOp7pRAjNQR+Q/orwqdQYJSe2m3hCOeznkw== 168 | 169 | "@emotion/weak-memoize@^0.3.0": 170 | version "0.3.0" 171 | resolved "https://registry.npmjs.org/@emotion/weak-memoize/-/weak-memoize-0.3.0.tgz" 172 | integrity sha512-AHPmaAx+RYfZz0eYu6Gviiagpmiyw98ySSlQvCUhVGDRtDFe4DBS0x1bSjdF3gqUDYOczB+yYvBTtEylYSdRhg== 173 | 174 | "@eslint/eslintrc@^1.4.1": 175 | version "1.4.1" 176 | resolved "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.4.1.tgz" 177 | integrity sha512-XXrH9Uarn0stsyldqDYq8r++mROmWRI1xKMXa640Bb//SY1+ECYX6VzT6Lcx5frD0V30XieqJ0oX9I2Xj5aoMA== 178 | dependencies: 179 | ajv "^6.12.4" 180 | debug "^4.3.2" 181 | espree "^9.4.0" 182 | globals "^13.19.0" 183 | ignore "^5.2.0" 184 | import-fresh "^3.2.1" 185 | js-yaml "^4.1.0" 186 | minimatch "^3.1.2" 187 | strip-json-comments "^3.1.1" 188 | 189 | "@humanwhocodes/config-array@^0.11.8": 190 | version "0.11.8" 191 | resolved "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.8.tgz" 192 | integrity sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g== 193 | dependencies: 194 | "@humanwhocodes/object-schema" "^1.2.1" 195 | debug "^4.1.1" 196 | minimatch "^3.0.5" 197 | 198 | "@humanwhocodes/module-importer@^1.0.1": 199 | version "1.0.1" 200 | resolved "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz" 201 | integrity sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA== 202 | 203 | "@humanwhocodes/object-schema@^1.2.1": 204 | version "1.2.1" 205 | resolved "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz" 206 | integrity sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA== 207 | 208 | "@mui/base@5.0.0-alpha.116": 209 | version "5.0.0-alpha.116" 210 | resolved "https://registry.npmjs.org/@mui/base/-/base-5.0.0-alpha.116.tgz" 211 | integrity sha512-VwhifWdrfHc4/ZdqRZ4Gf+7P39sovNN24By1YVZdvJ9fvp0Sr8sNftGUCjYXXz+xCXVBQDXvhfxMwZrj2MvJvA== 212 | dependencies: 213 | "@babel/runtime" "^7.20.7" 214 | "@emotion/is-prop-valid" "^1.2.0" 215 | "@mui/types" "^7.2.3" 216 | "@mui/utils" "^5.11.7" 217 | "@popperjs/core" "^2.11.6" 218 | clsx "^1.2.1" 219 | prop-types "^15.8.1" 220 | react-is "^18.2.0" 221 | 222 | "@mui/core-downloads-tracker@^5.11.7": 223 | version "5.11.7" 224 | resolved "https://registry.npmjs.org/@mui/core-downloads-tracker/-/core-downloads-tracker-5.11.7.tgz" 225 | integrity sha512-lZgX7XQTk0zVcpwEa80r+T4y09dosnUxWvFPSikU/2Hh5wnyNOek8WfJwGCNsaRiXJHMi5eHY+z8oku4u5lgNw== 226 | 227 | "@mui/icons-material@^5.11.0": 228 | version "5.11.0" 229 | resolved "https://registry.npmjs.org/@mui/icons-material/-/icons-material-5.11.0.tgz" 230 | integrity sha512-I2LaOKqO8a0xcLGtIozC9xoXjZAto5G5gh0FYUMAlbsIHNHIjn4Xrw9rvjY20vZonyiGrZNMAlAXYkY6JvhF6A== 231 | dependencies: 232 | "@babel/runtime" "^7.20.6" 233 | 234 | "@mui/lab@^5.0.0-alpha.118": 235 | version "5.0.0-alpha.118" 236 | resolved "https://registry.npmjs.org/@mui/lab/-/lab-5.0.0-alpha.118.tgz" 237 | integrity sha512-XedMEzYT6L9JawNV70mfMhDu4+2HNXSSn4+GPtFBE1Tefl8+djwK/FXdjPaG/qZzhwMyjO/RcwXzLPR0VWLpcw== 238 | dependencies: 239 | "@babel/runtime" "^7.20.7" 240 | "@mui/base" "5.0.0-alpha.116" 241 | "@mui/system" "^5.11.7" 242 | "@mui/types" "^7.2.3" 243 | "@mui/utils" "^5.11.7" 244 | clsx "^1.2.1" 245 | prop-types "^15.8.1" 246 | react-is "^18.2.0" 247 | 248 | "@mui/material@^5.11.7": 249 | version "5.11.7" 250 | resolved "https://registry.npmjs.org/@mui/material/-/material-5.11.7.tgz" 251 | integrity sha512-wDv7Pc6kMe9jeWkmCLt4JChd1lPc2u23JQHpB35L2VwQowpNFoDfIwqi0sYCnZTMKlRc7lza8LqwSwHl2G52Rw== 252 | dependencies: 253 | "@babel/runtime" "^7.20.7" 254 | "@mui/base" "5.0.0-alpha.116" 255 | "@mui/core-downloads-tracker" "^5.11.7" 256 | "@mui/system" "^5.11.7" 257 | "@mui/types" "^7.2.3" 258 | "@mui/utils" "^5.11.7" 259 | "@types/react-transition-group" "^4.4.5" 260 | clsx "^1.2.1" 261 | csstype "^3.1.1" 262 | prop-types "^15.8.1" 263 | react-is "^18.2.0" 264 | react-transition-group "^4.4.5" 265 | 266 | "@mui/private-theming@^5.11.7": 267 | version "5.11.7" 268 | resolved "https://registry.npmjs.org/@mui/private-theming/-/private-theming-5.11.7.tgz" 269 | integrity sha512-XzRTSZdc8bhuUdjablTNv3kFkZ/XIMlKkOqqJCU0G8W3tWGXpau2DXkafPd1ddjPhF9zF3qLKNGgKCChYItjgA== 270 | dependencies: 271 | "@babel/runtime" "^7.20.7" 272 | "@mui/utils" "^5.11.7" 273 | prop-types "^15.8.1" 274 | 275 | "@mui/styled-engine@^5.11.0": 276 | version "5.11.0" 277 | resolved "https://registry.npmjs.org/@mui/styled-engine/-/styled-engine-5.11.0.tgz" 278 | integrity sha512-AF06K60Zc58qf0f7X+Y/QjaHaZq16znliLnGc9iVrV/+s8Ln/FCoeNuFvhlCbZZQ5WQcJvcy59zp0nXrklGGPQ== 279 | dependencies: 280 | "@babel/runtime" "^7.20.6" 281 | "@emotion/cache" "^11.10.5" 282 | csstype "^3.1.1" 283 | prop-types "^15.8.1" 284 | 285 | "@mui/system@^5.11.7": 286 | version "5.11.7" 287 | resolved "https://registry.npmjs.org/@mui/system/-/system-5.11.7.tgz" 288 | integrity sha512-uGB6hBxGlAdlmbLdTtUZYNPXkgQGGnKxHdkRATqsu7UlCxNsc/yS5NCEWy/3c4pnelD1LDLD39WrntP9mwhfkQ== 289 | dependencies: 290 | "@babel/runtime" "^7.20.7" 291 | "@mui/private-theming" "^5.11.7" 292 | "@mui/styled-engine" "^5.11.0" 293 | "@mui/types" "^7.2.3" 294 | "@mui/utils" "^5.11.7" 295 | clsx "^1.2.1" 296 | csstype "^3.1.1" 297 | prop-types "^15.8.1" 298 | 299 | "@mui/types@^7.2.3": 300 | version "7.2.3" 301 | resolved "https://registry.npmjs.org/@mui/types/-/types-7.2.3.tgz" 302 | integrity sha512-tZ+CQggbe9Ol7e/Fs5RcKwg/woU+o8DCtOnccX6KmbBc7YrfqMYEYuaIcXHuhpT880QwNkZZ3wQwvtlDFA2yOw== 303 | 304 | "@mui/utils@^5.11.7": 305 | version "5.11.7" 306 | resolved "https://registry.npmjs.org/@mui/utils/-/utils-5.11.7.tgz" 307 | integrity sha512-8uyNDeVHZA804Ego20Erv8TpxlbqTe/EbhTI2H1UYr4/RiIbBprat8W4Qqr2UQIsC/b3DLz+0RQ6R/E5BxEcLA== 308 | dependencies: 309 | "@babel/runtime" "^7.20.7" 310 | "@types/prop-types" "^15.7.5" 311 | "@types/react-is" "^16.7.1 || ^17.0.0" 312 | prop-types "^15.8.1" 313 | react-is "^18.2.0" 314 | 315 | "@next/env@13.1.6": 316 | version "13.1.6" 317 | resolved "https://registry.npmjs.org/@next/env/-/env-13.1.6.tgz" 318 | integrity sha512-s+W9Fdqh5MFk6ECrbnVmmAOwxKQuhGMT7xXHrkYIBMBcTiOqNWhv5KbJIboKR5STXxNXl32hllnvKaffzFaWQg== 319 | 320 | "@next/eslint-plugin-next@13.1.6": 321 | version "13.1.6" 322 | resolved "https://registry.npmjs.org/@next/eslint-plugin-next/-/eslint-plugin-next-13.1.6.tgz" 323 | integrity sha512-o7cauUYsXjzSJkay8wKjpKJf2uLzlggCsGUkPu3lP09Pv97jYlekTC20KJrjQKmSv5DXV0R/uks2ZXhqjNkqAw== 324 | dependencies: 325 | glob "7.1.7" 326 | 327 | "@next/font@13.1.6": 328 | version "13.1.6" 329 | resolved "https://registry.npmjs.org/@next/font/-/font-13.1.6.tgz" 330 | integrity sha512-AITjmeb1RgX1HKMCiA39ztx2mxeAyxl4ljv2UoSBUGAbFFMg8MO7YAvjHCgFhD39hL7YTbFjol04e/BPBH5RzQ== 331 | 332 | "@next/swc-android-arm-eabi@13.1.6": 333 | version "13.1.6" 334 | resolved "https://registry.yarnpkg.com/@next/swc-android-arm-eabi/-/swc-android-arm-eabi-13.1.6.tgz#d766dfc10e27814d947b20f052067c239913dbcc" 335 | integrity sha512-F3/6Z8LH/pGlPzR1AcjPFxx35mPqjE5xZcf+IL+KgbW9tMkp7CYi1y7qKrEWU7W4AumxX/8OINnDQWLiwLasLQ== 336 | 337 | "@next/swc-android-arm64@13.1.6": 338 | version "13.1.6" 339 | resolved "https://registry.yarnpkg.com/@next/swc-android-arm64/-/swc-android-arm64-13.1.6.tgz#f37a98d5f18927d8c9970d750d516ac779465176" 340 | integrity sha512-cMwQjnB8vrYkWyK/H0Rf2c2pKIH4RGjpKUDvbjVAit6SbwPDpmaijLio0LWFV3/tOnY6kvzbL62lndVA0mkYpw== 341 | 342 | "@next/swc-darwin-arm64@13.1.6": 343 | version "13.1.6" 344 | resolved "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-13.1.6.tgz" 345 | integrity sha512-KKRQH4DDE4kONXCvFMNBZGDb499Hs+xcFAwvj+rfSUssIDrZOlyfJNy55rH5t2Qxed1e4K80KEJgsxKQN1/fyw== 346 | 347 | "@next/swc-darwin-x64@13.1.6": 348 | version "13.1.6" 349 | resolved "https://registry.yarnpkg.com/@next/swc-darwin-x64/-/swc-darwin-x64-13.1.6.tgz#e869ac75d16995eee733a7d1550322d9051c1eb4" 350 | integrity sha512-/uOky5PaZDoaU99ohjtNcDTJ6ks/gZ5ykTQDvNZDjIoCxFe3+t06bxsTPY6tAO6uEAw5f6vVFX5H5KLwhrkZCA== 351 | 352 | "@next/swc-freebsd-x64@13.1.6": 353 | version "13.1.6" 354 | resolved "https://registry.yarnpkg.com/@next/swc-freebsd-x64/-/swc-freebsd-x64-13.1.6.tgz#84a7b2e423a2904afc2edca21c2f1ba6b53fa4c1" 355 | integrity sha512-qaEALZeV7to6weSXk3Br80wtFQ7cFTpos/q+m9XVRFggu+8Ib895XhMWdJBzew6aaOcMvYR6KQ6JmHA2/eMzWw== 356 | 357 | "@next/swc-linux-arm-gnueabihf@13.1.6": 358 | version "13.1.6" 359 | resolved "https://registry.yarnpkg.com/@next/swc-linux-arm-gnueabihf/-/swc-linux-arm-gnueabihf-13.1.6.tgz#980eed1f655ff8a72187d8a6ef9e73ac39d20d23" 360 | integrity sha512-OybkbC58A1wJ+JrJSOjGDvZzrVEQA4sprJejGqMwiZyLqhr9Eo8FXF0y6HL+m1CPCpPhXEHz/2xKoYsl16kNqw== 361 | 362 | "@next/swc-linux-arm64-gnu@13.1.6": 363 | version "13.1.6" 364 | resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-13.1.6.tgz#87a71db21cded3f7c63d1d19079845c59813c53d" 365 | integrity sha512-yCH+yDr7/4FDuWv6+GiYrPI9kcTAO3y48UmaIbrKy8ZJpi7RehJe3vIBRUmLrLaNDH3rY1rwoHi471NvR5J5NQ== 366 | 367 | "@next/swc-linux-arm64-musl@13.1.6": 368 | version "13.1.6" 369 | resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-13.1.6.tgz#c5aac8619331b9fd030603bbe2b36052011e11de" 370 | integrity sha512-ECagB8LGX25P9Mrmlc7Q/TQBb9rGScxHbv/kLqqIWs2fIXy6Y/EiBBiM72NTwuXUFCNrWR4sjUPSooVBJJ3ESQ== 371 | 372 | "@next/swc-linux-x64-gnu@13.1.6": 373 | version "13.1.6" 374 | resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-13.1.6.tgz#9513d36d540bbfea575576746736054c31aacdea" 375 | integrity sha512-GT5w2mruk90V/I5g6ScuueE7fqj/d8Bui2qxdw6lFxmuTgMeol5rnzAv4uAoVQgClOUO/MULilzlODg9Ib3Y4Q== 376 | 377 | "@next/swc-linux-x64-musl@13.1.6": 378 | version "13.1.6" 379 | resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-13.1.6.tgz#d61fc6884899f5957251f4ce3f522e34a2c479b7" 380 | integrity sha512-keFD6KvwOPzmat4TCnlnuxJCQepPN+8j3Nw876FtULxo8005Y9Ghcl7ACcR8GoiKoddAq8gxNBrpjoxjQRHeAQ== 381 | 382 | "@next/swc-win32-arm64-msvc@13.1.6": 383 | version "13.1.6" 384 | resolved "https://registry.yarnpkg.com/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-13.1.6.tgz#fac2077a8ae9768e31444c9ae90807e64117cda7" 385 | integrity sha512-OwertslIiGQluFvHyRDzBCIB07qJjqabAmINlXUYt7/sY7Q7QPE8xVi5beBxX/rxTGPIbtyIe3faBE6Z2KywhQ== 386 | 387 | "@next/swc-win32-ia32-msvc@13.1.6": 388 | version "13.1.6" 389 | resolved "https://registry.yarnpkg.com/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-13.1.6.tgz#498bc11c91b4c482a625bf4b978f98ae91111e46" 390 | integrity sha512-g8zowiuP8FxUR9zslPmlju7qYbs2XBtTLVSxVikPtUDQedhcls39uKYLvOOd1JZg0ehyhopobRoH1q+MHlIN/w== 391 | 392 | "@next/swc-win32-x64-msvc@13.1.6": 393 | version "13.1.6" 394 | resolved "https://registry.yarnpkg.com/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-13.1.6.tgz#17ed919c723426b7d0ce1cd73d40ce3dcd342089" 395 | integrity sha512-Ls2OL9hi3YlJKGNdKv8k3X/lLgc3VmLG3a/DeTkAd+lAituJp8ZHmRmm9f9SL84fT3CotlzcgbdaCDfFwFA6bA== 396 | 397 | "@nodelib/fs.scandir@2.1.5": 398 | version "2.1.5" 399 | resolved "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz" 400 | integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== 401 | dependencies: 402 | "@nodelib/fs.stat" "2.0.5" 403 | run-parallel "^1.1.9" 404 | 405 | "@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2": 406 | version "2.0.5" 407 | resolved "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz" 408 | integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== 409 | 410 | "@nodelib/fs.walk@^1.2.3", "@nodelib/fs.walk@^1.2.8": 411 | version "1.2.8" 412 | resolved "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz" 413 | integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== 414 | dependencies: 415 | "@nodelib/fs.scandir" "2.1.5" 416 | fastq "^1.6.0" 417 | 418 | "@pkgr/utils@^2.3.1": 419 | version "2.3.1" 420 | resolved "https://registry.npmjs.org/@pkgr/utils/-/utils-2.3.1.tgz" 421 | integrity sha512-wfzX8kc1PMyUILA+1Z/EqoE4UCXGy0iRGMhPwdfae1+f0OXlLqCk+By+aMzgJBzR9AzS4CDizioG6Ss1gvAFJw== 422 | dependencies: 423 | cross-spawn "^7.0.3" 424 | is-glob "^4.0.3" 425 | open "^8.4.0" 426 | picocolors "^1.0.0" 427 | tiny-glob "^0.2.9" 428 | tslib "^2.4.0" 429 | 430 | "@popperjs/core@^2.11.6": 431 | version "2.11.6" 432 | resolved "https://registry.npmjs.org/@popperjs/core/-/core-2.11.6.tgz" 433 | integrity sha512-50/17A98tWUfQ176raKiOGXuYpLyyVMkxxG6oylzL3BPOlA6ADGdK7EYunSa4I064xerltq9TGXs8HmOk5E+vw== 434 | 435 | "@rushstack/eslint-patch@^1.1.3": 436 | version "1.2.0" 437 | resolved "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.2.0.tgz" 438 | integrity sha512-sXo/qW2/pAcmT43VoRKOJbDOfV3cYpq3szSVfIThQXNt+E4DfKj361vaAt3c88U5tPUxzEswam7GW48PJqtKAg== 439 | 440 | "@swc/helpers@0.4.14": 441 | version "0.4.14" 442 | resolved "https://registry.npmjs.org/@swc/helpers/-/helpers-0.4.14.tgz" 443 | integrity sha512-4C7nX/dvpzB7za4Ql9K81xK3HPxCpHMgwTZVyf+9JQ6VUbn9jjZVN7/Nkdz/Ugzs2CSjqnL/UPXroiVBVHUWUw== 444 | dependencies: 445 | tslib "^2.4.0" 446 | 447 | "@types/json5@^0.0.29": 448 | version "0.0.29" 449 | resolved "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz" 450 | integrity sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ== 451 | 452 | "@types/node@18.11.18": 453 | version "18.11.18" 454 | resolved "https://registry.npmjs.org/@types/node/-/node-18.11.18.tgz" 455 | integrity sha512-DHQpWGjyQKSHj3ebjFI/wRKcqQcdR+MoFBygntYOZytCqNfkd2ZC4ARDJ2DQqhjH5p85Nnd3jhUJIXrszFX/JA== 456 | 457 | "@types/parse-json@^4.0.0": 458 | version "4.0.0" 459 | resolved "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz" 460 | integrity sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA== 461 | 462 | "@types/prop-types@*", "@types/prop-types@^15.7.5": 463 | version "15.7.5" 464 | resolved "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.5.tgz" 465 | integrity sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w== 466 | 467 | "@types/react-dom@18.0.10": 468 | version "18.0.10" 469 | resolved "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.0.10.tgz" 470 | integrity sha512-E42GW/JA4Qv15wQdqJq8DL4JhNpB3prJgjgapN3qJT9K2zO5IIAQh4VXvCEDupoqAwnz0cY4RlXeC/ajX5SFHg== 471 | dependencies: 472 | "@types/react" "*" 473 | 474 | "@types/react-is@^16.7.1 || ^17.0.0": 475 | version "17.0.3" 476 | resolved "https://registry.npmjs.org/@types/react-is/-/react-is-17.0.3.tgz" 477 | integrity sha512-aBTIWg1emtu95bLTLx0cpkxwGW3ueZv71nE2YFBpL8k/z5czEW8yYpOo8Dp+UUAFAtKwNaOsh/ioSeQnWlZcfw== 478 | dependencies: 479 | "@types/react" "*" 480 | 481 | "@types/react-transition-group@^4.4.5": 482 | version "4.4.5" 483 | resolved "https://registry.npmjs.org/@types/react-transition-group/-/react-transition-group-4.4.5.tgz" 484 | integrity sha512-juKD/eiSM3/xZYzjuzH6ZwpP+/lejltmiS3QEzV/vmb/Q8+HfDmxu+Baga8UEMGBqV88Nbg4l2hY/K2DkyaLLA== 485 | dependencies: 486 | "@types/react" "*" 487 | 488 | "@types/react@*", "@types/react@18.0.27": 489 | version "18.0.27" 490 | resolved "https://registry.npmjs.org/@types/react/-/react-18.0.27.tgz" 491 | integrity sha512-3vtRKHgVxu3Jp9t718R9BuzoD4NcQ8YJ5XRzsSKxNDiDonD2MXIT1TmSkenxuCycZJoQT5d2vE8LwWJxBC1gmA== 492 | dependencies: 493 | "@types/prop-types" "*" 494 | "@types/scheduler" "*" 495 | csstype "^3.0.2" 496 | 497 | "@types/scheduler@*": 498 | version "0.16.2" 499 | resolved "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.2.tgz" 500 | integrity sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew== 501 | 502 | "@typescript-eslint/parser@^5.42.0": 503 | version "5.49.0" 504 | resolved "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.49.0.tgz" 505 | integrity sha512-veDlZN9mUhGqU31Qiv2qEp+XrJj5fgZpJ8PW30sHU+j/8/e5ruAhLaVDAeznS7A7i4ucb/s8IozpDtt9NqCkZg== 506 | dependencies: 507 | "@typescript-eslint/scope-manager" "5.49.0" 508 | "@typescript-eslint/types" "5.49.0" 509 | "@typescript-eslint/typescript-estree" "5.49.0" 510 | debug "^4.3.4" 511 | 512 | "@typescript-eslint/scope-manager@5.49.0": 513 | version "5.49.0" 514 | resolved "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.49.0.tgz" 515 | integrity sha512-clpROBOiMIzpbWNxCe1xDK14uPZh35u4QaZO1GddilEzoCLAEz4szb51rBpdgurs5k2YzPtJeTEN3qVbG+LRUQ== 516 | dependencies: 517 | "@typescript-eslint/types" "5.49.0" 518 | "@typescript-eslint/visitor-keys" "5.49.0" 519 | 520 | "@typescript-eslint/types@5.49.0": 521 | version "5.49.0" 522 | resolved "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.49.0.tgz" 523 | integrity sha512-7If46kusG+sSnEpu0yOz2xFv5nRz158nzEXnJFCGVEHWnuzolXKwrH5Bsf9zsNlOQkyZuk0BZKKoJQI+1JPBBg== 524 | 525 | "@typescript-eslint/typescript-estree@5.49.0": 526 | version "5.49.0" 527 | resolved "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.49.0.tgz" 528 | integrity sha512-PBdx+V7deZT/3GjNYPVQv1Nc0U46dAHbIuOG8AZ3on3vuEKiPDwFE/lG1snN2eUB9IhF7EyF7K1hmTcLztNIsA== 529 | dependencies: 530 | "@typescript-eslint/types" "5.49.0" 531 | "@typescript-eslint/visitor-keys" "5.49.0" 532 | debug "^4.3.4" 533 | globby "^11.1.0" 534 | is-glob "^4.0.3" 535 | semver "^7.3.7" 536 | tsutils "^3.21.0" 537 | 538 | "@typescript-eslint/visitor-keys@5.49.0": 539 | version "5.49.0" 540 | resolved "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.49.0.tgz" 541 | integrity sha512-v9jBMjpNWyn8B6k/Mjt6VbUS4J1GvUlR4x3Y+ibnP1z7y7V4n0WRz+50DY6+Myj0UaXVSuUlHohO+eZ8IJEnkg== 542 | dependencies: 543 | "@typescript-eslint/types" "5.49.0" 544 | eslint-visitor-keys "^3.3.0" 545 | 546 | acorn-jsx@^5.3.2: 547 | version "5.3.2" 548 | resolved "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz" 549 | integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== 550 | 551 | acorn@^8.8.0: 552 | version "8.8.2" 553 | resolved "https://registry.npmjs.org/acorn/-/acorn-8.8.2.tgz" 554 | integrity sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw== 555 | 556 | ajv@^6.10.0, ajv@^6.12.4: 557 | version "6.12.6" 558 | resolved "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz" 559 | integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== 560 | dependencies: 561 | fast-deep-equal "^3.1.1" 562 | fast-json-stable-stringify "^2.0.0" 563 | json-schema-traverse "^0.4.1" 564 | uri-js "^4.2.2" 565 | 566 | ansi-regex@^5.0.1: 567 | version "5.0.1" 568 | resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz" 569 | integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== 570 | 571 | ansi-styles@^3.2.1: 572 | version "3.2.1" 573 | resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz" 574 | integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== 575 | dependencies: 576 | color-convert "^1.9.0" 577 | 578 | ansi-styles@^4.1.0: 579 | version "4.3.0" 580 | resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz" 581 | integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== 582 | dependencies: 583 | color-convert "^2.0.1" 584 | 585 | anymatch@~3.1.2: 586 | version "3.1.3" 587 | resolved "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz" 588 | integrity sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw== 589 | dependencies: 590 | normalize-path "^3.0.0" 591 | picomatch "^2.0.4" 592 | 593 | argparse@^2.0.1: 594 | version "2.0.1" 595 | resolved "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz" 596 | integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== 597 | 598 | aria-query@^5.1.3: 599 | version "5.1.3" 600 | resolved "https://registry.npmjs.org/aria-query/-/aria-query-5.1.3.tgz" 601 | integrity sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ== 602 | dependencies: 603 | deep-equal "^2.0.5" 604 | 605 | array-includes@^3.1.5, array-includes@^3.1.6: 606 | version "3.1.6" 607 | resolved "https://registry.npmjs.org/array-includes/-/array-includes-3.1.6.tgz" 608 | integrity sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw== 609 | dependencies: 610 | call-bind "^1.0.2" 611 | define-properties "^1.1.4" 612 | es-abstract "^1.20.4" 613 | get-intrinsic "^1.1.3" 614 | is-string "^1.0.7" 615 | 616 | array-union@^2.1.0: 617 | version "2.1.0" 618 | resolved "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz" 619 | integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== 620 | 621 | array.prototype.flat@^1.3.1: 622 | version "1.3.1" 623 | resolved "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.1.tgz" 624 | integrity sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA== 625 | dependencies: 626 | call-bind "^1.0.2" 627 | define-properties "^1.1.4" 628 | es-abstract "^1.20.4" 629 | es-shim-unscopables "^1.0.0" 630 | 631 | array.prototype.flatmap@^1.3.1: 632 | version "1.3.1" 633 | resolved "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.1.tgz" 634 | integrity sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ== 635 | dependencies: 636 | call-bind "^1.0.2" 637 | define-properties "^1.1.4" 638 | es-abstract "^1.20.4" 639 | es-shim-unscopables "^1.0.0" 640 | 641 | array.prototype.tosorted@^1.1.1: 642 | version "1.1.1" 643 | resolved "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.1.tgz" 644 | integrity sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ== 645 | dependencies: 646 | call-bind "^1.0.2" 647 | define-properties "^1.1.4" 648 | es-abstract "^1.20.4" 649 | es-shim-unscopables "^1.0.0" 650 | get-intrinsic "^1.1.3" 651 | 652 | ast-types-flow@^0.0.7: 653 | version "0.0.7" 654 | resolved "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.7.tgz" 655 | integrity sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag== 656 | 657 | available-typed-arrays@^1.0.5: 658 | version "1.0.5" 659 | resolved "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz" 660 | integrity sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw== 661 | 662 | axe-core@^4.6.2: 663 | version "4.6.3" 664 | resolved "https://registry.npmjs.org/axe-core/-/axe-core-4.6.3.tgz" 665 | integrity sha512-/BQzOX780JhsxDnPpH4ZiyrJAzcd8AfzFPkv+89veFSr1rcMjuq2JDCwypKaPeB6ljHp9KjXhPpjgCvQlWYuqg== 666 | 667 | axobject-query@^3.1.1: 668 | version "3.1.1" 669 | resolved "https://registry.npmjs.org/axobject-query/-/axobject-query-3.1.1.tgz" 670 | integrity sha512-goKlv8DZrK9hUh975fnHzhNIO4jUnFCfv/dszV5VwUGDFjI6vQ2VwoyjYjYNEbBE8AH87TduWP5uyDR1D+Iteg== 671 | dependencies: 672 | deep-equal "^2.0.5" 673 | 674 | babel-plugin-macros@^3.1.0: 675 | version "3.1.0" 676 | resolved "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz" 677 | integrity sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg== 678 | dependencies: 679 | "@babel/runtime" "^7.12.5" 680 | cosmiconfig "^7.0.0" 681 | resolve "^1.19.0" 682 | 683 | balanced-match@^1.0.0: 684 | version "1.0.2" 685 | resolved "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz" 686 | integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== 687 | 688 | binary-extensions@^2.0.0: 689 | version "2.2.0" 690 | resolved "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz" 691 | integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA== 692 | 693 | brace-expansion@^1.1.7: 694 | version "1.1.11" 695 | resolved "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz" 696 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== 697 | dependencies: 698 | balanced-match "^1.0.0" 699 | concat-map "0.0.1" 700 | 701 | braces@^3.0.2, braces@~3.0.2: 702 | version "3.0.2" 703 | resolved "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz" 704 | integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== 705 | dependencies: 706 | fill-range "^7.0.1" 707 | 708 | call-bind@^1.0.0, call-bind@^1.0.2: 709 | version "1.0.2" 710 | resolved "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz" 711 | integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== 712 | dependencies: 713 | function-bind "^1.1.1" 714 | get-intrinsic "^1.0.2" 715 | 716 | callsites@^3.0.0: 717 | version "3.1.0" 718 | resolved "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz" 719 | integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== 720 | 721 | caniuse-lite@^1.0.30001406: 722 | version "1.0.30001449" 723 | resolved "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001449.tgz" 724 | integrity sha512-CPB+UL9XMT/Av+pJxCKGhdx+yg1hzplvFJQlJ2n68PyQGMz9L/E2zCyLdOL8uasbouTUgnPl+y0tccI/se+BEw== 725 | 726 | chalk@^2.0.0: 727 | version "2.4.2" 728 | resolved "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz" 729 | integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== 730 | dependencies: 731 | ansi-styles "^3.2.1" 732 | escape-string-regexp "^1.0.5" 733 | supports-color "^5.3.0" 734 | 735 | chalk@^4.0.0: 736 | version "4.1.2" 737 | resolved "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz" 738 | integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== 739 | dependencies: 740 | ansi-styles "^4.1.0" 741 | supports-color "^7.1.0" 742 | 743 | "chokidar@>=3.0.0 <4.0.0": 744 | version "3.5.3" 745 | resolved "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz" 746 | integrity sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw== 747 | dependencies: 748 | anymatch "~3.1.2" 749 | braces "~3.0.2" 750 | glob-parent "~5.1.2" 751 | is-binary-path "~2.1.0" 752 | is-glob "~4.0.1" 753 | normalize-path "~3.0.0" 754 | readdirp "~3.6.0" 755 | optionalDependencies: 756 | fsevents "~2.3.2" 757 | 758 | client-only@0.0.1: 759 | version "0.0.1" 760 | resolved "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz" 761 | integrity sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA== 762 | 763 | clsx@^1.2.1: 764 | version "1.2.1" 765 | resolved "https://registry.npmjs.org/clsx/-/clsx-1.2.1.tgz" 766 | integrity sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg== 767 | 768 | color-convert@^1.9.0: 769 | version "1.9.3" 770 | resolved "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz" 771 | integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== 772 | dependencies: 773 | color-name "1.1.3" 774 | 775 | color-convert@^2.0.1: 776 | version "2.0.1" 777 | resolved "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz" 778 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== 779 | dependencies: 780 | color-name "~1.1.4" 781 | 782 | color-name@1.1.3: 783 | version "1.1.3" 784 | resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz" 785 | integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw== 786 | 787 | color-name@~1.1.4: 788 | version "1.1.4" 789 | resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz" 790 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== 791 | 792 | concat-map@0.0.1: 793 | version "0.0.1" 794 | resolved "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz" 795 | integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== 796 | 797 | convert-source-map@^1.5.0: 798 | version "1.9.0" 799 | resolved "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz" 800 | integrity sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A== 801 | 802 | cosmiconfig@^7.0.0: 803 | version "7.1.0" 804 | resolved "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz" 805 | integrity sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA== 806 | dependencies: 807 | "@types/parse-json" "^4.0.0" 808 | import-fresh "^3.2.1" 809 | parse-json "^5.0.0" 810 | path-type "^4.0.0" 811 | yaml "^1.10.0" 812 | 813 | cross-spawn@^7.0.2, cross-spawn@^7.0.3: 814 | version "7.0.3" 815 | resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz" 816 | integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== 817 | dependencies: 818 | path-key "^3.1.0" 819 | shebang-command "^2.0.0" 820 | which "^2.0.1" 821 | 822 | csstype@^3.0.2, csstype@^3.1.1: 823 | version "3.1.1" 824 | resolved "https://registry.npmjs.org/csstype/-/csstype-3.1.1.tgz" 825 | integrity sha512-DJR/VvkAvSZW9bTouZue2sSxDwdTN92uHjqeKVm+0dAqdfNykRzQ95tay8aXMBAAPpUiq4Qcug2L7neoRh2Egw== 826 | 827 | damerau-levenshtein@^1.0.8: 828 | version "1.0.8" 829 | resolved "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz" 830 | integrity sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA== 831 | 832 | debug@^3.2.7: 833 | version "3.2.7" 834 | resolved "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz" 835 | integrity sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ== 836 | dependencies: 837 | ms "^2.1.1" 838 | 839 | debug@^4.1.1, debug@^4.3.2, debug@^4.3.4: 840 | version "4.3.4" 841 | resolved "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz" 842 | integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== 843 | dependencies: 844 | ms "2.1.2" 845 | 846 | deep-equal@^2.0.5: 847 | version "2.2.0" 848 | resolved "https://registry.npmjs.org/deep-equal/-/deep-equal-2.2.0.tgz" 849 | integrity sha512-RdpzE0Hv4lhowpIUKKMJfeH6C1pXdtT1/it80ubgWqwI3qpuxUBpC1S4hnHg+zjnuOoDkzUtUCEEkG+XG5l3Mw== 850 | dependencies: 851 | call-bind "^1.0.2" 852 | es-get-iterator "^1.1.2" 853 | get-intrinsic "^1.1.3" 854 | is-arguments "^1.1.1" 855 | is-array-buffer "^3.0.1" 856 | is-date-object "^1.0.5" 857 | is-regex "^1.1.4" 858 | is-shared-array-buffer "^1.0.2" 859 | isarray "^2.0.5" 860 | object-is "^1.1.5" 861 | object-keys "^1.1.1" 862 | object.assign "^4.1.4" 863 | regexp.prototype.flags "^1.4.3" 864 | side-channel "^1.0.4" 865 | which-boxed-primitive "^1.0.2" 866 | which-collection "^1.0.1" 867 | which-typed-array "^1.1.9" 868 | 869 | deep-is@^0.1.3: 870 | version "0.1.4" 871 | resolved "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz" 872 | integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== 873 | 874 | define-lazy-prop@^2.0.0: 875 | version "2.0.0" 876 | resolved "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz" 877 | integrity sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og== 878 | 879 | define-properties@^1.1.3, define-properties@^1.1.4: 880 | version "1.1.4" 881 | resolved "https://registry.npmjs.org/define-properties/-/define-properties-1.1.4.tgz" 882 | integrity sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA== 883 | dependencies: 884 | has-property-descriptors "^1.0.0" 885 | object-keys "^1.1.1" 886 | 887 | dir-glob@^3.0.1: 888 | version "3.0.1" 889 | resolved "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz" 890 | integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA== 891 | dependencies: 892 | path-type "^4.0.0" 893 | 894 | doctrine@^2.1.0: 895 | version "2.1.0" 896 | resolved "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz" 897 | integrity sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw== 898 | dependencies: 899 | esutils "^2.0.2" 900 | 901 | doctrine@^3.0.0: 902 | version "3.0.0" 903 | resolved "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz" 904 | integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w== 905 | dependencies: 906 | esutils "^2.0.2" 907 | 908 | dom-helpers@^5.0.1: 909 | version "5.2.1" 910 | resolved "https://registry.npmjs.org/dom-helpers/-/dom-helpers-5.2.1.tgz" 911 | integrity sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA== 912 | dependencies: 913 | "@babel/runtime" "^7.8.7" 914 | csstype "^3.0.2" 915 | 916 | dotenv@^16.3.1: 917 | version "16.3.1" 918 | resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-16.3.1.tgz#369034de7d7e5b120972693352a3bf112172cc3e" 919 | integrity sha512-IPzF4w4/Rd94bA9imS68tZBaYyBWSCE47V1RGuMrB94iyTOIEwRmVL2x/4An+6mETpLrKJ5hQkB8W4kFAadeIQ== 920 | 921 | emoji-regex@^9.2.2: 922 | version "9.2.2" 923 | resolved "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz" 924 | integrity sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg== 925 | 926 | enhanced-resolve@^5.10.0: 927 | version "5.12.0" 928 | resolved "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.12.0.tgz" 929 | integrity sha512-QHTXI/sZQmko1cbDoNAa3mJ5qhWUUNAq3vR0/YiD379fWQrcfuoX1+HW2S0MTt7XmoPLapdaDKUtelUSPic7hQ== 930 | dependencies: 931 | graceful-fs "^4.2.4" 932 | tapable "^2.2.0" 933 | 934 | error-ex@^1.3.1: 935 | version "1.3.2" 936 | resolved "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz" 937 | integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== 938 | dependencies: 939 | is-arrayish "^0.2.1" 940 | 941 | es-abstract@^1.19.0, es-abstract@^1.20.4: 942 | version "1.21.1" 943 | resolved "https://registry.npmjs.org/es-abstract/-/es-abstract-1.21.1.tgz" 944 | integrity sha512-QudMsPOz86xYz/1dG1OuGBKOELjCh99IIWHLzy5znUB6j8xG2yMA7bfTV86VSqKF+Y/H08vQPR+9jyXpuC6hfg== 945 | dependencies: 946 | available-typed-arrays "^1.0.5" 947 | call-bind "^1.0.2" 948 | es-set-tostringtag "^2.0.1" 949 | es-to-primitive "^1.2.1" 950 | function-bind "^1.1.1" 951 | function.prototype.name "^1.1.5" 952 | get-intrinsic "^1.1.3" 953 | get-symbol-description "^1.0.0" 954 | globalthis "^1.0.3" 955 | gopd "^1.0.1" 956 | has "^1.0.3" 957 | has-property-descriptors "^1.0.0" 958 | has-proto "^1.0.1" 959 | has-symbols "^1.0.3" 960 | internal-slot "^1.0.4" 961 | is-array-buffer "^3.0.1" 962 | is-callable "^1.2.7" 963 | is-negative-zero "^2.0.2" 964 | is-regex "^1.1.4" 965 | is-shared-array-buffer "^1.0.2" 966 | is-string "^1.0.7" 967 | is-typed-array "^1.1.10" 968 | is-weakref "^1.0.2" 969 | object-inspect "^1.12.2" 970 | object-keys "^1.1.1" 971 | object.assign "^4.1.4" 972 | regexp.prototype.flags "^1.4.3" 973 | safe-regex-test "^1.0.0" 974 | string.prototype.trimend "^1.0.6" 975 | string.prototype.trimstart "^1.0.6" 976 | typed-array-length "^1.0.4" 977 | unbox-primitive "^1.0.2" 978 | which-typed-array "^1.1.9" 979 | 980 | es-get-iterator@^1.1.2: 981 | version "1.1.3" 982 | resolved "https://registry.npmjs.org/es-get-iterator/-/es-get-iterator-1.1.3.tgz" 983 | integrity sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw== 984 | dependencies: 985 | call-bind "^1.0.2" 986 | get-intrinsic "^1.1.3" 987 | has-symbols "^1.0.3" 988 | is-arguments "^1.1.1" 989 | is-map "^2.0.2" 990 | is-set "^2.0.2" 991 | is-string "^1.0.7" 992 | isarray "^2.0.5" 993 | stop-iteration-iterator "^1.0.0" 994 | 995 | es-set-tostringtag@^2.0.1: 996 | version "2.0.1" 997 | resolved "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz" 998 | integrity sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg== 999 | dependencies: 1000 | get-intrinsic "^1.1.3" 1001 | has "^1.0.3" 1002 | has-tostringtag "^1.0.0" 1003 | 1004 | es-shim-unscopables@^1.0.0: 1005 | version "1.0.0" 1006 | resolved "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz" 1007 | integrity sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w== 1008 | dependencies: 1009 | has "^1.0.3" 1010 | 1011 | es-to-primitive@^1.2.1: 1012 | version "1.2.1" 1013 | resolved "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz" 1014 | integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== 1015 | dependencies: 1016 | is-callable "^1.1.4" 1017 | is-date-object "^1.0.1" 1018 | is-symbol "^1.0.2" 1019 | 1020 | escape-string-regexp@^1.0.5: 1021 | version "1.0.5" 1022 | resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz" 1023 | integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg== 1024 | 1025 | escape-string-regexp@^4.0.0: 1026 | version "4.0.0" 1027 | resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz" 1028 | integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== 1029 | 1030 | eslint-config-next@13.1.6: 1031 | version "13.1.6" 1032 | resolved "https://registry.npmjs.org/eslint-config-next/-/eslint-config-next-13.1.6.tgz" 1033 | integrity sha512-0cg7h5wztg/SoLAlxljZ0ZPUQ7i6QKqRiP4M2+MgTZtxWwNKb2JSwNc18nJ6/kXBI6xYvPraTbQSIhAuVw6czw== 1034 | dependencies: 1035 | "@next/eslint-plugin-next" "13.1.6" 1036 | "@rushstack/eslint-patch" "^1.1.3" 1037 | "@typescript-eslint/parser" "^5.42.0" 1038 | eslint-import-resolver-node "^0.3.6" 1039 | eslint-import-resolver-typescript "^3.5.2" 1040 | eslint-plugin-import "^2.26.0" 1041 | eslint-plugin-jsx-a11y "^6.5.1" 1042 | eslint-plugin-react "^7.31.7" 1043 | eslint-plugin-react-hooks "^4.5.0" 1044 | 1045 | eslint-import-resolver-node@^0.3.6, eslint-import-resolver-node@^0.3.7: 1046 | version "0.3.7" 1047 | resolved "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.7.tgz" 1048 | integrity sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA== 1049 | dependencies: 1050 | debug "^3.2.7" 1051 | is-core-module "^2.11.0" 1052 | resolve "^1.22.1" 1053 | 1054 | eslint-import-resolver-typescript@^3.5.2: 1055 | version "3.5.3" 1056 | resolved "https://registry.npmjs.org/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-3.5.3.tgz" 1057 | integrity sha512-njRcKYBc3isE42LaTcJNVANR3R99H9bAxBDMNDr2W7yq5gYPxbU3MkdhsQukxZ/Xg9C2vcyLlDsbKfRDg0QvCQ== 1058 | dependencies: 1059 | debug "^4.3.4" 1060 | enhanced-resolve "^5.10.0" 1061 | get-tsconfig "^4.2.0" 1062 | globby "^13.1.2" 1063 | is-core-module "^2.10.0" 1064 | is-glob "^4.0.3" 1065 | synckit "^0.8.4" 1066 | 1067 | eslint-module-utils@^2.7.4: 1068 | version "2.7.4" 1069 | resolved "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.7.4.tgz" 1070 | integrity sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA== 1071 | dependencies: 1072 | debug "^3.2.7" 1073 | 1074 | eslint-plugin-import@^2.26.0: 1075 | version "2.27.5" 1076 | resolved "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.27.5.tgz" 1077 | integrity sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow== 1078 | dependencies: 1079 | array-includes "^3.1.6" 1080 | array.prototype.flat "^1.3.1" 1081 | array.prototype.flatmap "^1.3.1" 1082 | debug "^3.2.7" 1083 | doctrine "^2.1.0" 1084 | eslint-import-resolver-node "^0.3.7" 1085 | eslint-module-utils "^2.7.4" 1086 | has "^1.0.3" 1087 | is-core-module "^2.11.0" 1088 | is-glob "^4.0.3" 1089 | minimatch "^3.1.2" 1090 | object.values "^1.1.6" 1091 | resolve "^1.22.1" 1092 | semver "^6.3.0" 1093 | tsconfig-paths "^3.14.1" 1094 | 1095 | eslint-plugin-jsx-a11y@^6.5.1: 1096 | version "6.7.1" 1097 | resolved "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.7.1.tgz" 1098 | integrity sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA== 1099 | dependencies: 1100 | "@babel/runtime" "^7.20.7" 1101 | aria-query "^5.1.3" 1102 | array-includes "^3.1.6" 1103 | array.prototype.flatmap "^1.3.1" 1104 | ast-types-flow "^0.0.7" 1105 | axe-core "^4.6.2" 1106 | axobject-query "^3.1.1" 1107 | damerau-levenshtein "^1.0.8" 1108 | emoji-regex "^9.2.2" 1109 | has "^1.0.3" 1110 | jsx-ast-utils "^3.3.3" 1111 | language-tags "=1.0.5" 1112 | minimatch "^3.1.2" 1113 | object.entries "^1.1.6" 1114 | object.fromentries "^2.0.6" 1115 | semver "^6.3.0" 1116 | 1117 | eslint-plugin-react-hooks@^4.5.0: 1118 | version "4.6.0" 1119 | resolved "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz" 1120 | integrity sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g== 1121 | 1122 | eslint-plugin-react@^7.31.7: 1123 | version "7.32.2" 1124 | resolved "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.32.2.tgz" 1125 | integrity sha512-t2fBMa+XzonrrNkyVirzKlvn5RXzzPwRHtMvLAtVZrt8oxgnTQaYbU6SXTOO1mwQgp1y5+toMSKInnzGr0Knqg== 1126 | dependencies: 1127 | array-includes "^3.1.6" 1128 | array.prototype.flatmap "^1.3.1" 1129 | array.prototype.tosorted "^1.1.1" 1130 | doctrine "^2.1.0" 1131 | estraverse "^5.3.0" 1132 | jsx-ast-utils "^2.4.1 || ^3.0.0" 1133 | minimatch "^3.1.2" 1134 | object.entries "^1.1.6" 1135 | object.fromentries "^2.0.6" 1136 | object.hasown "^1.1.2" 1137 | object.values "^1.1.6" 1138 | prop-types "^15.8.1" 1139 | resolve "^2.0.0-next.4" 1140 | semver "^6.3.0" 1141 | string.prototype.matchall "^4.0.8" 1142 | 1143 | eslint-scope@^7.1.1: 1144 | version "7.1.1" 1145 | resolved "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.1.1.tgz" 1146 | integrity sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw== 1147 | dependencies: 1148 | esrecurse "^4.3.0" 1149 | estraverse "^5.2.0" 1150 | 1151 | eslint-utils@^3.0.0: 1152 | version "3.0.0" 1153 | resolved "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz" 1154 | integrity sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA== 1155 | dependencies: 1156 | eslint-visitor-keys "^2.0.0" 1157 | 1158 | eslint-visitor-keys@^2.0.0: 1159 | version "2.1.0" 1160 | resolved "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz" 1161 | integrity sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw== 1162 | 1163 | eslint-visitor-keys@^3.3.0: 1164 | version "3.3.0" 1165 | resolved "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz" 1166 | integrity sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA== 1167 | 1168 | eslint@8.33.0: 1169 | version "8.33.0" 1170 | resolved "https://registry.npmjs.org/eslint/-/eslint-8.33.0.tgz" 1171 | integrity sha512-WjOpFQgKK8VrCnAtl8We0SUOy/oVZ5NHykyMiagV1M9r8IFpIJX7DduK6n1mpfhlG7T1NLWm2SuD8QB7KFySaA== 1172 | dependencies: 1173 | "@eslint/eslintrc" "^1.4.1" 1174 | "@humanwhocodes/config-array" "^0.11.8" 1175 | "@humanwhocodes/module-importer" "^1.0.1" 1176 | "@nodelib/fs.walk" "^1.2.8" 1177 | ajv "^6.10.0" 1178 | chalk "^4.0.0" 1179 | cross-spawn "^7.0.2" 1180 | debug "^4.3.2" 1181 | doctrine "^3.0.0" 1182 | escape-string-regexp "^4.0.0" 1183 | eslint-scope "^7.1.1" 1184 | eslint-utils "^3.0.0" 1185 | eslint-visitor-keys "^3.3.0" 1186 | espree "^9.4.0" 1187 | esquery "^1.4.0" 1188 | esutils "^2.0.2" 1189 | fast-deep-equal "^3.1.3" 1190 | file-entry-cache "^6.0.1" 1191 | find-up "^5.0.0" 1192 | glob-parent "^6.0.2" 1193 | globals "^13.19.0" 1194 | grapheme-splitter "^1.0.4" 1195 | ignore "^5.2.0" 1196 | import-fresh "^3.0.0" 1197 | imurmurhash "^0.1.4" 1198 | is-glob "^4.0.0" 1199 | is-path-inside "^3.0.3" 1200 | js-sdsl "^4.1.4" 1201 | js-yaml "^4.1.0" 1202 | json-stable-stringify-without-jsonify "^1.0.1" 1203 | levn "^0.4.1" 1204 | lodash.merge "^4.6.2" 1205 | minimatch "^3.1.2" 1206 | natural-compare "^1.4.0" 1207 | optionator "^0.9.1" 1208 | regexpp "^3.2.0" 1209 | strip-ansi "^6.0.1" 1210 | strip-json-comments "^3.1.0" 1211 | text-table "^0.2.0" 1212 | 1213 | espree@^9.4.0: 1214 | version "9.4.1" 1215 | resolved "https://registry.npmjs.org/espree/-/espree-9.4.1.tgz" 1216 | integrity sha512-XwctdmTO6SIvCzd9810yyNzIrOrqNYV9Koizx4C/mRhf9uq0o4yHoCEU/670pOxOL/MSraektvSAji79kX90Vg== 1217 | dependencies: 1218 | acorn "^8.8.0" 1219 | acorn-jsx "^5.3.2" 1220 | eslint-visitor-keys "^3.3.0" 1221 | 1222 | esquery@^1.4.0: 1223 | version "1.4.0" 1224 | resolved "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz" 1225 | integrity sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w== 1226 | dependencies: 1227 | estraverse "^5.1.0" 1228 | 1229 | esrecurse@^4.3.0: 1230 | version "4.3.0" 1231 | resolved "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz" 1232 | integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== 1233 | dependencies: 1234 | estraverse "^5.2.0" 1235 | 1236 | estraverse@^5.1.0, estraverse@^5.2.0, estraverse@^5.3.0: 1237 | version "5.3.0" 1238 | resolved "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz" 1239 | integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== 1240 | 1241 | esutils@^2.0.2: 1242 | version "2.0.3" 1243 | resolved "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz" 1244 | integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== 1245 | 1246 | fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: 1247 | version "3.1.3" 1248 | resolved "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz" 1249 | integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== 1250 | 1251 | fast-glob@^3.2.11, fast-glob@^3.2.9: 1252 | version "3.2.12" 1253 | resolved "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.12.tgz" 1254 | integrity sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w== 1255 | dependencies: 1256 | "@nodelib/fs.stat" "^2.0.2" 1257 | "@nodelib/fs.walk" "^1.2.3" 1258 | glob-parent "^5.1.2" 1259 | merge2 "^1.3.0" 1260 | micromatch "^4.0.4" 1261 | 1262 | fast-json-stable-stringify@^2.0.0: 1263 | version "2.1.0" 1264 | resolved "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz" 1265 | integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== 1266 | 1267 | fast-levenshtein@^2.0.6: 1268 | version "2.0.6" 1269 | resolved "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz" 1270 | integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw== 1271 | 1272 | fastq@^1.6.0: 1273 | version "1.15.0" 1274 | resolved "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz" 1275 | integrity sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw== 1276 | dependencies: 1277 | reusify "^1.0.4" 1278 | 1279 | file-entry-cache@^6.0.1: 1280 | version "6.0.1" 1281 | resolved "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz" 1282 | integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg== 1283 | dependencies: 1284 | flat-cache "^3.0.4" 1285 | 1286 | fill-range@^7.0.1: 1287 | version "7.0.1" 1288 | resolved "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz" 1289 | integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== 1290 | dependencies: 1291 | to-regex-range "^5.0.1" 1292 | 1293 | find-root@^1.1.0: 1294 | version "1.1.0" 1295 | resolved "https://registry.npmjs.org/find-root/-/find-root-1.1.0.tgz" 1296 | integrity sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng== 1297 | 1298 | find-up@^5.0.0: 1299 | version "5.0.0" 1300 | resolved "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz" 1301 | integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng== 1302 | dependencies: 1303 | locate-path "^6.0.0" 1304 | path-exists "^4.0.0" 1305 | 1306 | flat-cache@^3.0.4: 1307 | version "3.0.4" 1308 | resolved "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz" 1309 | integrity sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg== 1310 | dependencies: 1311 | flatted "^3.1.0" 1312 | rimraf "^3.0.2" 1313 | 1314 | flatted@^3.1.0: 1315 | version "3.2.7" 1316 | resolved "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz" 1317 | integrity sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ== 1318 | 1319 | for-each@^0.3.3: 1320 | version "0.3.3" 1321 | resolved "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz" 1322 | integrity sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw== 1323 | dependencies: 1324 | is-callable "^1.1.3" 1325 | 1326 | fs.realpath@^1.0.0: 1327 | version "1.0.0" 1328 | resolved "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz" 1329 | integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== 1330 | 1331 | fsevents@~2.3.2: 1332 | version "2.3.2" 1333 | resolved "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz" 1334 | integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== 1335 | 1336 | function-bind@^1.1.1: 1337 | version "1.1.1" 1338 | resolved "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz" 1339 | integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== 1340 | 1341 | function.prototype.name@^1.1.5: 1342 | version "1.1.5" 1343 | resolved "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz" 1344 | integrity sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA== 1345 | dependencies: 1346 | call-bind "^1.0.2" 1347 | define-properties "^1.1.3" 1348 | es-abstract "^1.19.0" 1349 | functions-have-names "^1.2.2" 1350 | 1351 | functions-have-names@^1.2.2: 1352 | version "1.2.3" 1353 | resolved "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz" 1354 | integrity sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ== 1355 | 1356 | get-intrinsic@^1.0.2, get-intrinsic@^1.1.1, get-intrinsic@^1.1.3: 1357 | version "1.2.0" 1358 | resolved "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.0.tgz" 1359 | integrity sha512-L049y6nFOuom5wGyRc3/gdTLO94dySVKRACj1RmJZBQXlbTMhtNIgkWkUHq+jYmZvKf14EW1EoJnnjbmoHij0Q== 1360 | dependencies: 1361 | function-bind "^1.1.1" 1362 | has "^1.0.3" 1363 | has-symbols "^1.0.3" 1364 | 1365 | get-symbol-description@^1.0.0: 1366 | version "1.0.0" 1367 | resolved "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz" 1368 | integrity sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw== 1369 | dependencies: 1370 | call-bind "^1.0.2" 1371 | get-intrinsic "^1.1.1" 1372 | 1373 | get-tsconfig@^4.2.0: 1374 | version "4.3.0" 1375 | resolved "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.3.0.tgz" 1376 | integrity sha512-YCcF28IqSay3fqpIu5y3Krg/utCBHBeoflkZyHj/QcqI2nrLPC3ZegS9CmIo+hJb8K7aiGsuUl7PwWVjNG2HQQ== 1377 | 1378 | glob-parent@^5.1.2, glob-parent@~5.1.2: 1379 | version "5.1.2" 1380 | resolved "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz" 1381 | integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== 1382 | dependencies: 1383 | is-glob "^4.0.1" 1384 | 1385 | glob-parent@^6.0.2: 1386 | version "6.0.2" 1387 | resolved "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz" 1388 | integrity sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A== 1389 | dependencies: 1390 | is-glob "^4.0.3" 1391 | 1392 | glob@7.1.7, glob@^7.1.3: 1393 | version "7.1.7" 1394 | resolved "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz" 1395 | integrity sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ== 1396 | dependencies: 1397 | fs.realpath "^1.0.0" 1398 | inflight "^1.0.4" 1399 | inherits "2" 1400 | minimatch "^3.0.4" 1401 | once "^1.3.0" 1402 | path-is-absolute "^1.0.0" 1403 | 1404 | globals@^13.19.0: 1405 | version "13.20.0" 1406 | resolved "https://registry.npmjs.org/globals/-/globals-13.20.0.tgz" 1407 | integrity sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ== 1408 | dependencies: 1409 | type-fest "^0.20.2" 1410 | 1411 | globalthis@^1.0.3: 1412 | version "1.0.3" 1413 | resolved "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz" 1414 | integrity sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA== 1415 | dependencies: 1416 | define-properties "^1.1.3" 1417 | 1418 | globalyzer@0.1.0: 1419 | version "0.1.0" 1420 | resolved "https://registry.npmjs.org/globalyzer/-/globalyzer-0.1.0.tgz" 1421 | integrity sha512-40oNTM9UfG6aBmuKxk/giHn5nQ8RVz/SS4Ir6zgzOv9/qC3kKZ9v4etGTcJbEl/NyVQH7FGU7d+X1egr57Md2Q== 1422 | 1423 | globby@^11.1.0: 1424 | version "11.1.0" 1425 | resolved "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz" 1426 | integrity sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g== 1427 | dependencies: 1428 | array-union "^2.1.0" 1429 | dir-glob "^3.0.1" 1430 | fast-glob "^3.2.9" 1431 | ignore "^5.2.0" 1432 | merge2 "^1.4.1" 1433 | slash "^3.0.0" 1434 | 1435 | globby@^13.1.2: 1436 | version "13.1.3" 1437 | resolved "https://registry.npmjs.org/globby/-/globby-13.1.3.tgz" 1438 | integrity sha512-8krCNHXvlCgHDpegPzleMq07yMYTO2sXKASmZmquEYWEmCx6J5UTRbp5RwMJkTJGtcQ44YpiUYUiN0b9mzy8Bw== 1439 | dependencies: 1440 | dir-glob "^3.0.1" 1441 | fast-glob "^3.2.11" 1442 | ignore "^5.2.0" 1443 | merge2 "^1.4.1" 1444 | slash "^4.0.0" 1445 | 1446 | globrex@^0.1.2: 1447 | version "0.1.2" 1448 | resolved "https://registry.npmjs.org/globrex/-/globrex-0.1.2.tgz" 1449 | integrity sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg== 1450 | 1451 | gopd@^1.0.1: 1452 | version "1.0.1" 1453 | resolved "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz" 1454 | integrity sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA== 1455 | dependencies: 1456 | get-intrinsic "^1.1.3" 1457 | 1458 | graceful-fs@^4.2.4: 1459 | version "4.2.10" 1460 | resolved "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz" 1461 | integrity sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA== 1462 | 1463 | grapheme-splitter@^1.0.4: 1464 | version "1.0.4" 1465 | resolved "https://registry.npmjs.org/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz" 1466 | integrity sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ== 1467 | 1468 | has-bigints@^1.0.1, has-bigints@^1.0.2: 1469 | version "1.0.2" 1470 | resolved "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz" 1471 | integrity sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ== 1472 | 1473 | has-flag@^3.0.0: 1474 | version "3.0.0" 1475 | resolved "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz" 1476 | integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw== 1477 | 1478 | has-flag@^4.0.0: 1479 | version "4.0.0" 1480 | resolved "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz" 1481 | integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== 1482 | 1483 | has-property-descriptors@^1.0.0: 1484 | version "1.0.0" 1485 | resolved "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz" 1486 | integrity sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ== 1487 | dependencies: 1488 | get-intrinsic "^1.1.1" 1489 | 1490 | has-proto@^1.0.1: 1491 | version "1.0.1" 1492 | resolved "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz" 1493 | integrity sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg== 1494 | 1495 | has-symbols@^1.0.2, has-symbols@^1.0.3: 1496 | version "1.0.3" 1497 | resolved "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz" 1498 | integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== 1499 | 1500 | has-tostringtag@^1.0.0: 1501 | version "1.0.0" 1502 | resolved "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz" 1503 | integrity sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ== 1504 | dependencies: 1505 | has-symbols "^1.0.2" 1506 | 1507 | has@^1.0.3: 1508 | version "1.0.3" 1509 | resolved "https://registry.npmjs.org/has/-/has-1.0.3.tgz" 1510 | integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== 1511 | dependencies: 1512 | function-bind "^1.1.1" 1513 | 1514 | hoist-non-react-statics@^3.3.1: 1515 | version "3.3.2" 1516 | resolved "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz" 1517 | integrity sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw== 1518 | dependencies: 1519 | react-is "^16.7.0" 1520 | 1521 | ignore@^5.2.0: 1522 | version "5.2.4" 1523 | resolved "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz" 1524 | integrity sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ== 1525 | 1526 | immutable@^4.0.0: 1527 | version "4.3.0" 1528 | resolved "https://registry.npmjs.org/immutable/-/immutable-4.3.0.tgz" 1529 | integrity sha512-0AOCmOip+xgJwEVTQj1EfiDDOkPmuyllDuTuEX+DDXUgapLAsBIfkg3sxCYyCEA8mQqZrrxPUGjcOQ2JS3WLkg== 1530 | 1531 | import-fresh@^3.0.0, import-fresh@^3.2.1: 1532 | version "3.3.0" 1533 | resolved "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz" 1534 | integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== 1535 | dependencies: 1536 | parent-module "^1.0.0" 1537 | resolve-from "^4.0.0" 1538 | 1539 | imurmurhash@^0.1.4: 1540 | version "0.1.4" 1541 | resolved "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz" 1542 | integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA== 1543 | 1544 | inflight@^1.0.4: 1545 | version "1.0.6" 1546 | resolved "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz" 1547 | integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA== 1548 | dependencies: 1549 | once "^1.3.0" 1550 | wrappy "1" 1551 | 1552 | inherits@2: 1553 | version "2.0.4" 1554 | resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz" 1555 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 1556 | 1557 | internal-slot@^1.0.3, internal-slot@^1.0.4: 1558 | version "1.0.4" 1559 | resolved "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.4.tgz" 1560 | integrity sha512-tA8URYccNzMo94s5MQZgH8NB/XTa6HsOo0MLfXTKKEnHVVdegzaQoFZ7Jp44bdvLvY2waT5dc+j5ICEswhi7UQ== 1561 | dependencies: 1562 | get-intrinsic "^1.1.3" 1563 | has "^1.0.3" 1564 | side-channel "^1.0.4" 1565 | 1566 | is-arguments@^1.1.1: 1567 | version "1.1.1" 1568 | resolved "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz" 1569 | integrity sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA== 1570 | dependencies: 1571 | call-bind "^1.0.2" 1572 | has-tostringtag "^1.0.0" 1573 | 1574 | is-array-buffer@^3.0.1: 1575 | version "3.0.1" 1576 | resolved "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.1.tgz" 1577 | integrity sha512-ASfLknmY8Xa2XtB4wmbz13Wu202baeA18cJBCeCy0wXUHZF0IPyVEXqKEcd+t2fNSLLL1vC6k7lxZEojNbISXQ== 1578 | dependencies: 1579 | call-bind "^1.0.2" 1580 | get-intrinsic "^1.1.3" 1581 | is-typed-array "^1.1.10" 1582 | 1583 | is-arrayish@^0.2.1: 1584 | version "0.2.1" 1585 | resolved "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz" 1586 | integrity sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg== 1587 | 1588 | is-bigint@^1.0.1: 1589 | version "1.0.4" 1590 | resolved "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz" 1591 | integrity sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg== 1592 | dependencies: 1593 | has-bigints "^1.0.1" 1594 | 1595 | is-binary-path@~2.1.0: 1596 | version "2.1.0" 1597 | resolved "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz" 1598 | integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== 1599 | dependencies: 1600 | binary-extensions "^2.0.0" 1601 | 1602 | is-boolean-object@^1.1.0: 1603 | version "1.1.2" 1604 | resolved "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz" 1605 | integrity sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA== 1606 | dependencies: 1607 | call-bind "^1.0.2" 1608 | has-tostringtag "^1.0.0" 1609 | 1610 | is-callable@^1.1.3, is-callable@^1.1.4, is-callable@^1.2.7: 1611 | version "1.2.7" 1612 | resolved "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz" 1613 | integrity sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA== 1614 | 1615 | is-core-module@^2.10.0, is-core-module@^2.11.0, is-core-module@^2.9.0: 1616 | version "2.11.0" 1617 | resolved "https://registry.npmjs.org/is-core-module/-/is-core-module-2.11.0.tgz" 1618 | integrity sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw== 1619 | dependencies: 1620 | has "^1.0.3" 1621 | 1622 | is-date-object@^1.0.1, is-date-object@^1.0.5: 1623 | version "1.0.5" 1624 | resolved "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz" 1625 | integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ== 1626 | dependencies: 1627 | has-tostringtag "^1.0.0" 1628 | 1629 | is-docker@^2.0.0, is-docker@^2.1.1: 1630 | version "2.2.1" 1631 | resolved "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz" 1632 | integrity sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ== 1633 | 1634 | is-extglob@^2.1.1: 1635 | version "2.1.1" 1636 | resolved "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz" 1637 | integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== 1638 | 1639 | is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3, is-glob@~4.0.1: 1640 | version "4.0.3" 1641 | resolved "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz" 1642 | integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== 1643 | dependencies: 1644 | is-extglob "^2.1.1" 1645 | 1646 | is-map@^2.0.1, is-map@^2.0.2: 1647 | version "2.0.2" 1648 | resolved "https://registry.npmjs.org/is-map/-/is-map-2.0.2.tgz" 1649 | integrity sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg== 1650 | 1651 | is-negative-zero@^2.0.2: 1652 | version "2.0.2" 1653 | resolved "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz" 1654 | integrity sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA== 1655 | 1656 | is-number-object@^1.0.4: 1657 | version "1.0.7" 1658 | resolved "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz" 1659 | integrity sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ== 1660 | dependencies: 1661 | has-tostringtag "^1.0.0" 1662 | 1663 | is-number@^7.0.0: 1664 | version "7.0.0" 1665 | resolved "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz" 1666 | integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== 1667 | 1668 | is-path-inside@^3.0.3: 1669 | version "3.0.3" 1670 | resolved "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz" 1671 | integrity sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ== 1672 | 1673 | is-regex@^1.1.4: 1674 | version "1.1.4" 1675 | resolved "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz" 1676 | integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg== 1677 | dependencies: 1678 | call-bind "^1.0.2" 1679 | has-tostringtag "^1.0.0" 1680 | 1681 | is-set@^2.0.1, is-set@^2.0.2: 1682 | version "2.0.2" 1683 | resolved "https://registry.npmjs.org/is-set/-/is-set-2.0.2.tgz" 1684 | integrity sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g== 1685 | 1686 | is-shared-array-buffer@^1.0.2: 1687 | version "1.0.2" 1688 | resolved "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz" 1689 | integrity sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA== 1690 | dependencies: 1691 | call-bind "^1.0.2" 1692 | 1693 | is-string@^1.0.5, is-string@^1.0.7: 1694 | version "1.0.7" 1695 | resolved "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz" 1696 | integrity sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg== 1697 | dependencies: 1698 | has-tostringtag "^1.0.0" 1699 | 1700 | is-symbol@^1.0.2, is-symbol@^1.0.3: 1701 | version "1.0.4" 1702 | resolved "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz" 1703 | integrity sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg== 1704 | dependencies: 1705 | has-symbols "^1.0.2" 1706 | 1707 | is-typed-array@^1.1.10, is-typed-array@^1.1.9: 1708 | version "1.1.10" 1709 | resolved "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.10.tgz" 1710 | integrity sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A== 1711 | dependencies: 1712 | available-typed-arrays "^1.0.5" 1713 | call-bind "^1.0.2" 1714 | for-each "^0.3.3" 1715 | gopd "^1.0.1" 1716 | has-tostringtag "^1.0.0" 1717 | 1718 | is-weakmap@^2.0.1: 1719 | version "2.0.1" 1720 | resolved "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.1.tgz" 1721 | integrity sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA== 1722 | 1723 | is-weakref@^1.0.2: 1724 | version "1.0.2" 1725 | resolved "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz" 1726 | integrity sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ== 1727 | dependencies: 1728 | call-bind "^1.0.2" 1729 | 1730 | is-weakset@^2.0.1: 1731 | version "2.0.2" 1732 | resolved "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.2.tgz" 1733 | integrity sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg== 1734 | dependencies: 1735 | call-bind "^1.0.2" 1736 | get-intrinsic "^1.1.1" 1737 | 1738 | is-wsl@^2.2.0: 1739 | version "2.2.0" 1740 | resolved "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz" 1741 | integrity sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww== 1742 | dependencies: 1743 | is-docker "^2.0.0" 1744 | 1745 | isarray@^2.0.5: 1746 | version "2.0.5" 1747 | resolved "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz" 1748 | integrity sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw== 1749 | 1750 | isexe@^2.0.0: 1751 | version "2.0.0" 1752 | resolved "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz" 1753 | integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== 1754 | 1755 | js-sdsl@^4.1.4: 1756 | version "4.3.0" 1757 | resolved "https://registry.npmjs.org/js-sdsl/-/js-sdsl-4.3.0.tgz" 1758 | integrity sha512-mifzlm2+5nZ+lEcLJMoBK0/IH/bDg8XnJfd/Wq6IP+xoCjLZsTOnV2QpxlVbX9bMnkl5PdEjNtBJ9Cj1NjifhQ== 1759 | 1760 | "js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: 1761 | version "4.0.0" 1762 | resolved "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz" 1763 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== 1764 | 1765 | js-yaml@^4.1.0: 1766 | version "4.1.0" 1767 | resolved "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz" 1768 | integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA== 1769 | dependencies: 1770 | argparse "^2.0.1" 1771 | 1772 | json-parse-even-better-errors@^2.3.0: 1773 | version "2.3.1" 1774 | resolved "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz" 1775 | integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== 1776 | 1777 | json-schema-traverse@^0.4.1: 1778 | version "0.4.1" 1779 | resolved "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz" 1780 | integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== 1781 | 1782 | json-stable-stringify-without-jsonify@^1.0.1: 1783 | version "1.0.1" 1784 | resolved "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz" 1785 | integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw== 1786 | 1787 | json5@^1.0.1: 1788 | version "1.0.2" 1789 | resolved "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz" 1790 | integrity sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA== 1791 | dependencies: 1792 | minimist "^1.2.0" 1793 | 1794 | "jsx-ast-utils@^2.4.1 || ^3.0.0", jsx-ast-utils@^3.3.3: 1795 | version "3.3.3" 1796 | resolved "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.3.tgz" 1797 | integrity sha512-fYQHZTZ8jSfmWZ0iyzfwiU4WDX4HpHbMCZ3gPlWYiCl3BoeOTsqKBqnTVfH2rYT7eP5c3sVbeSPHnnJOaTrWiw== 1798 | dependencies: 1799 | array-includes "^3.1.5" 1800 | object.assign "^4.1.3" 1801 | 1802 | language-subtag-registry@~0.3.2: 1803 | version "0.3.22" 1804 | resolved "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz" 1805 | integrity sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w== 1806 | 1807 | language-tags@=1.0.5: 1808 | version "1.0.5" 1809 | resolved "https://registry.npmjs.org/language-tags/-/language-tags-1.0.5.tgz" 1810 | integrity sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ== 1811 | dependencies: 1812 | language-subtag-registry "~0.3.2" 1813 | 1814 | levn@^0.4.1: 1815 | version "0.4.1" 1816 | resolved "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz" 1817 | integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ== 1818 | dependencies: 1819 | prelude-ls "^1.2.1" 1820 | type-check "~0.4.0" 1821 | 1822 | lines-and-columns@^1.1.6: 1823 | version "1.2.4" 1824 | resolved "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz" 1825 | integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg== 1826 | 1827 | locate-path@^6.0.0: 1828 | version "6.0.0" 1829 | resolved "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz" 1830 | integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw== 1831 | dependencies: 1832 | p-locate "^5.0.0" 1833 | 1834 | lodash.merge@^4.6.2: 1835 | version "4.6.2" 1836 | resolved "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz" 1837 | integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== 1838 | 1839 | loose-envify@^1.1.0, loose-envify@^1.4.0: 1840 | version "1.4.0" 1841 | resolved "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz" 1842 | integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== 1843 | dependencies: 1844 | js-tokens "^3.0.0 || ^4.0.0" 1845 | 1846 | lru-cache@^6.0.0: 1847 | version "6.0.0" 1848 | resolved "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz" 1849 | integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== 1850 | dependencies: 1851 | yallist "^4.0.0" 1852 | 1853 | merge2@^1.3.0, merge2@^1.4.1: 1854 | version "1.4.1" 1855 | resolved "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz" 1856 | integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== 1857 | 1858 | micromatch@^4.0.4: 1859 | version "4.0.5" 1860 | resolved "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz" 1861 | integrity sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA== 1862 | dependencies: 1863 | braces "^3.0.2" 1864 | picomatch "^2.3.1" 1865 | 1866 | minimatch@^3.0.4, minimatch@^3.0.5, minimatch@^3.1.2: 1867 | version "3.1.2" 1868 | resolved "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz" 1869 | integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== 1870 | dependencies: 1871 | brace-expansion "^1.1.7" 1872 | 1873 | minimist@^1.2.0, minimist@^1.2.6: 1874 | version "1.2.7" 1875 | resolved "https://registry.npmjs.org/minimist/-/minimist-1.2.7.tgz" 1876 | integrity sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g== 1877 | 1878 | ms@2.1.2, ms@^2.1.1: 1879 | version "2.1.2" 1880 | resolved "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz" 1881 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== 1882 | 1883 | nanoid@^3.3.4: 1884 | version "3.3.4" 1885 | resolved "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz" 1886 | integrity sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw== 1887 | 1888 | natural-compare@^1.4.0: 1889 | version "1.4.0" 1890 | resolved "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz" 1891 | integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw== 1892 | 1893 | next-themes@^0.2.1: 1894 | version "0.2.1" 1895 | resolved "https://registry.npmjs.org/next-themes/-/next-themes-0.2.1.tgz" 1896 | integrity sha512-B+AKNfYNIzh0vqQQKqQItTS8evEouKD7H5Hj3kmuPERwddR2TxvDSFZuTj6T7Jfn1oyeUyJMydPl1Bkxkh0W7A== 1897 | 1898 | next@13.1.6: 1899 | version "13.1.6" 1900 | resolved "https://registry.npmjs.org/next/-/next-13.1.6.tgz" 1901 | integrity sha512-hHlbhKPj9pW+Cymvfzc15lvhaOZ54l+8sXDXJWm3OBNBzgrVj6hwGPmqqsXg40xO1Leq+kXpllzRPuncpC0Phw== 1902 | dependencies: 1903 | "@next/env" "13.1.6" 1904 | "@swc/helpers" "0.4.14" 1905 | caniuse-lite "^1.0.30001406" 1906 | postcss "8.4.14" 1907 | styled-jsx "5.1.1" 1908 | optionalDependencies: 1909 | "@next/swc-android-arm-eabi" "13.1.6" 1910 | "@next/swc-android-arm64" "13.1.6" 1911 | "@next/swc-darwin-arm64" "13.1.6" 1912 | "@next/swc-darwin-x64" "13.1.6" 1913 | "@next/swc-freebsd-x64" "13.1.6" 1914 | "@next/swc-linux-arm-gnueabihf" "13.1.6" 1915 | "@next/swc-linux-arm64-gnu" "13.1.6" 1916 | "@next/swc-linux-arm64-musl" "13.1.6" 1917 | "@next/swc-linux-x64-gnu" "13.1.6" 1918 | "@next/swc-linux-x64-musl" "13.1.6" 1919 | "@next/swc-win32-arm64-msvc" "13.1.6" 1920 | "@next/swc-win32-ia32-msvc" "13.1.6" 1921 | "@next/swc-win32-x64-msvc" "13.1.6" 1922 | 1923 | normalize-path@^3.0.0, normalize-path@~3.0.0: 1924 | version "3.0.0" 1925 | resolved "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz" 1926 | integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== 1927 | 1928 | object-assign@^4.1.1: 1929 | version "4.1.1" 1930 | resolved "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz" 1931 | integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg== 1932 | 1933 | object-inspect@^1.12.2, object-inspect@^1.9.0: 1934 | version "1.12.3" 1935 | resolved "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz" 1936 | integrity sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g== 1937 | 1938 | object-is@^1.1.5: 1939 | version "1.1.5" 1940 | resolved "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz" 1941 | integrity sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw== 1942 | dependencies: 1943 | call-bind "^1.0.2" 1944 | define-properties "^1.1.3" 1945 | 1946 | object-keys@^1.1.1: 1947 | version "1.1.1" 1948 | resolved "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz" 1949 | integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== 1950 | 1951 | object.assign@^4.1.3, object.assign@^4.1.4: 1952 | version "4.1.4" 1953 | resolved "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz" 1954 | integrity sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ== 1955 | dependencies: 1956 | call-bind "^1.0.2" 1957 | define-properties "^1.1.4" 1958 | has-symbols "^1.0.3" 1959 | object-keys "^1.1.1" 1960 | 1961 | object.entries@^1.1.6: 1962 | version "1.1.6" 1963 | resolved "https://registry.npmjs.org/object.entries/-/object.entries-1.1.6.tgz" 1964 | integrity sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w== 1965 | dependencies: 1966 | call-bind "^1.0.2" 1967 | define-properties "^1.1.4" 1968 | es-abstract "^1.20.4" 1969 | 1970 | object.fromentries@^2.0.6: 1971 | version "2.0.6" 1972 | resolved "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.6.tgz" 1973 | integrity sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg== 1974 | dependencies: 1975 | call-bind "^1.0.2" 1976 | define-properties "^1.1.4" 1977 | es-abstract "^1.20.4" 1978 | 1979 | object.hasown@^1.1.2: 1980 | version "1.1.2" 1981 | resolved "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.2.tgz" 1982 | integrity sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw== 1983 | dependencies: 1984 | define-properties "^1.1.4" 1985 | es-abstract "^1.20.4" 1986 | 1987 | object.values@^1.1.6: 1988 | version "1.1.6" 1989 | resolved "https://registry.npmjs.org/object.values/-/object.values-1.1.6.tgz" 1990 | integrity sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw== 1991 | dependencies: 1992 | call-bind "^1.0.2" 1993 | define-properties "^1.1.4" 1994 | es-abstract "^1.20.4" 1995 | 1996 | once@^1.3.0: 1997 | version "1.4.0" 1998 | resolved "https://registry.npmjs.org/once/-/once-1.4.0.tgz" 1999 | integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== 2000 | dependencies: 2001 | wrappy "1" 2002 | 2003 | open@^8.4.0: 2004 | version "8.4.0" 2005 | resolved "https://registry.npmjs.org/open/-/open-8.4.0.tgz" 2006 | integrity sha512-XgFPPM+B28FtCCgSb9I+s9szOC1vZRSwgWsRUA5ylIxRTgKozqjOCrVOqGsYABPYK5qnfqClxZTFBa8PKt2v6Q== 2007 | dependencies: 2008 | define-lazy-prop "^2.0.0" 2009 | is-docker "^2.1.1" 2010 | is-wsl "^2.2.0" 2011 | 2012 | optionator@^0.9.1: 2013 | version "0.9.1" 2014 | resolved "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz" 2015 | integrity sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw== 2016 | dependencies: 2017 | deep-is "^0.1.3" 2018 | fast-levenshtein "^2.0.6" 2019 | levn "^0.4.1" 2020 | prelude-ls "^1.2.1" 2021 | type-check "^0.4.0" 2022 | word-wrap "^1.2.3" 2023 | 2024 | p-limit@^3.0.2: 2025 | version "3.1.0" 2026 | resolved "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz" 2027 | integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== 2028 | dependencies: 2029 | yocto-queue "^0.1.0" 2030 | 2031 | p-locate@^5.0.0: 2032 | version "5.0.0" 2033 | resolved "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz" 2034 | integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw== 2035 | dependencies: 2036 | p-limit "^3.0.2" 2037 | 2038 | parent-module@^1.0.0: 2039 | version "1.0.1" 2040 | resolved "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz" 2041 | integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== 2042 | dependencies: 2043 | callsites "^3.0.0" 2044 | 2045 | parse-json@^5.0.0: 2046 | version "5.2.0" 2047 | resolved "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz" 2048 | integrity sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg== 2049 | dependencies: 2050 | "@babel/code-frame" "^7.0.0" 2051 | error-ex "^1.3.1" 2052 | json-parse-even-better-errors "^2.3.0" 2053 | lines-and-columns "^1.1.6" 2054 | 2055 | path-exists@^4.0.0: 2056 | version "4.0.0" 2057 | resolved "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz" 2058 | integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== 2059 | 2060 | path-is-absolute@^1.0.0: 2061 | version "1.0.1" 2062 | resolved "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz" 2063 | integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== 2064 | 2065 | path-key@^3.1.0: 2066 | version "3.1.1" 2067 | resolved "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz" 2068 | integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== 2069 | 2070 | path-parse@^1.0.7: 2071 | version "1.0.7" 2072 | resolved "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz" 2073 | integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== 2074 | 2075 | path-type@^4.0.0: 2076 | version "4.0.0" 2077 | resolved "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz" 2078 | integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== 2079 | 2080 | picocolors@^1.0.0: 2081 | version "1.0.0" 2082 | resolved "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz" 2083 | integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== 2084 | 2085 | picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.3.1: 2086 | version "2.3.1" 2087 | resolved "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz" 2088 | integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== 2089 | 2090 | postcss@8.4.14: 2091 | version "8.4.14" 2092 | resolved "https://registry.npmjs.org/postcss/-/postcss-8.4.14.tgz" 2093 | integrity sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig== 2094 | dependencies: 2095 | nanoid "^3.3.4" 2096 | picocolors "^1.0.0" 2097 | source-map-js "^1.0.2" 2098 | 2099 | prelude-ls@^1.2.1: 2100 | version "1.2.1" 2101 | resolved "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz" 2102 | integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== 2103 | 2104 | prop-types@^15.6.2, prop-types@^15.8.1: 2105 | version "15.8.1" 2106 | resolved "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz" 2107 | integrity sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg== 2108 | dependencies: 2109 | loose-envify "^1.4.0" 2110 | object-assign "^4.1.1" 2111 | react-is "^16.13.1" 2112 | 2113 | punycode@^2.1.0: 2114 | version "2.3.0" 2115 | resolved "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz" 2116 | integrity sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA== 2117 | 2118 | queue-microtask@^1.2.2: 2119 | version "1.2.3" 2120 | resolved "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz" 2121 | integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== 2122 | 2123 | react-dom@18.2.0: 2124 | version "18.2.0" 2125 | resolved "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz" 2126 | integrity sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g== 2127 | dependencies: 2128 | loose-envify "^1.1.0" 2129 | scheduler "^0.23.0" 2130 | 2131 | react-icons@^4.7.1: 2132 | version "4.7.1" 2133 | resolved "https://registry.npmjs.org/react-icons/-/react-icons-4.7.1.tgz" 2134 | integrity sha512-yHd3oKGMgm7zxo3EA7H2n7vxSoiGmHk5t6Ou4bXsfcgWyhfDKMpyKfhHR6Bjnn63c+YXBLBPUql9H4wPJM6sXw== 2135 | 2136 | react-is@^16.13.1, react-is@^16.7.0: 2137 | version "16.13.1" 2138 | resolved "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz" 2139 | integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== 2140 | 2141 | react-is@^18.2.0: 2142 | version "18.2.0" 2143 | resolved "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz" 2144 | integrity sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w== 2145 | 2146 | react-transition-group@^4.4.5: 2147 | version "4.4.5" 2148 | resolved "https://registry.npmjs.org/react-transition-group/-/react-transition-group-4.4.5.tgz" 2149 | integrity sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g== 2150 | dependencies: 2151 | "@babel/runtime" "^7.5.5" 2152 | dom-helpers "^5.0.1" 2153 | loose-envify "^1.4.0" 2154 | prop-types "^15.6.2" 2155 | 2156 | react@18.2.0: 2157 | version "18.2.0" 2158 | resolved "https://registry.npmjs.org/react/-/react-18.2.0.tgz" 2159 | integrity sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ== 2160 | dependencies: 2161 | loose-envify "^1.1.0" 2162 | 2163 | readdirp@~3.6.0: 2164 | version "3.6.0" 2165 | resolved "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz" 2166 | integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA== 2167 | dependencies: 2168 | picomatch "^2.2.1" 2169 | 2170 | regenerator-runtime@^0.13.11: 2171 | version "0.13.11" 2172 | resolved "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz" 2173 | integrity sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg== 2174 | 2175 | regexp.prototype.flags@^1.4.3: 2176 | version "1.4.3" 2177 | resolved "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz" 2178 | integrity sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA== 2179 | dependencies: 2180 | call-bind "^1.0.2" 2181 | define-properties "^1.1.3" 2182 | functions-have-names "^1.2.2" 2183 | 2184 | regexpp@^3.2.0: 2185 | version "3.2.0" 2186 | resolved "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz" 2187 | integrity sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg== 2188 | 2189 | resolve-from@^4.0.0: 2190 | version "4.0.0" 2191 | resolved "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz" 2192 | integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== 2193 | 2194 | resolve@^1.19.0, resolve@^1.22.1: 2195 | version "1.22.1" 2196 | resolved "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz" 2197 | integrity sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw== 2198 | dependencies: 2199 | is-core-module "^2.9.0" 2200 | path-parse "^1.0.7" 2201 | supports-preserve-symlinks-flag "^1.0.0" 2202 | 2203 | resolve@^2.0.0-next.4: 2204 | version "2.0.0-next.4" 2205 | resolved "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.4.tgz" 2206 | integrity sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ== 2207 | dependencies: 2208 | is-core-module "^2.9.0" 2209 | path-parse "^1.0.7" 2210 | supports-preserve-symlinks-flag "^1.0.0" 2211 | 2212 | reusify@^1.0.4: 2213 | version "1.0.4" 2214 | resolved "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz" 2215 | integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== 2216 | 2217 | rimraf@^3.0.2: 2218 | version "3.0.2" 2219 | resolved "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz" 2220 | integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== 2221 | dependencies: 2222 | glob "^7.1.3" 2223 | 2224 | run-parallel@^1.1.9: 2225 | version "1.2.0" 2226 | resolved "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz" 2227 | integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== 2228 | dependencies: 2229 | queue-microtask "^1.2.2" 2230 | 2231 | safe-regex-test@^1.0.0: 2232 | version "1.0.0" 2233 | resolved "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz" 2234 | integrity sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA== 2235 | dependencies: 2236 | call-bind "^1.0.2" 2237 | get-intrinsic "^1.1.3" 2238 | is-regex "^1.1.4" 2239 | 2240 | sass@^1.58.0: 2241 | version "1.62.1" 2242 | resolved "https://registry.npmjs.org/sass/-/sass-1.62.1.tgz" 2243 | integrity sha512-NHpxIzN29MXvWiuswfc1W3I0N8SXBd8UR26WntmDlRYf0bSADnwnOjsyMZ3lMezSlArD33Vs3YFhp7dWvL770A== 2244 | dependencies: 2245 | chokidar ">=3.0.0 <4.0.0" 2246 | immutable "^4.0.0" 2247 | source-map-js ">=0.6.2 <2.0.0" 2248 | 2249 | scheduler@^0.23.0: 2250 | version "0.23.0" 2251 | resolved "https://registry.npmjs.org/scheduler/-/scheduler-0.23.0.tgz" 2252 | integrity sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw== 2253 | dependencies: 2254 | loose-envify "^1.1.0" 2255 | 2256 | semver@^6.3.0: 2257 | version "6.3.0" 2258 | resolved "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz" 2259 | integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== 2260 | 2261 | semver@^7.3.7: 2262 | version "7.3.8" 2263 | resolved "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz" 2264 | integrity sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A== 2265 | dependencies: 2266 | lru-cache "^6.0.0" 2267 | 2268 | shebang-command@^2.0.0: 2269 | version "2.0.0" 2270 | resolved "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz" 2271 | integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== 2272 | dependencies: 2273 | shebang-regex "^3.0.0" 2274 | 2275 | shebang-regex@^3.0.0: 2276 | version "3.0.0" 2277 | resolved "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz" 2278 | integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== 2279 | 2280 | side-channel@^1.0.4: 2281 | version "1.0.4" 2282 | resolved "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz" 2283 | integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw== 2284 | dependencies: 2285 | call-bind "^1.0.0" 2286 | get-intrinsic "^1.0.2" 2287 | object-inspect "^1.9.0" 2288 | 2289 | slash@^3.0.0: 2290 | version "3.0.0" 2291 | resolved "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz" 2292 | integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== 2293 | 2294 | slash@^4.0.0: 2295 | version "4.0.0" 2296 | resolved "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz" 2297 | integrity sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew== 2298 | 2299 | "source-map-js@>=0.6.2 <2.0.0", source-map-js@^1.0.2: 2300 | version "1.0.2" 2301 | resolved "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz" 2302 | integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw== 2303 | 2304 | source-map@^0.5.7: 2305 | version "0.5.7" 2306 | resolved "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz" 2307 | integrity sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ== 2308 | 2309 | stop-iteration-iterator@^1.0.0: 2310 | version "1.0.0" 2311 | resolved "https://registry.npmjs.org/stop-iteration-iterator/-/stop-iteration-iterator-1.0.0.tgz" 2312 | integrity sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ== 2313 | dependencies: 2314 | internal-slot "^1.0.4" 2315 | 2316 | string.prototype.matchall@^4.0.8: 2317 | version "4.0.8" 2318 | resolved "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.8.tgz" 2319 | integrity sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg== 2320 | dependencies: 2321 | call-bind "^1.0.2" 2322 | define-properties "^1.1.4" 2323 | es-abstract "^1.20.4" 2324 | get-intrinsic "^1.1.3" 2325 | has-symbols "^1.0.3" 2326 | internal-slot "^1.0.3" 2327 | regexp.prototype.flags "^1.4.3" 2328 | side-channel "^1.0.4" 2329 | 2330 | string.prototype.trimend@^1.0.6: 2331 | version "1.0.6" 2332 | resolved "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz" 2333 | integrity sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ== 2334 | dependencies: 2335 | call-bind "^1.0.2" 2336 | define-properties "^1.1.4" 2337 | es-abstract "^1.20.4" 2338 | 2339 | string.prototype.trimstart@^1.0.6: 2340 | version "1.0.6" 2341 | resolved "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz" 2342 | integrity sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA== 2343 | dependencies: 2344 | call-bind "^1.0.2" 2345 | define-properties "^1.1.4" 2346 | es-abstract "^1.20.4" 2347 | 2348 | strip-ansi@^6.0.1: 2349 | version "6.0.1" 2350 | resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz" 2351 | integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== 2352 | dependencies: 2353 | ansi-regex "^5.0.1" 2354 | 2355 | strip-bom@^3.0.0: 2356 | version "3.0.0" 2357 | resolved "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz" 2358 | integrity sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA== 2359 | 2360 | strip-json-comments@^3.1.0, strip-json-comments@^3.1.1: 2361 | version "3.1.1" 2362 | resolved "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz" 2363 | integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== 2364 | 2365 | styled-jsx@5.1.1: 2366 | version "5.1.1" 2367 | resolved "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.1.1.tgz" 2368 | integrity sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw== 2369 | dependencies: 2370 | client-only "0.0.1" 2371 | 2372 | stylis@4.1.3: 2373 | version "4.1.3" 2374 | resolved "https://registry.npmjs.org/stylis/-/stylis-4.1.3.tgz" 2375 | integrity sha512-GP6WDNWf+o403jrEp9c5jibKavrtLW+/qYGhFxFrG8maXhwTBI7gLLhiBb0o7uFccWN+EOS9aMO6cGHWAO07OA== 2376 | 2377 | supports-color@^5.3.0: 2378 | version "5.5.0" 2379 | resolved "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz" 2380 | integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== 2381 | dependencies: 2382 | has-flag "^3.0.0" 2383 | 2384 | supports-color@^7.1.0: 2385 | version "7.2.0" 2386 | resolved "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz" 2387 | integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== 2388 | dependencies: 2389 | has-flag "^4.0.0" 2390 | 2391 | supports-preserve-symlinks-flag@^1.0.0: 2392 | version "1.0.0" 2393 | resolved "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz" 2394 | integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== 2395 | 2396 | synckit@^0.8.4: 2397 | version "0.8.5" 2398 | resolved "https://registry.npmjs.org/synckit/-/synckit-0.8.5.tgz" 2399 | integrity sha512-L1dapNV6vu2s/4Sputv8xGsCdAVlb5nRDMFU/E27D44l5U6cw1g0dGd45uLc+OXjNMmF4ntiMdCimzcjFKQI8Q== 2400 | dependencies: 2401 | "@pkgr/utils" "^2.3.1" 2402 | tslib "^2.5.0" 2403 | 2404 | tapable@^2.2.0: 2405 | version "2.2.1" 2406 | resolved "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz" 2407 | integrity sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ== 2408 | 2409 | text-table@^0.2.0: 2410 | version "0.2.0" 2411 | resolved "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz" 2412 | integrity sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw== 2413 | 2414 | tiny-glob@^0.2.9: 2415 | version "0.2.9" 2416 | resolved "https://registry.npmjs.org/tiny-glob/-/tiny-glob-0.2.9.tgz" 2417 | integrity sha512-g/55ssRPUjShh+xkfx9UPDXqhckHEsHr4Vd9zX55oSdGZc/MD0m3sferOkwWtp98bv+kcVfEHtRJgBVJzelrzg== 2418 | dependencies: 2419 | globalyzer "0.1.0" 2420 | globrex "^0.1.2" 2421 | 2422 | to-fast-properties@^2.0.0: 2423 | version "2.0.0" 2424 | resolved "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz" 2425 | integrity sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog== 2426 | 2427 | to-regex-range@^5.0.1: 2428 | version "5.0.1" 2429 | resolved "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz" 2430 | integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== 2431 | dependencies: 2432 | is-number "^7.0.0" 2433 | 2434 | tsconfig-paths@^3.14.1: 2435 | version "3.14.1" 2436 | resolved "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.1.tgz" 2437 | integrity sha512-fxDhWnFSLt3VuTwtvJt5fpwxBHg5AdKWMsgcPOOIilyjymcYVZoCQF8fvFRezCNfblEXmi+PcM1eYHeOAgXCOQ== 2438 | dependencies: 2439 | "@types/json5" "^0.0.29" 2440 | json5 "^1.0.1" 2441 | minimist "^1.2.6" 2442 | strip-bom "^3.0.0" 2443 | 2444 | tslib@^1.8.1: 2445 | version "1.14.1" 2446 | resolved "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz" 2447 | integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== 2448 | 2449 | tslib@^2.4.0, tslib@^2.5.0: 2450 | version "2.5.0" 2451 | resolved "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz" 2452 | integrity sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg== 2453 | 2454 | tsutils@^3.21.0: 2455 | version "3.21.0" 2456 | resolved "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz" 2457 | integrity sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA== 2458 | dependencies: 2459 | tslib "^1.8.1" 2460 | 2461 | type-check@^0.4.0, type-check@~0.4.0: 2462 | version "0.4.0" 2463 | resolved "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz" 2464 | integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew== 2465 | dependencies: 2466 | prelude-ls "^1.2.1" 2467 | 2468 | type-fest@^0.20.2: 2469 | version "0.20.2" 2470 | resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz" 2471 | integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ== 2472 | 2473 | typed-array-length@^1.0.4: 2474 | version "1.0.4" 2475 | resolved "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.4.tgz" 2476 | integrity sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng== 2477 | dependencies: 2478 | call-bind "^1.0.2" 2479 | for-each "^0.3.3" 2480 | is-typed-array "^1.1.9" 2481 | 2482 | typescript@4.9.5: 2483 | version "4.9.5" 2484 | resolved "https://registry.npmjs.org/typescript/-/typescript-4.9.5.tgz" 2485 | integrity sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g== 2486 | 2487 | unbox-primitive@^1.0.2: 2488 | version "1.0.2" 2489 | resolved "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz" 2490 | integrity sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw== 2491 | dependencies: 2492 | call-bind "^1.0.2" 2493 | has-bigints "^1.0.2" 2494 | has-symbols "^1.0.3" 2495 | which-boxed-primitive "^1.0.2" 2496 | 2497 | uri-js@^4.2.2: 2498 | version "4.4.1" 2499 | resolved "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz" 2500 | integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== 2501 | dependencies: 2502 | punycode "^2.1.0" 2503 | 2504 | which-boxed-primitive@^1.0.2: 2505 | version "1.0.2" 2506 | resolved "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz" 2507 | integrity sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg== 2508 | dependencies: 2509 | is-bigint "^1.0.1" 2510 | is-boolean-object "^1.1.0" 2511 | is-number-object "^1.0.4" 2512 | is-string "^1.0.5" 2513 | is-symbol "^1.0.3" 2514 | 2515 | which-collection@^1.0.1: 2516 | version "1.0.1" 2517 | resolved "https://registry.npmjs.org/which-collection/-/which-collection-1.0.1.tgz" 2518 | integrity sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A== 2519 | dependencies: 2520 | is-map "^2.0.1" 2521 | is-set "^2.0.1" 2522 | is-weakmap "^2.0.1" 2523 | is-weakset "^2.0.1" 2524 | 2525 | which-typed-array@^1.1.9: 2526 | version "1.1.9" 2527 | resolved "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.9.tgz" 2528 | integrity sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA== 2529 | dependencies: 2530 | available-typed-arrays "^1.0.5" 2531 | call-bind "^1.0.2" 2532 | for-each "^0.3.3" 2533 | gopd "^1.0.1" 2534 | has-tostringtag "^1.0.0" 2535 | is-typed-array "^1.1.10" 2536 | 2537 | which@^2.0.1: 2538 | version "2.0.2" 2539 | resolved "https://registry.npmjs.org/which/-/which-2.0.2.tgz" 2540 | integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== 2541 | dependencies: 2542 | isexe "^2.0.0" 2543 | 2544 | word-wrap@^1.2.3: 2545 | version "1.2.3" 2546 | resolved "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz" 2547 | integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== 2548 | 2549 | wrappy@1: 2550 | version "1.0.2" 2551 | resolved "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz" 2552 | integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== 2553 | 2554 | yallist@^4.0.0: 2555 | version "4.0.0" 2556 | resolved "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz" 2557 | integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== 2558 | 2559 | yaml@^1.10.0: 2560 | version "1.10.2" 2561 | resolved "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz" 2562 | integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg== 2563 | 2564 | yocto-queue@^0.1.0: 2565 | version "0.1.0" 2566 | resolved "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz" 2567 | integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== 2568 | --------------------------------------------------------------------------------