├── .dockerignore ├── .env.example ├── .eslintrc.json ├── .github └── workflows │ └── prettier.yml ├── .gitignore ├── Dockerfile ├── README.md ├── TEST.md ├── TODO.md ├── docker-compose.yml ├── fly.toml ├── next.config.mjs ├── package-lock.json ├── package.json ├── postcss.config.cjs ├── prettier.config.cjs ├── prisma └── schema.prisma ├── public └── favicon.ico ├── src ├── components │ ├── Chat │ │ └── Chat.tsx │ └── ui │ │ └── Theme │ │ ├── AutoSaveInput.tsx │ │ ├── ThemeProvider.tsx │ │ └── ThemeSelect.tsx ├── env │ ├── client.mjs │ ├── schema.mjs │ └── server.mjs ├── pages │ ├── 404.tsx │ ├── 500.tsx │ ├── _app.tsx │ ├── api │ │ ├── chat.ts │ │ ├── clear.ts │ │ ├── examples.ts │ │ └── messages.ts │ └── index.tsx ├── server │ ├── chat │ │ ├── chatHistory.ts │ │ └── gpt3.ts │ └── db │ │ └── client.ts ├── styles │ └── globals.css ├── types │ └── next-auth.d.ts └── utils │ └── scrollToBottom.ts ├── tailwind.config.cjs ├── tsconfig.json └── yarn.lock /.dockerignore: -------------------------------------------------------------------------------- 1 | Dockerfile 2 | .dockerignore 3 | node_modules 4 | npm-debug.log 5 | README.md 6 | .next 7 | .git 8 | -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- 1 | # Since .env is gitignored, you can use .env.example to build a new `.env` file when you clone the repo. 2 | # Keep this file up-to-date when you add new variables to `.env`. 3 | 4 | # This file will be committed to version control, so make sure not to have any secrets in it. 5 | # If you are cloning this repo, create a copy of this file named `.env` and populate it with your secrets. 6 | 7 | # When adding additional env variables, the schema in /env/schema.mjs should be updated accordingly 8 | 9 | # Prisma 10 | DATABASE_URL=file:./db.sqlite 11 | 12 | # Next Auth 13 | # You can generate the secret via 'openssl rand -base64 32' on Linux 14 | # More info: https://next-auth.js.org/configuration/options#secret 15 | NEXTAUTH_SECRET= 16 | NEXTAUTH_URL=http://localhost:3000 17 | 18 | # Next Auth Discord Provider 19 | DISCORD_CLIENT_ID= 20 | DISCORD_CLIENT_SECRET= 21 | 22 | # Twilio support 23 | TWILIO_ACCOUNT_SID= 24 | TWILIO_AUTH_TOKEN= 25 | TWILIO_PHONE_NUMBER= 26 | 27 | # GPT support 28 | OPENAI_API_KEY= 29 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "parser": "@typescript-eslint/parser", 3 | "parserOptions": { 4 | "project": "./tsconfig.json" 5 | }, 6 | "plugins": ["@typescript-eslint"], 7 | "extends": ["next/core-web-vitals", "plugin:@typescript-eslint/recommended"], 8 | "rules": { 9 | "@typescript-eslint/consistent-type-imports": "warn" 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /.github/workflows/prettier.yml: -------------------------------------------------------------------------------- 1 | name: ESLint and Prettier Check 2 | 3 | on: push 4 | 5 | jobs: 6 | lint-check: 7 | name: Lint with ESLint and Prettier 8 | runs-on: ubuntu-latest 9 | 10 | steps: 11 | - name: Check out code 12 | uses: actions/checkout@v2 13 | 14 | - name: Setup Node.js 15 | uses: actions/setup-node@v2 16 | with: 17 | node-version: '14' # or any version you prefer 18 | 19 | - name: Install Dependencies 20 | run: npm ci 21 | 22 | - name: Lint with ESLint 23 | run: npx eslint . --ext .js,.jsx,.ts,.tsx 24 | -------------------------------------------------------------------------------- /.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 | # database 12 | /prisma/db.sqlite 13 | /prisma/db.sqlite-journal 14 | 15 | # next.js 16 | /.next/ 17 | /out/ 18 | next-env.d.ts 19 | 20 | # production 21 | /build 22 | 23 | # misc 24 | .DS_Store 25 | *.pem 26 | 27 | # debug 28 | npm-debug.log* 29 | yarn-debug.log* 30 | yarn-error.log* 31 | .pnpm-debug.log* 32 | 33 | # local env files 34 | # do not commit any .env files to git, except for the .env.example file. https://create.t3.gg/en/usage/env-variables#using-environment-variables 35 | .env 36 | .env*.local 37 | 38 | # vercel 39 | .vercel 40 | 41 | # typescript 42 | *.tsbuildinfo 43 | 44 | # Logs 45 | logs 46 | *.log 47 | npm-debug.log* 48 | yarn-debug.log* 49 | yarn-error.log* 50 | lerna-debug.log* 51 | 52 | # Diagnostic reports (https://nodejs.org/api/report.html) 53 | report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json 54 | 55 | # Runtime data 56 | pids 57 | *.pid 58 | *.seed 59 | *.pid.lock 60 | 61 | # Directory for instrumented libs generated by jscoverage/JSCover 62 | lib-cov 63 | 64 | # Coverage directory used by tools like istanbul 65 | coverage 66 | *.lcov 67 | 68 | # nyc test coverage 69 | .nyc_output 70 | 71 | # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) 72 | .grunt 73 | 74 | # Bower dependency directory (https://bower.io/) 75 | bower_components 76 | 77 | # node-waf configuration 78 | .lock-wscript 79 | 80 | # Compiled binary addons (https://nodejs.org/api/addons.html) 81 | build/Release 82 | 83 | # Dependency directories 84 | node_modules/ 85 | jspm_packages/ 86 | 87 | # Snowpack dependency directory (https://snowpack.dev/) 88 | web_modules/ 89 | 90 | # TypeScript cache 91 | *.tsbuildinfo 92 | 93 | # Optional npm cache directory 94 | .npm 95 | 96 | # Optional eslint cache 97 | .eslintcache 98 | 99 | # Microbundle cache 100 | .rpt2_cache/ 101 | .rts2_cache_cjs/ 102 | .rts2_cache_es/ 103 | .rts2_cache_umd/ 104 | 105 | # Optional REPL history 106 | .node_repl_history 107 | 108 | # Output of 'npm pack' 109 | *.tgz 110 | 111 | # Yarn Integrity file 112 | .yarn-integrity 113 | 114 | # dotenv environment variables file 115 | .env 116 | .env.test 117 | .env.prod 118 | 119 | # parcel-bundler cache (https://parceljs.org/) 120 | .cache 121 | .parcel-cache 122 | 123 | # Next.js build output 124 | .next 125 | out 126 | 127 | # Nuxt.js build / generate output 128 | .nuxt 129 | dist 130 | 131 | # Gatsby files 132 | .cache/ 133 | # Comment in the public line in if your project uses Gatsby and not Next.js 134 | # https://nextjs.org/blog/next-9-1#public-directory-support 135 | # public 136 | 137 | # vuepress build output 138 | .vuepress/dist 139 | 140 | # Serverless directories 141 | .serverless/ 142 | 143 | # FuseBox cache 144 | .fusebox/ 145 | 146 | # DynamoDB Local files 147 | .dynamodb/ 148 | 149 | # TernJS port file 150 | .tern-port 151 | 152 | # Stores VSCode versions used for testing VSCode extensions 153 | .vscode-test 154 | 155 | # yarn v2 156 | .yarn/cache 157 | .yarn/unplugged 158 | .yarn/build-state.yml 159 | .yarn/install-state.gz 160 | .pnp.* 161 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | # Install dependencies only when needed 2 | FROM node:16-bullseye-slim AS deps 3 | RUN apt-get update && apt-get install libc6 openssl -y 4 | WORKDIR /app 5 | 6 | # Install dependencies based on the preferred package manager 7 | COPY package.json yarn.lock* ./ 8 | RUN yarn install --frozen-lockfile 9 | 10 | # Rebuild the source code only when needed 11 | FROM node:16-alpine AS builder 12 | WORKDIR /app 13 | COPY --from=deps /app/node_modules ./node_modules 14 | COPY . . 15 | 16 | ENV NEXT_TELEMETRY_DISABLED 1 17 | 18 | RUN yarn build 19 | 20 | # If using npm comment out above and use below instead 21 | # RUN npm run build 22 | 23 | # Production image, copy all the files and run next 24 | FROM node:16-bullseye-slim AS runner 25 | WORKDIR /app 26 | 27 | # Add `ARG` instructions below if you need `NEXT_PUBLIC_` variables 28 | # then put the value on your fly.toml 29 | # Example: 30 | # ARG NEXT_PUBLIC_EXAMPLE="value here" 31 | 32 | ENV NODE_ENV production 33 | ENV NEXT_TELEMETRY_DISABLED 1 34 | 35 | RUN addgroup --system --gid 1001 nodejs 36 | RUN adduser --system --uid 1001 nextjs 37 | 38 | COPY --from=builder /app/public ./public 39 | 40 | # Automatically leverage output traces to reduce image size 41 | # https://nextjs.org/docs/advanced-features/output-file-tracing 42 | COPY --from=builder --chown=nextjs:nodejs /app/.next/standalone ./ 43 | COPY --from=builder --chown=nextjs:nodejs /app/.next/static ./.next/static 44 | 45 | 46 | USER nextjs 47 | 48 | EXPOSE 3000 49 | 50 | ENV PORT 3000 51 | 52 | CMD ["node", "server.js"] 53 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 🙂 🌈 2 | 3 | 4 | Screen Shot 2022-12-13 at 11 25 51 AM 5 | 6 | 7 | ## Join our discord! 8 | If you have any questions post them here! This is still a WIP. 9 | https://discord.gg/SYmACWTf6V 10 | 11 | 12 | ## Getting Started 13 | For detailed instructions on setting up the project, check the 'Setup Guide' section. Make sure to fill out the .env file with necessary credentials. For details of each environment variable, refer to the 'Environment Variables' section. 14 | ``` 15 | OPENAI_API_KEY= 16 | ``` 17 | 18 | 3. Generate and add NEXTAUTH_SECRET to `.env` file 19 | 20 | ``` 21 | # Next Auth 22 | # You can generate the secret via 'openssl rand -base64 32' on Linux 23 | NEXTAUTH_SECRET= 24 | ``` 25 | 26 | 4. Install and run 27 | 28 | ``` 29 | yarn 30 | yarn dev 31 | ``` 32 | 33 | ## System Overview 34 | This application consists of a frontend and a backend system. The frontend is built with Next.js and Tailwind CSS. It handles rendering of the interface that users interact with. The backend handles requests from the frontend and interacts with the database. It is built with Express.js. 35 | 36 | ## Architecture 37 | The frontend and backend are separate entities. They communicate through APIs, with the backend offering RESTful APIs. The major API endpoints include '/api/projects' for projects-related functionalities, '/api/users' for handling user data, and '/api/auth' for authentication related tasks. 38 | 39 | ``` 40 | Below is a conversation between a knowledgable, helpful, and witty AI assistant and a user, who has some questions about a topic. 41 | The AI assistant is able to answer the user's questions and provide additional information about the topic. The AI assistant is able to 42 | keep the conversation focused on the topic and provide relevant information to the user. The closer the AI agent can get to 43 | answering the user's questions, the more helpful the AI agent will be to the user. 44 | 45 | CHAT HISTORY: 46 | {{input}} 47 | Assistant: 48 | ``` 49 | 50 | ## Functionalities 51 | The core features of this application include: 52 | - User registration and login 53 | - Project creation, update, and deletion 54 | - Browsing existing projects 55 | - Applying for projects 56 | - Reviewing applications for project owners 57 | 58 | 59 | 60 | 61 | ## User Guides 62 | We have several guides to help you make the most out of this project. They include how to setup your local development environment, how to deploy the application, and how to use the application as an intern, as a startup, or as a site administrator. 63 | 64 | 74 | ``` 75 | twilio phone-numbers:update PHONE_NUMBER --sms-url https://RANDOM_STRING.ngrok.io/messages 76 | ``` 77 | 78 | You'll need the Twilio CLI installed. You'll need to "upgrade" to paid if you want to remove the Twilio branding from the SMS replies. 79 | 80 | ### Dependencies 81 | 82 | Install the dependencies: 83 | 84 | ```bash 85 | npm install 86 | ``` 87 | 88 | ### Environment Variables 89 | 90 | Copy the `.env.example` file to `.env`: 91 | 92 | ```bash 93 | cp .env.example .env 94 | ``` 95 | 96 | Fill in your TWILIO and OPENAI Keys, and your personal PHONE_NUMBER. 97 | 98 | ### Compile the TypeScript to JavaScript 99 | 100 | Compile the project: 101 | 102 | ```bash 103 | npm run build 104 | ``` 105 | 106 | Note that this runs the TypeScript compiler, `tsc`, you could also run `npx tsc` to get the same output. 107 | 108 | The TypeScript project will be compiled into the `dist` directory. You can also continuously compile the project as it changes with: 109 | 110 | ```bash 111 | npm run watch 112 | ``` 113 | 114 | ### Run the project 115 | 116 | Start the web server with: 117 | 118 | ```bash 119 | npm start 120 | ``` 121 | 122 | ### Expose the local server with ngrok 123 | 124 | To respond to an incoming webhook you will need a publicly available URL. [ngrok](https://ngrok.com) is a tool that can tunnel through from a public URL to your machine. Once you've [downloaded and installed ngrok](https://ngrok.com/download) you can run it like so: 125 | 126 | ```bash 127 | ngrok http 3000 128 | ``` 129 | 130 | The ngrok terminal will show you a URL, like `https://RANDOM_STRING.ngrok.io`. 131 | 132 | ### Connect your phone number to your app 133 | 134 | Using the ngrok URL from the last part, you can set up your Twilio phone number with your application. [Edit your phone number](https://www.twilio.com/console/phone-numbers/incoming) and in the Messaging section, next to when "A message comes in" enter your ngrok URL with the path `/messages`. 135 | 136 | ``` 137 | https://RANDOM_STRING.ngrok.io/messages 138 | ``` 139 | 140 | Save the phone number and you are ready. Send your number a message and receive a reply. Type "reset" to reset the chat thread history and bdeing again. 141 | 142 | ## GPT3 Example Integration 143 | 144 | ```ts 145 | const { Configuration, OpenAIApi } = require("openai"); 146 | 147 | const configuration = new Configuration({ 148 | apiKey: process.env.OPENAI_API_KEY, 149 | }); 150 | const openai = new OpenAIApi(configuration); 151 | 152 | const response = await openai.createCompletion({ 153 | model: "text-davinci-003", 154 | prompt: "Please reply to the chat below:\n", 155 | temperature: 0.7, 156 | max_tokens: 256, 157 | top_p: 1, 158 | frequency_penalty: 0, 159 | presence_penalty: 0, 160 | }); 161 | ``` 162 | 163 | ## TODOs/ Feature Requests 164 | 165 | TODO: Add Voice Chats: 166 | - https://www.twilio.com/docs/voice/twiml/say/text-speech 167 | - https://www.twilio.com/blog/programmable-voice-javascript-quickstart-demo-node 168 | -------------------------------------------------------------------------------- /TEST.md: -------------------------------------------------------------------------------- 1 | hhi 2 | -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- 1 | # TODO 2 | 3 | - Make it possible for multiple users to chat with the ui app at the same time (BUG) 4 | - Right now, there is no FROM field being sent from the ui. 5 | - Make the server/chat/gpt3 code chat history generic, don't assume a phone number 6 | - Add a way to reset the chat history from the ui chat client 7 | -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- 1 | version: "3.9" 2 | services: 3 | app: 4 | env_file: 5 | - .env 6 | platform: "linux/amd64" 7 | build: 8 | context: . 9 | dockerfile: Dockerfile 10 | args: 11 | NEXTAUTH_SECRET: $NEXTAUTH_SECRET 12 | NEXTAUTH_URL: $NEXTAUTH_URL 13 | DATABASE_URL: $DATABASE_URL 14 | working_dir: /app 15 | ports: 16 | - "3000:3000" 17 | image: chat-bot-starter 18 | environment: 19 | DATABASE_URL: $DATABASE_URL 20 | NEXTAUTH_SECRET: $NEXTAUTH_SECRET 21 | NEXTAUTH_URL: $NEXTAUTH_URL 22 | -------------------------------------------------------------------------------- /fly.toml: -------------------------------------------------------------------------------- 1 | # fly.toml file generated for chat-bot-starter on 2022-12-12T15:19:02-05:00 2 | 3 | app = "chat-bot-starter" 4 | kill_signal = "SIGINT" 5 | kill_timeout = 5 6 | processes = [] 7 | 8 | [env] 9 | 10 | [experimental] 11 | allowed_public_ports = [] 12 | auto_rollback = true 13 | 14 | [[services]] 15 | http_checks = [] 16 | internal_port = 3000 17 | processes = ["app"] 18 | protocol = "tcp" 19 | script_checks = [] 20 | [services.concurrency] 21 | hard_limit = 25 22 | soft_limit = 20 23 | type = "connections" 24 | 25 | [[services.ports]] 26 | force_https = true 27 | handlers = ["http"] 28 | port = 80 29 | 30 | [[services.ports]] 31 | handlers = ["tls", "http"] 32 | port = 443 33 | 34 | [[services.tcp_checks]] 35 | grace_period = "1s" 36 | interval = "15s" 37 | restart_limit = 0 38 | timeout = "2s" 39 | -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- 1 | // @ts-check 2 | /** 3 | * Run `build` or `dev` with `SKIP_ENV_VALIDATION` to skip env validation. 4 | * This is especially useful for Docker builds. 5 | */ 6 | !process.env.SKIP_ENV_VALIDATION && (await import("./src/env/server.mjs")); 7 | 8 | /** @type {import("next").NextConfig} */ 9 | const config = { 10 | reactStrictMode: true, 11 | swcMinify: true, 12 | i18n: { 13 | locales: ["en"], 14 | defaultLocale: "en", 15 | }, 16 | output: "standalone", 17 | }; 18 | export default config; 19 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "chat-bot-starter", 3 | "version": "0.1.0", 4 | "private": true, 5 | "scripts": { 6 | "build": "next build", 7 | "dev": "next dev", 8 | "postinstall": "prisma generate", 9 | "lint": "next lint", 10 | "start": "next start" 11 | }, 12 | "dependencies": { 13 | "@prisma/client": "^4.5.0", 14 | "@tanstack/react-query": "^4.19.1", 15 | "@types/twilio": "^3.19.3", 16 | "classnames": "^2.3.2", 17 | "daisyui": "^2.43.1", 18 | "gpt3-tokenizer": "^1.1.4", 19 | "jotai": "^1.11.2", 20 | "next": "^13.1.1", 21 | "openai": "^3.1.0", 22 | "promptable": "^0.0.5", 23 | "react": "18.2.0", 24 | "react-dom": "18.2.0", 25 | "react-hook-form": "^7.40.0", 26 | "react-query": "^3.39.2", 27 | "react-textarea-autosize": "^8.4.0", 28 | "tw-elements": "^1.0.0-alpha13", 29 | "twilio": "^3.83.4", 30 | "uuid": "^9.0.0", 31 | "zod": "^3.18.0" 32 | }, 33 | "devDependencies": { 34 | "@tailwindcss/container-queries": "^0.1.0", 35 | "@tailwindcss/forms": "^0.5.3", 36 | "@tailwindcss/line-clamp": "^0.4.2", 37 | "@tailwindcss/typography": "^0.5.8", 38 | "@types/node": "^18.0.0", 39 | "@types/react": "^18.0.14", 40 | "@types/react-dom": "^18.0.5", 41 | "@types/uuid": "^9.0.0", 42 | "@typescript-eslint/eslint-plugin": "^5.33.0", 43 | "@typescript-eslint/parser": "^5.33.0", 44 | "autoprefixer": "^10.4.7", 45 | "eslint": "^8.26.0", 46 | "eslint-config-next": "13.0.2", 47 | "postcss": "^8.4.14", 48 | "prettier": "^2.7.1", 49 | "prettier-plugin-tailwindcss": "^0.1.13", 50 | "prisma": "^4.5.0", 51 | "tailwind-scrollbar": "^2.0.1", 52 | "tailwindcss": "^3.2.0", 53 | "typescript": "^4.8.4" 54 | }, 55 | "ct3aMetadata": { 56 | "initVersion": "6.11.3" 57 | } 58 | } 59 | -------------------------------------------------------------------------------- /postcss.config.cjs: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | plugins: { 3 | tailwindcss: {}, 4 | autoprefixer: {}, 5 | }, 6 | }; 7 | -------------------------------------------------------------------------------- /prettier.config.cjs: -------------------------------------------------------------------------------- 1 | /** @type {import("prettier").Config} */ 2 | module.exports = { 3 | plugins: [require.resolve("prettier-plugin-tailwindcss")], 4 | }; 5 | -------------------------------------------------------------------------------- /prisma/schema.prisma: -------------------------------------------------------------------------------- 1 | // This is your Prisma schema file, 2 | // learn more about it in the docs: https://pris.ly/d/prisma-schema 3 | 4 | generator client { 5 | provider = "prisma-client-js" 6 | } 7 | 8 | datasource db { 9 | provider = "sqlite" 10 | // NOTE: When using postgresql, mysql or sqlserver, uncomment the @db.Text annotations in model Account below 11 | // Further reading: 12 | // https://next-auth.js.org/adapters/prisma#create-the-prisma-schema 13 | // https://www.prisma.io/docs/reference/api-reference/prisma-schema-reference#string 14 | url = env("DATABASE_URL") 15 | } 16 | 17 | model Example { 18 | id String @id @default(cuid()) 19 | createdAt DateTime @default(now()) 20 | updatedAt DateTime @updatedAt 21 | } 22 | 23 | // Necessary for Next auth 24 | model Account { 25 | id String @id @default(cuid()) 26 | userId String 27 | type String 28 | provider String 29 | providerAccountId String 30 | refresh_token String? // @db.Text 31 | access_token String? // @db.Text 32 | expires_at Int? 33 | token_type String? 34 | scope String? 35 | id_token String? // @db.Text 36 | session_state String? 37 | user User @relation(fields: [userId], references: [id], onDelete: Cascade) 38 | 39 | @@unique([provider, providerAccountId]) 40 | } 41 | 42 | model Session { 43 | id String @id @default(cuid()) 44 | sessionToken String @unique 45 | userId String 46 | expires DateTime 47 | user User @relation(fields: [userId], references: [id], onDelete: Cascade) 48 | } 49 | 50 | model User { 51 | id String @id @default(cuid()) 52 | name String? 53 | email String? @unique 54 | emailVerified DateTime? 55 | image String? 56 | accounts Account[] 57 | sessions Session[] 58 | } 59 | 60 | model VerificationToken { 61 | identifier String 62 | token String @unique 63 | expires DateTime 64 | 65 | @@unique([identifier, token]) 66 | } 67 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/promptable/chat-bot-starter/7cb49d679af63ec269551fc0eb44c5084f979f3e/public/favicon.ico -------------------------------------------------------------------------------- /src/components/Chat/Chat.tsx: -------------------------------------------------------------------------------- 1 | import classNames from "classnames"; 2 | import { useAtomValue } from "jotai"; 3 | import React, { useCallback, useEffect, useRef, useState } from "react"; 4 | import ReactTextareaAutosize from "react-textarea-autosize"; 5 | import { scrollToBottom } from "../../utils/scrollToBottom"; 6 | import { v4 as uuid } from "uuid"; 7 | import { useQuery } from "@tanstack/react-query"; 8 | import { useMutation, useQueryClient } from "react-query"; 9 | import { chatUserIdAtom } from "src/pages/_app"; 10 | 11 | const supportedLanguages = [ 12 | { 13 | id: "py", 14 | name: "python", 15 | }, 16 | { 17 | id: "ts", 18 | name: "typescript", 19 | }, 20 | { 21 | id: "js", 22 | name: "javascript", 23 | }, 24 | { 25 | id: "html", 26 | name: "html", 27 | }, 28 | ]; 29 | 30 | interface Message { 31 | isUserMessage: boolean; 32 | text: string; 33 | id: string; 34 | } 35 | 36 | const createMessage = (text: string, isUserMessage: boolean): Message => { 37 | return { 38 | isUserMessage, 39 | text, 40 | id: uuid(), 41 | }; 42 | }; 43 | 44 | export default function Chat() { 45 | const userId = useAtomValue(chatUserIdAtom); 46 | 47 | // ref to track text area and scroll text into view 48 | const ref = useRef(null); 49 | 50 | const handleScroll = useCallback(() => { 51 | if (ref.current) { 52 | scrollToBottom(ref.current); 53 | } 54 | }, []); 55 | 56 | const [messages, setMessages] = useState([]); 57 | 58 | useEffect(() => { 59 | handleScroll(); 60 | }, [messages, handleScroll]); 61 | 62 | const [userInput, setUserInput] = useState(""); 63 | 64 | const getAgentReply = async (userData: any) => { 65 | return await fetch("/api/chat", { 66 | method: "POST", 67 | body: JSON.stringify({ 68 | Body: { 69 | userId: userData.userId, 70 | messageText: userData.userText, 71 | prevMessage: userData.prevMessage, 72 | }, 73 | }), 74 | }); 75 | }; 76 | 77 | const clearChatHistory = async (userData: any) => { 78 | return await fetch("/api/clear", { 79 | method: "POST", 80 | body: JSON.stringify({ 81 | Body: { 82 | userId: userData.userId, 83 | }, 84 | }), 85 | }); 86 | }; 87 | 88 | // Mutations 89 | const getAgentReplyMutation = useMutation(getAgentReply); 90 | const clearChatHistoryMutation = useMutation(clearChatHistory); 91 | 92 | const [empathy, setEmpathy] = useState(null); 93 | const submit = async () => { 94 | console.log("messages", messages); 95 | const prevMessage = messages[messages.length - 1]?.text; 96 | setMessages((prevMessages) => { 97 | return [...prevMessages, createMessage(userInput, true)]; 98 | }); 99 | 100 | const userText = userInput; 101 | setUserInput(""); 102 | const response = await getAgentReplyMutation.mutateAsync({ 103 | userId, 104 | userText, 105 | prevMessage: prevMessage, 106 | }); 107 | 108 | handleScroll(); 109 | 110 | const { text, empathy } = await response.json(); 111 | if (empathy) { 112 | setEmpathy(empathy); 113 | } 114 | setMessages((prevMessages) => { 115 | return [...prevMessages, createMessage(text, false)]; 116 | }); 117 | }; 118 | 119 | const handleKeyDown = (e: React.KeyboardEvent) => { 120 | if (e.key === "Enter" && !e.shiftKey) { 121 | e.preventDefault(); 122 | void submit(); 123 | } 124 | }; 125 | 126 | const handleClear = async () => { 127 | setMessages([]); 128 | const response = await clearChatHistoryMutation.mutateAsync({ userId }); 129 | const jsonblob = await response.json(); 130 | console.log("Clear Response", jsonblob); 131 | }; 132 | 133 | const [loaded, setLoaded] = useState(false); 134 | // the initial message 135 | useEffect(() => { 136 | if (loaded) { 137 | return; 138 | } 139 | 140 | (async () => { 141 | const response = await getAgentReplyMutation.mutateAsync({ 142 | userId, 143 | userText: "Hi", 144 | }); 145 | 146 | const { text } = await response.json(); 147 | setMessages([createMessage(text, false)]); 148 | })(); 149 | 150 | setLoaded(true); 151 | }, [getAgentReplyMutation, userId, loaded, setLoaded]); 152 | 153 | return ( 154 |
155 |
156 | Empathy 157 |
{empathy}
158 |
159 |
160 |
161 |
162 |
    163 | {messages?.map((msg) => { 164 | return ( 165 |
  • 166 | {msg.isUserMessage ? ( 167 | 168 | ) : ( 169 | 170 | )} 171 |
  • 172 | ); 173 | })} 174 |
175 |
176 |
177 | setUserInput(e.target.value)} 186 | value={userInput} 187 | /> 188 | 195 | 202 |
203 |
204 |
205 |
206 | ); 207 | } 208 | 209 | export const UserMessage = ({ msg }: { msg: Message }) => { 210 | return ( 211 |
212 |
213 |
214 | {""} 215 |
216 |
217 |

{msg.text}

218 |
219 | ); 220 | }; 221 | 222 | export const BotMessage = ({ msg }: { msg: Message }) => { 223 | return ( 224 |
225 |
226 |
227 |
228 |
229 | {msg.text?.length ? ( 230 | msg.text.trim() 231 | ) : ( 232 | Loading... 233 | )} 234 |
235 |
236 | ); 237 | }; 238 | -------------------------------------------------------------------------------- /src/components/ui/Theme/AutoSaveInput.tsx: -------------------------------------------------------------------------------- 1 | import type { SubmitHandler } from "react-hook-form"; 2 | import { useForm } from "react-hook-form"; 3 | 4 | export const AutoSaveInput = (props: { 5 | placeHolder?: string; 6 | onSubmit: (value: any) => void; 7 | onCancel: () => void; 8 | defaultValue?: string; 9 | }) => { 10 | const { 11 | register, 12 | handleSubmit, 13 | formState: { errors }, 14 | } = useForm<{ name: string }>({ 15 | mode: "onSubmit", 16 | }); 17 | const onSubmit: SubmitHandler<{ name: string }> = ( 18 | data: { name: string }, 19 | event?: React.BaseSyntheticEvent 20 | ) => { 21 | console.log("onsub"); 22 | if (data.name.length) { 23 | props.onSubmit(data.name); 24 | } 25 | }; 26 | return ( 27 |
28 | { 33 | if (e.code === "Escape") { 34 | props.onCancel(); 35 | } 36 | }} 37 | placeholder={props.placeHolder} 38 | defaultValue={props.defaultValue || ""} 39 | autoFocus 40 | onBlur={() => { 41 | handleSubmit(onSubmit)(); 42 | }} 43 | /> 44 |
45 | ); 46 | }; 47 | -------------------------------------------------------------------------------- /src/components/ui/Theme/ThemeProvider.tsx: -------------------------------------------------------------------------------- 1 | import { themeAtom } from "@components/ui/Theme/ThemeSelect"; 2 | import { useAtom } from "jotai"; 3 | import { useEffect, useState } from "react"; 4 | 5 | export default function ThemeProvider(props: { children: React.ReactNode }) { 6 | const [theme, setTheme] = useAtom(themeAtom); 7 | 8 | // https://jotai.org/docs/utils/atom-with-storage#server-side-rendering 9 | const [hasMounted, setHasMounted] = useState(false); 10 | useEffect(() => { 11 | setHasMounted(true); 12 | }, []); 13 | 14 | if (!hasMounted) { 15 | return null; 16 | } 17 | 18 | return ( 19 |
20 | {props.children} 21 |
22 | ); 23 | } 24 | -------------------------------------------------------------------------------- /src/components/ui/Theme/ThemeSelect.tsx: -------------------------------------------------------------------------------- 1 | import { useAtom } from "jotai"; 2 | import { atomWithStorage } from "jotai/utils"; 3 | 4 | export const themeAtom = atomWithStorage("theme", "light"); 5 | 6 | const daisyUIThemes = [ 7 | "light", 8 | "dark", 9 | "cupcake", 10 | "bumblebee", 11 | "emerald", 12 | "corporate", 13 | "synthwave", 14 | "retro", 15 | "cyberpunk", 16 | "valentine", 17 | "halloween", 18 | "garden", 19 | "forest", 20 | "aqua", 21 | "lofi", 22 | "pastel", 23 | "fantasy", 24 | "wireframe", 25 | "black", 26 | "luxury", 27 | "dracula", 28 | "cmyk", 29 | "autumn", 30 | "business", 31 | "acid", 32 | "lemonade", 33 | "night", 34 | "coffee", 35 | "winter", 36 | ]; 37 | 38 | export default function ThemeSelect() { 39 | // Jotai state. It's like global useState <3 40 | const [theme, setTheme] = useAtom(themeAtom); 41 | 42 | return ( 43 | 56 | ); 57 | } 58 | -------------------------------------------------------------------------------- /src/env/client.mjs: -------------------------------------------------------------------------------- 1 | // @ts-check 2 | import { clientEnv, clientSchema } from "./schema.mjs"; 3 | 4 | const _clientEnv = clientSchema.safeParse(clientEnv); 5 | 6 | export const formatErrors = ( 7 | /** @type {import('zod').ZodFormattedError,string>} */ 8 | errors, 9 | ) => 10 | Object.entries(errors) 11 | .map(([name, value]) => { 12 | if (value && "_errors" in value) 13 | return `${name}: ${value._errors.join(", ")}\n`; 14 | }) 15 | .filter(Boolean); 16 | 17 | if (!_clientEnv.success) { 18 | console.error( 19 | "❌ Invalid environment variables:\n", 20 | ...formatErrors(_clientEnv.error.format()), 21 | ); 22 | throw new Error("Invalid environment variables"); 23 | } 24 | 25 | for (let key of Object.keys(_clientEnv.data)) { 26 | if (!key.startsWith("NEXT_PUBLIC_")) { 27 | console.warn( 28 | `❌ Invalid public environment variable name: ${key}. It must begin with 'NEXT_PUBLIC_'`, 29 | ); 30 | 31 | throw new Error("Invalid public environment variable name"); 32 | } 33 | } 34 | 35 | export const env = _clientEnv.data; 36 | -------------------------------------------------------------------------------- /src/env/schema.mjs: -------------------------------------------------------------------------------- 1 | // @ts-check 2 | import { z } from "zod"; 3 | 4 | /** 5 | * Specify your server-side environment variables schema here. 6 | * This way you can ensure the app isn't built with invalid env vars. 7 | */ 8 | export const serverSchema = z.object({ 9 | DATABASE_URL: z.string().url(), 10 | NODE_ENV: z.enum(["development", "test", "production"]), 11 | NEXTAUTH_SECRET: 12 | process.env.NODE_ENV === "production" 13 | ? z.string().min(1) 14 | : z.string().min(1).optional(), 15 | // NEXTAUTH_URL: z.preprocess( 16 | // // This makes Vercel deployments not fail if you don't set NEXTAUTH_URL 17 | // // Since NextAuth.js automatically uses the VERCEL_URL if present. 18 | // (str) => process.env.VERCEL_URL ?? str, 19 | // // VERCEL_URL doesn't include `https` so it cant be validated as a URL 20 | // process.env.VERCEL ? z.string() : z.string().url() 21 | // ), 22 | // DISCORD_CLIENT_ID: z.string(), 23 | // DISCORD_CLIENT_SECRET: z.string(), 24 | OPENAI_API_KEY: z.string(), 25 | }); 26 | 27 | /** 28 | * Specify your client-side environment variables schema here. 29 | * This way you can ensure the app isn't built with invalid env vars. 30 | * To expose them to the client, prefix them with `NEXT_PUBLIC_`. 31 | */ 32 | export const clientSchema = z.object({ 33 | // NEXT_PUBLIC_CLIENTVAR: z.string(), 34 | }); 35 | 36 | /** 37 | * You can't destruct `process.env` as a regular object, so you have to do 38 | * it manually here. This is because Next.js evaluates this at build time, 39 | * and only used environment variables are included in the build. 40 | * @type {{ [k in keyof z.infer]: z.infer[k] | undefined }} 41 | */ 42 | export const clientEnv = { 43 | // NEXT_PUBLIC_CLIENTVAR: process.env.NEXT_PUBLIC_CLIENTVAR, 44 | }; 45 | -------------------------------------------------------------------------------- /src/env/server.mjs: -------------------------------------------------------------------------------- 1 | // @ts-check 2 | /** 3 | * This file is included in `/next.config.mjs` which ensures the app isn't built with invalid env vars. 4 | * It has to be a `.mjs`-file to be imported there. 5 | */ 6 | import { serverSchema } from "./schema.mjs"; 7 | import { env as clientEnv, formatErrors } from "./client.mjs"; 8 | 9 | const _serverEnv = serverSchema.safeParse(process.env); 10 | 11 | if (!_serverEnv.success) { 12 | console.error( 13 | "❌ Invalid environment variables:\n", 14 | ...formatErrors(_serverEnv.error.format()), 15 | ); 16 | throw new Error("Invalid environment variables"); 17 | } 18 | 19 | for (let key of Object.keys(_serverEnv.data)) { 20 | if (key.startsWith("NEXT_PUBLIC_")) { 21 | console.warn("❌ You are exposing a server-side env-variable:", key); 22 | 23 | throw new Error("You are exposing a server-side env-variable"); 24 | } 25 | } 26 | 27 | export const env = { ..._serverEnv.data, ...clientEnv }; 28 | -------------------------------------------------------------------------------- /src/pages/404.tsx: -------------------------------------------------------------------------------- 1 | export default function CustomError() { 2 | return

ERror

; 3 | } 4 | -------------------------------------------------------------------------------- /src/pages/500.tsx: -------------------------------------------------------------------------------- 1 | export default function CustomError() { 2 | return

ERror

; 3 | } 4 | -------------------------------------------------------------------------------- /src/pages/_app.tsx: -------------------------------------------------------------------------------- 1 | "use client"; 2 | 3 | import { type AppType } from "next/app"; 4 | import ThemeProvider from "@components/ui/Theme/ThemeProvider"; 5 | import "../styles/globals.css"; 6 | import { QueryClient, QueryClientProvider } from "react-query"; 7 | import { v4 as uuid } from "uuid"; 8 | import { atom } from "jotai"; 9 | 10 | // Create a client 11 | const queryClient = new QueryClient(); 12 | 13 | export const chatUserIdAtom = atom(uuid()); 14 | 15 | const MyApp: AppType = ({ Component, pageProps: { ...pageProps } }) => { 16 | return ( 17 | // Provide the client to your App 18 | 19 | 20 | 21 | 22 | 23 | ); 24 | }; 25 | 26 | export default MyApp; 27 | -------------------------------------------------------------------------------- /src/pages/api/chat.ts: -------------------------------------------------------------------------------- 1 | import { env } from "../../env/server.mjs"; 2 | import { type NextApiRequest, type NextApiResponse } from "next"; 3 | import { PromptableApi } from "promptable"; 4 | import { getReply } from "../../server/chat/gpt3"; 5 | import { Configuration, OpenAIApi } from "openai"; 6 | 7 | export const EMPATHY_PROMPT_ID = "clcj71xae00a0i6eghu9v7xbo"; 8 | const configuration = new Configuration({ 9 | apiKey: env.OPENAI_API_KEY, 10 | }); 11 | 12 | const openai = new OpenAIApi(configuration); 13 | 14 | const chat = async (req: NextApiRequest, res: NextApiResponse) => { 15 | const body = JSON.parse(req.body); 16 | const { userId, messageText, prevMessage } = body.Body; 17 | const reply = await getReply(userId, messageText || ""); 18 | console.log("Reply", reply); 19 | 20 | console.log("PREV MESSAGE", prevMessage); 21 | if (!prevMessage) { 22 | res.status(200).json(reply); 23 | return; 24 | } 25 | console.log("checking empathy..."); 26 | 27 | // now determine the empathy of the message 28 | // Get the prompt and config from the Promptable API 29 | // (Optionally) replace this call with a local hard-coded prompt and config 30 | const data = await PromptableApi.getActiveDeployment({ 31 | promptId: EMPATHY_PROMPT_ID, 32 | }); 33 | 34 | let prompt = data.text; 35 | prompt = prompt.replace("{{messageA}}", prevMessage); 36 | prompt = prompt.replace("{{messageB}}", messageText); 37 | 38 | const params = { 39 | prompt, 40 | model: data.config.model, 41 | max_tokens: data.config.max_tokens, 42 | temperature: data.config.temperature, 43 | stop: data.config.stop, 44 | }; 45 | console.log(params); 46 | 47 | const response = await openai.createCompletion(params); 48 | 49 | console.log(response.data); 50 | const agentText = 51 | response.data.choices[0]?.text?.trim() || res.status(200).json(reply); 52 | 53 | res.status(200).json({ 54 | ...reply, 55 | empathy: agentText, 56 | }); 57 | }; 58 | 59 | export default chat; 60 | -------------------------------------------------------------------------------- /src/pages/api/clear.ts: -------------------------------------------------------------------------------- 1 | import { type NextApiRequest, type NextApiResponse } from "next"; 2 | import { clearChatHistory } from "../../server/chat/gpt3"; 3 | 4 | const clear = async (req: NextApiRequest, res: NextApiResponse) => { 5 | const body = JSON.parse(req.body); 6 | console.log("Body", body, "clearing chat history") 7 | const { userId } = body.Body; 8 | console.log(userId, userId); 9 | if (!userId) { 10 | res.status(400).json({ error: "No message body" }); 11 | return; 12 | } 13 | const reply = await clearChatHistory(userId); 14 | console.log("Reply", reply); 15 | res.status(200).json(reply); 16 | }; 17 | 18 | export default clear; 19 | -------------------------------------------------------------------------------- /src/pages/api/examples.ts: -------------------------------------------------------------------------------- 1 | import { type NextApiRequest, type NextApiResponse } from "next"; 2 | 3 | import { prisma } from "../../server/db/client"; 4 | 5 | const examples = async (req: NextApiRequest, res: NextApiResponse) => { 6 | const examples = await prisma.example.findMany(); 7 | res.status(200).json(examples); 8 | }; 9 | 10 | export default examples; 11 | -------------------------------------------------------------------------------- /src/pages/api/messages.ts: -------------------------------------------------------------------------------- 1 | import { type NextApiRequest, type NextApiResponse } from "next"; 2 | 3 | import { twiml } from "twilio"; 4 | import { clearChatHistory, getReply } from "../../server/chat/gpt3"; 5 | 6 | const { MessagingResponse } = twiml; 7 | const handleTextMessage = async (req: NextApiRequest, res: NextApiResponse) => { 8 | const userMessage = req.body.Body; 9 | console.log("userMessage", userMessage); 10 | console.log("From/To", req.body.From, req.body.To); 11 | const response = new MessagingResponse(); 12 | try { 13 | let reply; 14 | if (userMessage.trim().toLowerCase() === "reset") { 15 | reply = await clearChatHistory(req.body.From); 16 | } else { 17 | reply = await getReply(req.body.From, userMessage); 18 | } 19 | response.message(reply.text); 20 | } catch (error) { 21 | console.error(error); 22 | response.message(`Failed to reply for ${userMessage}.`); 23 | } 24 | 25 | res.setHeader("Content-Type", "application/xml"); 26 | res.send(response.toString()); 27 | }; 28 | 29 | export default handleTextMessage; 30 | -------------------------------------------------------------------------------- /src/pages/index.tsx: -------------------------------------------------------------------------------- 1 | "use client"; 2 | 3 | import { AutoSaveInput } from "@components/ui/Theme/AutoSaveInput"; 4 | import ThemeSelect from "@components/ui/Theme/ThemeSelect"; 5 | import { useAtomValue } from "jotai"; 6 | import { type NextPage } from "next"; 7 | import Head from "next/head"; 8 | import Chat from "../components/Chat/Chat"; 9 | import { chatUserIdAtom } from "./_app"; 10 | 11 | const Home: NextPage = () => { 12 | console.log("Loggin home page"); 13 | const userId = useAtomValue(chatUserIdAtom); 14 | 15 | const handleSubmit = async (value: string) => { 16 | console.log("updating prompt id", value); 17 | if (!value?.length) { 18 | return; 19 | } 20 | 21 | // send reset to server 22 | await fetch("/api/chat", { 23 | method: "POST", 24 | body: JSON.stringify({ 25 | Body: { 26 | userId: userId, 27 | messageText: `reset ${value}`, 28 | }, 29 | }), 30 | }); 31 | }; 32 | 33 | return ( 34 | <> 35 | 36 | Create T3 App 37 | 38 | 39 | 40 |
41 |
Test your Empathy!
42 | 43 |
44 | 45 | ); 46 | }; 47 | 48 | export default Home; 49 | -------------------------------------------------------------------------------- /src/server/chat/chatHistory.ts: -------------------------------------------------------------------------------- 1 | /* 2 | Memory for storing chat history by phone number 3 | 4 | promptId is a Promptable.ai thing. If you're using your own local prompt, 5 | you can just hard-code the promptId (which is used to identify the prompt) 6 | if you want to reset/switch between prompts in the chat using the 7 | "reset " command. 8 | 9 | */ 10 | 11 | export type Turn = { 12 | speaker: string; 13 | text: string; 14 | }; 15 | 16 | export interface ChatHistory { 17 | promptId: string; 18 | userId: string; 19 | turns: Turn[]; 20 | } 21 | 22 | export class ChatHistoryStore { 23 | private history: { [chatId: string]: ChatHistory } = {}; 24 | 25 | create( 26 | userId: string, 27 | promptId: string 28 | ): ChatHistory | undefined { 29 | this.history[userId] = { 30 | promptId: promptId, 31 | userId: userId, 32 | turns: [], 33 | }; 34 | return this.history[userId]; 35 | } 36 | 37 | add(userId: string, message: string, speaker: string) { 38 | const turn = { 39 | speaker: speaker, 40 | text: message, 41 | }; 42 | this.history[userId]?.turns.push(turn); 43 | } 44 | 45 | get(userId: string): ChatHistory | undefined { 46 | return this.history[userId]; 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /src/server/chat/gpt3.ts: -------------------------------------------------------------------------------- 1 | /* 2 | This is a sample GPT-3 bot that uses the Promptable API to get a prompt and config 3 | and then uses the OpenAI API to generate a response. 4 | 5 | If you don't want to use Promptable, you can just hard-code your prompt and config 6 | somewhere in this file and replace the call to the Promptable API with a local call. 7 | */ 8 | import { env } from "../../env/server.mjs"; 9 | import { Configuration, OpenAIApi } from "openai"; 10 | import GPT3Tokenizer from "gpt3-tokenizer"; 11 | import axios from "axios"; 12 | import type { ChatHistory, Turn } from "./chatHistory"; 13 | import { ChatHistoryStore } from "./chatHistory"; 14 | import { PromptableApi } from "promptable"; 15 | 16 | // AI ASSISTANT BOT: 17 | const DEFAULT_AGENT_NAME = "Assistant"; 18 | const DEFAULT_PROMPT_ID = "clbilb0kh0008h7eg8jv8owdu"; 19 | 20 | const tokenizer = new GPT3Tokenizer({ type: "gpt3" }); 21 | 22 | function countBPETokens(text: string): number { 23 | const encoded = tokenizer.encode(text); 24 | return encoded.bpe.length; 25 | } 26 | 27 | const store = new ChatHistoryStore(); 28 | 29 | const configuration = new Configuration({ 30 | apiKey: env.OPENAI_API_KEY, 31 | }); 32 | 33 | const openai = new OpenAIApi(configuration); 34 | 35 | type OpenAIResponse = { 36 | text: string; 37 | }; 38 | 39 | function leftTruncateTranscript(text: string, maxTokens: number): string { 40 | const encoded = tokenizer.encode(text); 41 | const numTokens = encoded.bpe.length; 42 | const truncated = encoded.bpe.slice(numTokens - maxTokens); 43 | const decoded = tokenizer.decode(truncated); 44 | return decoded; 45 | } 46 | 47 | function injectValuesIntoPrompt( 48 | template: string, 49 | values: { [key: string]: any } 50 | ): string { 51 | let result = template; 52 | for (const key in values) { 53 | result = result.replace(new RegExp(`{{${key}}}`, "g"), values[key]); 54 | } 55 | return result; 56 | } 57 | 58 | /* 59 | * If the message is "reset" or "reset ", then reset the chat history 60 | * and return the new chat history. Otherwise, return null. 61 | */ 62 | function handlePossibleReset( 63 | userId: string, 64 | message: string 65 | ): ChatHistory | undefined { 66 | if (message.trim().toLowerCase() === "reset") { 67 | const promptId = DEFAULT_PROMPT_ID; 68 | store.create(userId, promptId); 69 | return store.get(userId); 70 | } 71 | const pattern = /reset (\w+)/; 72 | const match = message.toLowerCase().match(pattern); 73 | if (match) { 74 | const promptId = match[1]!; 75 | store.create(userId, promptId); 76 | return store.get(userId); 77 | } 78 | 79 | return undefined; 80 | } 81 | 82 | /* 83 | Get or create a chat history for a userId / phoneNumber 84 | */ 85 | function getOrCreateChatHistory(userId: string, message: string) { 86 | let chatHistory = handlePossibleReset(userId, message); 87 | if (chatHistory == null) { 88 | chatHistory = store.get(userId); 89 | if (chatHistory == null) { 90 | chatHistory = store.create(userId, DEFAULT_PROMPT_ID); 91 | } 92 | } else { 93 | console.log("RESETTING CHAT HISTORY!"); 94 | console.log(chatHistory); 95 | } 96 | } 97 | 98 | function formatChatHistoryTurns(turns: Turn[]) { 99 | return turns.map((turn) => `${turn.speaker}: ${turn.text}`).join("\n"); 100 | } 101 | 102 | function formatPromptText(chatHistory: ChatHistory, promptTemplate: string) { 103 | console.log("PromptTemplate", promptTemplate); 104 | const numTokens = countBPETokens(promptTemplate); 105 | let turnsText = formatChatHistoryTurns(chatHistory.turns); 106 | console.log("turnsText", turnsText); 107 | console.log("Pre Truncation", turnsText); 108 | turnsText = leftTruncateTranscript(turnsText, 4000 - numTokens); 109 | console.log("Post Truncation", turnsText); 110 | const prompt = injectValuesIntoPrompt(promptTemplate, { input: turnsText }); 111 | console.log("Prompt", prompt); 112 | return prompt; 113 | } 114 | 115 | export const getReply = async ( 116 | userId: string, 117 | message: string 118 | ): Promise => { 119 | console.log("userId", userId, "message", message); 120 | // strip whitespace! 121 | message = message.trim(); 122 | getOrCreateChatHistory(userId, message); 123 | store.add(userId, message, "User"); 124 | const chatHistory = store.get(userId); 125 | if (!chatHistory) { 126 | throw new Error("Chat history should exist!"); 127 | } 128 | console.log("Chat History", chatHistory); 129 | 130 | // Get the prompt and config from the Promptable API 131 | // (Optionally) replace this call with a local hard-coded prompt and config 132 | const data = await PromptableApi.getActiveDeployment({ 133 | promptId: "clcj7swlf00api6eg47wqszsi", 134 | }); 135 | 136 | const prompt = formatPromptText(chatHistory, data.text); 137 | console.log("PROMPT", prompt); 138 | const params = { 139 | prompt, 140 | model: data.config.model, 141 | max_tokens: data.config.max_tokens, 142 | temperature: data.config.temperature, 143 | stop: data.config.stop, 144 | }; 145 | console.log(params); 146 | const response = await openai.createCompletion(params); 147 | 148 | console.log(response.data); 149 | const agentText = 150 | response.data.choices[0]?.text?.trim() || 151 | "Sorry, I had a problem. Please try again."; 152 | store.add(userId, agentText, DEFAULT_AGENT_NAME); 153 | console.log(`${DEFAULT_AGENT_NAME}: ${agentText}`); 154 | return { 155 | text: agentText, 156 | } as OpenAIResponse; 157 | }; 158 | 159 | /* 160 | Clear the chat history for a userId 161 | */ 162 | export const clearChatHistory = async (userId: string): Promise => { 163 | console.log("userId", userId, "resetting"); 164 | getOrCreateChatHistory(userId, "reset"); 165 | return { 166 | text: "Conversation history cleared", 167 | }; 168 | }; 169 | -------------------------------------------------------------------------------- /src/server/db/client.ts: -------------------------------------------------------------------------------- 1 | import { PrismaClient } from "@prisma/client"; 2 | 3 | import { env } from "../../env/server.mjs"; 4 | 5 | declare global { 6 | // eslint-disable-next-line no-var 7 | var prisma: PrismaClient | undefined; 8 | } 9 | 10 | export const prisma = 11 | global.prisma || 12 | new PrismaClient({ 13 | log: 14 | env.NODE_ENV === "development" ? ["query", "error", "warn"] : ["error"], 15 | }); 16 | 17 | if (env.NODE_ENV !== "production") { 18 | global.prisma = prisma; 19 | } 20 | -------------------------------------------------------------------------------- /src/styles/globals.css: -------------------------------------------------------------------------------- 1 | @tailwind base; 2 | @tailwind components; 3 | @tailwind utilities; 4 | 5 | 6 | @layer base { 7 | html, 8 | body, 9 | body > div:first-child, 10 | div#__next { 11 | @apply h-full; 12 | } 13 | } -------------------------------------------------------------------------------- /src/types/next-auth.d.ts: -------------------------------------------------------------------------------- 1 | import { type DefaultSession } from "next-auth"; 2 | 3 | declare module "next-auth" { 4 | /** 5 | * Returned by `useSession`, `getSession` and received as a prop on the `SessionProvider` React Context 6 | */ 7 | interface Session { 8 | user?: { 9 | id: string; 10 | } & DefaultSession["user"]; 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /src/utils/scrollToBottom.ts: -------------------------------------------------------------------------------- 1 | export const scrollToBottom = (element: HTMLElement) => { 2 | element.scroll({ 3 | behavior: "auto", 4 | top: element.scrollHeight, 5 | }); 6 | }; 7 | -------------------------------------------------------------------------------- /tailwind.config.cjs: -------------------------------------------------------------------------------- 1 | /** @type {import('tailwindcss').Config} */ 2 | module.exports = { 3 | important: true, 4 | mode: "jit", 5 | content: ["./src/**/*.{html,js,ts,jsx,tsx}"], 6 | theme: { 7 | extend: { 8 | colors: {}, 9 | }, 10 | }, 11 | plugins: [ 12 | require("@tailwindcss/typography"), 13 | require("@tailwindcss/forms"), 14 | require("@tailwindcss/line-clamp"), 15 | require("@tailwindcss/container-queries"), 16 | require("tailwind-scrollbar"), 17 | require("daisyui"), 18 | ], 19 | daisyui: { 20 | prefix: "daisy-", 21 | }, 22 | }; 23 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "es2017", 4 | "lib": [ 5 | "dom", 6 | "dom.iterable", 7 | "esnext" 8 | ], 9 | "allowJs": true, 10 | "skipLibCheck": true, 11 | "strict": true, 12 | "forceConsistentCasingInFileNames": true, 13 | "noEmit": true, 14 | "esModuleInterop": true, 15 | "module": "esnext", 16 | "moduleResolution": "node", 17 | "resolveJsonModule": true, 18 | "isolatedModules": true, 19 | "jsx": "preserve", 20 | "incremental": true, 21 | "noUncheckedIndexedAccess": true, 22 | "baseUrl": ".", 23 | "paths": { 24 | "@components/*": [ 25 | "src/components/*" 26 | ], 27 | "@lib/*": [ 28 | "src/lib/*" 29 | ], 30 | "@hooks/*": [ 31 | "src/hooks/*" 32 | ] 33 | } 34 | }, 35 | "include": [ 36 | "next-env.d.ts", 37 | "**/*.ts", 38 | "**/*.tsx", 39 | "**/*.cjs", 40 | "**/*.mjs" 41 | ], 42 | "exclude": [ 43 | "node_modules" 44 | ] 45 | } -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@babel/runtime-corejs3@^7.10.2": 6 | "integrity" "sha512-tqeujPiuEfcH067mx+7otTQWROVMKHXEaOQcAeNV5dDdbPWvPcFA8/W9LXw2NfjNmOetqLl03dfnG2WALPlsRQ==" 7 | "resolved" "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.20.6.tgz" 8 | "version" "7.20.6" 9 | dependencies: 10 | "core-js-pure" "^3.25.1" 11 | "regenerator-runtime" "^0.13.11" 12 | 13 | "@babel/runtime@^7.10.2", "@babel/runtime@^7.12.5", "@babel/runtime@^7.18.9", "@babel/runtime@^7.5.5", "@babel/runtime@^7.6.2", "@babel/runtime@^7.7.2": 14 | "integrity" "sha512-Q+8MqP7TiHMWzSfwiJwXCjyf4GYA4Dgw3emg/7xmwsdLJOZUp+nMqcOwOzzYheuM1rhDu8FSj2l0aoMygEuXuA==" 15 | "resolved" "https://registry.npmjs.org/@babel/runtime/-/runtime-7.20.6.tgz" 16 | "version" "7.20.6" 17 | dependencies: 18 | "regenerator-runtime" "^0.13.11" 19 | 20 | "@eslint/eslintrc@^1.3.3": 21 | "integrity" "sha512-uj3pT6Mg+3t39fvLrj8iuCIJ38zKO9FpGtJ4BBJebJhEwjoT+KLVNCcHT5QC9NGRIEi7fZ0ZR8YRb884auB4Lg==" 22 | "resolved" "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.3.3.tgz" 23 | "version" "1.3.3" 24 | dependencies: 25 | "ajv" "^6.12.4" 26 | "debug" "^4.3.2" 27 | "espree" "^9.4.0" 28 | "globals" "^13.15.0" 29 | "ignore" "^5.2.0" 30 | "import-fresh" "^3.2.1" 31 | "js-yaml" "^4.1.0" 32 | "minimatch" "^3.1.2" 33 | "strip-json-comments" "^3.1.1" 34 | 35 | "@humanwhocodes/config-array@^0.11.6": 36 | "integrity" "sha512-kBbPWzN8oVMLb0hOUYXhmxggL/1cJE6ydvjDIGi9EnAGUyA7cLVKQg+d/Dsm+KZwx2czGHrCmMVLiyg8s5JPKw==" 37 | "resolved" "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.7.tgz" 38 | "version" "0.11.7" 39 | dependencies: 40 | "@humanwhocodes/object-schema" "^1.2.1" 41 | "debug" "^4.1.1" 42 | "minimatch" "^3.0.5" 43 | 44 | "@humanwhocodes/module-importer@^1.0.1": 45 | "integrity" "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==" 46 | "resolved" "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz" 47 | "version" "1.0.1" 48 | 49 | "@humanwhocodes/object-schema@^1.2.1": 50 | "integrity" "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==" 51 | "resolved" "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz" 52 | "version" "1.2.1" 53 | 54 | "@microsoft/fetch-event-source@^2.0.1": 55 | "integrity" "sha512-W6CLUJ2eBMw3Rec70qrsEW0jOm/3twwJv21mrmj2yORiaVmVYGS4sSS5yUwvQc1ZlDLYGPnClVWmUUMagKNsfA==" 56 | "resolved" "https://registry.npmjs.org/@microsoft/fetch-event-source/-/fetch-event-source-2.0.1.tgz" 57 | "version" "2.0.1" 58 | 59 | "@next/env@13.1.1": 60 | "integrity" "sha512-vFMyXtPjSAiOXOywMojxfKIqE3VWN5RCAx+tT3AS3pcKjMLFTCJFUWsKv8hC+87Z1F4W3r68qTwDFZIFmd5Xkw==" 61 | "resolved" "https://registry.npmjs.org/@next/env/-/env-13.1.1.tgz" 62 | "version" "13.1.1" 63 | 64 | "@next/eslint-plugin-next@13.0.2": 65 | "integrity" "sha512-W+fIIIaFU7Kct7Okx91C7XDRGolv/w2RUenX2yZFeeNVcuVzDIKUcNmckrYbYcwrNQUSXmtwrs3g8xwast0YtA==" 66 | "resolved" "https://registry.npmjs.org/@next/eslint-plugin-next/-/eslint-plugin-next-13.0.2.tgz" 67 | "version" "13.0.2" 68 | dependencies: 69 | "glob" "7.1.7" 70 | 71 | "@next/swc-darwin-arm64@13.1.1": 72 | "integrity" "sha512-9zRJSSIwER5tu9ADDkPw5rIZ+Np44HTXpYMr0rkM656IvssowPxmhK0rTreC1gpUCYwFsRbxarUJnJsTWiutPg==" 73 | "resolved" "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-13.1.1.tgz" 74 | "version" "13.1.1" 75 | 76 | "@nodelib/fs.scandir@2.1.5": 77 | "integrity" "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==" 78 | "resolved" "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz" 79 | "version" "2.1.5" 80 | dependencies: 81 | "@nodelib/fs.stat" "2.0.5" 82 | "run-parallel" "^1.1.9" 83 | 84 | "@nodelib/fs.stat@^2.0.2", "@nodelib/fs.stat@2.0.5": 85 | "integrity" "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==" 86 | "resolved" "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz" 87 | "version" "2.0.5" 88 | 89 | "@nodelib/fs.walk@^1.2.3", "@nodelib/fs.walk@^1.2.8": 90 | "integrity" "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==" 91 | "resolved" "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz" 92 | "version" "1.2.8" 93 | dependencies: 94 | "@nodelib/fs.scandir" "2.1.5" 95 | "fastq" "^1.6.0" 96 | 97 | "@popperjs/core@^2.6.0": 98 | "integrity" "sha512-50/17A98tWUfQ176raKiOGXuYpLyyVMkxxG6oylzL3BPOlA6ADGdK7EYunSa4I064xerltq9TGXs8HmOk5E+vw==" 99 | "resolved" "https://registry.npmjs.org/@popperjs/core/-/core-2.11.6.tgz" 100 | "version" "2.11.6" 101 | 102 | "@prisma/client@^4.5.0": 103 | "integrity" "sha512-/GbnOwIPtjiveZNUzGXOdp7RxTEkHL4DZP3vBaFNadfr6Sf0RshU5EULFzVaSi9i9PIK9PYd+1Rn7z2B2npb9w==" 104 | "resolved" "https://registry.npmjs.org/@prisma/client/-/client-4.7.1.tgz" 105 | "version" "4.7.1" 106 | dependencies: 107 | "@prisma/engines-version" "4.7.1-1.272861e07ab64f234d3ffc4094e32bd61775599c" 108 | 109 | "@prisma/engines-version@4.7.1-1.272861e07ab64f234d3ffc4094e32bd61775599c": 110 | "integrity" "sha512-Bd4LZ+WAnUHOq31e9X/ihi5zPlr4SzTRwUZZYxvWOxlerIZ7HJlVa9zXpuKTKLpI9O1l8Ec4OYCKsivWCs5a3Q==" 111 | "resolved" "https://registry.npmjs.org/@prisma/engines-version/-/engines-version-4.7.1-1.272861e07ab64f234d3ffc4094e32bd61775599c.tgz" 112 | "version" "4.7.1-1.272861e07ab64f234d3ffc4094e32bd61775599c" 113 | 114 | "@prisma/engines@4.7.1": 115 | "integrity" "sha512-zWabHosTdLpXXlMefHmnouhXMoTB1+SCbUU3t4FCmdrtIOZcarPKU3Alto7gm/pZ9vHlGOXHCfVZ1G7OIrSbog==" 116 | "resolved" "https://registry.npmjs.org/@prisma/engines/-/engines-4.7.1.tgz" 117 | "version" "4.7.1" 118 | 119 | "@rushstack/eslint-patch@^1.1.3": 120 | "integrity" "sha512-sXo/qW2/pAcmT43VoRKOJbDOfV3cYpq3szSVfIThQXNt+E4DfKj361vaAt3c88U5tPUxzEswam7GW48PJqtKAg==" 121 | "resolved" "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.2.0.tgz" 122 | "version" "1.2.0" 123 | 124 | "@swc/helpers@0.4.14": 125 | "integrity" "sha512-4C7nX/dvpzB7za4Ql9K81xK3HPxCpHMgwTZVyf+9JQ6VUbn9jjZVN7/Nkdz/Ugzs2CSjqnL/UPXroiVBVHUWUw==" 126 | "resolved" "https://registry.npmjs.org/@swc/helpers/-/helpers-0.4.14.tgz" 127 | "version" "0.4.14" 128 | dependencies: 129 | "tslib" "^2.4.0" 130 | 131 | "@tailwindcss/container-queries@^0.1.0": 132 | "integrity" "sha512-t1GeJ9P8ual160BvKy6Y1sG7bjChArMaK6iRXm3ZYjZGN2FTzmqb5ztsTDb9AsTSJD4NMHtsnaI2ielrXEk+hw==" 133 | "resolved" "https://registry.npmjs.org/@tailwindcss/container-queries/-/container-queries-0.1.0.tgz" 134 | "version" "0.1.0" 135 | 136 | "@tailwindcss/forms@^0.5.3": 137 | "integrity" "sha512-y5mb86JUoiUgBjY/o6FJSFZSEttfb3Q5gllE4xoKjAAD+vBrnIhE4dViwUuow3va8mpH4s9jyUbUbrRGoRdc2Q==" 138 | "resolved" "https://registry.npmjs.org/@tailwindcss/forms/-/forms-0.5.3.tgz" 139 | "version" "0.5.3" 140 | dependencies: 141 | "mini-svg-data-uri" "^1.2.3" 142 | 143 | "@tailwindcss/line-clamp@^0.4.2": 144 | "integrity" "sha512-HFzAQuqYCjyy/SX9sLGB1lroPzmcnWv1FHkIpmypte10hptf4oPUfucryMKovZh2u0uiS9U5Ty3GghWfEJGwVw==" 145 | "resolved" "https://registry.npmjs.org/@tailwindcss/line-clamp/-/line-clamp-0.4.2.tgz" 146 | "version" "0.4.2" 147 | 148 | "@tailwindcss/typography@^0.5.8": 149 | "integrity" "sha512-xGQEp8KXN8Sd8m6R4xYmwxghmswrd0cPnNI2Lc6fmrC3OojysTBJJGSIVwPV56q4t6THFUK3HJ0EaWwpglSxWw==" 150 | "resolved" "https://registry.npmjs.org/@tailwindcss/typography/-/typography-0.5.8.tgz" 151 | "version" "0.5.8" 152 | dependencies: 153 | "lodash.castarray" "^4.4.0" 154 | "lodash.isplainobject" "^4.0.6" 155 | "lodash.merge" "^4.6.2" 156 | "postcss-selector-parser" "6.0.10" 157 | 158 | "@tanstack/query-core@4.19.1": 159 | "integrity" "sha512-Zp0aIose5C8skBzqbVFGk9HJsPtUhRVDVNWIqVzFbGQQgYSeLZMd3Sdb4+EnA5wl1J7X+bre2PJGnQg9x/zHOA==" 160 | "resolved" "https://registry.npmjs.org/@tanstack/query-core/-/query-core-4.19.1.tgz" 161 | "version" "4.19.1" 162 | 163 | "@tanstack/react-query@^4.19.1": 164 | "integrity" "sha512-5dvHvmc0vrWI03AJugzvKfirxCyCLe+qawrWFCXdu8t7dklIhJ7D5ZhgTypv7mMtIpdHPcECtCiT/+V74wCn2A==" 165 | "resolved" "https://registry.npmjs.org/@tanstack/react-query/-/react-query-4.19.1.tgz" 166 | "version" "4.19.1" 167 | dependencies: 168 | "@tanstack/query-core" "4.19.1" 169 | "use-sync-external-store" "^1.2.0" 170 | 171 | "@types/json-schema@^7.0.9": 172 | "integrity" "sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==" 173 | "resolved" "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.11.tgz" 174 | "version" "7.0.11" 175 | 176 | "@types/json5@^0.0.29": 177 | "integrity" "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==" 178 | "resolved" "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz" 179 | "version" "0.0.29" 180 | 181 | "@types/node@^18.0.0": 182 | "integrity" "sha512-IASpMGVcWpUsx5xBOrxMj7Bl8lqfuTY7FKAnPmu5cHkfQVWF8GulWS1jbRqA934qZL35xh5xN/+Xe/i26Bod4w==" 183 | "resolved" "https://registry.npmjs.org/@types/node/-/node-18.11.13.tgz" 184 | "version" "18.11.13" 185 | 186 | "@types/prop-types@*": 187 | "integrity" "sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==" 188 | "resolved" "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.5.tgz" 189 | "version" "15.7.5" 190 | 191 | "@types/react-dom@^18.0.5": 192 | "integrity" "sha512-qnVvHxASt/H7i+XG1U1xMiY5t+IHcPGUK7TDMDzom08xa7e86eCeKOiLZezwCKVxJn6NEiiy2ekgX8aQssjIKg==" 193 | "resolved" "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.0.9.tgz" 194 | "version" "18.0.9" 195 | dependencies: 196 | "@types/react" "*" 197 | 198 | "@types/react@*", "@types/react@^18.0.14": 199 | "integrity" "sha512-hCR3PJQsAIXyxhTNSiDFY//LhnMZWpNNr5etoCqx/iUfGc5gXWtQR2Phl908jVR6uPXacojQWTg4qRpkxTuGug==" 200 | "resolved" "https://registry.npmjs.org/@types/react/-/react-18.0.26.tgz" 201 | "version" "18.0.26" 202 | dependencies: 203 | "@types/prop-types" "*" 204 | "@types/scheduler" "*" 205 | "csstype" "^3.0.2" 206 | 207 | "@types/scheduler@*": 208 | "integrity" "sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==" 209 | "resolved" "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.2.tgz" 210 | "version" "0.16.2" 211 | 212 | "@types/semver@^7.3.12": 213 | "integrity" "sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw==" 214 | "resolved" "https://registry.npmjs.org/@types/semver/-/semver-7.3.13.tgz" 215 | "version" "7.3.13" 216 | 217 | "@types/twilio@^3.19.3": 218 | "integrity" "sha512-W53Z0TDCu6clZ5CzTWHRPnpQAad+AANglx6WiQ4Mkxxw21o4BYBx5EhkfR6J4iYqY58rtWB3r8kDGJ4y1uTUGQ==" 219 | "resolved" "https://registry.npmjs.org/@types/twilio/-/twilio-3.19.3.tgz" 220 | "version" "3.19.3" 221 | dependencies: 222 | "twilio" "*" 223 | 224 | "@types/uuid@^9.0.0": 225 | "integrity" "sha512-kr90f+ERiQtKWMz5rP32ltJ/BtULDI5RVO0uavn1HQUOwjx0R1h0rnDYNL0CepF1zL5bSY6FISAfd9tOdDhU5Q==" 226 | "resolved" "https://registry.npmjs.org/@types/uuid/-/uuid-9.0.0.tgz" 227 | "version" "9.0.0" 228 | 229 | "@typescript-eslint/eslint-plugin@^5.33.0": 230 | "integrity" "sha512-YpzNv3aayRBwjs4J3oz65eVLXc9xx0PDbIRisHj+dYhvBn02MjYOD96P8YGiWEIFBrojaUjxvkaUpakD82phsA==" 231 | "resolved" "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.46.1.tgz" 232 | "version" "5.46.1" 233 | dependencies: 234 | "@typescript-eslint/scope-manager" "5.46.1" 235 | "@typescript-eslint/type-utils" "5.46.1" 236 | "@typescript-eslint/utils" "5.46.1" 237 | "debug" "^4.3.4" 238 | "ignore" "^5.2.0" 239 | "natural-compare-lite" "^1.4.0" 240 | "regexpp" "^3.2.0" 241 | "semver" "^7.3.7" 242 | "tsutils" "^3.21.0" 243 | 244 | "@typescript-eslint/parser@^5.0.0", "@typescript-eslint/parser@^5.21.0", "@typescript-eslint/parser@^5.33.0": 245 | "integrity" "sha512-RelQ5cGypPh4ySAtfIMBzBGyrNerQcmfA1oJvPj5f+H4jI59rl9xxpn4bonC0tQvUKOEN7eGBFWxFLK3Xepneg==" 246 | "resolved" "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.46.1.tgz" 247 | "version" "5.46.1" 248 | dependencies: 249 | "@typescript-eslint/scope-manager" "5.46.1" 250 | "@typescript-eslint/types" "5.46.1" 251 | "@typescript-eslint/typescript-estree" "5.46.1" 252 | "debug" "^4.3.4" 253 | 254 | "@typescript-eslint/scope-manager@5.46.1": 255 | "integrity" "sha512-iOChVivo4jpwUdrJZyXSMrEIM/PvsbbDOX1y3UCKjSgWn+W89skxWaYXACQfxmIGhPVpRWK/VWPYc+bad6smIA==" 256 | "resolved" "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.46.1.tgz" 257 | "version" "5.46.1" 258 | dependencies: 259 | "@typescript-eslint/types" "5.46.1" 260 | "@typescript-eslint/visitor-keys" "5.46.1" 261 | 262 | "@typescript-eslint/type-utils@5.46.1": 263 | "integrity" "sha512-V/zMyfI+jDmL1ADxfDxjZ0EMbtiVqj8LUGPAGyBkXXStWmCUErMpW873zEHsyguWCuq2iN4BrlWUkmuVj84yng==" 264 | "resolved" "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.46.1.tgz" 265 | "version" "5.46.1" 266 | dependencies: 267 | "@typescript-eslint/typescript-estree" "5.46.1" 268 | "@typescript-eslint/utils" "5.46.1" 269 | "debug" "^4.3.4" 270 | "tsutils" "^3.21.0" 271 | 272 | "@typescript-eslint/types@5.46.1": 273 | "integrity" "sha512-Z5pvlCaZgU+93ryiYUwGwLl9AQVB/PQ1TsJ9NZ/gHzZjN7g9IAn6RSDkpCV8hqTwAiaj6fmCcKSQeBPlIpW28w==" 274 | "resolved" "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.46.1.tgz" 275 | "version" "5.46.1" 276 | 277 | "@typescript-eslint/typescript-estree@5.46.1": 278 | "integrity" "sha512-j9W4t67QiNp90kh5Nbr1w92wzt+toiIsaVPnEblB2Ih2U9fqBTyqV9T3pYWZBRt6QoMh/zVWP59EpuCjc4VRBg==" 279 | "resolved" "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.46.1.tgz" 280 | "version" "5.46.1" 281 | dependencies: 282 | "@typescript-eslint/types" "5.46.1" 283 | "@typescript-eslint/visitor-keys" "5.46.1" 284 | "debug" "^4.3.4" 285 | "globby" "^11.1.0" 286 | "is-glob" "^4.0.3" 287 | "semver" "^7.3.7" 288 | "tsutils" "^3.21.0" 289 | 290 | "@typescript-eslint/utils@5.46.1": 291 | "integrity" "sha512-RBdBAGv3oEpFojaCYT4Ghn4775pdjvwfDOfQ2P6qzNVgQOVrnSPe5/Pb88kv7xzYQjoio0eKHKB9GJ16ieSxvA==" 292 | "resolved" "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.46.1.tgz" 293 | "version" "5.46.1" 294 | dependencies: 295 | "@types/json-schema" "^7.0.9" 296 | "@types/semver" "^7.3.12" 297 | "@typescript-eslint/scope-manager" "5.46.1" 298 | "@typescript-eslint/types" "5.46.1" 299 | "@typescript-eslint/typescript-estree" "5.46.1" 300 | "eslint-scope" "^5.1.1" 301 | "eslint-utils" "^3.0.0" 302 | "semver" "^7.3.7" 303 | 304 | "@typescript-eslint/visitor-keys@5.46.1": 305 | "integrity" "sha512-jczZ9noovXwy59KjRTk1OftT78pwygdcmCuBf8yMoWt/8O8l+6x2LSEze0E4TeepXK4MezW3zGSyoDRZK7Y9cg==" 306 | "resolved" "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.46.1.tgz" 307 | "version" "5.46.1" 308 | dependencies: 309 | "@typescript-eslint/types" "5.46.1" 310 | "eslint-visitor-keys" "^3.3.0" 311 | 312 | "acorn-jsx@^5.3.2": 313 | "integrity" "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==" 314 | "resolved" "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz" 315 | "version" "5.3.2" 316 | 317 | "acorn-node@^1.8.2": 318 | "integrity" "sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A==" 319 | "resolved" "https://registry.npmjs.org/acorn-node/-/acorn-node-1.8.2.tgz" 320 | "version" "1.8.2" 321 | dependencies: 322 | "acorn" "^7.0.0" 323 | "acorn-walk" "^7.0.0" 324 | "xtend" "^4.0.2" 325 | 326 | "acorn-walk@^7.0.0": 327 | "integrity" "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==" 328 | "resolved" "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz" 329 | "version" "7.2.0" 330 | 331 | "acorn@^6.0.0 || ^7.0.0 || ^8.0.0", "acorn@^8.8.0": 332 | "integrity" "sha512-7zFpHzhnqYKrkYdUjF1HI1bzd0VygEGX8lFk4k5zVMqHEoES+P+7TKI+EvLO9WVMJ8eekdO0aDEK044xTXwPPA==" 333 | "resolved" "https://registry.npmjs.org/acorn/-/acorn-8.8.1.tgz" 334 | "version" "8.8.1" 335 | 336 | "acorn@^7.0.0": 337 | "integrity" "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==" 338 | "resolved" "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz" 339 | "version" "7.4.1" 340 | 341 | "agent-base@6": 342 | "integrity" "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==" 343 | "resolved" "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz" 344 | "version" "6.0.2" 345 | dependencies: 346 | "debug" "4" 347 | 348 | "ajv@^6.10.0", "ajv@^6.12.4": 349 | "integrity" "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==" 350 | "resolved" "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz" 351 | "version" "6.12.6" 352 | dependencies: 353 | "fast-deep-equal" "^3.1.1" 354 | "fast-json-stable-stringify" "^2.0.0" 355 | "json-schema-traverse" "^0.4.1" 356 | "uri-js" "^4.2.2" 357 | 358 | "ansi-regex@^5.0.1": 359 | "integrity" "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==" 360 | "resolved" "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz" 361 | "version" "5.0.1" 362 | 363 | "ansi-styles@^4.1.0": 364 | "integrity" "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==" 365 | "resolved" "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz" 366 | "version" "4.3.0" 367 | dependencies: 368 | "color-convert" "^2.0.1" 369 | 370 | "anymatch@~3.1.2": 371 | "integrity" "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==" 372 | "resolved" "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz" 373 | "version" "3.1.3" 374 | dependencies: 375 | "normalize-path" "^3.0.0" 376 | "picomatch" "^2.0.4" 377 | 378 | "arg@^5.0.1", "arg@^5.0.2": 379 | "integrity" "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==" 380 | "resolved" "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz" 381 | "version" "5.0.2" 382 | 383 | "argparse@^2.0.1": 384 | "integrity" "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" 385 | "resolved" "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz" 386 | "version" "2.0.1" 387 | 388 | "aria-query@^4.2.2": 389 | "integrity" "sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==" 390 | "resolved" "https://registry.npmjs.org/aria-query/-/aria-query-4.2.2.tgz" 391 | "version" "4.2.2" 392 | dependencies: 393 | "@babel/runtime" "^7.10.2" 394 | "@babel/runtime-corejs3" "^7.10.2" 395 | 396 | "array-includes@^3.1.4", "array-includes@^3.1.5", "array-includes@^3.1.6": 397 | "integrity" "sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==" 398 | "resolved" "https://registry.npmjs.org/array-includes/-/array-includes-3.1.6.tgz" 399 | "version" "3.1.6" 400 | dependencies: 401 | "call-bind" "^1.0.2" 402 | "define-properties" "^1.1.4" 403 | "es-abstract" "^1.20.4" 404 | "get-intrinsic" "^1.1.3" 405 | "is-string" "^1.0.7" 406 | 407 | "array-keyed-map@^2.1.2": 408 | "integrity" "sha512-JIUwuFakO+jHjxyp4YgSiKXSZeC0U+R1jR94bXWBcVlFRBycqXlb+kH9JHxBGcxnVuSqx5bnn0Qz9xtSeKOjiA==" 409 | "resolved" "https://registry.npmjs.org/array-keyed-map/-/array-keyed-map-2.1.3.tgz" 410 | "version" "2.1.3" 411 | 412 | "array-union@^2.1.0": 413 | "integrity" "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==" 414 | "resolved" "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz" 415 | "version" "2.1.0" 416 | 417 | "array.prototype.flat@^1.2.5": 418 | "integrity" "sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==" 419 | "resolved" "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.1.tgz" 420 | "version" "1.3.1" 421 | dependencies: 422 | "call-bind" "^1.0.2" 423 | "define-properties" "^1.1.4" 424 | "es-abstract" "^1.20.4" 425 | "es-shim-unscopables" "^1.0.0" 426 | 427 | "array.prototype.flatmap@^1.3.1": 428 | "integrity" "sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==" 429 | "resolved" "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.1.tgz" 430 | "version" "1.3.1" 431 | dependencies: 432 | "call-bind" "^1.0.2" 433 | "define-properties" "^1.1.4" 434 | "es-abstract" "^1.20.4" 435 | "es-shim-unscopables" "^1.0.0" 436 | 437 | "array.prototype.tosorted@^1.1.1": 438 | "integrity" "sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ==" 439 | "resolved" "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.1.tgz" 440 | "version" "1.1.1" 441 | dependencies: 442 | "call-bind" "^1.0.2" 443 | "define-properties" "^1.1.4" 444 | "es-abstract" "^1.20.4" 445 | "es-shim-unscopables" "^1.0.0" 446 | "get-intrinsic" "^1.1.3" 447 | 448 | "asap@^2.0.0": 449 | "integrity" "sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==" 450 | "resolved" "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz" 451 | "version" "2.0.6" 452 | 453 | "ast-types-flow@^0.0.7": 454 | "integrity" "sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==" 455 | "resolved" "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.7.tgz" 456 | "version" "0.0.7" 457 | 458 | "asynckit@^0.4.0": 459 | "integrity" "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" 460 | "resolved" "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz" 461 | "version" "0.4.0" 462 | 463 | "autoprefixer@^10.0.2", "autoprefixer@^10.4.7": 464 | "integrity" "sha512-49vKpMqcZYsJjwotvt4+h/BCjJVnhGwcLpDt5xkcaOG3eLrG/HUYLagrihYsQ+qrIBgIzX1Rw7a6L8I/ZA1Atg==" 465 | "resolved" "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.13.tgz" 466 | "version" "10.4.13" 467 | dependencies: 468 | "browserslist" "^4.21.4" 469 | "caniuse-lite" "^1.0.30001426" 470 | "fraction.js" "^4.2.0" 471 | "normalize-range" "^0.1.2" 472 | "picocolors" "^1.0.0" 473 | "postcss-value-parser" "^4.2.0" 474 | 475 | "axe-core@^4.4.3": 476 | "integrity" "sha512-L3ZNbXPTxMrl0+qTXAzn9FBRvk5XdO56K8CvcCKtlxv44Aw2w2NCclGuvCWxHPw1Riiq3ncP/sxFYj2nUqdoTw==" 477 | "resolved" "https://registry.npmjs.org/axe-core/-/axe-core-4.6.0.tgz" 478 | "version" "4.6.0" 479 | 480 | "axios@^0.26.0", "axios@^0.26.1": 481 | "integrity" "sha512-fPwcX4EvnSHuInCMItEhAGnaSEXRBjtzh9fOtsE6E1G6p7vl7edEeZe11QHf18+6+9gR5PbKV/sGKNaD8YaMeA==" 482 | "resolved" "https://registry.npmjs.org/axios/-/axios-0.26.1.tgz" 483 | "version" "0.26.1" 484 | dependencies: 485 | "follow-redirects" "^1.14.8" 486 | 487 | "axios@^1.2.1": 488 | "integrity" "sha512-I88cFiGu9ryt/tfVEi4kX2SITsvDddTajXTOFmt2uK1ZVA8LytjtdeyefdQWEf5PU8w+4SSJDoYnggflB5tW4A==" 489 | "resolved" "https://registry.npmjs.org/axios/-/axios-1.2.1.tgz" 490 | "version" "1.2.1" 491 | dependencies: 492 | "follow-redirects" "^1.15.0" 493 | "form-data" "^4.0.0" 494 | "proxy-from-env" "^1.1.0" 495 | 496 | "axobject-query@^2.2.0": 497 | "integrity" "sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==" 498 | "resolved" "https://registry.npmjs.org/axobject-query/-/axobject-query-2.2.0.tgz" 499 | "version" "2.2.0" 500 | 501 | "balanced-match@^1.0.0": 502 | "integrity" "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" 503 | "resolved" "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz" 504 | "version" "1.0.2" 505 | 506 | "big-integer@^1.6.16": 507 | "integrity" "sha512-GPEid2Y9QU1Exl1rpO9B2IPJGHPSupF5GnVIP0blYvNOMer2bTvSWs1jGOUg04hTmu67nmLsQ9TBo1puaotBHg==" 508 | "resolved" "https://registry.npmjs.org/big-integer/-/big-integer-1.6.51.tgz" 509 | "version" "1.6.51" 510 | 511 | "binary-extensions@^2.0.0": 512 | "integrity" "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==" 513 | "resolved" "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz" 514 | "version" "2.2.0" 515 | 516 | "brace-expansion@^1.1.7": 517 | "integrity" "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==" 518 | "resolved" "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz" 519 | "version" "1.1.11" 520 | dependencies: 521 | "balanced-match" "^1.0.0" 522 | "concat-map" "0.0.1" 523 | 524 | "braces@^3.0.2", "braces@~3.0.2": 525 | "integrity" "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==" 526 | "resolved" "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz" 527 | "version" "3.0.2" 528 | dependencies: 529 | "fill-range" "^7.0.1" 530 | 531 | "broadcast-channel@^3.4.1": 532 | "integrity" "sha512-cIAKJXAxGJceNZGTZSBzMxzyOn72cVgPnKx4dc6LRjQgbaJUQqhy5rzL3zbMxkMWsGKkv2hSFkPRMEXfoMZ2Mg==" 533 | "resolved" "https://registry.npmjs.org/broadcast-channel/-/broadcast-channel-3.7.0.tgz" 534 | "version" "3.7.0" 535 | dependencies: 536 | "@babel/runtime" "^7.7.2" 537 | "detect-node" "^2.1.0" 538 | "js-sha3" "0.8.0" 539 | "microseconds" "0.2.0" 540 | "nano-time" "1.0.0" 541 | "oblivious-set" "1.0.0" 542 | "rimraf" "3.0.2" 543 | "unload" "2.2.0" 544 | 545 | "browserslist@^4.21.4", "browserslist@>= 4.21.0": 546 | "integrity" "sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw==" 547 | "resolved" "https://registry.npmjs.org/browserslist/-/browserslist-4.21.4.tgz" 548 | "version" "4.21.4" 549 | dependencies: 550 | "caniuse-lite" "^1.0.30001400" 551 | "electron-to-chromium" "^1.4.251" 552 | "node-releases" "^2.0.6" 553 | "update-browserslist-db" "^1.0.9" 554 | 555 | "buffer-equal-constant-time@1.0.1": 556 | "integrity" "sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA==" 557 | "resolved" "https://registry.npmjs.org/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz" 558 | "version" "1.0.1" 559 | 560 | "call-bind@^1.0.0", "call-bind@^1.0.2": 561 | "integrity" "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==" 562 | "resolved" "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz" 563 | "version" "1.0.2" 564 | dependencies: 565 | "function-bind" "^1.1.1" 566 | "get-intrinsic" "^1.0.2" 567 | 568 | "callsites@^3.0.0": 569 | "integrity" "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==" 570 | "resolved" "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz" 571 | "version" "3.1.0" 572 | 573 | "camelcase-css@^2.0.1": 574 | "integrity" "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==" 575 | "resolved" "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz" 576 | "version" "2.0.1" 577 | 578 | "caniuse-lite@^1.0.30001400", "caniuse-lite@^1.0.30001406", "caniuse-lite@^1.0.30001426": 579 | "integrity" "sha512-1MgUzEkoMO6gKfXflStpYgZDlFM7M/ck/bgfVCACO5vnAf0fXoNVHdWtqGU+MYca+4bL9Z5bpOVmR33cWW9G2A==" 580 | "resolved" "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001439.tgz" 581 | "version" "1.0.30001439" 582 | 583 | "chalk@^4.0.0": 584 | "integrity" "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==" 585 | "resolved" "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz" 586 | "version" "4.1.2" 587 | dependencies: 588 | "ansi-styles" "^4.1.0" 589 | "supports-color" "^7.1.0" 590 | 591 | "chart.js@^2.9.4", "chart.js@>= 2.7.0 < 3": 592 | "integrity" "sha512-B07aAzxcrikjAPyV+01j7BmOpxtQETxTSlQ26BEYJ+3iUkbNKaOJ/nDbT6JjyqYxseM0ON12COHYdU2cTIjC7A==" 593 | "resolved" "https://registry.npmjs.org/chart.js/-/chart.js-2.9.4.tgz" 594 | "version" "2.9.4" 595 | dependencies: 596 | "chartjs-color" "^2.1.0" 597 | "moment" "^2.10.2" 598 | 599 | "chartjs-color-string@^0.6.0": 600 | "integrity" "sha512-TIB5OKn1hPJvO7JcteW4WY/63v6KwEdt6udfnDE9iCAZgy+V4SrbSxoIbTw/xkUIapjEI4ExGtD0+6D3KyFd7A==" 601 | "resolved" "https://registry.npmjs.org/chartjs-color-string/-/chartjs-color-string-0.6.0.tgz" 602 | "version" "0.6.0" 603 | dependencies: 604 | "color-name" "^1.0.0" 605 | 606 | "chartjs-color@^2.1.0": 607 | "integrity" "sha512-haqOg1+Yebys/Ts/9bLo/BqUcONQOdr/hoEr2LLTRl6C5LXctUdHxsCYfvQVg5JIxITrfCNUDr4ntqmQk9+/0w==" 608 | "resolved" "https://registry.npmjs.org/chartjs-color/-/chartjs-color-2.4.1.tgz" 609 | "version" "2.4.1" 610 | dependencies: 611 | "chartjs-color-string" "^0.6.0" 612 | "color-convert" "^1.9.3" 613 | 614 | "chartjs-plugin-datalabels@^0.7.0": 615 | "integrity" "sha512-PKVUX14nYhH0wcdCpgOoC39Gbzvn6cZ7O9n+bwc02yKD9FTnJ7/TSrBcfebmolFZp1Rcicr9xbT0a5HUbigS7g==" 616 | "resolved" "https://registry.npmjs.org/chartjs-plugin-datalabels/-/chartjs-plugin-datalabels-0.7.0.tgz" 617 | "version" "0.7.0" 618 | 619 | "chokidar@^3.5.3": 620 | "integrity" "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==" 621 | "resolved" "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz" 622 | "version" "3.5.3" 623 | dependencies: 624 | "anymatch" "~3.1.2" 625 | "braces" "~3.0.2" 626 | "glob-parent" "~5.1.2" 627 | "is-binary-path" "~2.1.0" 628 | "is-glob" "~4.0.1" 629 | "normalize-path" "~3.0.0" 630 | "readdirp" "~3.6.0" 631 | optionalDependencies: 632 | "fsevents" "~2.3.2" 633 | 634 | "classnames@^2.3.2": 635 | "integrity" "sha512-CSbhY4cFEJRe6/GQzIk5qXZ4Jeg5pcsP7b5peFSDpffpe1cqjASH/n9UTjBwOp6XpMSTwQ8Za2K5V02ueA7Tmw==" 636 | "resolved" "https://registry.npmjs.org/classnames/-/classnames-2.3.2.tgz" 637 | "version" "2.3.2" 638 | 639 | "client-only@0.0.1": 640 | "integrity" "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==" 641 | "resolved" "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz" 642 | "version" "0.0.1" 643 | 644 | "color-convert@^1.9.3": 645 | "integrity" "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==" 646 | "resolved" "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz" 647 | "version" "1.9.3" 648 | dependencies: 649 | "color-name" "1.1.3" 650 | 651 | "color-convert@^2.0.1": 652 | "integrity" "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==" 653 | "resolved" "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz" 654 | "version" "2.0.1" 655 | dependencies: 656 | "color-name" "~1.1.4" 657 | 658 | "color-name@^1.0.0", "color-name@^1.1.4", "color-name@~1.1.4": 659 | "integrity" "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" 660 | "resolved" "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz" 661 | "version" "1.1.4" 662 | 663 | "color-name@1.1.3": 664 | "integrity" "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" 665 | "resolved" "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz" 666 | "version" "1.1.3" 667 | 668 | "color-string@^1.9.0": 669 | "integrity" "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==" 670 | "resolved" "https://registry.npmjs.org/color-string/-/color-string-1.9.1.tgz" 671 | "version" "1.9.1" 672 | dependencies: 673 | "color-name" "^1.0.0" 674 | "simple-swizzle" "^0.2.2" 675 | 676 | "color@^4.2": 677 | "integrity" "sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==" 678 | "resolved" "https://registry.npmjs.org/color/-/color-4.2.3.tgz" 679 | "version" "4.2.3" 680 | dependencies: 681 | "color-convert" "^2.0.1" 682 | "color-string" "^1.9.0" 683 | 684 | "combined-stream@^1.0.8": 685 | "integrity" "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==" 686 | "resolved" "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz" 687 | "version" "1.0.8" 688 | dependencies: 689 | "delayed-stream" "~1.0.0" 690 | 691 | "concat-map@0.0.1": 692 | "integrity" "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" 693 | "resolved" "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz" 694 | "version" "0.0.1" 695 | 696 | "core-js-pure@^3.25.1": 697 | "integrity" "sha512-VVXcDpp/xJ21KdULRq/lXdLzQAtX7+37LzpyfFM973il0tWSsDEoyzG38G14AjTpK9VTfiNM9jnFauq/CpaWGQ==" 698 | "resolved" "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.26.1.tgz" 699 | "version" "3.26.1" 700 | 701 | "cross-spawn@^7.0.2": 702 | "integrity" "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==" 703 | "resolved" "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz" 704 | "version" "7.0.3" 705 | dependencies: 706 | "path-key" "^3.1.0" 707 | "shebang-command" "^2.0.0" 708 | "which" "^2.0.1" 709 | 710 | "css-selector-tokenizer@^0.8.0": 711 | "integrity" "sha512-Jd6Ig3/pe62/qe5SBPTN8h8LeUg/pT4lLgtavPf7updwwHpvFzxvOQBHYj2LZDMjUnBzgvIUSjRcf6oT5HzHFg==" 712 | "resolved" "https://registry.npmjs.org/css-selector-tokenizer/-/css-selector-tokenizer-0.8.0.tgz" 713 | "version" "0.8.0" 714 | dependencies: 715 | "cssesc" "^3.0.0" 716 | "fastparse" "^1.1.2" 717 | 718 | "cssesc@^3.0.0": 719 | "integrity" "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==" 720 | "resolved" "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz" 721 | "version" "3.0.0" 722 | 723 | "csstype@^3.0.2": 724 | "integrity" "sha512-DJR/VvkAvSZW9bTouZue2sSxDwdTN92uHjqeKVm+0dAqdfNykRzQ95tay8aXMBAAPpUiq4Qcug2L7neoRh2Egw==" 725 | "resolved" "https://registry.npmjs.org/csstype/-/csstype-3.1.1.tgz" 726 | "version" "3.1.1" 727 | 728 | "custom-event-polyfill@^1.0.7": 729 | "integrity" "sha512-TDDkd5DkaZxZFM8p+1I3yAlvM3rSr1wbrOliG4yJiwinMZN8z/iGL7BTlDkrJcYTmgUSb4ywVCc3ZaUtOtC76w==" 730 | "resolved" "https://registry.npmjs.org/custom-event-polyfill/-/custom-event-polyfill-1.0.7.tgz" 731 | "version" "1.0.7" 732 | 733 | "daisyui@^2.43.1": 734 | "integrity" "sha512-QhIuBclYiXjoiUOWQe4qqlvdG52b2fVZAZ5hPAJy8uTfCBmKqStUcEcig6kK54Uo/MOCCkExK4JulLOf//C5rQ==" 735 | "resolved" "https://registry.npmjs.org/daisyui/-/daisyui-2.43.1.tgz" 736 | "version" "2.43.1" 737 | dependencies: 738 | "color" "^4.2" 739 | "css-selector-tokenizer" "^0.8.0" 740 | "postcss-js" "^4.0.0" 741 | "tailwindcss" "^3" 742 | 743 | "damerau-levenshtein@^1.0.8": 744 | "integrity" "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==" 745 | "resolved" "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz" 746 | "version" "1.0.8" 747 | 748 | "dayjs@^1.8.29": 749 | "integrity" "sha512-+Yw9U6YO5TQohxLcIkrXBeY73WP3ejHWVvx8XCk3gxvQDCTEmS48ZrSZCKciI7Bhl/uCMyxYtE9UqRILmFphkQ==" 750 | "resolved" "https://registry.npmjs.org/dayjs/-/dayjs-1.11.7.tgz" 751 | "version" "1.11.7" 752 | 753 | "debug@^2.6.9": 754 | "integrity" "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==" 755 | "resolved" "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz" 756 | "version" "2.6.9" 757 | dependencies: 758 | "ms" "2.0.0" 759 | 760 | "debug@^3.2.7": 761 | "integrity" "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==" 762 | "resolved" "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz" 763 | "version" "3.2.7" 764 | dependencies: 765 | "ms" "^2.1.1" 766 | 767 | "debug@^4.1.1", "debug@^4.3.2", "debug@^4.3.4", "debug@4": 768 | "integrity" "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==" 769 | "resolved" "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz" 770 | "version" "4.3.4" 771 | dependencies: 772 | "ms" "2.1.2" 773 | 774 | "deep-is@^0.1.3": 775 | "integrity" "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==" 776 | "resolved" "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz" 777 | "version" "0.1.4" 778 | 779 | "deepmerge@^4.2.2": 780 | "integrity" "sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==" 781 | "resolved" "https://registry.npmjs.org/deepmerge/-/deepmerge-4.2.2.tgz" 782 | "version" "4.2.2" 783 | 784 | "define-properties@^1.1.3", "define-properties@^1.1.4": 785 | "integrity" "sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA==" 786 | "resolved" "https://registry.npmjs.org/define-properties/-/define-properties-1.1.4.tgz" 787 | "version" "1.1.4" 788 | dependencies: 789 | "has-property-descriptors" "^1.0.0" 790 | "object-keys" "^1.1.1" 791 | 792 | "defined@^1.0.0": 793 | "integrity" "sha512-hsBd2qSVCRE+5PmNdHt1uzyrFu5d3RwmFDKzyNZMFq/EwDNJF7Ee5+D5oEKF0hU6LhtoUF1macFvOe4AskQC1Q==" 794 | "resolved" "https://registry.npmjs.org/defined/-/defined-1.0.1.tgz" 795 | "version" "1.0.1" 796 | 797 | "delayed-stream@~1.0.0": 798 | "integrity" "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==" 799 | "resolved" "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz" 800 | "version" "1.0.0" 801 | 802 | "detect-autofill@^1.1.3": 803 | "integrity" "sha512-utCBQwCR/beSnADQmBC7C4tTueBBkYCl6WSpfGUkYKO/+MzPxqYGj6G4MvHzcKmH1gCTK+VunX2vaagvkRXPvA==" 804 | "resolved" "https://registry.npmjs.org/detect-autofill/-/detect-autofill-1.1.4.tgz" 805 | "version" "1.1.4" 806 | dependencies: 807 | "custom-event-polyfill" "^1.0.7" 808 | 809 | "detect-node@^2.0.4", "detect-node@^2.1.0": 810 | "integrity" "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==" 811 | "resolved" "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz" 812 | "version" "2.1.0" 813 | 814 | "detective@^5.2.0", "detective@^5.2.1": 815 | "integrity" "sha512-v9XE1zRnz1wRtgurGu0Bs8uHKFSTdteYZNbIPFVhUZ39L/S79ppMpdmVOZAnoz1jfEFodc48n6MX483Xo3t1yw==" 816 | "resolved" "https://registry.npmjs.org/detective/-/detective-5.2.1.tgz" 817 | "version" "5.2.1" 818 | dependencies: 819 | "acorn-node" "^1.8.2" 820 | "defined" "^1.0.0" 821 | "minimist" "^1.2.6" 822 | 823 | "didyoumean@^1.2.2": 824 | "integrity" "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==" 825 | "resolved" "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz" 826 | "version" "1.2.2" 827 | 828 | "dir-glob@^3.0.1": 829 | "integrity" "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==" 830 | "resolved" "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz" 831 | "version" "3.0.1" 832 | dependencies: 833 | "path-type" "^4.0.0" 834 | 835 | "dlv@^1.1.3": 836 | "integrity" "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==" 837 | "resolved" "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz" 838 | "version" "1.1.3" 839 | 840 | "doctrine@^2.1.0": 841 | "integrity" "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==" 842 | "resolved" "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz" 843 | "version" "2.1.0" 844 | dependencies: 845 | "esutils" "^2.0.2" 846 | 847 | "doctrine@^3.0.0": 848 | "integrity" "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==" 849 | "resolved" "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz" 850 | "version" "3.0.0" 851 | dependencies: 852 | "esutils" "^2.0.2" 853 | 854 | "ecdsa-sig-formatter@1.0.11": 855 | "integrity" "sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==" 856 | "resolved" "https://registry.npmjs.org/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz" 857 | "version" "1.0.11" 858 | dependencies: 859 | "safe-buffer" "^5.0.1" 860 | 861 | "electron-to-chromium@^1.4.251": 862 | "integrity" "sha512-M8WEXFuKXMYMVr45fo8mq0wUrrJHheiKZf6BArTKk9ZBYCKJEOU5H8cdWgDT+qCVZf7Na4lVUaZsA+h6uA9+PA==" 863 | "resolved" "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.284.tgz" 864 | "version" "1.4.284" 865 | 866 | "emoji-regex@^9.2.2": 867 | "integrity" "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==" 868 | "resolved" "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz" 869 | "version" "9.2.2" 870 | 871 | "es-abstract@^1.19.0", "es-abstract@^1.20.4": 872 | "integrity" "sha512-7h8MM2EQhsCA7pU/Nv78qOXFpD8Rhqd12gYiSJVkrH9+e8VuA8JlPJK/hQjjlLv6pJvx/z1iRFKzYb0XT/RuAQ==" 873 | "resolved" "https://registry.npmjs.org/es-abstract/-/es-abstract-1.20.5.tgz" 874 | "version" "1.20.5" 875 | dependencies: 876 | "call-bind" "^1.0.2" 877 | "es-to-primitive" "^1.2.1" 878 | "function-bind" "^1.1.1" 879 | "function.prototype.name" "^1.1.5" 880 | "get-intrinsic" "^1.1.3" 881 | "get-symbol-description" "^1.0.0" 882 | "gopd" "^1.0.1" 883 | "has" "^1.0.3" 884 | "has-property-descriptors" "^1.0.0" 885 | "has-symbols" "^1.0.3" 886 | "internal-slot" "^1.0.3" 887 | "is-callable" "^1.2.7" 888 | "is-negative-zero" "^2.0.2" 889 | "is-regex" "^1.1.4" 890 | "is-shared-array-buffer" "^1.0.2" 891 | "is-string" "^1.0.7" 892 | "is-weakref" "^1.0.2" 893 | "object-inspect" "^1.12.2" 894 | "object-keys" "^1.1.1" 895 | "object.assign" "^4.1.4" 896 | "regexp.prototype.flags" "^1.4.3" 897 | "safe-regex-test" "^1.0.0" 898 | "string.prototype.trimend" "^1.0.6" 899 | "string.prototype.trimstart" "^1.0.6" 900 | "unbox-primitive" "^1.0.2" 901 | 902 | "es-shim-unscopables@^1.0.0": 903 | "integrity" "sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==" 904 | "resolved" "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz" 905 | "version" "1.0.0" 906 | dependencies: 907 | "has" "^1.0.3" 908 | 909 | "es-to-primitive@^1.2.1": 910 | "integrity" "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==" 911 | "resolved" "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz" 912 | "version" "1.2.1" 913 | dependencies: 914 | "is-callable" "^1.1.4" 915 | "is-date-object" "^1.0.1" 916 | "is-symbol" "^1.0.2" 917 | 918 | "escalade@^3.1.1": 919 | "integrity" "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==" 920 | "resolved" "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz" 921 | "version" "3.1.1" 922 | 923 | "escape-string-regexp@^4.0.0": 924 | "integrity" "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==" 925 | "resolved" "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz" 926 | "version" "4.0.0" 927 | 928 | "eslint-config-next@13.0.2": 929 | "integrity" "sha512-SrrHp+zBDYLjOFZdM5b9aW/pliK687Xxfa+qpDuL08Z04ReHhmz3L+maXaAqgrEVZHQximP7nh0El4yNDJW+CA==" 930 | "resolved" "https://registry.npmjs.org/eslint-config-next/-/eslint-config-next-13.0.2.tgz" 931 | "version" "13.0.2" 932 | dependencies: 933 | "@next/eslint-plugin-next" "13.0.2" 934 | "@rushstack/eslint-patch" "^1.1.3" 935 | "@typescript-eslint/parser" "^5.21.0" 936 | "eslint-import-resolver-node" "^0.3.6" 937 | "eslint-import-resolver-typescript" "^2.7.1" 938 | "eslint-plugin-import" "^2.26.0" 939 | "eslint-plugin-jsx-a11y" "^6.5.1" 940 | "eslint-plugin-react" "^7.31.7" 941 | "eslint-plugin-react-hooks" "^4.5.0" 942 | 943 | "eslint-import-resolver-node@^0.3.6": 944 | "integrity" "sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw==" 945 | "resolved" "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.6.tgz" 946 | "version" "0.3.6" 947 | dependencies: 948 | "debug" "^3.2.7" 949 | "resolve" "^1.20.0" 950 | 951 | "eslint-import-resolver-typescript@^2.7.1": 952 | "integrity" "sha512-00UbgGwV8bSgUv34igBDbTOtKhqoRMy9bFjNehT40bXg6585PNIct8HhXZ0SybqB9rWtXj9crcku8ndDn/gIqQ==" 953 | "resolved" "https://registry.npmjs.org/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-2.7.1.tgz" 954 | "version" "2.7.1" 955 | dependencies: 956 | "debug" "^4.3.4" 957 | "glob" "^7.2.0" 958 | "is-glob" "^4.0.3" 959 | "resolve" "^1.22.0" 960 | "tsconfig-paths" "^3.14.1" 961 | 962 | "eslint-module-utils@^2.7.3": 963 | "integrity" "sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA==" 964 | "resolved" "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.7.4.tgz" 965 | "version" "2.7.4" 966 | dependencies: 967 | "debug" "^3.2.7" 968 | 969 | "eslint-plugin-import@*", "eslint-plugin-import@^2.26.0": 970 | "integrity" "sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==" 971 | "resolved" "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.26.0.tgz" 972 | "version" "2.26.0" 973 | dependencies: 974 | "array-includes" "^3.1.4" 975 | "array.prototype.flat" "^1.2.5" 976 | "debug" "^2.6.9" 977 | "doctrine" "^2.1.0" 978 | "eslint-import-resolver-node" "^0.3.6" 979 | "eslint-module-utils" "^2.7.3" 980 | "has" "^1.0.3" 981 | "is-core-module" "^2.8.1" 982 | "is-glob" "^4.0.3" 983 | "minimatch" "^3.1.2" 984 | "object.values" "^1.1.5" 985 | "resolve" "^1.22.0" 986 | "tsconfig-paths" "^3.14.1" 987 | 988 | "eslint-plugin-jsx-a11y@^6.5.1": 989 | "integrity" "sha512-sXgFVNHiWffBq23uiS/JaP6eVR622DqwB4yTzKvGZGcPq6/yZ3WmOZfuBks/vHWo9GaFOqC2ZK4i6+C35knx7Q==" 990 | "resolved" "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.6.1.tgz" 991 | "version" "6.6.1" 992 | dependencies: 993 | "@babel/runtime" "^7.18.9" 994 | "aria-query" "^4.2.2" 995 | "array-includes" "^3.1.5" 996 | "ast-types-flow" "^0.0.7" 997 | "axe-core" "^4.4.3" 998 | "axobject-query" "^2.2.0" 999 | "damerau-levenshtein" "^1.0.8" 1000 | "emoji-regex" "^9.2.2" 1001 | "has" "^1.0.3" 1002 | "jsx-ast-utils" "^3.3.2" 1003 | "language-tags" "^1.0.5" 1004 | "minimatch" "^3.1.2" 1005 | "semver" "^6.3.0" 1006 | 1007 | "eslint-plugin-react-hooks@^4.5.0": 1008 | "integrity" "sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==" 1009 | "resolved" "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz" 1010 | "version" "4.6.0" 1011 | 1012 | "eslint-plugin-react@^7.31.7": 1013 | "integrity" "sha512-TTvq5JsT5v56wPa9OYHzsrOlHzKZKjV+aLgS+55NJP/cuzdiQPC7PfYoUjMoxlffKtvijpk7vA/jmuqRb9nohw==" 1014 | "resolved" "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.31.11.tgz" 1015 | "version" "7.31.11" 1016 | dependencies: 1017 | "array-includes" "^3.1.6" 1018 | "array.prototype.flatmap" "^1.3.1" 1019 | "array.prototype.tosorted" "^1.1.1" 1020 | "doctrine" "^2.1.0" 1021 | "estraverse" "^5.3.0" 1022 | "jsx-ast-utils" "^2.4.1 || ^3.0.0" 1023 | "minimatch" "^3.1.2" 1024 | "object.entries" "^1.1.6" 1025 | "object.fromentries" "^2.0.6" 1026 | "object.hasown" "^1.1.2" 1027 | "object.values" "^1.1.6" 1028 | "prop-types" "^15.8.1" 1029 | "resolve" "^2.0.0-next.3" 1030 | "semver" "^6.3.0" 1031 | "string.prototype.matchall" "^4.0.8" 1032 | 1033 | "eslint-scope@^5.1.1": 1034 | "integrity" "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==" 1035 | "resolved" "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz" 1036 | "version" "5.1.1" 1037 | dependencies: 1038 | "esrecurse" "^4.3.0" 1039 | "estraverse" "^4.1.1" 1040 | 1041 | "eslint-scope@^7.1.1": 1042 | "integrity" "sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==" 1043 | "resolved" "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.1.1.tgz" 1044 | "version" "7.1.1" 1045 | dependencies: 1046 | "esrecurse" "^4.3.0" 1047 | "estraverse" "^5.2.0" 1048 | 1049 | "eslint-utils@^3.0.0": 1050 | "integrity" "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==" 1051 | "resolved" "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz" 1052 | "version" "3.0.0" 1053 | dependencies: 1054 | "eslint-visitor-keys" "^2.0.0" 1055 | 1056 | "eslint-visitor-keys@^2.0.0": 1057 | "integrity" "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==" 1058 | "resolved" "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz" 1059 | "version" "2.1.0" 1060 | 1061 | "eslint-visitor-keys@^3.3.0": 1062 | "integrity" "sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==" 1063 | "resolved" "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz" 1064 | "version" "3.3.0" 1065 | 1066 | "eslint@*", "eslint@^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8", "eslint@^3 || ^4 || ^5 || ^6 || ^7 || ^8", "eslint@^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0", "eslint@^6.0.0 || ^7.0.0 || ^8.0.0", "eslint@^7.23.0 || ^8.0.0", "eslint@^8.26.0", "eslint@>=5": 1067 | "integrity" "sha512-isQ4EEiyUjZFbEKvEGJKKGBwXtvXX+zJbkVKCgTuB9t/+jUBcy8avhkEwWJecI15BkRkOYmvIM5ynbhRjEkoeg==" 1068 | "resolved" "https://registry.npmjs.org/eslint/-/eslint-8.29.0.tgz" 1069 | "version" "8.29.0" 1070 | dependencies: 1071 | "@eslint/eslintrc" "^1.3.3" 1072 | "@humanwhocodes/config-array" "^0.11.6" 1073 | "@humanwhocodes/module-importer" "^1.0.1" 1074 | "@nodelib/fs.walk" "^1.2.8" 1075 | "ajv" "^6.10.0" 1076 | "chalk" "^4.0.0" 1077 | "cross-spawn" "^7.0.2" 1078 | "debug" "^4.3.2" 1079 | "doctrine" "^3.0.0" 1080 | "escape-string-regexp" "^4.0.0" 1081 | "eslint-scope" "^7.1.1" 1082 | "eslint-utils" "^3.0.0" 1083 | "eslint-visitor-keys" "^3.3.0" 1084 | "espree" "^9.4.0" 1085 | "esquery" "^1.4.0" 1086 | "esutils" "^2.0.2" 1087 | "fast-deep-equal" "^3.1.3" 1088 | "file-entry-cache" "^6.0.1" 1089 | "find-up" "^5.0.0" 1090 | "glob-parent" "^6.0.2" 1091 | "globals" "^13.15.0" 1092 | "grapheme-splitter" "^1.0.4" 1093 | "ignore" "^5.2.0" 1094 | "import-fresh" "^3.0.0" 1095 | "imurmurhash" "^0.1.4" 1096 | "is-glob" "^4.0.0" 1097 | "is-path-inside" "^3.0.3" 1098 | "js-sdsl" "^4.1.4" 1099 | "js-yaml" "^4.1.0" 1100 | "json-stable-stringify-without-jsonify" "^1.0.1" 1101 | "levn" "^0.4.1" 1102 | "lodash.merge" "^4.6.2" 1103 | "minimatch" "^3.1.2" 1104 | "natural-compare" "^1.4.0" 1105 | "optionator" "^0.9.1" 1106 | "regexpp" "^3.2.0" 1107 | "strip-ansi" "^6.0.1" 1108 | "strip-json-comments" "^3.1.0" 1109 | "text-table" "^0.2.0" 1110 | 1111 | "espree@^9.4.0": 1112 | "integrity" "sha512-XwctdmTO6SIvCzd9810yyNzIrOrqNYV9Koizx4C/mRhf9uq0o4yHoCEU/670pOxOL/MSraektvSAji79kX90Vg==" 1113 | "resolved" "https://registry.npmjs.org/espree/-/espree-9.4.1.tgz" 1114 | "version" "9.4.1" 1115 | dependencies: 1116 | "acorn" "^8.8.0" 1117 | "acorn-jsx" "^5.3.2" 1118 | "eslint-visitor-keys" "^3.3.0" 1119 | 1120 | "esquery@^1.4.0": 1121 | "integrity" "sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==" 1122 | "resolved" "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz" 1123 | "version" "1.4.0" 1124 | dependencies: 1125 | "estraverse" "^5.1.0" 1126 | 1127 | "esrecurse@^4.3.0": 1128 | "integrity" "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==" 1129 | "resolved" "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz" 1130 | "version" "4.3.0" 1131 | dependencies: 1132 | "estraverse" "^5.2.0" 1133 | 1134 | "estraverse@^4.1.1": 1135 | "integrity" "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==" 1136 | "resolved" "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz" 1137 | "version" "4.3.0" 1138 | 1139 | "estraverse@^5.1.0", "estraverse@^5.2.0", "estraverse@^5.3.0": 1140 | "integrity" "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==" 1141 | "resolved" "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz" 1142 | "version" "5.3.0" 1143 | 1144 | "esutils@^2.0.2": 1145 | "integrity" "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==" 1146 | "resolved" "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz" 1147 | "version" "2.0.3" 1148 | 1149 | "fast-deep-equal@^3.1.1", "fast-deep-equal@^3.1.3": 1150 | "integrity" "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" 1151 | "resolved" "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz" 1152 | "version" "3.1.3" 1153 | 1154 | "fast-glob@^3.2.11", "fast-glob@^3.2.12", "fast-glob@^3.2.9": 1155 | "integrity" "sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==" 1156 | "resolved" "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.12.tgz" 1157 | "version" "3.2.12" 1158 | dependencies: 1159 | "@nodelib/fs.stat" "^2.0.2" 1160 | "@nodelib/fs.walk" "^1.2.3" 1161 | "glob-parent" "^5.1.2" 1162 | "merge2" "^1.3.0" 1163 | "micromatch" "^4.0.4" 1164 | 1165 | "fast-json-stable-stringify@^2.0.0": 1166 | "integrity" "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" 1167 | "resolved" "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz" 1168 | "version" "2.1.0" 1169 | 1170 | "fast-levenshtein@^2.0.6": 1171 | "integrity" "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==" 1172 | "resolved" "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz" 1173 | "version" "2.0.6" 1174 | 1175 | "fastparse@^1.1.2": 1176 | "integrity" "sha512-483XLLxTVIwWK3QTrMGRqUfUpoOs/0hbQrl2oz4J0pAcm3A3bu84wxTFqGqkJzewCLdME38xJLJAxBABfQT8sQ==" 1177 | "resolved" "https://registry.npmjs.org/fastparse/-/fastparse-1.1.2.tgz" 1178 | "version" "1.1.2" 1179 | 1180 | "fastq@^1.6.0": 1181 | "integrity" "sha512-eR2D+V9/ExcbF9ls441yIuN6TI2ED1Y2ZcA5BmMtJsOkWOFRJQ0Jt0g1UwqXJJVAb+V+umH5Dfr8oh4EVP7VVg==" 1182 | "resolved" "https://registry.npmjs.org/fastq/-/fastq-1.14.0.tgz" 1183 | "version" "1.14.0" 1184 | dependencies: 1185 | "reusify" "^1.0.4" 1186 | 1187 | "file-entry-cache@^6.0.1": 1188 | "integrity" "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==" 1189 | "resolved" "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz" 1190 | "version" "6.0.1" 1191 | dependencies: 1192 | "flat-cache" "^3.0.4" 1193 | 1194 | "fill-range@^7.0.1": 1195 | "integrity" "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==" 1196 | "resolved" "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz" 1197 | "version" "7.0.1" 1198 | dependencies: 1199 | "to-regex-range" "^5.0.1" 1200 | 1201 | "find-up@^5.0.0": 1202 | "integrity" "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==" 1203 | "resolved" "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz" 1204 | "version" "5.0.0" 1205 | dependencies: 1206 | "locate-path" "^6.0.0" 1207 | "path-exists" "^4.0.0" 1208 | 1209 | "flat-cache@^3.0.4": 1210 | "integrity" "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==" 1211 | "resolved" "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz" 1212 | "version" "3.0.4" 1213 | dependencies: 1214 | "flatted" "^3.1.0" 1215 | "rimraf" "^3.0.2" 1216 | 1217 | "flatted@^3.1.0": 1218 | "integrity" "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==" 1219 | "resolved" "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz" 1220 | "version" "3.2.7" 1221 | 1222 | "follow-redirects@^1.14.8", "follow-redirects@^1.15.0": 1223 | "integrity" "sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==" 1224 | "resolved" "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz" 1225 | "version" "1.15.2" 1226 | 1227 | "form-data@^4.0.0": 1228 | "integrity" "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==" 1229 | "resolved" "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz" 1230 | "version" "4.0.0" 1231 | dependencies: 1232 | "asynckit" "^0.4.0" 1233 | "combined-stream" "^1.0.8" 1234 | "mime-types" "^2.1.12" 1235 | 1236 | "fraction.js@^4.2.0": 1237 | "integrity" "sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==" 1238 | "resolved" "https://registry.npmjs.org/fraction.js/-/fraction.js-4.2.0.tgz" 1239 | "version" "4.2.0" 1240 | 1241 | "fs.realpath@^1.0.0": 1242 | "integrity" "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==" 1243 | "resolved" "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz" 1244 | "version" "1.0.0" 1245 | 1246 | "fsevents@~2.3.2": 1247 | "integrity" "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==" 1248 | "resolved" "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz" 1249 | "version" "2.3.2" 1250 | 1251 | "function-bind@^1.1.1": 1252 | "integrity" "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" 1253 | "resolved" "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz" 1254 | "version" "1.1.1" 1255 | 1256 | "function.prototype.name@^1.1.5": 1257 | "integrity" "sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==" 1258 | "resolved" "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz" 1259 | "version" "1.1.5" 1260 | dependencies: 1261 | "call-bind" "^1.0.2" 1262 | "define-properties" "^1.1.3" 1263 | "es-abstract" "^1.19.0" 1264 | "functions-have-names" "^1.2.2" 1265 | 1266 | "functions-have-names@^1.2.2": 1267 | "integrity" "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==" 1268 | "resolved" "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz" 1269 | "version" "1.2.3" 1270 | 1271 | "get-intrinsic@^1.0.2", "get-intrinsic@^1.1.0", "get-intrinsic@^1.1.1", "get-intrinsic@^1.1.3": 1272 | "integrity" "sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A==" 1273 | "resolved" "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.3.tgz" 1274 | "version" "1.1.3" 1275 | dependencies: 1276 | "function-bind" "^1.1.1" 1277 | "has" "^1.0.3" 1278 | "has-symbols" "^1.0.3" 1279 | 1280 | "get-symbol-description@^1.0.0": 1281 | "integrity" "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==" 1282 | "resolved" "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz" 1283 | "version" "1.0.0" 1284 | dependencies: 1285 | "call-bind" "^1.0.2" 1286 | "get-intrinsic" "^1.1.1" 1287 | 1288 | "glob-parent@^5.1.2": 1289 | "integrity" "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==" 1290 | "resolved" "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz" 1291 | "version" "5.1.2" 1292 | dependencies: 1293 | "is-glob" "^4.0.1" 1294 | 1295 | "glob-parent@^6.0.2": 1296 | "integrity" "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==" 1297 | "resolved" "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz" 1298 | "version" "6.0.2" 1299 | dependencies: 1300 | "is-glob" "^4.0.3" 1301 | 1302 | "glob-parent@~5.1.2": 1303 | "integrity" "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==" 1304 | "resolved" "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz" 1305 | "version" "5.1.2" 1306 | dependencies: 1307 | "is-glob" "^4.0.1" 1308 | 1309 | "glob@^7.1.3", "glob@7.1.7": 1310 | "integrity" "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==" 1311 | "resolved" "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz" 1312 | "version" "7.1.7" 1313 | dependencies: 1314 | "fs.realpath" "^1.0.0" 1315 | "inflight" "^1.0.4" 1316 | "inherits" "2" 1317 | "minimatch" "^3.0.4" 1318 | "once" "^1.3.0" 1319 | "path-is-absolute" "^1.0.0" 1320 | 1321 | "glob@^7.2.0": 1322 | "integrity" "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==" 1323 | "resolved" "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz" 1324 | "version" "7.2.3" 1325 | dependencies: 1326 | "fs.realpath" "^1.0.0" 1327 | "inflight" "^1.0.4" 1328 | "inherits" "2" 1329 | "minimatch" "^3.1.1" 1330 | "once" "^1.3.0" 1331 | "path-is-absolute" "^1.0.0" 1332 | 1333 | "globals@^13.15.0": 1334 | "integrity" "sha512-dkQ957uSRWHw7CFXLUtUHQI3g3aWApYhfNR2O6jn/907riyTYKVBmxYVROkBcY614FSSeSJh7Xm7SrUWCxvJMQ==" 1335 | "resolved" "https://registry.npmjs.org/globals/-/globals-13.19.0.tgz" 1336 | "version" "13.19.0" 1337 | dependencies: 1338 | "type-fest" "^0.20.2" 1339 | 1340 | "globby@^11.1.0": 1341 | "integrity" "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==" 1342 | "resolved" "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz" 1343 | "version" "11.1.0" 1344 | dependencies: 1345 | "array-union" "^2.1.0" 1346 | "dir-glob" "^3.0.1" 1347 | "fast-glob" "^3.2.9" 1348 | "ignore" "^5.2.0" 1349 | "merge2" "^1.4.1" 1350 | "slash" "^3.0.0" 1351 | 1352 | "gopd@^1.0.1": 1353 | "integrity" "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==" 1354 | "resolved" "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz" 1355 | "version" "1.0.1" 1356 | dependencies: 1357 | "get-intrinsic" "^1.1.3" 1358 | 1359 | "gpt3-tokenizer@^1.1.4": 1360 | "integrity" "sha512-qfkRgE9ZvJjx9vWD0/R3xdH35SCINykliIF0+OP9BObiqwGhJA8BWs3laHyhNA92OPCwlQLhCxQuWjYMeyqAUw==" 1361 | "resolved" "https://registry.npmjs.org/gpt3-tokenizer/-/gpt3-tokenizer-1.1.4.tgz" 1362 | "version" "1.1.4" 1363 | dependencies: 1364 | "array-keyed-map" "^2.1.2" 1365 | 1366 | "grapheme-splitter@^1.0.4": 1367 | "integrity" "sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==" 1368 | "resolved" "https://registry.npmjs.org/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz" 1369 | "version" "1.0.4" 1370 | 1371 | "has-bigints@^1.0.1", "has-bigints@^1.0.2": 1372 | "integrity" "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==" 1373 | "resolved" "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz" 1374 | "version" "1.0.2" 1375 | 1376 | "has-flag@^4.0.0": 1377 | "integrity" "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" 1378 | "resolved" "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz" 1379 | "version" "4.0.0" 1380 | 1381 | "has-property-descriptors@^1.0.0": 1382 | "integrity" "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==" 1383 | "resolved" "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz" 1384 | "version" "1.0.0" 1385 | dependencies: 1386 | "get-intrinsic" "^1.1.1" 1387 | 1388 | "has-symbols@^1.0.2", "has-symbols@^1.0.3": 1389 | "integrity" "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==" 1390 | "resolved" "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz" 1391 | "version" "1.0.3" 1392 | 1393 | "has-tostringtag@^1.0.0": 1394 | "integrity" "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==" 1395 | "resolved" "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz" 1396 | "version" "1.0.0" 1397 | dependencies: 1398 | "has-symbols" "^1.0.2" 1399 | 1400 | "has@^1.0.3": 1401 | "integrity" "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==" 1402 | "resolved" "https://registry.npmjs.org/has/-/has-1.0.3.tgz" 1403 | "version" "1.0.3" 1404 | dependencies: 1405 | "function-bind" "^1.1.1" 1406 | 1407 | "https-proxy-agent@^5.0.0": 1408 | "integrity" "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==" 1409 | "resolved" "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz" 1410 | "version" "5.0.1" 1411 | dependencies: 1412 | "agent-base" "6" 1413 | "debug" "4" 1414 | 1415 | "ignore@^5.2.0": 1416 | "integrity" "sha512-d2qQLzTJ9WxQftPAuEQpSPmKqzxePjzVbpAVv62AQ64NTL+wR4JkrVqR/LqFsFEUsHDAiId52mJteHDFuDkElA==" 1417 | "resolved" "https://registry.npmjs.org/ignore/-/ignore-5.2.1.tgz" 1418 | "version" "5.2.1" 1419 | 1420 | "import-fresh@^3.0.0", "import-fresh@^3.2.1": 1421 | "integrity" "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==" 1422 | "resolved" "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz" 1423 | "version" "3.3.0" 1424 | dependencies: 1425 | "parent-module" "^1.0.0" 1426 | "resolve-from" "^4.0.0" 1427 | 1428 | "imurmurhash@^0.1.4": 1429 | "integrity" "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==" 1430 | "resolved" "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz" 1431 | "version" "0.1.4" 1432 | 1433 | "inflight@^1.0.4": 1434 | "integrity" "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==" 1435 | "resolved" "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz" 1436 | "version" "1.0.6" 1437 | dependencies: 1438 | "once" "^1.3.0" 1439 | "wrappy" "1" 1440 | 1441 | "inherits@2": 1442 | "integrity" "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" 1443 | "resolved" "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz" 1444 | "version" "2.0.4" 1445 | 1446 | "internal-slot@^1.0.3": 1447 | "integrity" "sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==" 1448 | "resolved" "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.3.tgz" 1449 | "version" "1.0.3" 1450 | dependencies: 1451 | "get-intrinsic" "^1.1.0" 1452 | "has" "^1.0.3" 1453 | "side-channel" "^1.0.4" 1454 | 1455 | "is-arrayish@^0.3.1": 1456 | "integrity" "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==" 1457 | "resolved" "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz" 1458 | "version" "0.3.2" 1459 | 1460 | "is-bigint@^1.0.1": 1461 | "integrity" "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==" 1462 | "resolved" "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz" 1463 | "version" "1.0.4" 1464 | dependencies: 1465 | "has-bigints" "^1.0.1" 1466 | 1467 | "is-binary-path@~2.1.0": 1468 | "integrity" "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==" 1469 | "resolved" "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz" 1470 | "version" "2.1.0" 1471 | dependencies: 1472 | "binary-extensions" "^2.0.0" 1473 | 1474 | "is-boolean-object@^1.1.0": 1475 | "integrity" "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==" 1476 | "resolved" "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz" 1477 | "version" "1.1.2" 1478 | dependencies: 1479 | "call-bind" "^1.0.2" 1480 | "has-tostringtag" "^1.0.0" 1481 | 1482 | "is-callable@^1.1.4", "is-callable@^1.2.7": 1483 | "integrity" "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==" 1484 | "resolved" "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz" 1485 | "version" "1.2.7" 1486 | 1487 | "is-core-module@^2.8.1", "is-core-module@^2.9.0": 1488 | "integrity" "sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==" 1489 | "resolved" "https://registry.npmjs.org/is-core-module/-/is-core-module-2.11.0.tgz" 1490 | "version" "2.11.0" 1491 | dependencies: 1492 | "has" "^1.0.3" 1493 | 1494 | "is-date-object@^1.0.1": 1495 | "integrity" "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==" 1496 | "resolved" "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz" 1497 | "version" "1.0.5" 1498 | dependencies: 1499 | "has-tostringtag" "^1.0.0" 1500 | 1501 | "is-extglob@^2.1.1": 1502 | "integrity" "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==" 1503 | "resolved" "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz" 1504 | "version" "2.1.1" 1505 | 1506 | "is-glob@^4.0.0", "is-glob@^4.0.1", "is-glob@^4.0.3", "is-glob@~4.0.1": 1507 | "integrity" "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==" 1508 | "resolved" "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz" 1509 | "version" "4.0.3" 1510 | dependencies: 1511 | "is-extglob" "^2.1.1" 1512 | 1513 | "is-negative-zero@^2.0.2": 1514 | "integrity" "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==" 1515 | "resolved" "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz" 1516 | "version" "2.0.2" 1517 | 1518 | "is-number-object@^1.0.4": 1519 | "integrity" "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==" 1520 | "resolved" "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz" 1521 | "version" "1.0.7" 1522 | dependencies: 1523 | "has-tostringtag" "^1.0.0" 1524 | 1525 | "is-number@^7.0.0": 1526 | "integrity" "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==" 1527 | "resolved" "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz" 1528 | "version" "7.0.0" 1529 | 1530 | "is-path-inside@^3.0.3": 1531 | "integrity" "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==" 1532 | "resolved" "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz" 1533 | "version" "3.0.3" 1534 | 1535 | "is-regex@^1.1.4": 1536 | "integrity" "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==" 1537 | "resolved" "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz" 1538 | "version" "1.1.4" 1539 | dependencies: 1540 | "call-bind" "^1.0.2" 1541 | "has-tostringtag" "^1.0.0" 1542 | 1543 | "is-shared-array-buffer@^1.0.2": 1544 | "integrity" "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==" 1545 | "resolved" "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz" 1546 | "version" "1.0.2" 1547 | dependencies: 1548 | "call-bind" "^1.0.2" 1549 | 1550 | "is-string@^1.0.5", "is-string@^1.0.7": 1551 | "integrity" "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==" 1552 | "resolved" "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz" 1553 | "version" "1.0.7" 1554 | dependencies: 1555 | "has-tostringtag" "^1.0.0" 1556 | 1557 | "is-symbol@^1.0.2", "is-symbol@^1.0.3": 1558 | "integrity" "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==" 1559 | "resolved" "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz" 1560 | "version" "1.0.4" 1561 | dependencies: 1562 | "has-symbols" "^1.0.2" 1563 | 1564 | "is-weakref@^1.0.2": 1565 | "integrity" "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==" 1566 | "resolved" "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz" 1567 | "version" "1.0.2" 1568 | dependencies: 1569 | "call-bind" "^1.0.2" 1570 | 1571 | "isexe@^2.0.0": 1572 | "integrity" "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" 1573 | "resolved" "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz" 1574 | "version" "2.0.0" 1575 | 1576 | "jotai@^1.11.2": 1577 | "integrity" "sha512-hVLn1aS1QprDy+NrvyWIOcaA/LEG5AY0Z7kWtx26EJ8eH8DY8pW1wUM0PrlqQzthqd6HdEVtXLY1rB//0n8LvA==" 1578 | "resolved" "https://registry.npmjs.org/jotai/-/jotai-1.11.2.tgz" 1579 | "version" "1.11.2" 1580 | 1581 | "js-sdsl@^4.1.4": 1582 | "integrity" "sha512-dyBIzQBDkCqCu+0upx25Y2jGdbTGxE9fshMsCdK0ViOongpV+n5tXRcZY9v7CaVQ79AGS9KA1KHtojxiM7aXSQ==" 1583 | "resolved" "https://registry.npmjs.org/js-sdsl/-/js-sdsl-4.2.0.tgz" 1584 | "version" "4.2.0" 1585 | 1586 | "js-sha3@0.8.0": 1587 | "integrity" "sha512-gF1cRrHhIzNfToc802P800N8PpXS+evLLXfsVpowqmAFR9uwbi89WvXg2QspOmXL8QL86J4T1EpFu+yUkwJY3Q==" 1588 | "resolved" "https://registry.npmjs.org/js-sha3/-/js-sha3-0.8.0.tgz" 1589 | "version" "0.8.0" 1590 | 1591 | "js-tokens@^3.0.0 || ^4.0.0": 1592 | "integrity" "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" 1593 | "resolved" "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz" 1594 | "version" "4.0.0" 1595 | 1596 | "js-yaml@^4.1.0": 1597 | "integrity" "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==" 1598 | "resolved" "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz" 1599 | "version" "4.1.0" 1600 | dependencies: 1601 | "argparse" "^2.0.1" 1602 | 1603 | "json-schema-traverse@^0.4.1": 1604 | "integrity" "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" 1605 | "resolved" "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz" 1606 | "version" "0.4.1" 1607 | 1608 | "json-stable-stringify-without-jsonify@^1.0.1": 1609 | "integrity" "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==" 1610 | "resolved" "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz" 1611 | "version" "1.0.1" 1612 | 1613 | "json5@^1.0.1": 1614 | "integrity" "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==" 1615 | "resolved" "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz" 1616 | "version" "1.0.1" 1617 | dependencies: 1618 | "minimist" "^1.2.0" 1619 | 1620 | "jsonwebtoken@^8.5.1": 1621 | "integrity" "sha512-XjwVfRS6jTMsqYs0EsuJ4LGxXV14zQybNd4L2r0UvbVnSF9Af8x7p5MzbJ90Ioz/9TI41/hTCvznF/loiSzn8w==" 1622 | "resolved" "https://registry.npmjs.org/jsonwebtoken/-/jsonwebtoken-8.5.1.tgz" 1623 | "version" "8.5.1" 1624 | dependencies: 1625 | "jws" "^3.2.2" 1626 | "lodash.includes" "^4.3.0" 1627 | "lodash.isboolean" "^3.0.3" 1628 | "lodash.isinteger" "^4.0.4" 1629 | "lodash.isnumber" "^3.0.3" 1630 | "lodash.isplainobject" "^4.0.6" 1631 | "lodash.isstring" "^4.0.1" 1632 | "lodash.once" "^4.0.0" 1633 | "ms" "^2.1.1" 1634 | "semver" "^5.6.0" 1635 | 1636 | "jsx-ast-utils@^2.4.1 || ^3.0.0", "jsx-ast-utils@^3.3.2": 1637 | "integrity" "sha512-fYQHZTZ8jSfmWZ0iyzfwiU4WDX4HpHbMCZ3gPlWYiCl3BoeOTsqKBqnTVfH2rYT7eP5c3sVbeSPHnnJOaTrWiw==" 1638 | "resolved" "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.3.tgz" 1639 | "version" "3.3.3" 1640 | dependencies: 1641 | "array-includes" "^3.1.5" 1642 | "object.assign" "^4.1.3" 1643 | 1644 | "jwa@^1.4.1": 1645 | "integrity" "sha512-qiLX/xhEEFKUAJ6FiBMbes3w9ATzyk5W7Hvzpa/SLYdxNtng+gcurvrI7TbACjIXlsJyr05/S1oUhZrc63evQA==" 1646 | "resolved" "https://registry.npmjs.org/jwa/-/jwa-1.4.1.tgz" 1647 | "version" "1.4.1" 1648 | dependencies: 1649 | "buffer-equal-constant-time" "1.0.1" 1650 | "ecdsa-sig-formatter" "1.0.11" 1651 | "safe-buffer" "^5.0.1" 1652 | 1653 | "jws@^3.2.2": 1654 | "integrity" "sha512-YHlZCB6lMTllWDtSPHz/ZXTsi8S00usEV6v1tjq8tOUZzw7DpSDWVXjXDre6ed1w/pd495ODpHZYSdkRTsa0HA==" 1655 | "resolved" "https://registry.npmjs.org/jws/-/jws-3.2.2.tgz" 1656 | "version" "3.2.2" 1657 | dependencies: 1658 | "jwa" "^1.4.1" 1659 | "safe-buffer" "^5.0.1" 1660 | 1661 | "language-subtag-registry@^0.3.20": 1662 | "integrity" "sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==" 1663 | "resolved" "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz" 1664 | "version" "0.3.22" 1665 | 1666 | "language-tags@^1.0.5": 1667 | "integrity" "sha512-HNkaCgM8wZgE/BZACeotAAgpL9FUjEnhgF0FVQMIgH//zqTPreLYMb3rWYkYAqPoF75Jwuycp1da7uz66cfFQg==" 1668 | "resolved" "https://registry.npmjs.org/language-tags/-/language-tags-1.0.6.tgz" 1669 | "version" "1.0.6" 1670 | dependencies: 1671 | "language-subtag-registry" "^0.3.20" 1672 | 1673 | "levn@^0.4.1": 1674 | "integrity" "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==" 1675 | "resolved" "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz" 1676 | "version" "0.4.1" 1677 | dependencies: 1678 | "prelude-ls" "^1.2.1" 1679 | "type-check" "~0.4.0" 1680 | 1681 | "lilconfig@^2.0.5", "lilconfig@^2.0.6": 1682 | "integrity" "sha512-9JROoBW7pobfsx+Sq2JsASvCo6Pfo6WWoUW79HuB1BCoBXD4PLWJPqDF6fNj67pqBYTbAHkE57M1kS/+L1neOg==" 1683 | "resolved" "https://registry.npmjs.org/lilconfig/-/lilconfig-2.0.6.tgz" 1684 | "version" "2.0.6" 1685 | 1686 | "locate-path@^6.0.0": 1687 | "integrity" "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==" 1688 | "resolved" "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz" 1689 | "version" "6.0.0" 1690 | dependencies: 1691 | "p-locate" "^5.0.0" 1692 | 1693 | "lodash.castarray@^4.4.0": 1694 | "integrity" "sha512-aVx8ztPv7/2ULbArGJ2Y42bG1mEQ5mGjpdvrbJcJFU3TbYybe+QlLS4pst9zV52ymy2in1KpFPiZnAOATxD4+Q==" 1695 | "resolved" "https://registry.npmjs.org/lodash.castarray/-/lodash.castarray-4.4.0.tgz" 1696 | "version" "4.4.0" 1697 | 1698 | "lodash.includes@^4.3.0": 1699 | "integrity" "sha512-W3Bx6mdkRTGtlJISOvVD/lbqjTlPPUDTMnlXZFnVwi9NKJ6tiAk6LVdlhZMm17VZisqhKcgzpO5Wz91PCt5b0w==" 1700 | "resolved" "https://registry.npmjs.org/lodash.includes/-/lodash.includes-4.3.0.tgz" 1701 | "version" "4.3.0" 1702 | 1703 | "lodash.isboolean@^3.0.3": 1704 | "integrity" "sha512-Bz5mupy2SVbPHURB98VAcw+aHh4vRV5IPNhILUCsOzRmsTmSQ17jIuqopAentWoehktxGd9e/hbIXq980/1QJg==" 1705 | "resolved" "https://registry.npmjs.org/lodash.isboolean/-/lodash.isboolean-3.0.3.tgz" 1706 | "version" "3.0.3" 1707 | 1708 | "lodash.isinteger@^4.0.4": 1709 | "integrity" "sha512-DBwtEWN2caHQ9/imiNeEA5ys1JoRtRfY3d7V9wkqtbycnAmTvRRmbHKDV4a0EYc678/dia0jrte4tjYwVBaZUA==" 1710 | "resolved" "https://registry.npmjs.org/lodash.isinteger/-/lodash.isinteger-4.0.4.tgz" 1711 | "version" "4.0.4" 1712 | 1713 | "lodash.isnumber@^3.0.3": 1714 | "integrity" "sha512-QYqzpfwO3/CWf3XP+Z+tkQsfaLL/EnUlXWVkIk5FUPc4sBdTehEqZONuyRt2P67PXAk+NXmTBcc97zw9t1FQrw==" 1715 | "resolved" "https://registry.npmjs.org/lodash.isnumber/-/lodash.isnumber-3.0.3.tgz" 1716 | "version" "3.0.3" 1717 | 1718 | "lodash.isplainobject@^4.0.6": 1719 | "integrity" "sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==" 1720 | "resolved" "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz" 1721 | "version" "4.0.6" 1722 | 1723 | "lodash.isstring@^4.0.1": 1724 | "integrity" "sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw==" 1725 | "resolved" "https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-4.0.1.tgz" 1726 | "version" "4.0.1" 1727 | 1728 | "lodash.merge@^4.6.2": 1729 | "integrity" "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==" 1730 | "resolved" "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz" 1731 | "version" "4.6.2" 1732 | 1733 | "lodash.once@^4.0.0": 1734 | "integrity" "sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==" 1735 | "resolved" "https://registry.npmjs.org/lodash.once/-/lodash.once-4.1.1.tgz" 1736 | "version" "4.1.1" 1737 | 1738 | "lodash@^4.17.21": 1739 | "integrity" "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" 1740 | "resolved" "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz" 1741 | "version" "4.17.21" 1742 | 1743 | "loose-envify@^1.1.0", "loose-envify@^1.4.0": 1744 | "integrity" "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==" 1745 | "resolved" "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz" 1746 | "version" "1.4.0" 1747 | dependencies: 1748 | "js-tokens" "^3.0.0 || ^4.0.0" 1749 | 1750 | "lru-cache@^6.0.0": 1751 | "integrity" "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==" 1752 | "resolved" "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz" 1753 | "version" "6.0.0" 1754 | dependencies: 1755 | "yallist" "^4.0.0" 1756 | 1757 | "match-sorter@^6.0.2": 1758 | "integrity" "sha512-mxybbo3pPNuA+ZuCUhm5bwNkXrJTbsk5VWbR5wiwz/GC6LIiegBGn2w3O08UG/jdbYLinw51fSQ5xNU1U3MgBw==" 1759 | "resolved" "https://registry.npmjs.org/match-sorter/-/match-sorter-6.3.1.tgz" 1760 | "version" "6.3.1" 1761 | dependencies: 1762 | "@babel/runtime" "^7.12.5" 1763 | "remove-accents" "0.4.2" 1764 | 1765 | "merge2@^1.3.0", "merge2@^1.4.1": 1766 | "integrity" "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==" 1767 | "resolved" "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz" 1768 | "version" "1.4.1" 1769 | 1770 | "micromatch@^4.0.4", "micromatch@^4.0.5": 1771 | "integrity" "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==" 1772 | "resolved" "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz" 1773 | "version" "4.0.5" 1774 | dependencies: 1775 | "braces" "^3.0.2" 1776 | "picomatch" "^2.3.1" 1777 | 1778 | "microseconds@0.2.0": 1779 | "integrity" "sha512-n7DHHMjR1avBbSpsTBj6fmMGh2AGrifVV4e+WYc3Q9lO+xnSZ3NyhcBND3vzzatt05LFhoKFRxrIyklmLlUtyA==" 1780 | "resolved" "https://registry.npmjs.org/microseconds/-/microseconds-0.2.0.tgz" 1781 | "version" "0.2.0" 1782 | 1783 | "mime-db@1.52.0": 1784 | "integrity" "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==" 1785 | "resolved" "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz" 1786 | "version" "1.52.0" 1787 | 1788 | "mime-types@^2.1.12": 1789 | "integrity" "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==" 1790 | "resolved" "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz" 1791 | "version" "2.1.35" 1792 | dependencies: 1793 | "mime-db" "1.52.0" 1794 | 1795 | "mini-svg-data-uri@^1.2.3": 1796 | "integrity" "sha512-r9deDe9p5FJUPZAk3A59wGH7Ii9YrjjWw0jmw/liSbHl2CHiyXj6FcDXDu2K3TjVAXqiJdaw3xxwlZZr9E6nHg==" 1797 | "resolved" "https://registry.npmjs.org/mini-svg-data-uri/-/mini-svg-data-uri-1.4.4.tgz" 1798 | "version" "1.4.4" 1799 | 1800 | "minimatch@^3.0.4", "minimatch@^3.0.5", "minimatch@^3.1.1", "minimatch@^3.1.2": 1801 | "integrity" "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==" 1802 | "resolved" "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz" 1803 | "version" "3.1.2" 1804 | dependencies: 1805 | "brace-expansion" "^1.1.7" 1806 | 1807 | "minimist@^1.2.0", "minimist@^1.2.6": 1808 | "integrity" "sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g==" 1809 | "resolved" "https://registry.npmjs.org/minimist/-/minimist-1.2.7.tgz" 1810 | "version" "1.2.7" 1811 | 1812 | "moment@^2.10.2": 1813 | "integrity" "sha512-5LC9SOxjSc2HF6vO2CyuTDNivEdoz2IvyJJGj6X8DJ0eFyfszE0QiEd+iXmBvUP3WHxSjFH/vIsA0EN00cgr8w==" 1814 | "resolved" "https://registry.npmjs.org/moment/-/moment-2.29.4.tgz" 1815 | "version" "2.29.4" 1816 | 1817 | "ms@^2.1.1", "ms@2.1.2": 1818 | "integrity" "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" 1819 | "resolved" "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz" 1820 | "version" "2.1.2" 1821 | 1822 | "ms@2.0.0": 1823 | "integrity" "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" 1824 | "resolved" "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz" 1825 | "version" "2.0.0" 1826 | 1827 | "nano-time@1.0.0": 1828 | "integrity" "sha512-flnngywOoQ0lLQOTRNexn2gGSNuM9bKj9RZAWSzhQ+UJYaAFG9bac4DW9VHjUAzrOaIcajHybCTHe/bkvozQqA==" 1829 | "resolved" "https://registry.npmjs.org/nano-time/-/nano-time-1.0.0.tgz" 1830 | "version" "1.0.0" 1831 | dependencies: 1832 | "big-integer" "^1.6.16" 1833 | 1834 | "nanoid@^3.3.4": 1835 | "integrity" "sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==" 1836 | "resolved" "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz" 1837 | "version" "3.3.4" 1838 | 1839 | "natural-compare-lite@^1.4.0": 1840 | "integrity" "sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==" 1841 | "resolved" "https://registry.npmjs.org/natural-compare-lite/-/natural-compare-lite-1.4.0.tgz" 1842 | "version" "1.4.0" 1843 | 1844 | "natural-compare@^1.4.0": 1845 | "integrity" "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==" 1846 | "resolved" "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz" 1847 | "version" "1.4.0" 1848 | 1849 | "next@^13.1.1": 1850 | "integrity" "sha512-R5eBAaIa3X7LJeYvv1bMdGnAVF4fVToEjim7MkflceFPuANY3YyvFxXee/A+acrSYwYPvOvf7f6v/BM/48ea5w==" 1851 | "resolved" "https://registry.npmjs.org/next/-/next-13.1.1.tgz" 1852 | "version" "13.1.1" 1853 | dependencies: 1854 | "@next/env" "13.1.1" 1855 | "@swc/helpers" "0.4.14" 1856 | "caniuse-lite" "^1.0.30001406" 1857 | "postcss" "8.4.14" 1858 | "styled-jsx" "5.1.1" 1859 | optionalDependencies: 1860 | "@next/swc-android-arm-eabi" "13.1.1" 1861 | "@next/swc-android-arm64" "13.1.1" 1862 | "@next/swc-darwin-arm64" "13.1.1" 1863 | "@next/swc-darwin-x64" "13.1.1" 1864 | "@next/swc-freebsd-x64" "13.1.1" 1865 | "@next/swc-linux-arm-gnueabihf" "13.1.1" 1866 | "@next/swc-linux-arm64-gnu" "13.1.1" 1867 | "@next/swc-linux-arm64-musl" "13.1.1" 1868 | "@next/swc-linux-x64-gnu" "13.1.1" 1869 | "@next/swc-linux-x64-musl" "13.1.1" 1870 | "@next/swc-win32-arm64-msvc" "13.1.1" 1871 | "@next/swc-win32-ia32-msvc" "13.1.1" 1872 | "@next/swc-win32-x64-msvc" "13.1.1" 1873 | 1874 | "node-releases@^2.0.6": 1875 | "integrity" "sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==" 1876 | "resolved" "https://registry.npmjs.org/node-releases/-/node-releases-2.0.6.tgz" 1877 | "version" "2.0.6" 1878 | 1879 | "normalize-path@^3.0.0", "normalize-path@~3.0.0": 1880 | "integrity" "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==" 1881 | "resolved" "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz" 1882 | "version" "3.0.0" 1883 | 1884 | "normalize-range@^0.1.2": 1885 | "integrity" "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==" 1886 | "resolved" "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz" 1887 | "version" "0.1.2" 1888 | 1889 | "object-assign@^4.1.1": 1890 | "integrity" "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==" 1891 | "resolved" "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz" 1892 | "version" "4.1.1" 1893 | 1894 | "object-hash@^3.0.0": 1895 | "integrity" "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==" 1896 | "resolved" "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz" 1897 | "version" "3.0.0" 1898 | 1899 | "object-inspect@^1.12.2", "object-inspect@^1.9.0": 1900 | "integrity" "sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==" 1901 | "resolved" "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.2.tgz" 1902 | "version" "1.12.2" 1903 | 1904 | "object-keys@^1.1.1": 1905 | "integrity" "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==" 1906 | "resolved" "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz" 1907 | "version" "1.1.1" 1908 | 1909 | "object.assign@^4.1.3", "object.assign@^4.1.4": 1910 | "integrity" "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==" 1911 | "resolved" "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz" 1912 | "version" "4.1.4" 1913 | dependencies: 1914 | "call-bind" "^1.0.2" 1915 | "define-properties" "^1.1.4" 1916 | "has-symbols" "^1.0.3" 1917 | "object-keys" "^1.1.1" 1918 | 1919 | "object.entries@^1.1.6": 1920 | "integrity" "sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==" 1921 | "resolved" "https://registry.npmjs.org/object.entries/-/object.entries-1.1.6.tgz" 1922 | "version" "1.1.6" 1923 | dependencies: 1924 | "call-bind" "^1.0.2" 1925 | "define-properties" "^1.1.4" 1926 | "es-abstract" "^1.20.4" 1927 | 1928 | "object.fromentries@^2.0.6": 1929 | "integrity" "sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==" 1930 | "resolved" "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.6.tgz" 1931 | "version" "2.0.6" 1932 | dependencies: 1933 | "call-bind" "^1.0.2" 1934 | "define-properties" "^1.1.4" 1935 | "es-abstract" "^1.20.4" 1936 | 1937 | "object.hasown@^1.1.2": 1938 | "integrity" "sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==" 1939 | "resolved" "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.2.tgz" 1940 | "version" "1.1.2" 1941 | dependencies: 1942 | "define-properties" "^1.1.4" 1943 | "es-abstract" "^1.20.4" 1944 | 1945 | "object.values@^1.1.5", "object.values@^1.1.6": 1946 | "integrity" "sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==" 1947 | "resolved" "https://registry.npmjs.org/object.values/-/object.values-1.1.6.tgz" 1948 | "version" "1.1.6" 1949 | dependencies: 1950 | "call-bind" "^1.0.2" 1951 | "define-properties" "^1.1.4" 1952 | "es-abstract" "^1.20.4" 1953 | 1954 | "oblivious-set@1.0.0": 1955 | "integrity" "sha512-z+pI07qxo4c2CulUHCDf9lcqDlMSo72N/4rLUpRXf6fu+q8vjt8y0xS+Tlf8NTJDdTXHbdeO1n3MlbctwEoXZw==" 1956 | "resolved" "https://registry.npmjs.org/oblivious-set/-/oblivious-set-1.0.0.tgz" 1957 | "version" "1.0.0" 1958 | 1959 | "once@^1.3.0": 1960 | "integrity" "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==" 1961 | "resolved" "https://registry.npmjs.org/once/-/once-1.4.0.tgz" 1962 | "version" "1.4.0" 1963 | dependencies: 1964 | "wrappy" "1" 1965 | 1966 | "openai@^3.1.0": 1967 | "integrity" "sha512-v5kKFH5o+8ld+t0arudj833Mgm3GcgBnbyN9946bj6u7bvel4Yg6YFz2A4HLIYDzmMjIo0s6vSG9x73kOwvdCg==" 1968 | "resolved" "https://registry.npmjs.org/openai/-/openai-3.1.0.tgz" 1969 | "version" "3.1.0" 1970 | dependencies: 1971 | "axios" "^0.26.0" 1972 | "form-data" "^4.0.0" 1973 | 1974 | "optionator@^0.9.1": 1975 | "integrity" "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==" 1976 | "resolved" "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz" 1977 | "version" "0.9.1" 1978 | dependencies: 1979 | "deep-is" "^0.1.3" 1980 | "fast-levenshtein" "^2.0.6" 1981 | "levn" "^0.4.1" 1982 | "prelude-ls" "^1.2.1" 1983 | "type-check" "^0.4.0" 1984 | "word-wrap" "^1.2.3" 1985 | 1986 | "p-limit@^3.0.2": 1987 | "integrity" "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==" 1988 | "resolved" "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz" 1989 | "version" "3.1.0" 1990 | dependencies: 1991 | "yocto-queue" "^0.1.0" 1992 | 1993 | "p-locate@^5.0.0": 1994 | "integrity" "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==" 1995 | "resolved" "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz" 1996 | "version" "5.0.0" 1997 | dependencies: 1998 | "p-limit" "^3.0.2" 1999 | 2000 | "parent-module@^1.0.0": 2001 | "integrity" "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==" 2002 | "resolved" "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz" 2003 | "version" "1.0.1" 2004 | dependencies: 2005 | "callsites" "^3.0.0" 2006 | 2007 | "path-exists@^4.0.0": 2008 | "integrity" "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==" 2009 | "resolved" "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz" 2010 | "version" "4.0.0" 2011 | 2012 | "path-is-absolute@^1.0.0": 2013 | "integrity" "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==" 2014 | "resolved" "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz" 2015 | "version" "1.0.1" 2016 | 2017 | "path-key@^3.1.0": 2018 | "integrity" "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==" 2019 | "resolved" "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz" 2020 | "version" "3.1.1" 2021 | 2022 | "path-parse@^1.0.7": 2023 | "integrity" "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" 2024 | "resolved" "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz" 2025 | "version" "1.0.7" 2026 | 2027 | "path-type@^4.0.0": 2028 | "integrity" "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==" 2029 | "resolved" "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz" 2030 | "version" "4.0.0" 2031 | 2032 | "perfect-scrollbar@^1.5.0": 2033 | "integrity" "sha512-dzalfutyP3e/FOpdlhVryN4AJ5XDVauVWxybSkLZmakFE2sS3y3pc4JnSprw8tGmHvkaG5Edr5T7LBTZ+WWU2g==" 2034 | "resolved" "https://registry.npmjs.org/perfect-scrollbar/-/perfect-scrollbar-1.5.5.tgz" 2035 | "version" "1.5.5" 2036 | 2037 | "picocolors@^1.0.0": 2038 | "integrity" "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" 2039 | "resolved" "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz" 2040 | "version" "1.0.0" 2041 | 2042 | "picomatch@^2.0.4", "picomatch@^2.2.1", "picomatch@^2.3.1": 2043 | "integrity" "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==" 2044 | "resolved" "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz" 2045 | "version" "2.3.1" 2046 | 2047 | "pify@^2.3.0": 2048 | "integrity" "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==" 2049 | "resolved" "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz" 2050 | "version" "2.3.0" 2051 | 2052 | "pop-iterate@^1.0.1": 2053 | "integrity" "sha512-HRCx4+KJE30JhX84wBN4+vja9bNfysxg1y28l0DuJmkoaICiv2ZSilKddbS48pq50P8d2erAhqDLbp47yv3MbQ==" 2054 | "resolved" "https://registry.npmjs.org/pop-iterate/-/pop-iterate-1.0.1.tgz" 2055 | "version" "1.0.1" 2056 | 2057 | "popper.js@^1.16.1": 2058 | "integrity" "sha512-Wb4p1J4zyFTbM+u6WuO4XstYx4Ky9Cewe4DWrel7B0w6VVICvPwdOpotjzcf6eD8TsckVnIMNONQyPIUFOUbCQ==" 2059 | "resolved" "https://registry.npmjs.org/popper.js/-/popper.js-1.16.1.tgz" 2060 | "version" "1.16.1" 2061 | 2062 | "postcss-import@^14.1.0": 2063 | "integrity" "sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==" 2064 | "resolved" "https://registry.npmjs.org/postcss-import/-/postcss-import-14.1.0.tgz" 2065 | "version" "14.1.0" 2066 | dependencies: 2067 | "postcss-value-parser" "^4.0.0" 2068 | "read-cache" "^1.0.0" 2069 | "resolve" "^1.1.7" 2070 | 2071 | "postcss-js@^4.0.0": 2072 | "integrity" "sha512-77QESFBwgX4irogGVPgQ5s07vLvFqWr228qZY+w6lW599cRlK/HmnlivnnVUxkjHnCu4J16PDMHcH+e+2HbvTQ==" 2073 | "resolved" "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.0.tgz" 2074 | "version" "4.0.0" 2075 | dependencies: 2076 | "camelcase-css" "^2.0.1" 2077 | 2078 | "postcss-load-config@^3.1.4": 2079 | "integrity" "sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==" 2080 | "resolved" "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-3.1.4.tgz" 2081 | "version" "3.1.4" 2082 | dependencies: 2083 | "lilconfig" "^2.0.5" 2084 | "yaml" "^1.10.2" 2085 | 2086 | "postcss-nested@5.0.6": 2087 | "integrity" "sha512-rKqm2Fk0KbA8Vt3AdGN0FB9OBOMDVajMG6ZCf/GoHgdxUJ4sBFp0A/uMIRm+MJUdo33YXEtjqIz8u7DAp8B7DA==" 2088 | "resolved" "https://registry.npmjs.org/postcss-nested/-/postcss-nested-5.0.6.tgz" 2089 | "version" "5.0.6" 2090 | dependencies: 2091 | "postcss-selector-parser" "^6.0.6" 2092 | 2093 | "postcss-nested@6.0.0": 2094 | "integrity" "sha512-0DkamqrPcmkBDsLn+vQDIrtkSbNkv5AD/M322ySo9kqFkCIYklym2xEmWkwo+Y3/qZo34tzEPNUw4y7yMCdv5w==" 2095 | "resolved" "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.0.0.tgz" 2096 | "version" "6.0.0" 2097 | dependencies: 2098 | "postcss-selector-parser" "^6.0.10" 2099 | 2100 | "postcss-selector-parser@^6.0.10", "postcss-selector-parser@^6.0.6", "postcss-selector-parser@6.0.10": 2101 | "integrity" "sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==" 2102 | "resolved" "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.10.tgz" 2103 | "version" "6.0.10" 2104 | dependencies: 2105 | "cssesc" "^3.0.0" 2106 | "util-deprecate" "^1.0.2" 2107 | 2108 | "postcss-value-parser@^4.0.0", "postcss-value-parser@^4.2.0": 2109 | "integrity" "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" 2110 | "resolved" "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz" 2111 | "version" "4.2.0" 2112 | 2113 | "postcss@^8.0.0", "postcss@^8.1.0", "postcss@^8.1.6", "postcss@^8.2.14", "postcss@^8.3.3", "postcss@^8.4.12", "postcss@^8.4.14", "postcss@^8.4.18", "postcss@>=8.0.9": 2114 | "integrity" "sha512-6Q04AXR1212bXr5fh03u8aAwbLxAQNGQ/Q1LNa0VfOI06ZAlhPHtQvE4OIdpj4kLThXilalPnmDSOD65DcHt+g==" 2115 | "resolved" "https://registry.npmjs.org/postcss/-/postcss-8.4.20.tgz" 2116 | "version" "8.4.20" 2117 | dependencies: 2118 | "nanoid" "^3.3.4" 2119 | "picocolors" "^1.0.0" 2120 | "source-map-js" "^1.0.2" 2121 | 2122 | "postcss@8.4.14": 2123 | "integrity" "sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==" 2124 | "resolved" "https://registry.npmjs.org/postcss/-/postcss-8.4.14.tgz" 2125 | "version" "8.4.14" 2126 | dependencies: 2127 | "nanoid" "^3.3.4" 2128 | "picocolors" "^1.0.0" 2129 | "source-map-js" "^1.0.2" 2130 | 2131 | "prelude-ls@^1.2.1": 2132 | "integrity" "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==" 2133 | "resolved" "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz" 2134 | "version" "1.2.1" 2135 | 2136 | "prettier-plugin-tailwindcss@^0.1.13": 2137 | "integrity" "sha512-/EKQURUrxLu66CMUg4+1LwGdxnz8of7IDvrSLqEtDqhLH61SAlNNUSr90UTvZaemujgl3OH/VHg+fyGltrNixw==" 2138 | "resolved" "https://registry.npmjs.org/prettier-plugin-tailwindcss/-/prettier-plugin-tailwindcss-0.1.13.tgz" 2139 | "version" "0.1.13" 2140 | 2141 | "prettier@^2.7.1", "prettier@>=2.2.0": 2142 | "integrity" "sha512-lqGoSJBQNJidqCHE80vqZJHWHRFoNYsSpP9AjFhlhi9ODCJA541svILes/+/1GM3VaL/abZi7cpFzOpdR9UPKg==" 2143 | "resolved" "https://registry.npmjs.org/prettier/-/prettier-2.8.1.tgz" 2144 | "version" "2.8.1" 2145 | 2146 | "prisma@*", "prisma@^4.5.0": 2147 | "integrity" "sha512-CCQP+m+1qZOGIZlvnL6T3ZwaU0LAleIHYFPN9tFSzjs/KL6vH9rlYbGOkTuG9Q1s6Ki5D0LJlYlW18Z9EBUpGg==" 2148 | "resolved" "https://registry.npmjs.org/prisma/-/prisma-4.7.1.tgz" 2149 | "version" "4.7.1" 2150 | dependencies: 2151 | "@prisma/engines" "4.7.1" 2152 | 2153 | "promptable@^0.0.5": 2154 | "integrity" "sha512-qZ/rauiL2EZBjuCvWInrSedNpzlSNCItTZrIZwwUslvPBLHGT9AAMI+ZNpaXcuZRXFmTODpkT/PqKNeUgzLB+w==" 2155 | "resolved" "https://registry.npmjs.org/promptable/-/promptable-0.0.5.tgz" 2156 | "version" "0.0.5" 2157 | dependencies: 2158 | "@microsoft/fetch-event-source" "^2.0.1" 2159 | "axios" "^1.2.1" 2160 | 2161 | "prop-types@^15.8.1": 2162 | "integrity" "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==" 2163 | "resolved" "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz" 2164 | "version" "15.8.1" 2165 | dependencies: 2166 | "loose-envify" "^1.4.0" 2167 | "object-assign" "^4.1.1" 2168 | "react-is" "^16.13.1" 2169 | 2170 | "proxy-from-env@^1.1.0": 2171 | "integrity" "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==" 2172 | "resolved" "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz" 2173 | "version" "1.1.0" 2174 | 2175 | "punycode@^2.1.0": 2176 | "integrity" "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==" 2177 | "resolved" "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz" 2178 | "version" "2.1.1" 2179 | 2180 | "q@2.0.x": 2181 | "integrity" "sha512-gv6vLGcmAOg96/fgo3d9tvA4dJNZL3fMyBqVRrGxQ+Q/o4k9QzbJ3NQF9cOO/71wRodoXhaPgphvMFU68qVAJQ==" 2182 | "resolved" "https://registry.npmjs.org/q/-/q-2.0.3.tgz" 2183 | "version" "2.0.3" 2184 | dependencies: 2185 | "asap" "^2.0.0" 2186 | "pop-iterate" "^1.0.1" 2187 | "weak-map" "^1.0.5" 2188 | 2189 | "qs@^6.9.4": 2190 | "integrity" "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==" 2191 | "resolved" "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz" 2192 | "version" "6.11.0" 2193 | dependencies: 2194 | "side-channel" "^1.0.4" 2195 | 2196 | "querystringify@^2.1.1": 2197 | "integrity" "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==" 2198 | "resolved" "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz" 2199 | "version" "2.2.0" 2200 | 2201 | "queue-microtask@^1.2.2": 2202 | "integrity" "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==" 2203 | "resolved" "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz" 2204 | "version" "1.2.3" 2205 | 2206 | "quick-lru@^5.1.1": 2207 | "integrity" "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==" 2208 | "resolved" "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz" 2209 | "version" "5.1.1" 2210 | 2211 | "react-dom@^16.8.0 || ^17.0.0 || ^18.0.0", "react-dom@^18.2.0", "react-dom@18.2.0": 2212 | "integrity" "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==" 2213 | "resolved" "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz" 2214 | "version" "18.2.0" 2215 | dependencies: 2216 | "loose-envify" "^1.1.0" 2217 | "scheduler" "^0.23.0" 2218 | 2219 | "react-hook-form@^7.40.0": 2220 | "integrity" "sha512-0rokdxMPJs0k9bvFtY6dbcSydyNhnZNXCR49jgDr/aR03FDHFOK6gfh8ccqB3fl696Mk7lqh04xdm+agqWXKSw==" 2221 | "resolved" "https://registry.npmjs.org/react-hook-form/-/react-hook-form-7.40.0.tgz" 2222 | "version" "7.40.0" 2223 | 2224 | "react-is@^16.13.1": 2225 | "integrity" "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" 2226 | "resolved" "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz" 2227 | "version" "16.13.1" 2228 | 2229 | "react-query@^3.39.2": 2230 | "integrity" "sha512-F6hYDKyNgDQfQOuR1Rsp3VRzJnWHx6aRnnIZHMNGGgbL3SBgpZTDg8MQwmxOgpCAoqZJA+JSNCydF1xGJqKOCA==" 2231 | "resolved" "https://registry.npmjs.org/react-query/-/react-query-3.39.2.tgz" 2232 | "version" "3.39.2" 2233 | dependencies: 2234 | "@babel/runtime" "^7.5.5" 2235 | "broadcast-channel" "^3.4.1" 2236 | "match-sorter" "^6.0.2" 2237 | 2238 | "react-textarea-autosize@^8.4.0": 2239 | "integrity" "sha512-YrTFaEHLgJsi8sJVYHBzYn+mkP3prGkmP2DKb/tm0t7CLJY5t1Rxix8070LAKb0wby7bl/lf2EeHkuMihMZMwQ==" 2240 | "resolved" "https://registry.npmjs.org/react-textarea-autosize/-/react-textarea-autosize-8.4.0.tgz" 2241 | "version" "8.4.0" 2242 | dependencies: 2243 | "@babel/runtime" "^7.10.2" 2244 | "use-composed-ref" "^1.3.0" 2245 | "use-latest" "^1.2.1" 2246 | 2247 | "react@^16.8.0 || ^17 || ^18", "react@^16.8.0 || ^17.0.0 || ^18.0.0", "react@^18.2.0", "react@>= 16.8.0 || 17.x.x || ^18.0.0-0", "react@>=16.8", "react@18.2.0": 2248 | "integrity" "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==" 2249 | "resolved" "https://registry.npmjs.org/react/-/react-18.2.0.tgz" 2250 | "version" "18.2.0" 2251 | dependencies: 2252 | "loose-envify" "^1.1.0" 2253 | 2254 | "read-cache@^1.0.0": 2255 | "integrity" "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==" 2256 | "resolved" "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz" 2257 | "version" "1.0.0" 2258 | dependencies: 2259 | "pify" "^2.3.0" 2260 | 2261 | "readdirp@~3.6.0": 2262 | "integrity" "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==" 2263 | "resolved" "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz" 2264 | "version" "3.6.0" 2265 | dependencies: 2266 | "picomatch" "^2.2.1" 2267 | 2268 | "regenerator-runtime@^0.13.11": 2269 | "integrity" "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==" 2270 | "resolved" "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz" 2271 | "version" "0.13.11" 2272 | 2273 | "regexp.prototype.flags@^1.4.3": 2274 | "integrity" "sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==" 2275 | "resolved" "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz" 2276 | "version" "1.4.3" 2277 | dependencies: 2278 | "call-bind" "^1.0.2" 2279 | "define-properties" "^1.1.3" 2280 | "functions-have-names" "^1.2.2" 2281 | 2282 | "regexpp@^3.2.0": 2283 | "integrity" "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==" 2284 | "resolved" "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz" 2285 | "version" "3.2.0" 2286 | 2287 | "remove-accents@0.4.2": 2288 | "integrity" "sha512-7pXIJqJOq5tFgG1A2Zxti3Ht8jJF337m4sowbuHsW30ZnkQFnDzy9qBNhgzX8ZLW4+UBcXiiR7SwR6pokHsxiA==" 2289 | "resolved" "https://registry.npmjs.org/remove-accents/-/remove-accents-0.4.2.tgz" 2290 | "version" "0.4.2" 2291 | 2292 | "requires-port@^1.0.0": 2293 | "integrity" "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==" 2294 | "resolved" "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz" 2295 | "version" "1.0.0" 2296 | 2297 | "resolve-from@^4.0.0": 2298 | "integrity" "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==" 2299 | "resolved" "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz" 2300 | "version" "4.0.0" 2301 | 2302 | "resolve@^1.1.7", "resolve@^1.20.0", "resolve@^1.22.0", "resolve@^1.22.1": 2303 | "integrity" "sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==" 2304 | "resolved" "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz" 2305 | "version" "1.22.1" 2306 | dependencies: 2307 | "is-core-module" "^2.9.0" 2308 | "path-parse" "^1.0.7" 2309 | "supports-preserve-symlinks-flag" "^1.0.0" 2310 | 2311 | "resolve@^2.0.0-next.3": 2312 | "integrity" "sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==" 2313 | "resolved" "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.4.tgz" 2314 | "version" "2.0.0-next.4" 2315 | dependencies: 2316 | "is-core-module" "^2.9.0" 2317 | "path-parse" "^1.0.7" 2318 | "supports-preserve-symlinks-flag" "^1.0.0" 2319 | 2320 | "reusify@^1.0.4": 2321 | "integrity" "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==" 2322 | "resolved" "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz" 2323 | "version" "1.0.4" 2324 | 2325 | "rimraf@^3.0.2", "rimraf@3.0.2": 2326 | "integrity" "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==" 2327 | "resolved" "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz" 2328 | "version" "3.0.2" 2329 | dependencies: 2330 | "glob" "^7.1.3" 2331 | 2332 | "rootpath@^0.1.2": 2333 | "integrity" "sha512-R3wLbuAYejpxQjL/SjXo1Cjv4wcJECnMRT/FlcCfTwCBhaji9rWaRCoVEQ1SPiTJ4kKK+yh+bZLAV7SCafoDDw==" 2334 | "resolved" "https://registry.npmjs.org/rootpath/-/rootpath-0.1.2.tgz" 2335 | "version" "0.1.2" 2336 | 2337 | "run-parallel@^1.1.9": 2338 | "integrity" "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==" 2339 | "resolved" "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz" 2340 | "version" "1.2.0" 2341 | dependencies: 2342 | "queue-microtask" "^1.2.2" 2343 | 2344 | "safe-buffer@^5.0.1": 2345 | "integrity" "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" 2346 | "resolved" "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz" 2347 | "version" "5.2.1" 2348 | 2349 | "safe-regex-test@^1.0.0": 2350 | "integrity" "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==" 2351 | "resolved" "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz" 2352 | "version" "1.0.0" 2353 | dependencies: 2354 | "call-bind" "^1.0.2" 2355 | "get-intrinsic" "^1.1.3" 2356 | "is-regex" "^1.1.4" 2357 | 2358 | "scheduler@^0.23.0": 2359 | "integrity" "sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==" 2360 | "resolved" "https://registry.npmjs.org/scheduler/-/scheduler-0.23.0.tgz" 2361 | "version" "0.23.0" 2362 | dependencies: 2363 | "loose-envify" "^1.1.0" 2364 | 2365 | "scmp@^2.1.0": 2366 | "integrity" "sha512-o/mRQGk9Rcer/jEEw/yw4mwo3EU/NvYvp577/Btqrym9Qy5/MdWGBqipbALgd2lrdWTJ5/gqDusxfnQBxOxT2Q==" 2367 | "resolved" "https://registry.npmjs.org/scmp/-/scmp-2.1.0.tgz" 2368 | "version" "2.1.0" 2369 | 2370 | "semver@^5.6.0": 2371 | "integrity" "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" 2372 | "resolved" "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz" 2373 | "version" "5.7.1" 2374 | 2375 | "semver@^6.3.0": 2376 | "integrity" "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" 2377 | "resolved" "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz" 2378 | "version" "6.3.0" 2379 | 2380 | "semver@^7.3.7": 2381 | "integrity" "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==" 2382 | "resolved" "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz" 2383 | "version" "7.3.8" 2384 | dependencies: 2385 | "lru-cache" "^6.0.0" 2386 | 2387 | "shebang-command@^2.0.0": 2388 | "integrity" "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==" 2389 | "resolved" "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz" 2390 | "version" "2.0.0" 2391 | dependencies: 2392 | "shebang-regex" "^3.0.0" 2393 | 2394 | "shebang-regex@^3.0.0": 2395 | "integrity" "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==" 2396 | "resolved" "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz" 2397 | "version" "3.0.0" 2398 | 2399 | "side-channel@^1.0.4": 2400 | "integrity" "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==" 2401 | "resolved" "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz" 2402 | "version" "1.0.4" 2403 | dependencies: 2404 | "call-bind" "^1.0.0" 2405 | "get-intrinsic" "^1.0.2" 2406 | "object-inspect" "^1.9.0" 2407 | 2408 | "simple-swizzle@^0.2.2": 2409 | "integrity" "sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==" 2410 | "resolved" "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz" 2411 | "version" "0.2.2" 2412 | dependencies: 2413 | "is-arrayish" "^0.3.1" 2414 | 2415 | "slash@^3.0.0": 2416 | "integrity" "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==" 2417 | "resolved" "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz" 2418 | "version" "3.0.0" 2419 | 2420 | "source-map-js@^1.0.2": 2421 | "integrity" "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==" 2422 | "resolved" "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz" 2423 | "version" "1.0.2" 2424 | 2425 | "string.prototype.matchall@^4.0.8": 2426 | "integrity" "sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==" 2427 | "resolved" "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.8.tgz" 2428 | "version" "4.0.8" 2429 | dependencies: 2430 | "call-bind" "^1.0.2" 2431 | "define-properties" "^1.1.4" 2432 | "es-abstract" "^1.20.4" 2433 | "get-intrinsic" "^1.1.3" 2434 | "has-symbols" "^1.0.3" 2435 | "internal-slot" "^1.0.3" 2436 | "regexp.prototype.flags" "^1.4.3" 2437 | "side-channel" "^1.0.4" 2438 | 2439 | "string.prototype.trimend@^1.0.6": 2440 | "integrity" "sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==" 2441 | "resolved" "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz" 2442 | "version" "1.0.6" 2443 | dependencies: 2444 | "call-bind" "^1.0.2" 2445 | "define-properties" "^1.1.4" 2446 | "es-abstract" "^1.20.4" 2447 | 2448 | "string.prototype.trimstart@^1.0.6": 2449 | "integrity" "sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==" 2450 | "resolved" "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz" 2451 | "version" "1.0.6" 2452 | dependencies: 2453 | "call-bind" "^1.0.2" 2454 | "define-properties" "^1.1.4" 2455 | "es-abstract" "^1.20.4" 2456 | 2457 | "strip-ansi@^6.0.1": 2458 | "integrity" "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==" 2459 | "resolved" "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz" 2460 | "version" "6.0.1" 2461 | dependencies: 2462 | "ansi-regex" "^5.0.1" 2463 | 2464 | "strip-bom@^3.0.0": 2465 | "integrity" "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==" 2466 | "resolved" "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz" 2467 | "version" "3.0.0" 2468 | 2469 | "strip-json-comments@^3.1.0", "strip-json-comments@^3.1.1": 2470 | "integrity" "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==" 2471 | "resolved" "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz" 2472 | "version" "3.1.1" 2473 | 2474 | "styled-jsx@5.1.1": 2475 | "integrity" "sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==" 2476 | "resolved" "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.1.1.tgz" 2477 | "version" "5.1.1" 2478 | dependencies: 2479 | "client-only" "0.0.1" 2480 | 2481 | "supports-color@^7.1.0": 2482 | "integrity" "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==" 2483 | "resolved" "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz" 2484 | "version" "7.2.0" 2485 | dependencies: 2486 | "has-flag" "^4.0.0" 2487 | 2488 | "supports-preserve-symlinks-flag@^1.0.0": 2489 | "integrity" "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==" 2490 | "resolved" "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz" 2491 | "version" "1.0.0" 2492 | 2493 | "tailwind-scrollbar@^2.0.1": 2494 | "integrity" "sha512-OcR7qHBbux4k+k6bWqnEQFYFooLK/F4dhkBz6nvswIoaA9ancZ5h20e0tyV7ifSWLDCUBtpG+1NHRA8HMRH/wg==" 2495 | "resolved" "https://registry.npmjs.org/tailwind-scrollbar/-/tailwind-scrollbar-2.0.1.tgz" 2496 | "version" "2.0.1" 2497 | 2498 | "tailwindcss@^3", "tailwindcss@^3.2.0", "tailwindcss@>=2.0.0 || >=3.0.0 || >=3.0.0-alpha.1", "tailwindcss@>=3.0.0 || >= 3.0.0-alpha.1", "tailwindcss@>=3.0.0 || insiders", "tailwindcss@>=3.2.0", "tailwindcss@3.x": 2499 | "integrity" "sha512-AhwtHCKMtR71JgeYDaswmZXhPcW9iuI9Sp2LvZPo9upDZ7231ZJ7eA9RaURbhpXGVlrjX4cFNlB4ieTetEb7hQ==" 2500 | "resolved" "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.2.4.tgz" 2501 | "version" "3.2.4" 2502 | dependencies: 2503 | "arg" "^5.0.2" 2504 | "chokidar" "^3.5.3" 2505 | "color-name" "^1.1.4" 2506 | "detective" "^5.2.1" 2507 | "didyoumean" "^1.2.2" 2508 | "dlv" "^1.1.3" 2509 | "fast-glob" "^3.2.12" 2510 | "glob-parent" "^6.0.2" 2511 | "is-glob" "^4.0.3" 2512 | "lilconfig" "^2.0.6" 2513 | "micromatch" "^4.0.5" 2514 | "normalize-path" "^3.0.0" 2515 | "object-hash" "^3.0.0" 2516 | "picocolors" "^1.0.0" 2517 | "postcss" "^8.4.18" 2518 | "postcss-import" "^14.1.0" 2519 | "postcss-js" "^4.0.0" 2520 | "postcss-load-config" "^3.1.4" 2521 | "postcss-nested" "6.0.0" 2522 | "postcss-selector-parser" "^6.0.10" 2523 | "postcss-value-parser" "^4.2.0" 2524 | "quick-lru" "^5.1.1" 2525 | "resolve" "^1.22.1" 2526 | 2527 | "tailwindcss@~3.0.7": 2528 | "integrity" "sha512-H3uMmZNWzG6aqmg9q07ZIRNIawoiEcNFKDfL+YzOPuPsXuDXxJxB9icqzLgdzKNwjG3SAro2h9SYav8ewXNgig==" 2529 | "resolved" "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.0.24.tgz" 2530 | "version" "3.0.24" 2531 | dependencies: 2532 | "arg" "^5.0.1" 2533 | "chokidar" "^3.5.3" 2534 | "color-name" "^1.1.4" 2535 | "detective" "^5.2.0" 2536 | "didyoumean" "^1.2.2" 2537 | "dlv" "^1.1.3" 2538 | "fast-glob" "^3.2.11" 2539 | "glob-parent" "^6.0.2" 2540 | "is-glob" "^4.0.3" 2541 | "lilconfig" "^2.0.5" 2542 | "normalize-path" "^3.0.0" 2543 | "object-hash" "^3.0.0" 2544 | "picocolors" "^1.0.0" 2545 | "postcss" "^8.4.12" 2546 | "postcss-js" "^4.0.0" 2547 | "postcss-load-config" "^3.1.4" 2548 | "postcss-nested" "5.0.6" 2549 | "postcss-selector-parser" "^6.0.10" 2550 | "postcss-value-parser" "^4.2.0" 2551 | "quick-lru" "^5.1.1" 2552 | "resolve" "^1.22.0" 2553 | 2554 | "text-table@^0.2.0": 2555 | "integrity" "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==" 2556 | "resolved" "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz" 2557 | "version" "0.2.0" 2558 | 2559 | "to-regex-range@^5.0.1": 2560 | "integrity" "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==" 2561 | "resolved" "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz" 2562 | "version" "5.0.1" 2563 | dependencies: 2564 | "is-number" "^7.0.0" 2565 | 2566 | "tsconfig-paths@^3.14.1": 2567 | "integrity" "sha512-fxDhWnFSLt3VuTwtvJt5fpwxBHg5AdKWMsgcPOOIilyjymcYVZoCQF8fvFRezCNfblEXmi+PcM1eYHeOAgXCOQ==" 2568 | "resolved" "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.1.tgz" 2569 | "version" "3.14.1" 2570 | dependencies: 2571 | "@types/json5" "^0.0.29" 2572 | "json5" "^1.0.1" 2573 | "minimist" "^1.2.6" 2574 | "strip-bom" "^3.0.0" 2575 | 2576 | "tslib@^1.8.1": 2577 | "integrity" "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" 2578 | "resolved" "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz" 2579 | "version" "1.14.1" 2580 | 2581 | "tslib@^2.4.0": 2582 | "integrity" "sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==" 2583 | "resolved" "https://registry.npmjs.org/tslib/-/tslib-2.4.1.tgz" 2584 | "version" "2.4.1" 2585 | 2586 | "tsutils@^3.21.0": 2587 | "integrity" "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==" 2588 | "resolved" "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz" 2589 | "version" "3.21.0" 2590 | dependencies: 2591 | "tslib" "^1.8.1" 2592 | 2593 | "tw-elements@^1.0.0-alpha13": 2594 | "integrity" "sha512-lz1D583ZGDF4s8e89dmXkhfD8m2abgAlaK8/J6cAEm3DLxz7RtqKdunzja6xcKxDZO3bXEd6oGNdQ5QHpyCqrg==" 2595 | "resolved" "https://registry.npmjs.org/tw-elements/-/tw-elements-1.0.0-alpha13.tgz" 2596 | "version" "1.0.0-alpha13" 2597 | dependencies: 2598 | "@popperjs/core" "^2.6.0" 2599 | "chart.js" "^2.9.4" 2600 | "chartjs-plugin-datalabels" "^0.7.0" 2601 | "deepmerge" "^4.2.2" 2602 | "detect-autofill" "^1.1.3" 2603 | "perfect-scrollbar" "^1.5.0" 2604 | "popper.js" "^1.16.1" 2605 | "tailwindcss" "~3.0.7" 2606 | 2607 | "twilio@*", "twilio@^3.83.4": 2608 | "integrity" "sha512-aP9pK15Rpo1Q7VvNMhjdj305TgMhqQIDjt3M3UYSfAbrZcK8z+OENKSOUVxxS8gALmIw3dkDdBCOhOcLLZvUOA==" 2609 | "resolved" "https://registry.npmjs.org/twilio/-/twilio-3.83.4.tgz" 2610 | "version" "3.83.4" 2611 | dependencies: 2612 | "axios" "^0.26.1" 2613 | "dayjs" "^1.8.29" 2614 | "https-proxy-agent" "^5.0.0" 2615 | "jsonwebtoken" "^8.5.1" 2616 | "lodash" "^4.17.21" 2617 | "q" "2.0.x" 2618 | "qs" "^6.9.4" 2619 | "rootpath" "^0.1.2" 2620 | "scmp" "^2.1.0" 2621 | "url-parse" "^1.5.9" 2622 | "xmlbuilder" "^13.0.2" 2623 | 2624 | "type-check@^0.4.0", "type-check@~0.4.0": 2625 | "integrity" "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==" 2626 | "resolved" "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz" 2627 | "version" "0.4.0" 2628 | dependencies: 2629 | "prelude-ls" "^1.2.1" 2630 | 2631 | "type-fest@^0.20.2": 2632 | "integrity" "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==" 2633 | "resolved" "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz" 2634 | "version" "0.20.2" 2635 | 2636 | "typescript@^4.8.4", "typescript@>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta", "typescript@>=3.3.1": 2637 | "integrity" "sha512-Uz+dTXYzxXXbsFpM86Wh3dKCxrQqUcVMxwU54orwlJjOpO3ao8L7j5lH+dWfTwgCwIuM9GQ2kvVotzYJMXTBZg==" 2638 | "resolved" "https://registry.npmjs.org/typescript/-/typescript-4.9.4.tgz" 2639 | "version" "4.9.4" 2640 | 2641 | "unbox-primitive@^1.0.2": 2642 | "integrity" "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==" 2643 | "resolved" "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz" 2644 | "version" "1.0.2" 2645 | dependencies: 2646 | "call-bind" "^1.0.2" 2647 | "has-bigints" "^1.0.2" 2648 | "has-symbols" "^1.0.3" 2649 | "which-boxed-primitive" "^1.0.2" 2650 | 2651 | "unload@2.2.0": 2652 | "integrity" "sha512-B60uB5TNBLtN6/LsgAf3udH9saB5p7gqJwcFfbOEZ8BcBHnGwCf6G/TGiEqkRAxX7zAFIUtzdrXQSdL3Q/wqNA==" 2653 | "resolved" "https://registry.npmjs.org/unload/-/unload-2.2.0.tgz" 2654 | "version" "2.2.0" 2655 | dependencies: 2656 | "@babel/runtime" "^7.6.2" 2657 | "detect-node" "^2.0.4" 2658 | 2659 | "update-browserslist-db@^1.0.9": 2660 | "integrity" "sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ==" 2661 | "resolved" "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.10.tgz" 2662 | "version" "1.0.10" 2663 | dependencies: 2664 | "escalade" "^3.1.1" 2665 | "picocolors" "^1.0.0" 2666 | 2667 | "uri-js@^4.2.2": 2668 | "integrity" "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==" 2669 | "resolved" "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz" 2670 | "version" "4.4.1" 2671 | dependencies: 2672 | "punycode" "^2.1.0" 2673 | 2674 | "url-parse@^1.5.9": 2675 | "integrity" "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==" 2676 | "resolved" "https://registry.npmjs.org/url-parse/-/url-parse-1.5.10.tgz" 2677 | "version" "1.5.10" 2678 | dependencies: 2679 | "querystringify" "^2.1.1" 2680 | "requires-port" "^1.0.0" 2681 | 2682 | "use-composed-ref@^1.3.0": 2683 | "integrity" "sha512-GLMG0Jc/jiKov/3Ulid1wbv3r54K9HlMW29IWcDFPEqFkSO2nS0MuefWgMJpeHQ9YJeXDL3ZUF+P3jdXlZX/cQ==" 2684 | "resolved" "https://registry.npmjs.org/use-composed-ref/-/use-composed-ref-1.3.0.tgz" 2685 | "version" "1.3.0" 2686 | 2687 | "use-isomorphic-layout-effect@^1.1.1": 2688 | "integrity" "sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA==" 2689 | "resolved" "https://registry.npmjs.org/use-isomorphic-layout-effect/-/use-isomorphic-layout-effect-1.1.2.tgz" 2690 | "version" "1.1.2" 2691 | 2692 | "use-latest@^1.2.1": 2693 | "integrity" "sha512-xA+AVm/Wlg3e2P/JiItTziwS7FK92LWrDB0p+hgXloIMuVCeJJ8v6f0eeHyPZaJrM+usM1FkFfbNCrJGs8A/zw==" 2694 | "resolved" "https://registry.npmjs.org/use-latest/-/use-latest-1.2.1.tgz" 2695 | "version" "1.2.1" 2696 | dependencies: 2697 | "use-isomorphic-layout-effect" "^1.1.1" 2698 | 2699 | "use-sync-external-store@^1.2.0": 2700 | "integrity" "sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==" 2701 | "resolved" "https://registry.npmjs.org/use-sync-external-store/-/use-sync-external-store-1.2.0.tgz" 2702 | "version" "1.2.0" 2703 | 2704 | "util-deprecate@^1.0.2": 2705 | "integrity" "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" 2706 | "resolved" "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz" 2707 | "version" "1.0.2" 2708 | 2709 | "uuid@^9.0.0": 2710 | "integrity" "sha512-MXcSTerfPa4uqyzStbRoTgt5XIe3x5+42+q1sDuy3R5MDk66URdLMOZe5aPX/SQd+kuYAh0FdP/pO28IkQyTeg==" 2711 | "resolved" "https://registry.npmjs.org/uuid/-/uuid-9.0.0.tgz" 2712 | "version" "9.0.0" 2713 | 2714 | "weak-map@^1.0.5": 2715 | "integrity" "sha512-lNR9aAefbGPpHO7AEnY0hCFjz1eTkWCXYvkTRrTHs9qv8zJp+SkVYpzfLIFXQQiG3tVvbNFQgVg2bQS8YGgxyw==" 2716 | "resolved" "https://registry.npmjs.org/weak-map/-/weak-map-1.0.8.tgz" 2717 | "version" "1.0.8" 2718 | 2719 | "which-boxed-primitive@^1.0.2": 2720 | "integrity" "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==" 2721 | "resolved" "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz" 2722 | "version" "1.0.2" 2723 | dependencies: 2724 | "is-bigint" "^1.0.1" 2725 | "is-boolean-object" "^1.1.0" 2726 | "is-number-object" "^1.0.4" 2727 | "is-string" "^1.0.5" 2728 | "is-symbol" "^1.0.3" 2729 | 2730 | "which@^2.0.1": 2731 | "integrity" "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==" 2732 | "resolved" "https://registry.npmjs.org/which/-/which-2.0.2.tgz" 2733 | "version" "2.0.2" 2734 | dependencies: 2735 | "isexe" "^2.0.0" 2736 | 2737 | "word-wrap@^1.2.3": 2738 | "integrity" "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==" 2739 | "resolved" "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz" 2740 | "version" "1.2.3" 2741 | 2742 | "wrappy@1": 2743 | "integrity" "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" 2744 | "resolved" "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz" 2745 | "version" "1.0.2" 2746 | 2747 | "xmlbuilder@^13.0.2": 2748 | "integrity" "sha512-Eux0i2QdDYKbdbA6AM6xE4m6ZTZr4G4xF9kahI2ukSEMCzwce2eX9WlTI5J3s+NU7hpasFsr8hWIONae7LluAQ==" 2749 | "resolved" "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-13.0.2.tgz" 2750 | "version" "13.0.2" 2751 | 2752 | "xtend@^4.0.2": 2753 | "integrity" "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==" 2754 | "resolved" "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz" 2755 | "version" "4.0.2" 2756 | 2757 | "yallist@^4.0.0": 2758 | "integrity" "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" 2759 | "resolved" "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz" 2760 | "version" "4.0.0" 2761 | 2762 | "yaml@^1.10.2": 2763 | "integrity" "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==" 2764 | "resolved" "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz" 2765 | "version" "1.10.2" 2766 | 2767 | "yocto-queue@^0.1.0": 2768 | "integrity" "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==" 2769 | "resolved" "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz" 2770 | "version" "0.1.0" 2771 | 2772 | "zod@^3.18.0": 2773 | "integrity" "sha512-At2YngeqktnHk6L9vf6Sdt7IGcRFziasf7JyQfKwxMd2rOWIUvURP6oLUTW6N0WKQ5bcIdI+IZ3+uGZCCcQcQg==" 2774 | "resolved" "https://registry.npmjs.org/zod/-/zod-3.20.1.tgz" 2775 | "version" "3.20.1" 2776 | --------------------------------------------------------------------------------