diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..17e578d --- /dev/null +++ b/.env.example @@ -0,0 +1,39 @@ +# View & likes tracking +DATABASE_URL="postgresql://clarence:@localhost:5432/theodorusclarence" +DIRECT_DATABASE_URL="postgresql://clarence:@localhost:5432/theodorusclarence" +IP_ADDRESS_SALT= + +# Dev.to Credentials for getting views +DEVTO_KEY= + +# Spotify Credentials +# used for /api/spotify widget +SPOTIFY_CLIENT_ID= +SPOTIFY_CLIENT_SECRET= +SPOTIFY_REFRESH_TOKEN= + +# Dev tools page hidden route +ADMIN_PASSWORD=admin + +# Revue Subscription (Unused) +REVUE_TOKEN= + +# Client .envs +# These envs are feature flagged in constants/env.ts. No need to fill them in if you won't use it +NEXT_PUBLIC_FEEDBACK_FISH_ID= +NEXT_PUBLIC_GISCUS_REPO= +NEXT_PUBLIC_GISCUS_REPO_ID= +NEXT_PUBLIC_BLOCK_DOMAIN_WHITELIST="theodorusclarence.com" +NEXT_PUBLIC_UMAMI_WEBSITE_ID= + +# Used for remote refresh in development +remoteRefreshPort="8080" + +# Feature flags +# NEXT_PUBLIC_FLAG_COMMENT="true" +# NEXT_PUBLIC_FLAG_CONTENT_META="true" +# NEXT_PUBLIC_FLAG_SPOTIFY="true" +# NEXT_PUBLIC_FLAG_NEWSLETTER="true" +# NEXT_PUBLIC_FLAG_SAY_HELLO="true" +# NEXT_PUBLIC_FLAG_FEEDBACK="true" +# NEXT_PUBLIC_META_BLOCK_DOMAIN="true" \ No newline at end of file diff --git a/.eslintrc.js b/.eslintrc.js new file mode 100644 index 0000000..16c2873 --- /dev/null +++ b/.eslintrc.js @@ -0,0 +1,84 @@ +module.exports = { + env: { + browser: true, + es2021: true, + node: true, + }, + plugins: ['@typescript-eslint', 'simple-import-sort', 'unused-imports'], + extends: [ + 'eslint:recommended', + 'next', + 'next/core-web-vitals', + 'plugin:@typescript-eslint/recommended', + 'plugin:@tanstack/eslint-plugin-query/recommended', + 'prettier', + ], + rules: { + 'no-unused-vars': 'off', + 'no-console': 'warn', + '@typescript-eslint/explicit-module-boundary-types': 'off', + 'react/no-unescaped-entities': 'off', + 'react/display-name': 'off', + 'react/no-unknown-property': ['error', { ignore: ['jsx'] }], + 'react/jsx-curly-brace-presence': [ + 'warn', + { props: 'never', children: 'never' }, + ], + '@typescript-eslint/no-var-requires': 'off', + + //#region //*=========== Unused Import =========== + '@typescript-eslint/no-unused-vars': 'off', + 'unused-imports/no-unused-imports': 'warn', + 'unused-imports/no-unused-vars': [ + 'warn', + { + vars: 'all', + varsIgnorePattern: '^_', + args: 'after-used', + argsIgnorePattern: '^_', + }, + ], + //#endregion //*======== Unused Import =========== + + //#region //*=========== Sort Import =========== + 'simple-import-sort/exports': 'warn', + 'simple-import-sort/imports': [ + 'warn', + { + groups: [ + // ext library & side effect imports + ['^@?\\w', '^\\u0000'], + // {s}css files + ['^.+\\.s?css$'], + // Lib and hooks + ['^@/lib', '^@/hooks'], + // static data + ['^@/data'], + // components + ['^@/components'], + // Other imports + ['^@/'], + // relative paths up until 3 level + [ + '^\\./?$', + '^\\.(?!/?$)', + '^\\.\\./?$', + '^\\.\\.(?!/?$)', + '^\\.\\./\\.\\./?$', + '^\\.\\./\\.\\.(?!/?$)', + '^\\.\\./\\.\\./\\.\\./?$', + '^\\.\\./\\.\\./\\.\\.(?!/?$)', + ], + ['^@/types'], + // other that didnt fit in + ['^'], + ], + }, + ], + //#endregion //*======== Sort Import =========== + }, + globals: { + React: true, + JSX: true, + }, +}; diff --git a/.github/issue-branch.yml b/.github/issue-branch.yml new file mode 100644 index 0000000..1626600 --- /dev/null +++ b/.github/issue-branch.yml @@ -0,0 +1,9 @@ +# https://github.com/robvanderleek/create-issue-branch#option-2-configure-github-action + +# ex: i4-lower_camel_upper +branchName: 'i${issue.number}-${issue.title,}' +branches: + - label: epic + skip: true + - label: debt + skip: true diff --git a/.github/unused/cypress.yml b/.github/unused/cypress.yml new file mode 100644 index 0000000..6e3b26b --- /dev/null +++ b/.github/unused/cypress.yml @@ -0,0 +1,35 @@ +name: Cypress End to End +# https://docs.github.com/en/actions/reference/events-that-trigger-workflows +on: [deployment_status] + +concurrency: + group: ${{ github.job }}-${{ github.ref }} + cancel-in-progress: true + +jobs: + cypress-run: + if: ${{ github.event.deployment_status.state == 'success' }} + runs-on: ubuntu-latest + steps: + - name: Print URL 🖨 + run: echo Testing URL ${{ github.event.deployment_status.target_url }} + + - name: Print GitHub env variables 🖨 + run: npx @bahmutov/print-env GITHUB + + - name: ⬇️ Checkout repo + uses: actions/checkout@v2 + # Install NPM dependencies, cache them correctly + # and run all Cypress tests + - name: Cypress run + uses: cypress-io/github-action@v5 + with: + record: true + spec: | + cypress/e2e/ta + env: + CYPRESS_BASE_URL: ${{ github.event.deployment_status.target_url }} + CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }} +# +# Required Config +# Add CYPRESS_RECORD_KEY to github secrets diff --git a/.github/workflows/create-branch.yml b/.github/workflows/create-branch.yml new file mode 100644 index 0000000..b8d5195 --- /dev/null +++ b/.github/workflows/create-branch.yml @@ -0,0 +1,14 @@ +name: Create Branch from Issue + +on: + issues: + types: [assigned] + +jobs: + create_issue_branch_job: + runs-on: ubuntu-latest + steps: + - name: Create Issue Branch + uses: robvanderleek/create-issue-branch@main + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/issue-autolink.yml b/.github/workflows/issue-autolink.yml new file mode 100644 index 0000000..dac81ed --- /dev/null +++ b/.github/workflows/issue-autolink.yml @@ -0,0 +1,14 @@ +name: 'Issue Autolink' +on: + pull_request: + types: [opened] + +jobs: + issue-links: + runs-on: ubuntu-latest + steps: + - uses: tkt-actions/add-issue-links@v1.6.0 + with: + repo-token: '${{ secrets.GITHUB_TOKEN }}' + branch-prefix: 'i' + resolve: 'true' diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml new file mode 100644 index 0000000..85a7a8a --- /dev/null +++ b/.github/workflows/lint.yml @@ -0,0 +1,41 @@ +name: Code Check +on: + push: + branches: + - main + pull_request: {} + +concurrency: + group: ${{ github.job }}-${{ github.ref }} + cancel-in-progress: true + +jobs: + lint: + name: ⬣ ESLint, ʦ TypeScript, and 💅 Prettier + runs-on: ubuntu-latest + steps: + - name: ⬇️ Checkout repo + uses: actions/checkout@v2 + + - name: 🤌 Setup pnpm + uses: pnpm/action-setup@v2 + with: + version: 8 + + - name: ⎔ Setup node + uses: actions/setup-node@v3 + with: + node-version: 20 + cache: 'pnpm' + + - name: 📥 Download deps + run: pnpm install --frozen-lockfile + + - name: 🔬 Lint + run: pnpm run lint:strict + + - name: 🔎 Type check + run: pnpm run typecheck + + - name: 💅 Prettier check + run: pnpm run format:check diff --git a/.github/workflows/purge-cache.yml b/.github/workflows/purge-cache.yml new file mode 100644 index 0000000..197d68a --- /dev/null +++ b/.github/workflows/purge-cache.yml @@ -0,0 +1,17 @@ +name: Purge Cache +on: [deployment_status] + +concurrency: + group: ${{ github.job }}-${{ github.ref }} + cancel-in-progress: true + +jobs: + purge-everything: + if: ${{ github.event.deployment_status.state == 'success' && github.event.deployment_status.environment == 'Production' }} + runs-on: ubuntu-latest + steps: + - name: Purge cache + uses: jakejarvis/cloudflare-purge-action@master + env: + CLOUDFLARE_ZONE: ${{ secrets.CLOUDFLARE_ZONE }} + CLOUDFLARE_TOKEN: ${{ secrets.CLOUDFLARE_TOKEN }} diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml new file mode 100644 index 0000000..a920695 --- /dev/null +++ b/.github/workflows/release-please.yml @@ -0,0 +1,13 @@ +name: release-please +on: + push: + branches: + - main +jobs: + release-please: + runs-on: ubuntu-latest + steps: + - uses: google-github-actions/release-please-action@v3 + with: + release-type: node + package-name: release-please-action diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..bec4b09 --- /dev/null +++ b/.gitignore @@ -0,0 +1,49 @@ +# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. + +# dependencies +/node_modules +/.pnp +.pnp.js + +# testing +/coverage + +# next.js +/.next/ +/out/ + +# production +/build + +# misc +.DS_Store +*.pem + +# debug +npm-debug.log* +yarn-debug.log* +yarn-error.log* + +# local env files +.env +.env.local +.env.development.local +.env.test.local +.env.production.local + +# vercel +.vercel + +# next-sitemap +robots.txt +sitemap.xml + +# cypress +cypress/videos +cypress/screenshots + +# rss +rss.xml + +# scripts +scripts/out diff --git a/.husky/commit-msg b/.husky/commit-msg new file mode 100755 index 0000000..0bd658f --- /dev/null +++ b/.husky/commit-msg @@ -0,0 +1,4 @@ +#!/bin/sh +. "$(dirname "$0")/_/husky.sh" + +npx --no-install commitlint --edit "$1" diff --git a/.husky/post-merge b/.husky/post-merge new file mode 100755 index 0000000..1fd4a5b --- /dev/null +++ b/.husky/post-merge @@ -0,0 +1,4 @@ +#!/bin/sh +. "$(dirname "$0")/_/husky.sh" + +pnpm install diff --git a/.husky/pre-commit b/.husky/pre-commit new file mode 100755 index 0000000..c37466e --- /dev/null +++ b/.husky/pre-commit @@ -0,0 +1,4 @@ +#!/bin/sh +. "$(dirname "$0")/_/husky.sh" + +npx lint-staged \ No newline at end of file diff --git a/.prettierignore b/.prettierignore new file mode 100644 index 0000000..f7fa6ef --- /dev/null +++ b/.prettierignore @@ -0,0 +1,40 @@ +# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. + +# dependencies +/node_modules +/.pnp +.pnp.js + +# testing +/coverage + +# next.js +.next +/.next/ +/out/ + +# production +/build + +# misc +.DS_Store +*.pem + +# debug +npm-debug.log* +yarn-debug.log* +yarn-error.log* + +# local env files +.env.local +.env.development.local +.env.test.local +.env.production.local + +# vercel +.vercel + +# changelog +CHANGELOG.md + +pnpm-lock.yaml \ No newline at end of file diff --git a/.prettierrc.js b/.prettierrc.js new file mode 100644 index 0000000..5c34464 --- /dev/null +++ b/.prettierrc.js @@ -0,0 +1,7 @@ +module.exports = { + arrowParens: 'always', + singleQuote: true, + jsxSingleQuote: true, + tabWidth: 2, + semi: true, +}; diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..f2381e3 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,68 @@ +# Contributing 👨‍💻 + +Thank you for your interest to contribute! + +I would love your help to improve this project. Here are some tips and guidelines to help you along the way. + +## Issues 🐞 + +If you come across a bug or something that can be improved, please [open an issue](https://github.com/theodorusclarence/theodorusclarence.com/issues). It would be helpful if you provide some description or screen recording! + +For improvements, before you start working on it, please discuss it first so I can ensure to merge your beautiful work into the project. I'll do my best to answer quickly and discuss the upcoming ideas 🙌 + +## Pull Requests 🔃 + +You can directly open a pull request for a bug fix or content typos. + +## Project Setup 🔧 + +If you want to set up the project locally, feel free to follow these steps: + +First, fork the repo, then: + +```sh +git clone +cd ./theodorusclarence.com + +# Copy the .env.example to .env.local +# most features are turned off by default +# so you won't need to add any envs +cp .env.example .env.local + +# Install the dependencies +pnpm + +# Run the development server +pnpm dev +``` + +You can now open up `http://localhost:3000` and start writing code! + +## Feature Flag + +Major features are feature flagged in [constants/env.ts](https://github.com/theodorusclarence/theodorusclarence.com/blob/main/src/constants/env.ts) + +For example: + +```ts +/** + * Show command service on contents + * @see Comment.tsx + */ +export const commentFlag = isProd; +``` + +you can change the `isProd` into `true` to turn the feature on, but expect some error because you don't have any access to the environment variable. I'm not planning to mock them for any time soon, so you can simply leave an issue for these specific features. + +## Format 💅 + +When writing your code, please try to follow the existing code style. + +Your code will be automatically linted and formatted before each commit. However, if you want to manually lint and format, use the provided pnpm scripts. + +```sh +pnpm lint:fix +pnpm format +``` + +You also have to follow [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/) for the commit message. diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..f288702 --- /dev/null +++ b/LICENSE @@ -0,0 +1,674 @@ + GNU GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU General Public License is a free, copyleft license for +software and other kinds of works. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +the GNU General Public License is intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. We, the Free Software Foundation, use the +GNU General Public License for most of our software; it applies also to +any other work released this way by its authors. You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + To protect your rights, we need to prevent others from denying you +these rights or asking you to surrender the rights. Therefore, you have +certain responsibilities if you distribute copies of the software, or if +you modify it: responsibilities to respect the freedom of others. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must pass on to the recipients the same +freedoms that you received. You must make sure that they, too, receive +or can get the source code. And you must show them these terms so they +know their rights. + + Developers that use the GNU GPL protect your rights with two steps: +(1) assert copyright on the software, and (2) offer you this License +giving you legal permission to copy, distribute and/or modify it. + + For the developers' and authors' protection, the GPL clearly explains +that there is no warranty for this free software. For both users' and +authors' sake, the GPL requires that modified versions be marked as +changed, so that their problems will not be attributed erroneously to +authors of previous versions. + + Some devices are designed to deny users access to install or run +modified versions of the software inside them, although the manufacturer +can do so. This is fundamentally incompatible with the aim of +protecting users' freedom to change the software. The systematic +pattern of such abuse occurs in the area of products for individuals to +use, which is precisely where it is most unacceptable. Therefore, we +have designed this version of the GPL to prohibit the practice for those +products. If such problems arise substantially in other domains, we +stand ready to extend this provision to those domains in future versions +of the GPL, as needed to protect the freedom of users. + + Finally, every program is threatened constantly by software patents. +States should not allow patents to restrict development and use of +software on general-purpose computers, but in those that do, we wish to +avoid the special danger that patents applied to a free program could +make it effectively proprietary. To prevent this, the GPL assures that +patents cannot be used to render the program non-free. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU Affero General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the special requirements of the GNU Affero General Public License, +section 13, concerning interaction through a network will apply to the +combination as such. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + + If the program does terminal interaction, make it output a short +notice like this when it starts in an interactive mode: + + Copyright (C) + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, your program's commands +might be different; for a GUI interface, you would use an "about box". + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU GPL, see +. + + The GNU General Public License does not permit incorporating your program +into proprietary programs. If your program is a subroutine library, you +may consider it more useful to permit linking proprietary applications with +the library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. But first, please read +. diff --git a/README.md b/README.md new file mode 100644 index 0000000..da62585 --- /dev/null +++ b/README.md @@ -0,0 +1,5 @@ +
+

BJUT-SWIFT

+

Official Website

+
+ diff --git a/bun.lockb b/bun.lockb new file mode 100755 index 0000000..6be7c90 Binary files /dev/null and b/bun.lockb differ diff --git a/commitlint.config.js b/commitlint.config.js new file mode 100644 index 0000000..31f3886 --- /dev/null +++ b/commitlint.config.js @@ -0,0 +1,23 @@ +module.exports = { + extends: ['@commitlint/config-conventional'], + rules: { + 'scope-enum': [2, 'always', ['blog', 'proj', 'lib', 'package']], + 'type-enum': [ + 2, + 'always', + [ + 'feat', + 'fix', + 'docs', + 'chore', + 'style', + 'refactor', + 'ci', + 'test', + 'perf', + 'revert', + 'vercel', + ], + ], + }, +}; diff --git a/cypress.json b/cypress.json new file mode 100644 index 0000000..b2066bd --- /dev/null +++ b/cypress.json @@ -0,0 +1,7 @@ +{ + "baseUrl": "https://theodorusclarence.com", + "projectId": "zk1sui", + "retries": { + "runMode": 2 + } +} diff --git a/cypress/fixtures/example.json b/cypress/fixtures/example.json new file mode 100644 index 0000000..02e4254 --- /dev/null +++ b/cypress/fixtures/example.json @@ -0,0 +1,5 @@ +{ + "name": "Using fixtures to represent data", + "email": "hello@cypress.io", + "body": "Fixtures are a great way to mock data for responses to routes" +} diff --git a/cypress/integration/pages/render.spec.ts b/cypress/integration/pages/render.spec.ts new file mode 100644 index 0000000..2c9f9cd --- /dev/null +++ b/cypress/integration/pages/render.spec.ts @@ -0,0 +1,49 @@ +import { beforeEach, cy, describe, it } from 'local-cypress'; + +describe('All Page', () => { + beforeEach(() => { + cy.window().then((win) => + win.localStorage.setItem('umami.disabled', 'true') + ); + }); + + it('should display index page', () => { + cy.visit('/'); + cy.get('h1').should('contain', 'You can call me Clarence'); + }); + + it('should display about page', () => { + cy.visit('/about'); + cy.get('h1').should('contain', 'Theodorus Clarence'); + }); + + it('should display blog page', () => { + cy.visit('/blog'); + cy.get('h1').should('contain', 'Blog'); + }); + + it('should display library page', () => { + cy.visit('/library'); + cy.get('h1').should('contain', 'Library'); + }); + + it('should display projects page', () => { + cy.visit('/projects'); + cy.get('h1').should('contain', 'Projects'); + }); + + it('should display subscribe page', () => { + cy.visit('/subscribe'); + cy.get('h1').should('contain', 'Subscribe to theodorusclarence.com'); + }); + + it('should display trf bca page', () => { + cy.visit('/trf/bca'); + cy.get('h1').should('contain', 'Rekening BCA'); + }); + + it('should display trf mandiri page', () => { + cy.visit('/trf/mandiri'); + cy.get('h1').should('contain', 'Rekening Mandiri'); + }); +}); diff --git a/cypress/plugins/index.js b/cypress/plugins/index.js new file mode 100644 index 0000000..f237455 --- /dev/null +++ b/cypress/plugins/index.js @@ -0,0 +1,22 @@ +/// +// *********************************************************** +// This example plugins/index.js can be used to load plugins +// +// You can change the location of this file or turn off loading +// the plugins file with the 'pluginsFile' configuration option. +// +// You can read more here: +// https://on.cypress.io/plugins-guide +// *********************************************************** + +// This function is called when a project is opened or re-opened (e.g. due to +// the project's config changing) + +/** + * @type {Cypress.PluginConfig} + */ +// eslint-disable-next-line @typescript-eslint/no-unused-vars +module.exports = (on, config) => { + // `on` is used to hook into various events Cypress emits + // `config` is the resolved Cypress config +}; diff --git a/cypress/support/commands.js b/cypress/support/commands.js new file mode 100644 index 0000000..119ab03 --- /dev/null +++ b/cypress/support/commands.js @@ -0,0 +1,25 @@ +// *********************************************** +// This example commands.js shows you how to +// create various custom commands and overwrite +// existing commands. +// +// For more comprehensive examples of custom +// commands please read more here: +// https://on.cypress.io/custom-commands +// *********************************************** +// +// +// -- This is a parent command -- +// Cypress.Commands.add('login', (email, password) => { ... }) +// +// +// -- This is a child command -- +// Cypress.Commands.add('drag', { prevSubject: 'element'}, (subject, options) => { ... }) +// +// +// -- This is a dual command -- +// Cypress.Commands.add('dismiss', { prevSubject: 'optional'}, (subject, options) => { ... }) +// +// +// -- This will overwrite an existing command -- +// Cypress.Commands.overwrite('visit', (originalFn, url, options) => { ... }) diff --git a/cypress/support/index.js b/cypress/support/index.js new file mode 100644 index 0000000..37a498f --- /dev/null +++ b/cypress/support/index.js @@ -0,0 +1,20 @@ +// *********************************************************** +// This example support/index.js is processed and +// loaded automatically before your test files. +// +// This is a great place to put global configuration and +// behavior that modifies Cypress. +// +// You can change the location of this file or turn off +// automatically serving support files with the +// 'supportFile' configuration option. +// +// You can read more here: +// https://on.cypress.io/configuration +// *********************************************************** + +// Import commands.js using ES2015 syntax: +import './commands'; + +// Alternatively you can use CommonJS syntax: +// require('./commands') diff --git a/next-env.d.ts b/next-env.d.ts new file mode 100644 index 0000000..4f11a03 --- /dev/null +++ b/next-env.d.ts @@ -0,0 +1,5 @@ +/// +/// + +// NOTE: This file should not be edited +// see https://nextjs.org/docs/basic-features/typescript for more information. diff --git a/next-sitemap.js b/next-sitemap.js new file mode 100644 index 0000000..b37e0c7 --- /dev/null +++ b/next-sitemap.js @@ -0,0 +1,7 @@ +module.exports = { + siteUrl: 'https://theodorusclarence.com/', + generateRobotsTxt: true, + robotsTxtOptions: { + policies: [{ userAgent: '*', allow: '/' }], + }, +}; diff --git a/next.config.js b/next.config.js new file mode 100644 index 0000000..e4b83b0 --- /dev/null +++ b/next.config.js @@ -0,0 +1,43 @@ +const path = require('path'); + +const withRemoteRefresh = require('next-remote-refresh')({ + paths: [path.resolve(__dirname, 'src', 'contents')], +}); + +/** + * @type {import('next').NextConfig} + */ +const nextConfig = { + eslint: { + dirs: ['src'], + }, + images: { + domains: [ + 'res.cloudinary.com', + + // Spotify Album + 'i.scdn.co', + ], + }, + async redirects() { + return [ + { + source: '/library/absolute-import', + destination: '/shorts/react/absolute-import', + permanent: true, + }, + { + source: '/library', + destination: '/shorts', + permanent: true, + }, + { + source: '/library/:slug', + destination: '/shorts/:slug', + permanent: true, + }, + ]; + }, +}; + +module.exports = withRemoteRefresh(nextConfig); diff --git a/package.json b/package.json new file mode 100644 index 0000000..1936085 --- /dev/null +++ b/package.json @@ -0,0 +1,107 @@ +{ + "name": "swifts-nest", + "version": "3.1.0", + "private": true, + "scripts": { + "dev": "next dev", + "build": "next build", + "start": "next start", + "lint": "next lint", + "lint:fix": "eslint src --fix && pnpm format", + "lint:strict": "eslint --max-warnings=0 src", + "typecheck": "tsc --noEmit --incremental false", + "format": "prettier -w .", + "format:check": "prettier -c .", + "cy": "cypress open", + "cy:headless": "cypress run", + "postbuild": "next-sitemap", + "mdgen": "node scripts/cross-post.js", + "postinstall": "prisma generate", + "prepare": "husky install" + }, + "dependencies": { + "@feedback-fish/react": "^1.2.2", + "@giscus/react": "^2.3.0", + "@headlessui/react": "^1.7.17", + "@prisma/client": "^4.16.2", + "@tanstack/react-query": "^5.18.1", + "@tanstack/react-query-devtools": "^5.18.1", + "@tanstack/react-table": "^8.10.7", + "axios": "^0.24.0", + "cloudinary-build-url": "^0.2.4", + "clsx": "^1.2.1", + "crypto": "^1.0.1", + "date-fns": "^2.30.0", + "lodash": "^4.17.21", + "next": "^12.3.4", + "next-themes": "^0.2.1", + "nprogress": "^0.2.0", + "query-string": "^7.1.3", + "react": "^18.2.0", + "react-dom": "^18.2.0", + "react-hook-form": "^7.47.0", + "react-icons": "^4.11.0", + "react-image-lightbox": "^5.1.4", + "react-intersection-observer": "^8.34.0", + "react-lite-youtube-embed": "^2.3.52", + "react-tippy": "^1.4.0", + "react-twitter-widgets": "^1.11.0", + "rehype-pretty-code": "^0.10.1", + "shiki": "^0.14.5", + "tailwind-merge": "^1.14.0", + "zod": "^3.22.4" + }, + "devDependencies": { + "@commitlint/cli": "^13.2.1", + "@commitlint/config-conventional": "^13.2.0", + "@tailwindcss/forms": "^0.5.6", + "@tailwindcss/typography": "^0.5.10", + "@tanstack/eslint-plugin-query": "^5.18.1", + "@types/lodash": "^4.14.200", + "@types/node": "^18.18.8", + "@types/nprogress": "^0.2.2", + "@types/react": "^18.2.28", + "@types/umami": "^0.1.4", + "@typescript-eslint/eslint-plugin": "^4.33.0", + "@typescript-eslint/parser": "^4.33.0", + "autoprefixer": "^10.4.16", + "cypress": "^9.6.1", + "esbuild": "^0.17.19", + "eslint": "^7.32.0", + "eslint-config-next": "^11.1.4", + "eslint-config-prettier": "^8.10.0", + "eslint-plugin-simple-import-sort": "^7.0.0", + "eslint-plugin-unused-imports": "^2.0.0", + "gray-matter": "^4.0.3", + "husky": "^7.0.4", + "lint-staged": "^11.2.6", + "local-cypress": "^1.2.5", + "mdx-bundler": "^9.2.1", + "next-remote-refresh": "^0.10.0", + "next-remote-watch": "^1.0.0", + "next-sitemap": "^1.9.12", + "postcss": "^8.4.31", + "prettier": "^2.8.8", + "prettier-plugin-tailwindcss": "^0.1.13", + "prisma": "^4.16.2", + "reading-time": "^1.5.0", + "rehype-autolink-headings": "^6.1.1", + "rehype-slug": "^5.1.0", + "remark-gfm": "^3.0.1", + "tailwindcss": "^3.3.5", + "ts-node": "^10.9.1", + "typescript": "^4.9.5" + }, + "lint-staged": { + "src/**/*.{js,jsx,ts,tsx}": [ + "eslint --max-warnings=0", + "prettier -w" + ], + "src/**/*.{json,css,scss,md,mdx}": [ + "prettier -w" + ] + }, + "prisma": { + "seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts" + } +} diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml new file mode 100644 index 0000000..69a9557 --- /dev/null +++ b/pnpm-lock.yaml @@ -0,0 +1,7393 @@ +lockfileVersion: '6.0' + +settings: + autoInstallPeers: true + excludeLinksFromLockfile: false + +dependencies: + '@feedback-fish/react': + specifier: ^1.2.2 + version: 1.2.2(react@18.2.0) + '@giscus/react': + specifier: ^2.3.0 + version: 2.4.0(react-dom@18.2.0)(react@18.2.0) + '@headlessui/react': + specifier: ^1.7.17 + version: 1.7.17(react-dom@18.2.0)(react@18.2.0) + '@prisma/client': + specifier: ^4.16.2 + version: 4.16.2(prisma@4.16.2) + '@tanstack/react-query': + specifier: ^5.18.1 + version: 5.18.1(react@18.2.0) + '@tanstack/react-query-devtools': + specifier: ^5.18.1 + version: 5.18.1(@tanstack/react-query@5.18.1)(react@18.2.0) + '@tanstack/react-table': + specifier: ^8.10.7 + version: 8.11.3(react-dom@18.2.0)(react@18.2.0) + axios: + specifier: ^0.24.0 + version: 0.24.0 + cloudinary-build-url: + specifier: ^0.2.4 + version: 0.2.4 + clsx: + specifier: ^1.2.1 + version: 1.2.1 + crypto: + specifier: ^1.0.1 + version: 1.0.1 + date-fns: + specifier: ^2.30.0 + version: 2.30.0 + lodash: + specifier: ^4.17.21 + version: 4.17.21 + next: + specifier: ^12.3.4 + version: 12.3.4(react-dom@18.2.0)(react@18.2.0) + next-themes: + specifier: ^0.2.1 + version: 0.2.1(next@12.3.4)(react-dom@18.2.0)(react@18.2.0) + nprogress: + specifier: ^0.2.0 + version: 0.2.0 + query-string: + specifier: ^7.1.3 + version: 7.1.3 + react: + specifier: ^18.2.0 + version: 18.2.0 + react-dom: + specifier: ^18.2.0 + version: 18.2.0(react@18.2.0) + react-hook-form: + specifier: ^7.47.0 + version: 7.49.2(react@18.2.0) + react-icons: + specifier: ^4.11.0 + version: 4.12.0(react@18.2.0) + react-image-lightbox: + specifier: ^5.1.4 + version: 5.1.4(react-dom@18.2.0)(react@18.2.0) + react-intersection-observer: + specifier: ^8.34.0 + version: 8.34.0(react@18.2.0) + react-lite-youtube-embed: + specifier: ^2.3.52 + version: 2.4.0(react-dom@18.2.0)(react@18.2.0) + react-tippy: + specifier: ^1.4.0 + version: 1.4.0 + react-twitter-widgets: + specifier: ^1.11.0 + version: 1.11.0(react@18.2.0) + rehype-pretty-code: + specifier: ^0.10.1 + version: 0.10.2(shiki@0.14.7) + shiki: + specifier: ^0.14.5 + version: 0.14.7 + tailwind-merge: + specifier: ^1.14.0 + version: 1.14.0 + zod: + specifier: ^3.22.4 + version: 3.22.4 + +devDependencies: + '@commitlint/cli': + specifier: ^13.2.1 + version: 13.2.1 + '@commitlint/config-conventional': + specifier: ^13.2.0 + version: 13.2.0 + '@tailwindcss/forms': + specifier: ^0.5.6 + version: 0.5.7(tailwindcss@3.4.1) + '@tailwindcss/typography': + specifier: ^0.5.10 + version: 0.5.10(tailwindcss@3.4.1) + '@tanstack/eslint-plugin-query': + specifier: ^5.18.1 + version: 5.18.1(eslint@7.32.0)(typescript@4.9.5) + '@types/lodash': + specifier: ^4.14.200 + version: 4.14.202 + '@types/node': + specifier: ^18.18.8 + version: 18.19.4 + '@types/nprogress': + specifier: ^0.2.2 + version: 0.2.3 + '@types/react': + specifier: ^18.2.28 + version: 18.2.47 + '@types/umami': + specifier: ^0.1.4 + version: 0.1.5 + '@typescript-eslint/eslint-plugin': + specifier: ^4.33.0 + version: 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + '@typescript-eslint/parser': + specifier: ^4.33.0 + version: 4.33.0(eslint@7.32.0)(typescript@4.9.5) + autoprefixer: + specifier: ^10.4.16 + version: 10.4.16(postcss@8.4.33) + cypress: + specifier: ^9.6.1 + version: 9.7.0 + esbuild: + specifier: ^0.17.19 + version: 0.17.19 + eslint: + specifier: ^7.32.0 + version: 7.32.0 + eslint-config-next: + specifier: ^11.1.4 + version: 11.1.4(eslint@7.32.0)(next@12.3.4)(typescript@4.9.5) + eslint-config-prettier: + specifier: ^8.10.0 + version: 8.10.0(eslint@7.32.0) + eslint-plugin-simple-import-sort: + specifier: ^7.0.0 + version: 7.0.0(eslint@7.32.0) + eslint-plugin-unused-imports: + specifier: ^2.0.0 + version: 2.0.0(@typescript-eslint/eslint-plugin@4.33.0)(eslint@7.32.0) + gray-matter: + specifier: ^4.0.3 + version: 4.0.3 + husky: + specifier: ^7.0.4 + version: 7.0.4 + lint-staged: + specifier: ^11.2.6 + version: 11.2.6 + local-cypress: + specifier: ^1.2.5 + version: 1.2.6 + mdx-bundler: + specifier: ^9.2.1 + version: 9.2.1(esbuild@0.17.19) + next-remote-refresh: + specifier: ^0.10.0 + version: 0.10.0(next@12.3.4)(react@18.2.0) + next-remote-watch: + specifier: ^1.0.0 + version: 1.0.0 + next-sitemap: + specifier: ^1.9.12 + version: 1.9.12(next@12.3.4) + postcss: + specifier: ^8.4.31 + version: 8.4.33 + prettier: + specifier: ^2.8.8 + version: 2.8.8 + prettier-plugin-tailwindcss: + specifier: ^0.1.13 + version: 0.1.13(prettier@2.8.8) + prisma: + specifier: ^4.16.2 + version: 4.16.2 + reading-time: + specifier: ^1.5.0 + version: 1.5.0 + rehype-autolink-headings: + specifier: ^6.1.1 + version: 6.1.1 + rehype-slug: + specifier: ^5.1.0 + version: 5.1.0 + remark-gfm: + specifier: ^3.0.1 + version: 3.0.1 + tailwindcss: + specifier: ^3.3.5 + version: 3.4.1(ts-node@10.9.2) + ts-node: + specifier: ^10.9.1 + version: 10.9.2(@types/node@18.19.4)(typescript@4.9.5) + typescript: + specifier: ^4.9.5 + version: 4.9.5 + +packages: + + /@aashutoshrathi/word-wrap@1.2.6: + resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==} + engines: {node: '>=0.10.0'} + dev: true + + /@alloc/quick-lru@5.2.0: + resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==} + engines: {node: '>=10'} + dev: true + + /@babel/code-frame@7.12.11: + resolution: {integrity: sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==} + dependencies: + '@babel/highlight': 7.23.4 + dev: true + + /@babel/code-frame@7.23.5: + resolution: {integrity: sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/highlight': 7.23.4 + chalk: 2.4.2 + dev: true + + /@babel/helper-validator-identifier@7.22.20: + resolution: {integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==} + engines: {node: '>=6.9.0'} + dev: true + + /@babel/highlight@7.23.4: + resolution: {integrity: sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-validator-identifier': 7.22.20 + chalk: 2.4.2 + js-tokens: 4.0.0 + dev: true + + /@babel/runtime@7.23.7: + resolution: {integrity: sha512-w06OXVOFso7LcbzMiDGt+3X7Rh7Ho8MmgPoWU3rarH+8upf+wSU/grlGbWzQyr3DkdN6ZeuMFjpdwW0Q+HxobA==} + engines: {node: '>=6.9.0'} + dependencies: + regenerator-runtime: 0.14.1 + + /@cld-apis/utils@0.2.0: + resolution: {integrity: sha512-WBhOZ+wz93G/vsqkfmIBsPYf7FH4i5ZKN3QYlUfg9Ni5A2E09CCfsNG6RUuGeLjDPaFXFbta1rkNf3+2hFlavQ==} + dependencies: + snake-case: 3.0.4 + dev: false + + /@colors/colors@1.5.0: + resolution: {integrity: sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==} + engines: {node: '>=0.1.90'} + requiresBuild: true + dev: true + optional: true + + /@commitlint/cli@13.2.1: + resolution: {integrity: sha512-JGzYk2ay5JkRS5w+FLQzr0u/Kih52ds4HPpa3vnwVOQN8Q+S1VYr8Nk/6kRm6uNYsAcC1nejtuDxRdLcLh/9TA==} + engines: {node: '>=v12'} + hasBin: true + dependencies: + '@commitlint/format': 13.2.0 + '@commitlint/lint': 13.2.0 + '@commitlint/load': 13.2.1 + '@commitlint/read': 13.2.0 + '@commitlint/types': 13.2.0 + lodash: 4.17.21 + resolve-from: 5.0.0 + resolve-global: 1.0.0 + yargs: 17.7.2 + dev: true + + /@commitlint/config-conventional@13.2.0: + resolution: {integrity: sha512-7u7DdOiF+3qSdDlbQGfpvCH8DCQdLFvnI2+VucYmmV7E92iD6t9PBj+UjIoSQCaMAzYp27Vkall78AkcXBh6Xw==} + engines: {node: '>=v12'} + dependencies: + conventional-changelog-conventionalcommits: 4.6.3 + dev: true + + /@commitlint/ensure@13.2.0: + resolution: {integrity: sha512-rqhT62RehdLTRBu8OrPHnRCCd/7RmHEE4TiTlT4BLlr5ls5jlZhecOQWJ8np872uCNirrJ5NFjnjYYdbkNoW9Q==} + engines: {node: '>=v12'} + dependencies: + '@commitlint/types': 13.2.0 + lodash: 4.17.21 + dev: true + + /@commitlint/execute-rule@13.2.0: + resolution: {integrity: sha512-6nPwpN0hwTYmsH3WM4hCdN+NrMopgRIuQ0aqZa+jnwMoS/g6ljliQNYfL+m5WO306BaIu1W3yYpbW5aI8gEr0g==} + engines: {node: '>=v12'} + dev: true + + /@commitlint/format@13.2.0: + resolution: {integrity: sha512-yNBQJe6YFhM1pJAta4LvzQxccSKof6axJH7ALYjuhQqfT8AKlad7Y/2SuJ07ioyreNIqwOTuF2UfU8yJ7JzEIQ==} + engines: {node: '>=v12'} + dependencies: + '@commitlint/types': 13.2.0 + chalk: 4.1.2 + dev: true + + /@commitlint/is-ignored@13.2.0: + resolution: {integrity: sha512-onnx4WctHFPPkHGFFAZBIWRSaNwuhixIIfbwPhcZ6IewwQX5n4jpjwM1GokA7vhlOnQ57W7AavbKUGjzIVtnRQ==} + engines: {node: '>=v12'} + dependencies: + '@commitlint/types': 13.2.0 + semver: 7.3.5 + dev: true + + /@commitlint/lint@13.2.0: + resolution: {integrity: sha512-5XYkh0e9ehHjA7BxAHFpjPgr1qqbFY8OFG1wpBiAhycbYBtJnQmculA2wcwqTM40YCUBqEvWFdq86jTG8fbkMw==} + engines: {node: '>=v12'} + dependencies: + '@commitlint/is-ignored': 13.2.0 + '@commitlint/parse': 13.2.0 + '@commitlint/rules': 13.2.0 + '@commitlint/types': 13.2.0 + dev: true + + /@commitlint/load@13.2.1: + resolution: {integrity: sha512-qlaJkj0hfa9gtWRfCfbgFBTK3GYQRmjZhba4l9mUu4wV9lEZ4ICFlrLtd/8kaLXf/8xbrPhkAPkVFOAqM0YwUQ==} + engines: {node: '>=v12'} + dependencies: + '@commitlint/execute-rule': 13.2.0 + '@commitlint/resolve-extends': 13.2.0 + '@commitlint/types': 13.2.0 + '@endemolshinegroup/cosmiconfig-typescript-loader': 3.0.2(cosmiconfig@7.1.0)(typescript@4.9.5) + chalk: 4.1.2 + cosmiconfig: 7.1.0 + lodash: 4.17.21 + resolve-from: 5.0.0 + typescript: 4.9.5 + dev: true + + /@commitlint/message@13.2.0: + resolution: {integrity: sha512-+LlErJj2F2AC86xJb33VJIvSt25xqSF1I0b0GApSgoUtQBeJhx4SxIj1BLvGcLVmbRmbgTzAFq/QylwLId7EhA==} + engines: {node: '>=v12'} + dev: true + + /@commitlint/parse@13.2.0: + resolution: {integrity: sha512-AtfKSQJQADbDhW+kuC5PxOyBANsYCuuJlZRZ2PYslOz2rvWwZ93zt+nKjM4g7C9ETbz0uq4r7/EoOsTJ2nJqfQ==} + engines: {node: '>=v12'} + dependencies: + '@commitlint/types': 13.2.0 + conventional-changelog-angular: 5.0.13 + conventional-commits-parser: 3.2.4 + dev: true + + /@commitlint/read@13.2.0: + resolution: {integrity: sha512-7db5e1Bn3re6hQN0SqygTMF/QX6/MQauoJn3wJiUHE93lvwO6aFQxT3qAlYeyBPwfWsmDz/uSH454jtrSsv3Uw==} + engines: {node: '>=v12'} + dependencies: + '@commitlint/top-level': 13.2.0 + '@commitlint/types': 13.2.0 + fs-extra: 10.1.0 + git-raw-commits: 2.0.11 + dev: true + + /@commitlint/resolve-extends@13.2.0: + resolution: {integrity: sha512-HLCMkqMKtvl1yYLZ1Pm0UpFvd0kYjsm1meLOGZ7VkOd9G/XX+Fr1S2G5AT2zeiDw7WUVYK8lGVMNa319bnV+aw==} + engines: {node: '>=v12'} + dependencies: + import-fresh: 3.3.0 + lodash: 4.17.21 + resolve-from: 5.0.0 + resolve-global: 1.0.0 + dev: true + + /@commitlint/rules@13.2.0: + resolution: {integrity: sha512-O3A9S7blOzvHfzrJrUQe9JxdtGy154ol/GXHwvd8WfMJ10y5ryBB4b6+0YZ1XhItWzrEASOfOKbD++EdLV90dQ==} + engines: {node: '>=v12'} + dependencies: + '@commitlint/ensure': 13.2.0 + '@commitlint/message': 13.2.0 + '@commitlint/to-lines': 13.2.0 + '@commitlint/types': 13.2.0 + execa: 5.1.1 + dev: true + + /@commitlint/to-lines@13.2.0: + resolution: {integrity: sha512-ZfWZix2y/CzewReCrj5g0nKOEfj5HW9eBMDrqjJJMPApve00CWv0tYrFCGXuGlv244lW4uvWJt6J/0HLRWsfyg==} + engines: {node: '>=v12'} + dev: true + + /@commitlint/top-level@13.2.0: + resolution: {integrity: sha512-knBvWYbIq6VV6VPHrVeDsxDiJq4Zq6cv5NIYU3iesKAsmK2KlLfsZPa+Ig96Y4AqAPU3zNJwjHxYkz9qxdBbfA==} + engines: {node: '>=v12'} + dependencies: + find-up: 5.0.0 + dev: true + + /@commitlint/types@13.2.0: + resolution: {integrity: sha512-RRVHEqmk1qn/dIaSQhvuca6k/6Z54G+r/KyimZ8gnAFielGiGUpsFRhIY3qhd5rXClVxDaa3nlcyTWckSccotQ==} + engines: {node: '>=v12'} + dependencies: + chalk: 4.1.2 + dev: true + + /@corex/deepmerge@2.6.148: + resolution: {integrity: sha512-6QMz0/2h5C3ua51iAnXMPWFbb1QOU1UvSM4bKBw5mzdT+WtLgjbETBBIQZ+Sh9WvEcGwlAt/DEdRpIC3XlDBMA==} + dev: true + + /@cspotcode/source-map-support@0.8.1: + resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==} + engines: {node: '>=12'} + dependencies: + '@jridgewell/trace-mapping': 0.3.9 + dev: true + + /@cypress/request@2.88.12: + resolution: {integrity: sha512-tOn+0mDZxASFM+cuAP9szGUGPI1HwWVSvdzm7V4cCsPdFTx6qMj29CwaQmRAMIEhORIUBFBsYROYJcveK4uOjA==} + engines: {node: '>= 6'} + dependencies: + aws-sign2: 0.7.0 + aws4: 1.12.0 + caseless: 0.12.0 + combined-stream: 1.0.8 + extend: 3.0.2 + forever-agent: 0.6.1 + form-data: 2.3.3 + http-signature: 1.3.6 + is-typedarray: 1.0.0 + isstream: 0.1.2 + json-stringify-safe: 5.0.1 + mime-types: 2.1.35 + performance-now: 2.1.0 + qs: 6.10.4 + safe-buffer: 5.2.1 + tough-cookie: 4.1.3 + tunnel-agent: 0.6.0 + uuid: 8.3.2 + dev: true + + /@cypress/xvfb@1.2.4(supports-color@8.1.1): + resolution: {integrity: sha512-skbBzPggOVYCbnGgV+0dmBdW/s77ZkAOXIC1knS8NagwDjBrNC1LuXtQJeiN6l+m7lzmHtaoUw/ctJKdqkG57Q==} + dependencies: + debug: 3.2.7(supports-color@8.1.1) + lodash.once: 4.1.1 + transitivePeerDependencies: + - supports-color + dev: true + + /@endemolshinegroup/cosmiconfig-typescript-loader@3.0.2(cosmiconfig@7.1.0)(typescript@4.9.5): + resolution: {integrity: sha512-QRVtqJuS1mcT56oHpVegkKBlgtWjXw/gHNWO3eL9oyB5Sc7HBoc2OLG/nYpVfT/Jejvo3NUrD0Udk7XgoyDKkA==} + engines: {node: '>=10.0.0'} + peerDependencies: + cosmiconfig: '>=6' + dependencies: + cosmiconfig: 7.1.0 + lodash.get: 4.4.2 + make-error: 1.3.6 + ts-node: 9.1.1(typescript@4.9.5) + tslib: 2.6.2 + transitivePeerDependencies: + - typescript + dev: true + + /@esbuild-plugins/node-resolve@0.1.4(esbuild@0.17.19): + resolution: {integrity: sha512-haFQ0qhxEpqtWWY0kx1Y5oE3sMyO1PcoSiWEPrAw6tm/ZOOLXjSs6Q+v1v9eyuVF0nNt50YEvrcrvENmyoMv5g==} + peerDependencies: + esbuild: '*' + dependencies: + '@types/resolve': 1.20.6 + debug: 4.3.4(supports-color@8.1.1) + esbuild: 0.17.19 + escape-string-regexp: 4.0.0 + resolve: 1.22.8 + transitivePeerDependencies: + - supports-color + dev: true + + /@esbuild/android-arm64@0.17.19: + resolution: {integrity: sha512-KBMWvEZooR7+kzY0BtbTQn0OAYY7CsiydT63pVEaPtVYF0hXbUaOyZog37DKxK7NF3XacBJOpYT4adIJh+avxA==} + engines: {node: '>=12'} + cpu: [arm64] + os: [android] + requiresBuild: true + dev: true + optional: true + + /@esbuild/android-arm@0.17.19: + resolution: {integrity: sha512-rIKddzqhmav7MSmoFCmDIb6e2W57geRsM94gV2l38fzhXMwq7hZoClug9USI2pFRGL06f4IOPHHpFNOkWieR8A==} + engines: {node: '>=12'} + cpu: [arm] + os: [android] + requiresBuild: true + dev: true + optional: true + + /@esbuild/android-x64@0.17.19: + resolution: {integrity: sha512-uUTTc4xGNDT7YSArp/zbtmbhO0uEEK9/ETW29Wk1thYUJBz3IVnvgEiEwEa9IeLyvnpKrWK64Utw2bgUmDveww==} + engines: {node: '>=12'} + cpu: [x64] + os: [android] + requiresBuild: true + dev: true + optional: true + + /@esbuild/darwin-arm64@0.17.19: + resolution: {integrity: sha512-80wEoCfF/hFKM6WE1FyBHc9SfUblloAWx6FJkFWTWiCoht9Mc0ARGEM47e67W9rI09YoUxJL68WHfDRYEAvOhg==} + engines: {node: '>=12'} + cpu: [arm64] + os: [darwin] + requiresBuild: true + dev: true + optional: true + + /@esbuild/darwin-x64@0.17.19: + resolution: {integrity: sha512-IJM4JJsLhRYr9xdtLytPLSH9k/oxR3boaUIYiHkAawtwNOXKE8KoU8tMvryogdcT8AU+Bflmh81Xn6Q0vTZbQw==} + engines: {node: '>=12'} + cpu: [x64] + os: [darwin] + requiresBuild: true + dev: true + optional: true + + /@esbuild/freebsd-arm64@0.17.19: + resolution: {integrity: sha512-pBwbc7DufluUeGdjSU5Si+P3SoMF5DQ/F/UmTSb8HXO80ZEAJmrykPyzo1IfNbAoaqw48YRpv8shwd1NoI0jcQ==} + engines: {node: '>=12'} + cpu: [arm64] + os: [freebsd] + requiresBuild: true + dev: true + optional: true + + /@esbuild/freebsd-x64@0.17.19: + resolution: {integrity: sha512-4lu+n8Wk0XlajEhbEffdy2xy53dpR06SlzvhGByyg36qJw6Kpfk7cp45DR/62aPH9mtJRmIyrXAS5UWBrJT6TQ==} + engines: {node: '>=12'} + cpu: [x64] + os: [freebsd] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-arm64@0.17.19: + resolution: {integrity: sha512-ct1Tg3WGwd3P+oZYqic+YZF4snNl2bsnMKRkb3ozHmnM0dGWuxcPTTntAF6bOP0Sp4x0PjSF+4uHQ1xvxfRKqg==} + engines: {node: '>=12'} + cpu: [arm64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-arm@0.17.19: + resolution: {integrity: sha512-cdmT3KxjlOQ/gZ2cjfrQOtmhG4HJs6hhvm3mWSRDPtZ/lP5oe8FWceS10JaSJC13GBd4eH/haHnqf7hhGNLerA==} + engines: {node: '>=12'} + cpu: [arm] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-ia32@0.17.19: + resolution: {integrity: sha512-w4IRhSy1VbsNxHRQpeGCHEmibqdTUx61Vc38APcsRbuVgK0OPEnQ0YD39Brymn96mOx48Y2laBQGqgZ0j9w6SQ==} + engines: {node: '>=12'} + cpu: [ia32] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-loong64@0.17.19: + resolution: {integrity: sha512-2iAngUbBPMq439a+z//gE+9WBldoMp1s5GWsUSgqHLzLJ9WoZLZhpwWuym0u0u/4XmZ3gpHmzV84PonE+9IIdQ==} + engines: {node: '>=12'} + cpu: [loong64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-mips64el@0.17.19: + resolution: {integrity: sha512-LKJltc4LVdMKHsrFe4MGNPp0hqDFA1Wpt3jE1gEyM3nKUvOiO//9PheZZHfYRfYl6AwdTH4aTcXSqBerX0ml4A==} + engines: {node: '>=12'} + cpu: [mips64el] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-ppc64@0.17.19: + resolution: {integrity: sha512-/c/DGybs95WXNS8y3Ti/ytqETiW7EU44MEKuCAcpPto3YjQbyK3IQVKfF6nbghD7EcLUGl0NbiL5Rt5DMhn5tg==} + engines: {node: '>=12'} + cpu: [ppc64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-riscv64@0.17.19: + resolution: {integrity: sha512-FC3nUAWhvFoutlhAkgHf8f5HwFWUL6bYdvLc/TTuxKlvLi3+pPzdZiFKSWz/PF30TB1K19SuCxDTI5KcqASJqA==} + engines: {node: '>=12'} + cpu: [riscv64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-s390x@0.17.19: + resolution: {integrity: sha512-IbFsFbxMWLuKEbH+7sTkKzL6NJmG2vRyy6K7JJo55w+8xDk7RElYn6xvXtDW8HCfoKBFK69f3pgBJSUSQPr+4Q==} + engines: {node: '>=12'} + cpu: [s390x] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-x64@0.17.19: + resolution: {integrity: sha512-68ngA9lg2H6zkZcyp22tsVt38mlhWde8l3eJLWkyLrp4HwMUr3c1s/M2t7+kHIhvMjglIBrFpncX1SzMckomGw==} + engines: {node: '>=12'} + cpu: [x64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/netbsd-x64@0.17.19: + resolution: {integrity: sha512-CwFq42rXCR8TYIjIfpXCbRX0rp1jo6cPIUPSaWwzbVI4aOfX96OXY8M6KNmtPcg7QjYeDmN+DD0Wp3LaBOLf4Q==} + engines: {node: '>=12'} + cpu: [x64] + os: [netbsd] + requiresBuild: true + dev: true + optional: true + + /@esbuild/openbsd-x64@0.17.19: + resolution: {integrity: sha512-cnq5brJYrSZ2CF6c35eCmviIN3k3RczmHz8eYaVlNasVqsNY+JKohZU5MKmaOI+KkllCdzOKKdPs762VCPC20g==} + engines: {node: '>=12'} + cpu: [x64] + os: [openbsd] + requiresBuild: true + dev: true + optional: true + + /@esbuild/sunos-x64@0.17.19: + resolution: {integrity: sha512-vCRT7yP3zX+bKWFeP/zdS6SqdWB8OIpaRq/mbXQxTGHnIxspRtigpkUcDMlSCOejlHowLqII7K2JKevwyRP2rg==} + engines: {node: '>=12'} + cpu: [x64] + os: [sunos] + requiresBuild: true + dev: true + optional: true + + /@esbuild/win32-arm64@0.17.19: + resolution: {integrity: sha512-yYx+8jwowUstVdorcMdNlzklLYhPxjniHWFKgRqH7IFlUEa0Umu3KuYplf1HUZZ422e3NU9F4LGb+4O0Kdcaag==} + engines: {node: '>=12'} + cpu: [arm64] + os: [win32] + requiresBuild: true + dev: true + optional: true + + /@esbuild/win32-ia32@0.17.19: + resolution: {integrity: sha512-eggDKanJszUtCdlVs0RB+h35wNlb5v4TWEkq4vZcmVt5u/HiDZrTXe2bWFQUez3RgNHwx/x4sk5++4NSSicKkw==} + engines: {node: '>=12'} + cpu: [ia32] + os: [win32] + requiresBuild: true + dev: true + optional: true + + /@esbuild/win32-x64@0.17.19: + resolution: {integrity: sha512-lAhycmKnVOuRYNtRtatQR1LPQf2oYCkRGkSFnseDAKPl8lu5SOsK/e1sXe5a0Pc5kHIHe6P2I/ilntNv2xf3cA==} + engines: {node: '>=12'} + cpu: [x64] + os: [win32] + requiresBuild: true + dev: true + optional: true + + /@eslint-community/eslint-utils@4.4.0(eslint@7.32.0): + resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 + dependencies: + eslint: 7.32.0 + eslint-visitor-keys: 3.4.3 + dev: true + + /@eslint/eslintrc@0.4.3: + resolution: {integrity: sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw==} + engines: {node: ^10.12.0 || >=12.0.0} + dependencies: + ajv: 6.12.6 + debug: 4.3.4(supports-color@8.1.1) + espree: 7.3.1 + globals: 13.24.0 + ignore: 4.0.6 + import-fresh: 3.3.0 + js-yaml: 3.14.1 + minimatch: 3.1.2 + strip-json-comments: 3.1.1 + transitivePeerDependencies: + - supports-color + dev: true + + /@fal-works/esbuild-plugin-global-externals@2.1.2: + resolution: {integrity: sha512-cEee/Z+I12mZcFJshKcCqC8tuX5hG3s+d+9nZ3LabqKF1vKdF41B92pJVCBggjAGORAeOzyyDDKrZwIkLffeOQ==} + dev: true + + /@feedback-fish/react@1.2.2(react@18.2.0): + resolution: {integrity: sha512-T6VxMM8nNsD3b5ulVsrcvcrNDAc4d73RLYK8Iw+6PFPIdMU2I/mOiuAHvfGauBVIWYHflja4VOdjm3z4CtlvYQ==} + engines: {node: '>=10.16.0'} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + dependencies: + react: 18.2.0 + dev: false + + /@giscus/react@2.4.0(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-y8d8qiZ2sBuaXRcgn/ZWfMlRs9bx26p62BU/HEKQQ+IfHo3B/kglgPjX/IqudwlX+DOlHUl1NvtFo9C8Eqo0eQ==} + peerDependencies: + react: ^16 || ^17 || ^18 + react-dom: ^16 || ^17 || ^18 + dependencies: + giscus: 1.4.0 + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + dev: false + + /@headlessui/react@1.7.17(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-4am+tzvkqDSSgiwrsEpGWqgGo9dz8qU5M3znCkC4PgkpY4HcCZzEDEvozltGGGHIKl9jbXbZPSH5TWn4sWJdow==} + engines: {node: '>=10'} + peerDependencies: + react: ^16 || ^17 || ^18 + react-dom: ^16 || ^17 || ^18 + dependencies: + client-only: 0.0.1 + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + dev: false + + /@humanwhocodes/config-array@0.5.0: + resolution: {integrity: sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg==} + engines: {node: '>=10.10.0'} + dependencies: + '@humanwhocodes/object-schema': 1.2.1 + debug: 4.3.4(supports-color@8.1.1) + minimatch: 3.1.2 + transitivePeerDependencies: + - supports-color + dev: true + + /@humanwhocodes/object-schema@1.2.1: + resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==} + dev: true + + /@isaacs/cliui@8.0.2: + resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==} + engines: {node: '>=12'} + dependencies: + string-width: 5.1.2 + string-width-cjs: /string-width@4.2.3 + strip-ansi: 7.1.0 + strip-ansi-cjs: /strip-ansi@6.0.1 + wrap-ansi: 8.1.0 + wrap-ansi-cjs: /wrap-ansi@7.0.0 + dev: true + + /@jridgewell/gen-mapping@0.3.3: + resolution: {integrity: sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==} + engines: {node: '>=6.0.0'} + dependencies: + '@jridgewell/set-array': 1.1.2 + '@jridgewell/sourcemap-codec': 1.4.15 + '@jridgewell/trace-mapping': 0.3.20 + dev: true + + /@jridgewell/resolve-uri@3.1.1: + resolution: {integrity: sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==} + engines: {node: '>=6.0.0'} + dev: true + + /@jridgewell/set-array@1.1.2: + resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==} + engines: {node: '>=6.0.0'} + dev: true + + /@jridgewell/sourcemap-codec@1.4.15: + resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==} + dev: true + + /@jridgewell/trace-mapping@0.3.20: + resolution: {integrity: sha512-R8LcPeWZol2zR8mmH3JeKQ6QRCFb7XgUhV9ZlGhHLGyg4wpPiPZNQOOWhFZhxKw8u//yTbNGI42Bx/3paXEQ+Q==} + dependencies: + '@jridgewell/resolve-uri': 3.1.1 + '@jridgewell/sourcemap-codec': 1.4.15 + dev: true + + /@jridgewell/trace-mapping@0.3.9: + resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==} + dependencies: + '@jridgewell/resolve-uri': 3.1.1 + '@jridgewell/sourcemap-codec': 1.4.15 + dev: true + + /@lit-labs/ssr-dom-shim@1.1.2: + resolution: {integrity: sha512-jnOD+/+dSrfTWYfSXBXlo5l5f0q1UuJo3tkbMDCYA2lKUYq79jaxqtGEvnRoh049nt1vdo1+45RinipU6FGY2g==} + dev: false + + /@lit/reactive-element@2.0.2: + resolution: {integrity: sha512-SVOwLAWUQg3Ji1egtOt1UiFe4zdDpnWHyc5qctSceJ5XIu0Uc76YmGpIjZgx9YJ0XtdW0Jm507sDvjOu+HnB8w==} + dependencies: + '@lit-labs/ssr-dom-shim': 1.1.2 + dev: false + + /@mdx-js/esbuild@2.3.0(esbuild@0.17.19): + resolution: {integrity: sha512-r/vsqsM0E+U4Wr0DK+0EfmABE/eg+8ITW4DjvYdh3ve/tK2safaqHArNnaqbOk1DjYGrhxtoXoGaM3BY8fGBTA==} + peerDependencies: + esbuild: '>=0.11.0' + dependencies: + '@mdx-js/mdx': 2.3.0 + esbuild: 0.17.19 + node-fetch: 3.3.2 + vfile: 5.3.7 + transitivePeerDependencies: + - supports-color + dev: true + + /@mdx-js/mdx@2.3.0: + resolution: {integrity: sha512-jLuwRlz8DQfQNiUCJR50Y09CGPq3fLtmtUQfVrj79E0JWu3dvsVcxVIcfhR5h0iXu+/z++zDrYeiJqifRynJkA==} + dependencies: + '@types/estree-jsx': 1.0.3 + '@types/mdx': 2.0.10 + estree-util-build-jsx: 2.2.2 + estree-util-is-identifier-name: 2.1.0 + estree-util-to-js: 1.2.0 + estree-walker: 3.0.3 + hast-util-to-estree: 2.3.3 + markdown-extensions: 1.1.1 + periscopic: 3.1.0 + remark-mdx: 2.3.0 + remark-parse: 10.0.2 + remark-rehype: 10.1.0 + unified: 10.1.2 + unist-util-position-from-estree: 1.1.2 + unist-util-stringify-position: 3.0.3 + unist-util-visit: 4.1.2 + vfile: 5.3.7 + transitivePeerDependencies: + - supports-color + dev: true + + /@next/env@12.3.4: + resolution: {integrity: sha512-H/69Lc5Q02dq3o+dxxy5O/oNxFsZpdL6WREtOOtOM1B/weonIwDXkekr1KV5DPVPr12IHFPrMrcJQ6bgPMfn7A==} + + /@next/eslint-plugin-next@11.1.4: + resolution: {integrity: sha512-E0iM++lWF2uOEBSRWSIg9sl3xXWvYSGP6tvUVKdeNNIiEAWwcZzs0OqxeO7Xq3BZ5XkQREEGiAUkzfCqDze5TQ==} + dependencies: + glob: 7.1.7 + dev: true + + /@next/swc-android-arm-eabi@12.3.4: + resolution: {integrity: sha512-cM42Cw6V4Bz/2+j/xIzO8nK/Q3Ly+VSlZJTa1vHzsocJRYz8KT6MrreXaci2++SIZCF1rVRCDgAg5PpqRibdIA==} + engines: {node: '>= 10'} + cpu: [arm] + os: [android] + requiresBuild: true + optional: true + + /@next/swc-android-arm64@12.3.4: + resolution: {integrity: sha512-5jf0dTBjL+rabWjGj3eghpLUxCukRhBcEJgwLedewEA/LJk2HyqCvGIwj5rH+iwmq1llCWbOky2dO3pVljrapg==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [android] + requiresBuild: true + optional: true + + /@next/swc-darwin-arm64@12.3.4: + resolution: {integrity: sha512-DqsSTd3FRjQUR6ao0E1e2OlOcrF5br+uegcEGPVonKYJpcr0MJrtYmPxd4v5T6UCJZ+XzydF7eQo5wdGvSZAyA==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [darwin] + requiresBuild: true + optional: true + + /@next/swc-darwin-x64@12.3.4: + resolution: {integrity: sha512-PPF7tbWD4k0dJ2EcUSnOsaOJ5rhT3rlEt/3LhZUGiYNL8KvoqczFrETlUx0cUYaXe11dRA3F80Hpt727QIwByQ==} + engines: {node: '>= 10'} + cpu: [x64] + os: [darwin] + requiresBuild: true + optional: true + + /@next/swc-freebsd-x64@12.3.4: + resolution: {integrity: sha512-KM9JXRXi/U2PUM928z7l4tnfQ9u8bTco/jb939pdFUHqc28V43Ohd31MmZD1QzEK4aFlMRaIBQOWQZh4D/E5lQ==} + engines: {node: '>= 10'} + cpu: [x64] + os: [freebsd] + requiresBuild: true + optional: true + + /@next/swc-linux-arm-gnueabihf@12.3.4: + resolution: {integrity: sha512-3zqD3pO+z5CZyxtKDTnOJ2XgFFRUBciOox6EWkoZvJfc9zcidNAQxuwonUeNts6Xbm8Wtm5YGIRC0x+12YH7kw==} + engines: {node: '>= 10'} + cpu: [arm] + os: [linux] + requiresBuild: true + optional: true + + /@next/swc-linux-arm64-gnu@12.3.4: + resolution: {integrity: sha512-kiX0vgJGMZVv+oo1QuObaYulXNvdH/IINmvdZnVzMO/jic/B8EEIGlZ8Bgvw8LCjH3zNVPO3mGrdMvnEEPEhKA==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [linux] + requiresBuild: true + optional: true + + /@next/swc-linux-arm64-musl@12.3.4: + resolution: {integrity: sha512-EETZPa1juczrKLWk5okoW2hv7D7WvonU+Cf2CgsSoxgsYbUCZ1voOpL4JZTOb6IbKMDo6ja+SbY0vzXZBUMvkQ==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [linux] + requiresBuild: true + optional: true + + /@next/swc-linux-x64-gnu@12.3.4: + resolution: {integrity: sha512-4csPbRbfZbuWOk3ATyWcvVFdD9/Rsdq5YHKvRuEni68OCLkfy4f+4I9OBpyK1SKJ00Cih16NJbHE+k+ljPPpag==} + engines: {node: '>= 10'} + cpu: [x64] + os: [linux] + requiresBuild: true + optional: true + + /@next/swc-linux-x64-musl@12.3.4: + resolution: {integrity: sha512-YeBmI+63Ro75SUiL/QXEVXQ19T++58aI/IINOyhpsRL1LKdyfK/35iilraZEFz9bLQrwy1LYAR5lK200A9Gjbg==} + engines: {node: '>= 10'} + cpu: [x64] + os: [linux] + requiresBuild: true + optional: true + + /@next/swc-win32-arm64-msvc@12.3.4: + resolution: {integrity: sha512-Sd0qFUJv8Tj0PukAYbCCDbmXcMkbIuhnTeHm9m4ZGjCf6kt7E/RMs55Pd3R5ePjOkN7dJEuxYBehawTR/aPDSQ==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [win32] + requiresBuild: true + optional: true + + /@next/swc-win32-ia32-msvc@12.3.4: + resolution: {integrity: sha512-rt/vv/vg/ZGGkrkKcuJ0LyliRdbskQU+91bje+PgoYmxTZf/tYs6IfbmgudBJk6gH3QnjHWbkphDdRQrseRefQ==} + engines: {node: '>= 10'} + cpu: [ia32] + os: [win32] + requiresBuild: true + optional: true + + /@next/swc-win32-x64-msvc@12.3.4: + resolution: {integrity: sha512-DQ20JEfTBZAgF8QCjYfJhv2/279M6onxFjdG/+5B0Cyj00/EdBxiWb2eGGFgQhrBbNv/lsvzFbbi0Ptf8Vw/bg==} + engines: {node: '>= 10'} + cpu: [x64] + os: [win32] + requiresBuild: true + optional: true + + /@nodelib/fs.scandir@2.1.5: + resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} + engines: {node: '>= 8'} + dependencies: + '@nodelib/fs.stat': 2.0.5 + run-parallel: 1.2.0 + dev: true + + /@nodelib/fs.stat@2.0.5: + resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} + engines: {node: '>= 8'} + dev: true + + /@nodelib/fs.walk@1.2.8: + resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} + engines: {node: '>= 8'} + dependencies: + '@nodelib/fs.scandir': 2.1.5 + fastq: 1.16.0 + dev: true + + /@pkgjs/parseargs@0.11.0: + resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==} + engines: {node: '>=14'} + requiresBuild: true + dev: true + optional: true + + /@prisma/client@4.16.2(prisma@4.16.2): + resolution: {integrity: sha512-qCoEyxv1ZrQ4bKy39GnylE8Zq31IRmm8bNhNbZx7bF2cU5aiCCnSa93J2imF88MBjn7J9eUQneNxUQVJdl/rPQ==} + engines: {node: '>=14.17'} + requiresBuild: true + peerDependencies: + prisma: '*' + peerDependenciesMeta: + prisma: + optional: true + dependencies: + '@prisma/engines-version': 4.16.1-1.4bc8b6e1b66cb932731fb1bdbbc550d1e010de81 + prisma: 4.16.2 + dev: false + + /@prisma/engines-version@4.16.1-1.4bc8b6e1b66cb932731fb1bdbbc550d1e010de81: + resolution: {integrity: sha512-q617EUWfRIDTriWADZ4YiWRZXCa/WuhNgLTVd+HqWLffjMSPzyM5uOWoauX91wvQClSKZU4pzI4JJLQ9Kl62Qg==} + dev: false + + /@prisma/engines@4.16.2: + resolution: {integrity: sha512-vx1nxVvN4QeT/cepQce68deh/Turxy5Mr+4L4zClFuK1GlxN3+ivxfuv+ej/gvidWn1cE1uAhW7ALLNlYbRUAw==} + requiresBuild: true + + /@rushstack/eslint-patch@1.6.1: + resolution: {integrity: sha512-UY+FGM/2jjMkzQLn8pxcHGMaVLh9aEitG3zY2CiY7XHdLiz3bZOwa6oDxNqEMv7zZkV+cj5DOdz0cQ1BP5Hjgw==} + dev: true + + /@swc/helpers@0.4.11: + resolution: {integrity: sha512-rEUrBSGIoSFuYxwBYtlUFMlE2CwGhmW+w9355/5oduSw8e5h2+Tj4UrAGNNgP9915++wj5vkQo0UuOBqOAq4nw==} + dependencies: + tslib: 2.6.2 + + /@tailwindcss/forms@0.5.7(tailwindcss@3.4.1): + resolution: {integrity: sha512-QE7X69iQI+ZXwldE+rzasvbJiyV/ju1FGHH0Qn2W3FKbuYtqp8LKcy6iSw79fVUT5/Vvf+0XgLCeYVG+UV6hOw==} + peerDependencies: + tailwindcss: '>=3.0.0 || >= 3.0.0-alpha.1' + dependencies: + mini-svg-data-uri: 1.4.4 + tailwindcss: 3.4.1(ts-node@10.9.2) + dev: true + + /@tailwindcss/typography@0.5.10(tailwindcss@3.4.1): + resolution: {integrity: sha512-Pe8BuPJQJd3FfRnm6H0ulKIGoMEQS+Vq01R6M5aCrFB/ccR/shT+0kXLjouGC1gFLm9hopTFN+DMP0pfwRWzPw==} + peerDependencies: + tailwindcss: '>=3.0.0 || insiders' + dependencies: + lodash.castarray: 4.4.0 + lodash.isplainobject: 4.0.6 + lodash.merge: 4.6.2 + postcss-selector-parser: 6.0.10 + tailwindcss: 3.4.1(ts-node@10.9.2) + dev: true + + /@tanstack/eslint-plugin-query@5.18.1(eslint@7.32.0)(typescript@4.9.5): + resolution: {integrity: sha512-pLHqd2RYSbGxhFXdjVxo5Gmi1aJfcXDpZQsjLHEkGEXFb65WzX6LMCz7n2rW3wBElDerRLFZNVLC61Pg/TlYsA==} + peerDependencies: + eslint: ^8.0.0 + dependencies: + '@typescript-eslint/utils': 5.62.0(eslint@7.32.0)(typescript@4.9.5) + eslint: 7.32.0 + transitivePeerDependencies: + - supports-color + - typescript + dev: true + + /@tanstack/query-core@5.18.1: + resolution: {integrity: sha512-fYhrG7bHgSNbnkIJF2R4VUXb4lF7EBiQjKkDc5wOlB7usdQOIN4LxxHpDxyE3qjqIst1WBGvDtL48T0sHJGKCw==} + dev: false + + /@tanstack/query-devtools@5.18.1: + resolution: {integrity: sha512-U8bDnDGuwdVMT4ndegPTcjOHOmX/UOjjB7o7UalRIq3DMHLRf8Ufh4+xoAvk3LNK5GBmUBfFSw4osYe5l9n7Lw==} + dev: false + + /@tanstack/react-query-devtools@5.18.1(@tanstack/react-query@5.18.1)(react@18.2.0): + resolution: {integrity: sha512-IrzAsodabSkEVBP0DHkuzcmqKFZ0EgG9ocuD/fRIrjYmbqqdHxzNmp2WmAZlkVo7hamA0ZdzvL5sjo1koFzjHA==} + peerDependencies: + '@tanstack/react-query': ^5.18.1 + react: ^18.0.0 + dependencies: + '@tanstack/query-devtools': 5.18.1 + '@tanstack/react-query': 5.18.1(react@18.2.0) + react: 18.2.0 + dev: false + + /@tanstack/react-query@5.18.1(react@18.2.0): + resolution: {integrity: sha512-PdI07BbsahZ+04PxSuDQsQvBWe008eWFk/YYWzt8fvzt2sALUM0TpAJa/DFpqa7+SSo7j1EQR6Jx6znXNHyaXw==} + peerDependencies: + react: ^18.0.0 + dependencies: + '@tanstack/query-core': 5.18.1 + react: 18.2.0 + dev: false + + /@tanstack/react-table@8.11.3(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-Gwwm7po1MaObBguw69L+UiACkaj+eOtThQEArj/3fmUwMPiWaJcXvNG2X5Te5z2hg0HMx8h0T0Q7p5YmQlTUfw==} + engines: {node: '>=12'} + peerDependencies: + react: '>=16' + react-dom: '>=16' + dependencies: + '@tanstack/table-core': 8.11.3 + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + dev: false + + /@tanstack/table-core@8.11.3: + resolution: {integrity: sha512-nkcFIL696wTf1QMvhGR7dEg60OIRwEZm1OqFTYYDTRc4JOWspgrsJO3IennsOJ7ptumHWLDjV8e5BjPkZcSZAQ==} + engines: {node: '>=12'} + dev: false + + /@tsconfig/node10@1.0.9: + resolution: {integrity: sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==} + dev: true + + /@tsconfig/node12@1.0.11: + resolution: {integrity: sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==} + dev: true + + /@tsconfig/node14@1.0.3: + resolution: {integrity: sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==} + dev: true + + /@tsconfig/node16@1.0.4: + resolution: {integrity: sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==} + dev: true + + /@types/acorn@4.0.6: + resolution: {integrity: sha512-veQTnWP+1D/xbxVrPC3zHnCZRjSrKfhbMUlEA43iMZLu7EsnTtkJklIuwrCPbOi8YkvDQAiW05VQQFvvz9oieQ==} + dependencies: + '@types/estree': 1.0.5 + dev: true + + /@types/debug@4.1.12: + resolution: {integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==} + dependencies: + '@types/ms': 0.7.34 + dev: true + + /@types/estree-jsx@1.0.3: + resolution: {integrity: sha512-pvQ+TKeRHeiUGRhvYwRrQ/ISnohKkSJR14fT2yqyZ4e9K5vqc7hrtY2Y1Dw0ZwAzQ6DQsxsaCUuSIIi8v0Cq6w==} + dependencies: + '@types/estree': 1.0.5 + dev: true + + /@types/estree@1.0.5: + resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==} + dev: true + + /@types/hast@2.3.9: + resolution: {integrity: sha512-pTHyNlaMD/oKJmS+ZZUyFUcsZeBZpC0lmGquw98CqRVNgAdJZJeD7GoeLiT6Xbx5rU9VCjSt0RwEvDgzh4obFw==} + dependencies: + '@types/unist': 2.0.10 + + /@types/json-schema@7.0.15: + resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==} + dev: true + + /@types/json5@0.0.29: + resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==} + dev: true + + /@types/lodash@4.14.202: + resolution: {integrity: sha512-OvlIYQK9tNneDlS0VN54LLd5uiPCBOp7gS5Z0f1mjoJYBrtStzgmJBxONW3U6OZqdtNzZPmn9BS/7WI7BFFcFQ==} + dev: true + + /@types/mdast@3.0.15: + resolution: {integrity: sha512-LnwD+mUEfxWMa1QpDraczIn6k0Ee3SMicuYSSzS6ZYl2gKS09EClnJYGd8Du6rfc5r/GZEk5o1mRb8TaTj03sQ==} + dependencies: + '@types/unist': 2.0.10 + dev: true + + /@types/mdx@2.0.10: + resolution: {integrity: sha512-Rllzc5KHk0Al5/WANwgSPl1/CwjqCy+AZrGd78zuK+jO9aDM6ffblZ+zIjgPNAaEBmlO0RYDvLNh7wD0zKVgEg==} + dev: true + + /@types/minimist@1.2.5: + resolution: {integrity: sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag==} + dev: true + + /@types/ms@0.7.34: + resolution: {integrity: sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==} + dev: true + + /@types/node@14.18.63: + resolution: {integrity: sha512-fAtCfv4jJg+ExtXhvCkCqUKZ+4ok/JQk01qDKhL5BDDoS3AxKXhV5/MAVUZyQnSEd2GT92fkgZl0pz0Q0AzcIQ==} + dev: true + + /@types/node@18.19.4: + resolution: {integrity: sha512-xNzlUhzoHotIsnFoXmJB+yWmBvFZgKCI9TtPIEdYIMM1KWfwuY8zh7wvc1u1OAXlC7dlf6mZVx/s+Y5KfFz19A==} + dependencies: + undici-types: 5.26.5 + dev: true + + /@types/normalize-package-data@2.4.4: + resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==} + dev: true + + /@types/nprogress@0.2.3: + resolution: {integrity: sha512-k7kRA033QNtC+gLc4VPlfnue58CM1iQLgn1IMAU8VPHGOj7oIHPp9UlhedEnD/Gl8evoCjwkZjlBORtZ3JByUA==} + dev: true + + /@types/parse-json@4.0.2: + resolution: {integrity: sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==} + dev: true + + /@types/prop-types@15.7.11: + resolution: {integrity: sha512-ga8y9v9uyeiLdpKddhxYQkxNDrfvuPrlFb0N1qnZZByvcElJaXthF1UhvCh9TLWJBEHeNtdnbysW7Y6Uq8CVng==} + dev: true + + /@types/react@18.2.47: + resolution: {integrity: sha512-xquNkkOirwyCgoClNk85BjP+aqnIS+ckAJ8i37gAbDs14jfW/J23f2GItAf33oiUPQnqNMALiFeoM9Y5mbjpVQ==} + dependencies: + '@types/prop-types': 15.7.11 + '@types/scheduler': 0.16.8 + csstype: 3.1.3 + dev: true + + /@types/resolve@1.20.6: + resolution: {integrity: sha512-A4STmOXPhMUtHH+S6ymgE2GiBSMqf4oTvcQZMcHzokuTLVYzXTB8ttjcgxOVaAp2lGwEdzZ0J+cRbbeevQj1UQ==} + dev: true + + /@types/scheduler@0.16.8: + resolution: {integrity: sha512-WZLiwShhwLRmeV6zH+GkbOFT6Z6VklCItrDioxUnv+u4Ll+8vKeFySoFyK/0ctcRpOmwAicELfmys1sDc/Rw+A==} + dev: true + + /@types/semver@7.5.6: + resolution: {integrity: sha512-dn1l8LaMea/IjDoHNd9J52uBbInB796CDffS6VdIxvqYCPSG0V0DzHp76GpaWnlhg88uYyPbXCDIowa86ybd5A==} + dev: true + + /@types/sinonjs__fake-timers@8.1.1: + resolution: {integrity: sha512-0kSuKjAS0TrGLJ0M/+8MaFkGsQhZpB6pxOmvS3K8FYI72K//YmdfoW9X2qPsAKh1mkwxGD5zib9s1FIFed6E8g==} + dev: true + + /@types/sizzle@2.3.8: + resolution: {integrity: sha512-0vWLNK2D5MT9dg0iOo8GlKguPAU02QjmZitPEsXRuJXU/OGIOt9vT9Fc26wtYuavLxtO45v9PGleoL9Z0k1LHg==} + dev: true + + /@types/trusted-types@2.0.7: + resolution: {integrity: sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw==} + dev: false + + /@types/umami@0.1.5: + resolution: {integrity: sha512-9MG8FuWArG85OOppjTU41AXF0ifAysjqqUgs68J1LOqOZKOHXLKv3G1NOYRKMAacYeL4f8rYR/spVAa+RfmDDA==} + dev: true + + /@types/unist@2.0.10: + resolution: {integrity: sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA==} + + /@types/yauzl@2.10.3: + resolution: {integrity: sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==} + requiresBuild: true + dependencies: + '@types/node': 18.19.4 + dev: true + optional: true + + /@typescript-eslint/eslint-plugin@4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5): + resolution: {integrity: sha512-aINiAxGVdOl1eJyVjaWn/YcVAq4Gi/Yo35qHGCnqbWVz61g39D0h23veY/MA0rFFGfxK7TySg2uwDeNv+JgVpg==} + engines: {node: ^10.12.0 || >=12.0.0} + peerDependencies: + '@typescript-eslint/parser': ^4.0.0 + eslint: ^5.0.0 || ^6.0.0 || ^7.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@typescript-eslint/experimental-utils': 4.33.0(eslint@7.32.0)(typescript@4.9.5) + '@typescript-eslint/parser': 4.33.0(eslint@7.32.0)(typescript@4.9.5) + '@typescript-eslint/scope-manager': 4.33.0 + debug: 4.3.4(supports-color@8.1.1) + eslint: 7.32.0 + functional-red-black-tree: 1.0.1 + ignore: 5.3.0 + regexpp: 3.2.0 + semver: 7.5.4 + tsutils: 3.21.0(typescript@4.9.5) + typescript: 4.9.5 + transitivePeerDependencies: + - supports-color + dev: true + + /@typescript-eslint/experimental-utils@4.33.0(eslint@7.32.0)(typescript@4.9.5): + resolution: {integrity: sha512-zeQjOoES5JFjTnAhI5QY7ZviczMzDptls15GFsI6jyUOq0kOf9+WonkhtlIhh0RgHRnqj5gdNxW5j1EvAyYg6Q==} + engines: {node: ^10.12.0 || >=12.0.0} + peerDependencies: + eslint: '*' + dependencies: + '@types/json-schema': 7.0.15 + '@typescript-eslint/scope-manager': 4.33.0 + '@typescript-eslint/types': 4.33.0 + '@typescript-eslint/typescript-estree': 4.33.0(typescript@4.9.5) + eslint: 7.32.0 + eslint-scope: 5.1.1 + eslint-utils: 3.0.0(eslint@7.32.0) + transitivePeerDependencies: + - supports-color + - typescript + dev: true + + /@typescript-eslint/parser@4.33.0(eslint@7.32.0)(typescript@4.9.5): + resolution: {integrity: sha512-ZohdsbXadjGBSK0/r+d87X0SBmKzOq4/S5nzK6SBgJspFo9/CUDJ7hjayuze+JK7CZQLDMroqytp7pOcFKTxZA==} + engines: {node: ^10.12.0 || >=12.0.0} + peerDependencies: + eslint: ^5.0.0 || ^6.0.0 || ^7.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@typescript-eslint/scope-manager': 4.33.0 + '@typescript-eslint/types': 4.33.0 + '@typescript-eslint/typescript-estree': 4.33.0(typescript@4.9.5) + debug: 4.3.4(supports-color@8.1.1) + eslint: 7.32.0 + typescript: 4.9.5 + transitivePeerDependencies: + - supports-color + dev: true + + /@typescript-eslint/scope-manager@4.33.0: + resolution: {integrity: sha512-5IfJHpgTsTZuONKbODctL4kKuQje/bzBRkwHE8UOZ4f89Zeddg+EGZs8PD8NcN4LdM3ygHWYB3ukPAYjvl/qbQ==} + engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} + dependencies: + '@typescript-eslint/types': 4.33.0 + '@typescript-eslint/visitor-keys': 4.33.0 + dev: true + + /@typescript-eslint/scope-manager@5.62.0: + resolution: {integrity: sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + dependencies: + '@typescript-eslint/types': 5.62.0 + '@typescript-eslint/visitor-keys': 5.62.0 + dev: true + + /@typescript-eslint/types@4.33.0: + resolution: {integrity: sha512-zKp7CjQzLQImXEpLt2BUw1tvOMPfNoTAfb8l51evhYbOEEzdWyQNmHWWGPR6hwKJDAi+1VXSBmnhL9kyVTTOuQ==} + engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} + dev: true + + /@typescript-eslint/types@5.62.0: + resolution: {integrity: sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + dev: true + + /@typescript-eslint/typescript-estree@4.33.0(typescript@4.9.5): + resolution: {integrity: sha512-rkWRY1MPFzjwnEVHsxGemDzqqddw2QbTJlICPD9p9I9LfsO8fdmfQPOX3uKfUaGRDFJbfrtm/sXhVXN4E+bzCA==} + engines: {node: ^10.12.0 || >=12.0.0} + peerDependencies: + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@typescript-eslint/types': 4.33.0 + '@typescript-eslint/visitor-keys': 4.33.0 + debug: 4.3.4(supports-color@8.1.1) + globby: 11.1.0 + is-glob: 4.0.3 + semver: 7.5.4 + tsutils: 3.21.0(typescript@4.9.5) + typescript: 4.9.5 + transitivePeerDependencies: + - supports-color + dev: true + + /@typescript-eslint/typescript-estree@5.62.0(typescript@4.9.5): + resolution: {integrity: sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@typescript-eslint/types': 5.62.0 + '@typescript-eslint/visitor-keys': 5.62.0 + debug: 4.3.4(supports-color@8.1.1) + globby: 11.1.0 + is-glob: 4.0.3 + semver: 7.5.4 + tsutils: 3.21.0(typescript@4.9.5) + typescript: 4.9.5 + transitivePeerDependencies: + - supports-color + dev: true + + /@typescript-eslint/utils@5.62.0(eslint@7.32.0)(typescript@4.9.5): + resolution: {integrity: sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + dependencies: + '@eslint-community/eslint-utils': 4.4.0(eslint@7.32.0) + '@types/json-schema': 7.0.15 + '@types/semver': 7.5.6 + '@typescript-eslint/scope-manager': 5.62.0 + '@typescript-eslint/types': 5.62.0 + '@typescript-eslint/typescript-estree': 5.62.0(typescript@4.9.5) + eslint: 7.32.0 + eslint-scope: 5.1.1 + semver: 7.5.4 + transitivePeerDependencies: + - supports-color + - typescript + dev: true + + /@typescript-eslint/visitor-keys@4.33.0: + resolution: {integrity: sha512-uqi/2aSz9g2ftcHWf8uLPJA70rUv6yuMW5Bohw+bwcuzaxQIHaKFZCKGoGXIrc9vkTJ3+0txM73K0Hq3d5wgIg==} + engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} + dependencies: + '@typescript-eslint/types': 4.33.0 + eslint-visitor-keys: 2.1.0 + dev: true + + /@typescript-eslint/visitor-keys@5.62.0: + resolution: {integrity: sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + dependencies: + '@typescript-eslint/types': 5.62.0 + eslint-visitor-keys: 3.4.3 + dev: true + + /JSONStream@1.3.5: + resolution: {integrity: sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==} + hasBin: true + dependencies: + jsonparse: 1.3.1 + through: 2.3.8 + dev: true + + /accepts@1.3.8: + resolution: {integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==} + engines: {node: '>= 0.6'} + dependencies: + mime-types: 2.1.35 + negotiator: 0.6.3 + dev: true + + /acorn-jsx@5.3.2(acorn@7.4.1): + resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} + peerDependencies: + acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 + dependencies: + acorn: 7.4.1 + dev: true + + /acorn-jsx@5.3.2(acorn@8.11.3): + resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} + peerDependencies: + acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 + dependencies: + acorn: 8.11.3 + dev: true + + /acorn-walk@8.3.1: + resolution: {integrity: sha512-TgUZgYvqZprrl7YldZNoa9OciCAyZR+Ejm9eXzKCmjsF5IKp/wgQ7Z/ZpjpGTIUPwrHQIcYeI8qDh4PsEwxMbw==} + engines: {node: '>=0.4.0'} + dev: true + + /acorn@7.4.1: + resolution: {integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==} + engines: {node: '>=0.4.0'} + hasBin: true + dev: true + + /acorn@8.11.3: + resolution: {integrity: sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==} + engines: {node: '>=0.4.0'} + hasBin: true + dev: true + + /aggregate-error@3.1.0: + resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==} + engines: {node: '>=8'} + dependencies: + clean-stack: 2.2.0 + indent-string: 4.0.0 + dev: true + + /ajv@6.12.6: + resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} + dependencies: + fast-deep-equal: 3.1.3 + fast-json-stable-stringify: 2.1.0 + json-schema-traverse: 0.4.1 + uri-js: 4.4.1 + dev: true + + /ajv@8.12.0: + resolution: {integrity: sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==} + dependencies: + fast-deep-equal: 3.1.3 + json-schema-traverse: 1.0.0 + require-from-string: 2.0.2 + uri-js: 4.4.1 + dev: true + + /ansi-colors@4.1.3: + resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==} + engines: {node: '>=6'} + dev: true + + /ansi-escapes@4.3.2: + resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==} + engines: {node: '>=8'} + dependencies: + type-fest: 0.21.3 + dev: true + + /ansi-regex@5.0.1: + resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} + engines: {node: '>=8'} + dev: true + + /ansi-regex@6.0.1: + resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==} + engines: {node: '>=12'} + dev: true + + /ansi-sequence-parser@1.1.1: + resolution: {integrity: sha512-vJXt3yiaUL4UU546s3rPXlsry/RnM730G1+HkpKE012AN0sx1eOrxSu95oKDIonskeLTijMgqWZ3uDEe3NFvyg==} + dev: false + + /ansi-styles@3.2.1: + resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} + engines: {node: '>=4'} + dependencies: + color-convert: 1.9.3 + dev: true + + /ansi-styles@4.3.0: + resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} + engines: {node: '>=8'} + dependencies: + color-convert: 2.0.1 + dev: true + + /ansi-styles@6.2.1: + resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==} + engines: {node: '>=12'} + dev: true + + /any-promise@1.3.0: + resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==} + dev: true + + /anymatch@3.1.3: + resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} + engines: {node: '>= 8'} + dependencies: + normalize-path: 3.0.0 + picomatch: 2.3.1 + dev: true + + /arch@2.2.0: + resolution: {integrity: sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==} + dev: true + + /arg@4.1.3: + resolution: {integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==} + dev: true + + /arg@5.0.2: + resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==} + dev: true + + /argparse@1.0.10: + resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==} + dependencies: + sprintf-js: 1.0.3 + dev: true + + /argparse@2.0.1: + resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} + dev: true + + /aria-query@5.3.0: + resolution: {integrity: sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==} + dependencies: + dequal: 2.0.3 + dev: true + + /array-buffer-byte-length@1.0.0: + resolution: {integrity: sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==} + dependencies: + call-bind: 1.0.5 + is-array-buffer: 3.0.2 + dev: true + + /array-flatten@1.1.1: + resolution: {integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==} + dev: true + + /array-ify@1.0.0: + resolution: {integrity: sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==} + dev: true + + /array-includes@3.1.7: + resolution: {integrity: sha512-dlcsNBIiWhPkHdOEEKnehA+RNUWDc4UqFtnIXU4uuYDPtA4LDkr7qip2p0VvFAEXNDr0yWZ9PJyIRiGjRLQzwQ==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + get-intrinsic: 1.2.2 + is-string: 1.0.7 + dev: true + + /array-union@2.1.0: + resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} + engines: {node: '>=8'} + dev: true + + /array.prototype.findlastindex@1.2.3: + resolution: {integrity: sha512-LzLoiOMAxvy+Gd3BAq3B7VeIgPdo+Q8hthvKtXybMvRV0jrXfJM/t8mw7nNlpEcVlVUnCnM2KSX4XU5HmpodOA==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + es-shim-unscopables: 1.0.2 + get-intrinsic: 1.2.2 + dev: true + + /array.prototype.flat@1.3.2: + resolution: {integrity: sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + es-shim-unscopables: 1.0.2 + dev: true + + /array.prototype.flatmap@1.3.2: + resolution: {integrity: sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + es-shim-unscopables: 1.0.2 + dev: true + + /array.prototype.tosorted@1.1.2: + resolution: {integrity: sha512-HuQCHOlk1Weat5jzStICBCd83NxiIMwqDg/dHEsoefabn/hJRj5pVdWcPUSpRrwhwxZOsQassMpgN/xRYFBMIg==} + dependencies: + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + es-shim-unscopables: 1.0.2 + get-intrinsic: 1.2.2 + dev: true + + /arraybuffer.prototype.slice@1.0.2: + resolution: {integrity: sha512-yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw==} + engines: {node: '>= 0.4'} + dependencies: + array-buffer-byte-length: 1.0.0 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + get-intrinsic: 1.2.2 + is-array-buffer: 3.0.2 + is-shared-array-buffer: 1.0.2 + dev: true + + /arrify@1.0.1: + resolution: {integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==} + engines: {node: '>=0.10.0'} + dev: true + + /asn1@0.2.6: + resolution: {integrity: sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==} + dependencies: + safer-buffer: 2.1.2 + dev: true + + /assert-plus@1.0.0: + resolution: {integrity: sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==} + engines: {node: '>=0.8'} + dev: true + + /ast-types-flow@0.0.8: + resolution: {integrity: sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==} + dev: true + + /astral-regex@2.0.0: + resolution: {integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==} + engines: {node: '>=8'} + dev: true + + /astring@1.8.6: + resolution: {integrity: sha512-ISvCdHdlTDlH5IpxQJIex7BWBywFWgjJSVdwst+/iQCoEYnyOaQ95+X1JGshuBjGp6nxKUy1jMgE3zPqN7fQdg==} + hasBin: true + dev: true + + /async@3.2.5: + resolution: {integrity: sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==} + dev: true + + /asynciterator.prototype@1.0.0: + resolution: {integrity: sha512-wwHYEIS0Q80f5mosx3L/dfG5t5rjEa9Ft51GTaNt862EnpyGHpgz2RkZvLPp1oF5TnAiTohkEKVEu8pQPJI7Vg==} + dependencies: + has-symbols: 1.0.3 + dev: true + + /asynckit@0.4.0: + resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==} + dev: true + + /at-least-node@1.0.0: + resolution: {integrity: sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==} + engines: {node: '>= 4.0.0'} + dev: true + + /autoprefixer@10.4.16(postcss@8.4.33): + resolution: {integrity: sha512-7vd3UC6xKp0HLfua5IjZlcXvGAGy7cBAXTg2lyQ/8WpNhd6SiZ8Be+xm3FyBSYJx5GKcpRCzBh7RH4/0dnY+uQ==} + engines: {node: ^10 || ^12 || >=14} + hasBin: true + peerDependencies: + postcss: ^8.1.0 + dependencies: + browserslist: 4.22.2 + caniuse-lite: 1.0.30001574 + fraction.js: 4.3.7 + normalize-range: 0.1.2 + picocolors: 1.0.0 + postcss: 8.4.33 + postcss-value-parser: 4.2.0 + dev: true + + /available-typed-arrays@1.0.5: + resolution: {integrity: sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==} + engines: {node: '>= 0.4'} + dev: true + + /aws-sign2@0.7.0: + resolution: {integrity: sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==} + dev: true + + /aws4@1.12.0: + resolution: {integrity: sha512-NmWvPnx0F1SfrQbYwOi7OeaNGokp9XhzNioJ/CSBs8Qa4vxug81mhJEAVZwxXuBmYB5KDRfMq/F3RR0BIU7sWg==} + dev: true + + /axe-core@4.7.0: + resolution: {integrity: sha512-M0JtH+hlOL5pLQwHOLNYZaXuhqmvS8oExsqB1SBYgA4Dk7u/xx+YdGHXaK5pyUfed5mYXdlYiphWq3G8cRi5JQ==} + engines: {node: '>=4'} + dev: true + + /axios@0.24.0: + resolution: {integrity: sha512-Q6cWsys88HoPgAaFAVUb0WpPk0O8iTeisR9IMqy9G8AbO4NlpVknrnQS03zzF9PGAWgO3cgletO3VjV/P7VztA==} + dependencies: + follow-redirects: 1.15.4 + transitivePeerDependencies: + - debug + dev: false + + /axobject-query@3.2.1: + resolution: {integrity: sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg==} + dependencies: + dequal: 2.0.3 + dev: true + + /bail@2.0.2: + resolution: {integrity: sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==} + + /balanced-match@1.0.2: + resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} + dev: true + + /base64-js@1.5.1: + resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} + dev: true + + /bcrypt-pbkdf@1.0.2: + resolution: {integrity: sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==} + dependencies: + tweetnacl: 0.14.5 + dev: true + + /binary-extensions@2.2.0: + resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==} + engines: {node: '>=8'} + dev: true + + /blob-util@2.0.2: + resolution: {integrity: sha512-T7JQa+zsXXEa6/8ZhHcQEW1UFfVM49Ts65uBkFL6fz2QmrElqmbajIDJvuA0tEhRe5eIjpV9ZF+0RfZR9voJFQ==} + dev: true + + /bluebird@3.7.2: + resolution: {integrity: sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==} + dev: true + + /body-parser@1.20.1: + resolution: {integrity: sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==} + engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} + dependencies: + bytes: 3.1.2 + content-type: 1.0.5 + debug: 2.6.9 + depd: 2.0.0 + destroy: 1.2.0 + http-errors: 2.0.0 + iconv-lite: 0.4.24 + on-finished: 2.4.1 + qs: 6.11.0 + raw-body: 2.5.1 + type-is: 1.6.18 + unpipe: 1.0.0 + transitivePeerDependencies: + - supports-color + dev: true + + /body-parser@1.20.2: + resolution: {integrity: sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==} + engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} + dependencies: + bytes: 3.1.2 + content-type: 1.0.5 + debug: 2.6.9 + depd: 2.0.0 + destroy: 1.2.0 + http-errors: 2.0.0 + iconv-lite: 0.4.24 + on-finished: 2.4.1 + qs: 6.11.0 + raw-body: 2.5.2 + type-is: 1.6.18 + unpipe: 1.0.0 + transitivePeerDependencies: + - supports-color + dev: true + + /brace-expansion@1.1.11: + resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} + dependencies: + balanced-match: 1.0.2 + concat-map: 0.0.1 + dev: true + + /brace-expansion@2.0.1: + resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==} + dependencies: + balanced-match: 1.0.2 + dev: true + + /braces@3.0.2: + resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==} + engines: {node: '>=8'} + dependencies: + fill-range: 7.0.1 + dev: true + + /browserslist@4.22.2: + resolution: {integrity: sha512-0UgcrvQmBDvZHFGdYUehrCNIazki7/lUP3kkoi/r3YB2amZbFM9J43ZRkJTXBUZK4gmx56+Sqk9+Vs9mwZx9+A==} + engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} + hasBin: true + dependencies: + caniuse-lite: 1.0.30001574 + electron-to-chromium: 1.4.623 + node-releases: 2.0.14 + update-browserslist-db: 1.0.13(browserslist@4.22.2) + dev: true + + /buffer-crc32@0.2.13: + resolution: {integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==} + dev: true + + /buffer-from@1.1.2: + resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==} + dev: true + + /buffer@5.7.1: + resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==} + dependencies: + base64-js: 1.5.1 + ieee754: 1.2.1 + dev: true + + /bytes@3.1.2: + resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==} + engines: {node: '>= 0.8'} + dev: true + + /cachedir@2.4.0: + resolution: {integrity: sha512-9EtFOZR8g22CL7BWjJ9BUx1+A/djkofnyW3aOXZORNW2kxoUpx2h+uN2cOqwPmFhnpVmxg+KW2OjOSgChTEvsQ==} + engines: {node: '>=6'} + dev: true + + /call-bind@1.0.5: + resolution: {integrity: sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==} + dependencies: + function-bind: 1.1.2 + get-intrinsic: 1.2.2 + set-function-length: 1.1.1 + dev: true + + /callsites@3.1.0: + resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} + engines: {node: '>=6'} + dev: true + + /camelcase-css@2.0.1: + resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==} + engines: {node: '>= 6'} + dev: true + + /camelcase-keys@6.2.2: + resolution: {integrity: sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==} + engines: {node: '>=8'} + dependencies: + camelcase: 5.3.1 + map-obj: 4.3.0 + quick-lru: 4.0.1 + dev: true + + /camelcase@5.3.1: + resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==} + engines: {node: '>=6'} + dev: true + + /caniuse-lite@1.0.30001574: + resolution: {integrity: sha512-BtYEK4r/iHt/txm81KBudCUcTy7t+s9emrIaHqjYurQ10x71zJ5VQ9x1dYPcz/b+pKSp4y/v1xSI67A+LzpNyg==} + + /caseless@0.12.0: + resolution: {integrity: sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==} + dev: true + + /ccount@2.0.1: + resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==} + dev: true + + /chalk@2.4.2: + resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} + engines: {node: '>=4'} + dependencies: + ansi-styles: 3.2.1 + escape-string-regexp: 1.0.5 + supports-color: 5.5.0 + dev: true + + /chalk@4.1.2: + resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} + engines: {node: '>=10'} + dependencies: + ansi-styles: 4.3.0 + supports-color: 7.2.0 + dev: true + + /character-entities-html4@2.1.0: + resolution: {integrity: sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==} + dev: true + + /character-entities-legacy@3.0.0: + resolution: {integrity: sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==} + dev: true + + /character-entities@2.0.2: + resolution: {integrity: sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==} + dev: true + + /character-reference-invalid@2.0.1: + resolution: {integrity: sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==} + dev: true + + /check-more-types@2.24.0: + resolution: {integrity: sha512-Pj779qHxV2tuapviy1bSZNEL1maXr13bPYpsvSDB68HlYcYuhlDrmGd63i0JHMCLKzc7rUSNIrpdJlhVlNwrxA==} + engines: {node: '>= 0.8.0'} + dev: true + + /chokidar@3.5.3: + resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==} + engines: {node: '>= 8.10.0'} + dependencies: + anymatch: 3.1.3 + braces: 3.0.2 + glob-parent: 5.1.2 + is-binary-path: 2.1.0 + is-glob: 4.0.3 + normalize-path: 3.0.0 + readdirp: 3.6.0 + optionalDependencies: + fsevents: 2.3.3 + dev: true + + /ci-info@3.9.0: + resolution: {integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==} + engines: {node: '>=8'} + dev: true + + /clean-stack@2.2.0: + resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==} + engines: {node: '>=6'} + dev: true + + /cli-cursor@3.1.0: + resolution: {integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==} + engines: {node: '>=8'} + dependencies: + restore-cursor: 3.1.0 + dev: true + + /cli-table3@0.6.3: + resolution: {integrity: sha512-w5Jac5SykAeZJKntOxJCrm63Eg5/4dhMWIcuTbo9rpE+brgaSZo0RuNJZeOyMgsUdhDeojvgyQLmjI+K50ZGyg==} + engines: {node: 10.* || >= 12.*} + dependencies: + string-width: 4.2.3 + optionalDependencies: + '@colors/colors': 1.5.0 + dev: true + + /cli-truncate@2.1.0: + resolution: {integrity: sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==} + engines: {node: '>=8'} + dependencies: + slice-ansi: 3.0.0 + string-width: 4.2.3 + dev: true + + /client-only@0.0.1: + resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==} + dev: false + + /cliui@8.0.1: + resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==} + engines: {node: '>=12'} + dependencies: + string-width: 4.2.3 + strip-ansi: 6.0.1 + wrap-ansi: 7.0.0 + dev: true + + /cloudinary-build-url@0.2.4: + resolution: {integrity: sha512-Wi0aZPHOa90xDCCC4k9eoTVPIm3aWNyycO+rJUXvOyusQqmkPSprHSuJh3s2zNxEtuGj24aCM13iLDpilWMpSw==} + dependencies: + '@cld-apis/utils': 0.2.0 + dev: false + + /clsx@1.2.1: + resolution: {integrity: sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==} + engines: {node: '>=6'} + dev: false + + /color-convert@1.9.3: + resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} + dependencies: + color-name: 1.1.3 + dev: true + + /color-convert@2.0.1: + resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} + engines: {node: '>=7.0.0'} + dependencies: + color-name: 1.1.4 + dev: true + + /color-name@1.1.3: + resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==} + dev: true + + /color-name@1.1.4: + resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} + dev: true + + /colorette@1.4.0: + resolution: {integrity: sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==} + dev: true + + /colorette@2.0.20: + resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==} + dev: true + + /combined-stream@1.0.8: + resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==} + engines: {node: '>= 0.8'} + dependencies: + delayed-stream: 1.0.0 + dev: true + + /comma-separated-tokens@2.0.3: + resolution: {integrity: sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==} + + /commander@4.1.1: + resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==} + engines: {node: '>= 6'} + dev: true + + /commander@5.1.0: + resolution: {integrity: sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==} + engines: {node: '>= 6'} + dev: true + + /commander@8.3.0: + resolution: {integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==} + engines: {node: '>= 12'} + dev: true + + /common-tags@1.8.2: + resolution: {integrity: sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==} + engines: {node: '>=4.0.0'} + dev: true + + /compare-func@2.0.0: + resolution: {integrity: sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==} + dependencies: + array-ify: 1.0.0 + dot-prop: 5.3.0 + dev: true + + /concat-map@0.0.1: + resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} + dev: true + + /content-disposition@0.5.4: + resolution: {integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==} + engines: {node: '>= 0.6'} + dependencies: + safe-buffer: 5.2.1 + dev: true + + /content-type@1.0.5: + resolution: {integrity: sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==} + engines: {node: '>= 0.6'} + dev: true + + /conventional-changelog-angular@5.0.13: + resolution: {integrity: sha512-i/gipMxs7s8L/QeuavPF2hLnJgH6pEZAttySB6aiQLWcX3puWDL3ACVmvBhJGxnAy52Qc15ua26BufY6KpmrVA==} + engines: {node: '>=10'} + dependencies: + compare-func: 2.0.0 + q: 1.5.1 + dev: true + + /conventional-changelog-conventionalcommits@4.6.3: + resolution: {integrity: sha512-LTTQV4fwOM4oLPad317V/QNQ1FY4Hju5qeBIM1uTHbrnCE+Eg4CdRZ3gO2pUeR+tzWdp80M2j3qFFEDWVqOV4g==} + engines: {node: '>=10'} + dependencies: + compare-func: 2.0.0 + lodash: 4.17.21 + q: 1.5.1 + dev: true + + /conventional-commits-parser@3.2.4: + resolution: {integrity: sha512-nK7sAtfi+QXbxHCYfhpZsfRtaitZLIA6889kFIouLvz6repszQDgxBu7wf2WbU+Dco7sAnNCJYERCwt54WPC2Q==} + engines: {node: '>=10'} + hasBin: true + dependencies: + JSONStream: 1.3.5 + is-text-path: 1.0.1 + lodash: 4.17.21 + meow: 8.1.2 + split2: 3.2.2 + through2: 4.0.2 + dev: true + + /cookie-signature@1.0.6: + resolution: {integrity: sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==} + dev: true + + /cookie@0.5.0: + resolution: {integrity: sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==} + engines: {node: '>= 0.6'} + dev: true + + /core-util-is@1.0.2: + resolution: {integrity: sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==} + dev: true + + /cosmiconfig@7.1.0: + resolution: {integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==} + engines: {node: '>=10'} + dependencies: + '@types/parse-json': 4.0.2 + import-fresh: 3.3.0 + parse-json: 5.2.0 + path-type: 4.0.0 + yaml: 1.10.2 + dev: true + + /create-require@1.1.1: + resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==} + dev: true + + /cross-spawn@7.0.3: + resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} + engines: {node: '>= 8'} + dependencies: + path-key: 3.1.1 + shebang-command: 2.0.0 + which: 2.0.2 + dev: true + + /crypto@1.0.1: + resolution: {integrity: sha512-VxBKmeNcqQdiUQUW2Tzq0t377b54N2bMtXO/qiLa+6eRRmmC4qT3D4OnTGoT/U6O9aklQ/jTwbOtRMTTY8G0Ig==} + deprecated: This package is no longer supported. It's now a built-in Node module. If you've depended on crypto, you should switch to the one that's built-in. + dev: false + + /cssesc@3.0.0: + resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} + engines: {node: '>=4'} + hasBin: true + dev: true + + /csstype@3.1.3: + resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==} + dev: true + + /cypress@9.7.0: + resolution: {integrity: sha512-+1EE1nuuuwIt/N1KXRR2iWHU+OiIt7H28jJDyyI4tiUftId/DrXYEwoDa5+kH2pki1zxnA0r6HrUGHV5eLbF5Q==} + engines: {node: '>=12.0.0'} + hasBin: true + requiresBuild: true + dependencies: + '@cypress/request': 2.88.12 + '@cypress/xvfb': 1.2.4(supports-color@8.1.1) + '@types/node': 14.18.63 + '@types/sinonjs__fake-timers': 8.1.1 + '@types/sizzle': 2.3.8 + arch: 2.2.0 + blob-util: 2.0.2 + bluebird: 3.7.2 + buffer: 5.7.1 + cachedir: 2.4.0 + chalk: 4.1.2 + check-more-types: 2.24.0 + cli-cursor: 3.1.0 + cli-table3: 0.6.3 + commander: 5.1.0 + common-tags: 1.8.2 + dayjs: 1.11.10 + debug: 4.3.4(supports-color@8.1.1) + enquirer: 2.4.1 + eventemitter2: 6.4.9 + execa: 4.1.0 + executable: 4.1.1 + extract-zip: 2.0.1(supports-color@8.1.1) + figures: 3.2.0 + fs-extra: 9.1.0 + getos: 3.2.1 + is-ci: 3.0.1 + is-installed-globally: 0.4.0 + lazy-ass: 1.6.0 + listr2: 3.14.0(enquirer@2.4.1) + lodash: 4.17.21 + log-symbols: 4.1.0 + minimist: 1.2.8 + ospath: 1.2.2 + pretty-bytes: 5.6.0 + proxy-from-env: 1.0.0 + request-progress: 3.0.0 + semver: 7.5.4 + supports-color: 8.1.1 + tmp: 0.2.1 + untildify: 4.0.0 + yauzl: 2.10.0 + dev: true + + /damerau-levenshtein@1.0.8: + resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==} + dev: true + + /dargs@7.0.0: + resolution: {integrity: sha512-2iy1EkLdlBzQGvbweYRFxmFath8+K7+AKB0TlhHWkNuH+TmovaMH/Wp7V7R4u7f4SnX3OgLsU9t1NI9ioDnUpg==} + engines: {node: '>=8'} + dev: true + + /dashdash@1.14.1: + resolution: {integrity: sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==} + engines: {node: '>=0.10'} + dependencies: + assert-plus: 1.0.0 + dev: true + + /data-uri-to-buffer@4.0.1: + resolution: {integrity: sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==} + engines: {node: '>= 12'} + dev: true + + /date-fns@2.30.0: + resolution: {integrity: sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==} + engines: {node: '>=0.11'} + dependencies: + '@babel/runtime': 7.23.7 + dev: false + + /dayjs@1.11.10: + resolution: {integrity: sha512-vjAczensTgRcqDERK0SR2XMwsF/tSvnvlv6VcF2GIhg6Sx4yOIt/irsr1RDJsKiIyBzJDpCoXiWWq28MqH2cnQ==} + dev: true + + /debug@2.6.9: + resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + dependencies: + ms: 2.0.0 + dev: true + + /debug@3.2.7(supports-color@8.1.1): + resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + dependencies: + ms: 2.1.3 + supports-color: 8.1.1 + dev: true + + /debug@4.3.4(supports-color@8.1.1): + resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} + engines: {node: '>=6.0'} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + dependencies: + ms: 2.1.2 + supports-color: 8.1.1 + dev: true + + /decamelize-keys@1.1.1: + resolution: {integrity: sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==} + engines: {node: '>=0.10.0'} + dependencies: + decamelize: 1.2.0 + map-obj: 1.0.1 + dev: true + + /decamelize@1.2.0: + resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==} + engines: {node: '>=0.10.0'} + dev: true + + /decode-named-character-reference@1.0.2: + resolution: {integrity: sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==} + dependencies: + character-entities: 2.0.2 + dev: true + + /decode-uri-component@0.2.2: + resolution: {integrity: sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==} + engines: {node: '>=0.10'} + dev: false + + /deep-is@0.1.4: + resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} + dev: true + + /define-data-property@1.1.1: + resolution: {integrity: sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==} + engines: {node: '>= 0.4'} + dependencies: + get-intrinsic: 1.2.2 + gopd: 1.0.1 + has-property-descriptors: 1.0.1 + dev: true + + /define-properties@1.2.1: + resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==} + engines: {node: '>= 0.4'} + dependencies: + define-data-property: 1.1.1 + has-property-descriptors: 1.0.1 + object-keys: 1.1.1 + dev: true + + /delayed-stream@1.0.0: + resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==} + engines: {node: '>=0.4.0'} + dev: true + + /depd@2.0.0: + resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==} + engines: {node: '>= 0.8'} + dev: true + + /dequal@2.0.3: + resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} + engines: {node: '>=6'} + dev: true + + /destroy@1.2.0: + resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==} + engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} + dev: true + + /didyoumean@1.2.2: + resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==} + dev: true + + /diff@4.0.2: + resolution: {integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==} + engines: {node: '>=0.3.1'} + dev: true + + /diff@5.1.0: + resolution: {integrity: sha512-D+mk+qE8VC/PAUrlAU34N+VfXev0ghe5ywmpqrawphmVZc1bEfn56uo9qpyGp1p4xpzOHkSW4ztBd6L7Xx4ACw==} + engines: {node: '>=0.3.1'} + dev: true + + /dir-glob@3.0.1: + resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} + engines: {node: '>=8'} + dependencies: + path-type: 4.0.0 + dev: true + + /dlv@1.1.3: + resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==} + dev: true + + /doctrine@2.1.0: + resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==} + engines: {node: '>=0.10.0'} + dependencies: + esutils: 2.0.3 + dev: true + + /doctrine@3.0.0: + resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==} + engines: {node: '>=6.0.0'} + dependencies: + esutils: 2.0.3 + dev: true + + /dot-case@3.0.4: + resolution: {integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==} + dependencies: + no-case: 3.0.4 + tslib: 2.6.2 + dev: false + + /dot-prop@5.3.0: + resolution: {integrity: sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==} + engines: {node: '>=8'} + dependencies: + is-obj: 2.0.0 + dev: true + + /eastasianwidth@0.2.0: + resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} + dev: true + + /ecc-jsbn@0.1.2: + resolution: {integrity: sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==} + dependencies: + jsbn: 0.1.1 + safer-buffer: 2.1.2 + dev: true + + /ee-first@1.1.1: + resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==} + dev: true + + /electron-to-chromium@1.4.623: + resolution: {integrity: sha512-lKoz10iCYlP1WtRYdh5MvocQPWVRoI7ysp6qf18bmeBgR8abE6+I2CsfyNKztRDZvhdWc+krKT6wS7Neg8sw3A==} + dev: true + + /emoji-regex@8.0.0: + resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} + dev: true + + /emoji-regex@9.2.2: + resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} + dev: true + + /encodeurl@1.0.2: + resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==} + engines: {node: '>= 0.8'} + dev: true + + /end-of-stream@1.4.4: + resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==} + dependencies: + once: 1.4.0 + dev: true + + /enquirer@2.4.1: + resolution: {integrity: sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ==} + engines: {node: '>=8.6'} + dependencies: + ansi-colors: 4.1.3 + strip-ansi: 6.0.1 + dev: true + + /error-ex@1.3.2: + resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==} + dependencies: + is-arrayish: 0.2.1 + dev: true + + /es-abstract@1.22.3: + resolution: {integrity: sha512-eiiY8HQeYfYH2Con2berK+To6GrK2RxbPawDkGq4UiCQQfZHb6wX9qQqkbpPqaxQFcl8d9QzZqo0tGE0VcrdwA==} + engines: {node: '>= 0.4'} + dependencies: + array-buffer-byte-length: 1.0.0 + arraybuffer.prototype.slice: 1.0.2 + available-typed-arrays: 1.0.5 + call-bind: 1.0.5 + es-set-tostringtag: 2.0.2 + es-to-primitive: 1.2.1 + function.prototype.name: 1.1.6 + get-intrinsic: 1.2.2 + get-symbol-description: 1.0.0 + globalthis: 1.0.3 + gopd: 1.0.1 + has-property-descriptors: 1.0.1 + has-proto: 1.0.1 + has-symbols: 1.0.3 + hasown: 2.0.0 + internal-slot: 1.0.6 + is-array-buffer: 3.0.2 + is-callable: 1.2.7 + is-negative-zero: 2.0.2 + is-regex: 1.1.4 + is-shared-array-buffer: 1.0.2 + is-string: 1.0.7 + is-typed-array: 1.1.12 + is-weakref: 1.0.2 + object-inspect: 1.13.1 + object-keys: 1.1.1 + object.assign: 4.1.5 + regexp.prototype.flags: 1.5.1 + safe-array-concat: 1.0.1 + safe-regex-test: 1.0.0 + string.prototype.trim: 1.2.8 + string.prototype.trimend: 1.0.7 + string.prototype.trimstart: 1.0.7 + typed-array-buffer: 1.0.0 + typed-array-byte-length: 1.0.0 + typed-array-byte-offset: 1.0.0 + typed-array-length: 1.0.4 + unbox-primitive: 1.0.2 + which-typed-array: 1.1.13 + dev: true + + /es-iterator-helpers@1.0.15: + resolution: {integrity: sha512-GhoY8uYqd6iwUl2kgjTm4CZAf6oo5mHK7BPqx3rKgx893YSsy0LGHV6gfqqQvZt/8xM8xeOnfXBCfqclMKkJ5g==} + dependencies: + asynciterator.prototype: 1.0.0 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + es-set-tostringtag: 2.0.2 + function-bind: 1.1.2 + get-intrinsic: 1.2.2 + globalthis: 1.0.3 + has-property-descriptors: 1.0.1 + has-proto: 1.0.1 + has-symbols: 1.0.3 + internal-slot: 1.0.6 + iterator.prototype: 1.1.2 + safe-array-concat: 1.0.1 + dev: true + + /es-set-tostringtag@2.0.2: + resolution: {integrity: sha512-BuDyupZt65P9D2D2vA/zqcI3G5xRsklm5N3xCwuiy+/vKy8i0ifdsQP1sLgO4tZDSCaQUSnmC48khknGMV3D2Q==} + engines: {node: '>= 0.4'} + dependencies: + get-intrinsic: 1.2.2 + has-tostringtag: 1.0.0 + hasown: 2.0.0 + dev: true + + /es-shim-unscopables@1.0.2: + resolution: {integrity: sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==} + dependencies: + hasown: 2.0.0 + dev: true + + /es-to-primitive@1.2.1: + resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==} + engines: {node: '>= 0.4'} + dependencies: + is-callable: 1.2.7 + is-date-object: 1.0.5 + is-symbol: 1.0.4 + dev: true + + /esbuild@0.17.19: + resolution: {integrity: sha512-XQ0jAPFkK/u3LcVRcvVHQcTIqD6E2H1fvZMA5dQPSOWb3suUbWbfbRf94pjc0bNzRYLfIrDRQXr7X+LHIm5oHw==} + engines: {node: '>=12'} + hasBin: true + requiresBuild: true + optionalDependencies: + '@esbuild/android-arm': 0.17.19 + '@esbuild/android-arm64': 0.17.19 + '@esbuild/android-x64': 0.17.19 + '@esbuild/darwin-arm64': 0.17.19 + '@esbuild/darwin-x64': 0.17.19 + '@esbuild/freebsd-arm64': 0.17.19 + '@esbuild/freebsd-x64': 0.17.19 + '@esbuild/linux-arm': 0.17.19 + '@esbuild/linux-arm64': 0.17.19 + '@esbuild/linux-ia32': 0.17.19 + '@esbuild/linux-loong64': 0.17.19 + '@esbuild/linux-mips64el': 0.17.19 + '@esbuild/linux-ppc64': 0.17.19 + '@esbuild/linux-riscv64': 0.17.19 + '@esbuild/linux-s390x': 0.17.19 + '@esbuild/linux-x64': 0.17.19 + '@esbuild/netbsd-x64': 0.17.19 + '@esbuild/openbsd-x64': 0.17.19 + '@esbuild/sunos-x64': 0.17.19 + '@esbuild/win32-arm64': 0.17.19 + '@esbuild/win32-ia32': 0.17.19 + '@esbuild/win32-x64': 0.17.19 + dev: true + + /escalade@3.1.1: + resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==} + engines: {node: '>=6'} + dev: true + + /escape-html@1.0.3: + resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==} + dev: true + + /escape-string-regexp@1.0.5: + resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} + engines: {node: '>=0.8.0'} + dev: true + + /escape-string-regexp@4.0.0: + resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} + engines: {node: '>=10'} + dev: true + + /escape-string-regexp@5.0.0: + resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==} + engines: {node: '>=12'} + dev: true + + /eslint-config-next@11.1.4(eslint@7.32.0)(next@12.3.4)(typescript@4.9.5): + resolution: {integrity: sha512-PD2/sxnLcI1Zy/QwKSwugzgafwymNh70Y/nPB/v+i0GOTFIl2JpLRUg9m/bQFHzi6PDeDM81w89ayFvpa2/Nxg==} + peerDependencies: + eslint: ^7.23.0 + next: '>=10.2.0' + typescript: '>=3.3.1' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@next/eslint-plugin-next': 11.1.4 + '@rushstack/eslint-patch': 1.6.1 + '@typescript-eslint/parser': 4.33.0(eslint@7.32.0)(typescript@4.9.5) + eslint: 7.32.0 + eslint-import-resolver-node: 0.3.9 + eslint-import-resolver-typescript: 2.7.1(eslint-plugin-import@2.29.1)(eslint@7.32.0) + eslint-plugin-import: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint-import-resolver-typescript@2.7.1)(eslint@7.32.0) + eslint-plugin-jsx-a11y: 6.8.0(eslint@7.32.0) + eslint-plugin-react: 7.33.2(eslint@7.32.0) + eslint-plugin-react-hooks: 4.6.0(eslint@7.32.0) + next: 12.3.4(react-dom@18.2.0)(react@18.2.0) + typescript: 4.9.5 + transitivePeerDependencies: + - eslint-import-resolver-webpack + - supports-color + dev: true + + /eslint-config-prettier@8.10.0(eslint@7.32.0): + resolution: {integrity: sha512-SM8AMJdeQqRYT9O9zguiruQZaN7+z+E4eAP9oiLNGKMtomwaB1E9dcgUD6ZAn/eQAb52USbvezbiljfZUhbJcg==} + hasBin: true + peerDependencies: + eslint: '>=7.0.0' + dependencies: + eslint: 7.32.0 + dev: true + + /eslint-import-resolver-node@0.3.9: + resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==} + dependencies: + debug: 3.2.7(supports-color@8.1.1) + is-core-module: 2.13.1 + resolve: 1.22.8 + transitivePeerDependencies: + - supports-color + dev: true + + /eslint-import-resolver-typescript@2.7.1(eslint-plugin-import@2.29.1)(eslint@7.32.0): + resolution: {integrity: sha512-00UbgGwV8bSgUv34igBDbTOtKhqoRMy9bFjNehT40bXg6585PNIct8HhXZ0SybqB9rWtXj9crcku8ndDn/gIqQ==} + engines: {node: '>=4'} + peerDependencies: + eslint: '*' + eslint-plugin-import: '*' + dependencies: + debug: 4.3.4(supports-color@8.1.1) + eslint: 7.32.0 + eslint-plugin-import: 2.29.1(@typescript-eslint/parser@4.33.0)(eslint-import-resolver-typescript@2.7.1)(eslint@7.32.0) + glob: 7.2.3 + is-glob: 4.0.3 + resolve: 1.22.8 + tsconfig-paths: 3.15.0 + transitivePeerDependencies: + - supports-color + dev: true + + /eslint-module-utils@2.8.0(@typescript-eslint/parser@4.33.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@2.7.1)(eslint@7.32.0): + resolution: {integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==} + engines: {node: '>=4'} + peerDependencies: + '@typescript-eslint/parser': '*' + eslint: '*' + eslint-import-resolver-node: '*' + eslint-import-resolver-typescript: '*' + eslint-import-resolver-webpack: '*' + peerDependenciesMeta: + '@typescript-eslint/parser': + optional: true + eslint: + optional: true + eslint-import-resolver-node: + optional: true + eslint-import-resolver-typescript: + optional: true + eslint-import-resolver-webpack: + optional: true + dependencies: + '@typescript-eslint/parser': 4.33.0(eslint@7.32.0)(typescript@4.9.5) + debug: 3.2.7(supports-color@8.1.1) + eslint: 7.32.0 + eslint-import-resolver-node: 0.3.9 + eslint-import-resolver-typescript: 2.7.1(eslint-plugin-import@2.29.1)(eslint@7.32.0) + transitivePeerDependencies: + - supports-color + dev: true + + /eslint-plugin-import@2.29.1(@typescript-eslint/parser@4.33.0)(eslint-import-resolver-typescript@2.7.1)(eslint@7.32.0): + resolution: {integrity: sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==} + engines: {node: '>=4'} + peerDependencies: + '@typescript-eslint/parser': '*' + eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 + peerDependenciesMeta: + '@typescript-eslint/parser': + optional: true + dependencies: + '@typescript-eslint/parser': 4.33.0(eslint@7.32.0)(typescript@4.9.5) + array-includes: 3.1.7 + array.prototype.findlastindex: 1.2.3 + array.prototype.flat: 1.3.2 + array.prototype.flatmap: 1.3.2 + debug: 3.2.7(supports-color@8.1.1) + doctrine: 2.1.0 + eslint: 7.32.0 + eslint-import-resolver-node: 0.3.9 + eslint-module-utils: 2.8.0(@typescript-eslint/parser@4.33.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@2.7.1)(eslint@7.32.0) + hasown: 2.0.0 + is-core-module: 2.13.1 + is-glob: 4.0.3 + minimatch: 3.1.2 + object.fromentries: 2.0.7 + object.groupby: 1.0.1 + object.values: 1.1.7 + semver: 6.3.1 + tsconfig-paths: 3.15.0 + transitivePeerDependencies: + - eslint-import-resolver-typescript + - eslint-import-resolver-webpack + - supports-color + dev: true + + /eslint-plugin-jsx-a11y@6.8.0(eslint@7.32.0): + resolution: {integrity: sha512-Hdh937BS3KdwwbBaKd5+PLCOmYY6U4f2h9Z2ktwtNKvIdIEu137rjYbcb9ApSbVJfWxANNuiKTD/9tOKjK9qOA==} + engines: {node: '>=4.0'} + peerDependencies: + eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 + dependencies: + '@babel/runtime': 7.23.7 + aria-query: 5.3.0 + array-includes: 3.1.7 + array.prototype.flatmap: 1.3.2 + ast-types-flow: 0.0.8 + axe-core: 4.7.0 + axobject-query: 3.2.1 + damerau-levenshtein: 1.0.8 + emoji-regex: 9.2.2 + es-iterator-helpers: 1.0.15 + eslint: 7.32.0 + hasown: 2.0.0 + jsx-ast-utils: 3.3.5 + language-tags: 1.0.9 + minimatch: 3.1.2 + object.entries: 1.1.7 + object.fromentries: 2.0.7 + dev: true + + /eslint-plugin-react-hooks@4.6.0(eslint@7.32.0): + resolution: {integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==} + engines: {node: '>=10'} + peerDependencies: + eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 + dependencies: + eslint: 7.32.0 + dev: true + + /eslint-plugin-react@7.33.2(eslint@7.32.0): + resolution: {integrity: sha512-73QQMKALArI8/7xGLNI/3LylrEYrlKZSb5C9+q3OtOewTnMQi5cT+aE9E41sLCmli3I9PGGmD1yiZydyo4FEPw==} + engines: {node: '>=4'} + peerDependencies: + eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 + dependencies: + array-includes: 3.1.7 + array.prototype.flatmap: 1.3.2 + array.prototype.tosorted: 1.1.2 + doctrine: 2.1.0 + es-iterator-helpers: 1.0.15 + eslint: 7.32.0 + estraverse: 5.3.0 + jsx-ast-utils: 3.3.5 + minimatch: 3.1.2 + object.entries: 1.1.7 + object.fromentries: 2.0.7 + object.hasown: 1.1.3 + object.values: 1.1.7 + prop-types: 15.8.1 + resolve: 2.0.0-next.5 + semver: 6.3.1 + string.prototype.matchall: 4.0.10 + dev: true + + /eslint-plugin-simple-import-sort@7.0.0(eslint@7.32.0): + resolution: {integrity: sha512-U3vEDB5zhYPNfxT5TYR7u01dboFZp+HNpnGhkDB2g/2E4wZ/g1Q9Ton8UwCLfRV9yAKyYqDh62oHOamvkFxsvw==} + peerDependencies: + eslint: '>=5.0.0' + dependencies: + eslint: 7.32.0 + dev: true + + /eslint-plugin-unused-imports@2.0.0(@typescript-eslint/eslint-plugin@4.33.0)(eslint@7.32.0): + resolution: {integrity: sha512-3APeS/tQlTrFa167ThtP0Zm0vctjr4M44HMpeg1P4bK6wItarumq0Ma82xorMKdFsWpphQBlRPzw/pxiVELX1A==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + '@typescript-eslint/eslint-plugin': ^5.0.0 + eslint: ^8.0.0 + peerDependenciesMeta: + '@typescript-eslint/eslint-plugin': + optional: true + dependencies: + '@typescript-eslint/eslint-plugin': 4.33.0(@typescript-eslint/parser@4.33.0)(eslint@7.32.0)(typescript@4.9.5) + eslint: 7.32.0 + eslint-rule-composer: 0.3.0 + dev: true + + /eslint-rule-composer@0.3.0: + resolution: {integrity: sha512-bt+Sh8CtDmn2OajxvNO+BX7Wn4CIWMpTRm3MaiKPCQcnnlm0CS2mhui6QaoeQugs+3Kj2ESKEEGJUdVafwhiCg==} + engines: {node: '>=4.0.0'} + dev: true + + /eslint-scope@5.1.1: + resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==} + engines: {node: '>=8.0.0'} + dependencies: + esrecurse: 4.3.0 + estraverse: 4.3.0 + dev: true + + /eslint-utils@2.1.0: + resolution: {integrity: sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==} + engines: {node: '>=6'} + dependencies: + eslint-visitor-keys: 1.3.0 + dev: true + + /eslint-utils@3.0.0(eslint@7.32.0): + resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==} + engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0} + peerDependencies: + eslint: '>=5' + dependencies: + eslint: 7.32.0 + eslint-visitor-keys: 2.1.0 + dev: true + + /eslint-visitor-keys@1.3.0: + resolution: {integrity: sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==} + engines: {node: '>=4'} + dev: true + + /eslint-visitor-keys@2.1.0: + resolution: {integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==} + engines: {node: '>=10'} + dev: true + + /eslint-visitor-keys@3.4.3: + resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + dev: true + + /eslint@7.32.0: + resolution: {integrity: sha512-VHZ8gX+EDfz+97jGcgyGCyRia/dPOd6Xh9yPv8Bl1+SoaIwD+a/vlrOmGRUyOYu7MwUhc7CxqeaDZU13S4+EpA==} + engines: {node: ^10.12.0 || >=12.0.0} + hasBin: true + dependencies: + '@babel/code-frame': 7.12.11 + '@eslint/eslintrc': 0.4.3 + '@humanwhocodes/config-array': 0.5.0 + ajv: 6.12.6 + chalk: 4.1.2 + cross-spawn: 7.0.3 + debug: 4.3.4(supports-color@8.1.1) + doctrine: 3.0.0 + enquirer: 2.4.1 + escape-string-regexp: 4.0.0 + eslint-scope: 5.1.1 + eslint-utils: 2.1.0 + eslint-visitor-keys: 2.1.0 + espree: 7.3.1 + esquery: 1.5.0 + esutils: 2.0.3 + fast-deep-equal: 3.1.3 + file-entry-cache: 6.0.1 + functional-red-black-tree: 1.0.1 + glob-parent: 5.1.2 + globals: 13.24.0 + ignore: 4.0.6 + import-fresh: 3.3.0 + imurmurhash: 0.1.4 + is-glob: 4.0.3 + js-yaml: 3.14.1 + json-stable-stringify-without-jsonify: 1.0.1 + levn: 0.4.1 + lodash.merge: 4.6.2 + minimatch: 3.1.2 + natural-compare: 1.4.0 + optionator: 0.9.3 + progress: 2.0.3 + regexpp: 3.2.0 + semver: 7.5.4 + strip-ansi: 6.0.1 + strip-json-comments: 3.1.1 + table: 6.8.1 + text-table: 0.2.0 + v8-compile-cache: 2.4.0 + transitivePeerDependencies: + - supports-color + dev: true + + /espree@7.3.1: + resolution: {integrity: sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==} + engines: {node: ^10.12.0 || >=12.0.0} + dependencies: + acorn: 7.4.1 + acorn-jsx: 5.3.2(acorn@7.4.1) + eslint-visitor-keys: 1.3.0 + dev: true + + /esprima@4.0.1: + resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} + engines: {node: '>=4'} + hasBin: true + dev: true + + /esquery@1.5.0: + resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==} + engines: {node: '>=0.10'} + dependencies: + estraverse: 5.3.0 + dev: true + + /esrecurse@4.3.0: + resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} + engines: {node: '>=4.0'} + dependencies: + estraverse: 5.3.0 + dev: true + + /estraverse@4.3.0: + resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==} + engines: {node: '>=4.0'} + dev: true + + /estraverse@5.3.0: + resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} + engines: {node: '>=4.0'} + dev: true + + /estree-util-attach-comments@2.1.1: + resolution: {integrity: sha512-+5Ba/xGGS6mnwFbXIuQiDPTbuTxuMCooq3arVv7gPZtYpjp+VXH/NkHAP35OOefPhNG/UGqU3vt/LTABwcHX0w==} + dependencies: + '@types/estree': 1.0.5 + dev: true + + /estree-util-build-jsx@2.2.2: + resolution: {integrity: sha512-m56vOXcOBuaF+Igpb9OPAy7f9w9OIkb5yhjsZuaPm7HoGi4oTOQi0h2+yZ+AtKklYFZ+rPC4n0wYCJCEU1ONqg==} + dependencies: + '@types/estree-jsx': 1.0.3 + estree-util-is-identifier-name: 2.1.0 + estree-walker: 3.0.3 + dev: true + + /estree-util-is-identifier-name@1.1.0: + resolution: {integrity: sha512-OVJZ3fGGt9By77Ix9NhaRbzfbDV/2rx9EP7YIDJTmsZSEc5kYn2vWcNccYyahJL2uAQZK2a5Or2i0wtIKTPoRQ==} + dev: true + + /estree-util-is-identifier-name@2.1.0: + resolution: {integrity: sha512-bEN9VHRyXAUOjkKVQVvArFym08BTWB0aJPppZZr0UNyAqWsLaVfAqP7hbaTJjzHifmB5ebnR8Wm7r7yGN/HonQ==} + dev: true + + /estree-util-to-js@1.2.0: + resolution: {integrity: sha512-IzU74r1PK5IMMGZXUVZbmiu4A1uhiPgW5hm1GjcOfr4ZzHaMPpLNJjR7HjXiIOzi25nZDrgFTobHTkV5Q6ITjA==} + dependencies: + '@types/estree-jsx': 1.0.3 + astring: 1.8.6 + source-map: 0.7.4 + dev: true + + /estree-util-value-to-estree@1.3.0: + resolution: {integrity: sha512-Y+ughcF9jSUJvncXwqRageavjrNPAI+1M/L3BI3PyLp1nmgYTGUXU6t5z1Y7OWuThoDdhPME07bQU+d5LxdJqw==} + engines: {node: '>=12.0.0'} + dependencies: + is-plain-obj: 3.0.0 + dev: true + + /estree-util-visit@1.2.1: + resolution: {integrity: sha512-xbgqcrkIVbIG+lI/gzbvd9SGTJL4zqJKBFttUl5pP27KhAjtMKbX/mQXJ7qgyXpMgVy/zvpm0xoQQaGL8OloOw==} + dependencies: + '@types/estree-jsx': 1.0.3 + '@types/unist': 2.0.10 + dev: true + + /estree-walker@3.0.3: + resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==} + dependencies: + '@types/estree': 1.0.5 + dev: true + + /esutils@2.0.3: + resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} + engines: {node: '>=0.10.0'} + dev: true + + /etag@1.8.1: + resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==} + engines: {node: '>= 0.6'} + dev: true + + /eventemitter2@6.4.9: + resolution: {integrity: sha512-JEPTiaOt9f04oa6NOkc4aH+nVp5I3wEjpHbIPqfgCdD5v5bUzy7xQqwcVO2aDQgOWhI28da57HksMrzK9HlRxg==} + dev: true + + /execa@4.1.0: + resolution: {integrity: sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==} + engines: {node: '>=10'} + dependencies: + cross-spawn: 7.0.3 + get-stream: 5.2.0 + human-signals: 1.1.1 + is-stream: 2.0.1 + merge-stream: 2.0.0 + npm-run-path: 4.0.1 + onetime: 5.1.2 + signal-exit: 3.0.7 + strip-final-newline: 2.0.0 + dev: true + + /execa@5.1.1: + resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==} + engines: {node: '>=10'} + dependencies: + cross-spawn: 7.0.3 + get-stream: 6.0.1 + human-signals: 2.1.0 + is-stream: 2.0.1 + merge-stream: 2.0.0 + npm-run-path: 4.0.1 + onetime: 5.1.2 + signal-exit: 3.0.7 + strip-final-newline: 2.0.0 + dev: true + + /executable@4.1.1: + resolution: {integrity: sha512-8iA79xD3uAch729dUG8xaaBBFGaEa0wdD2VkYLFHwlqosEj/jT66AzcreRDSgV7ehnNLBW2WR5jIXwGKjVdTLg==} + engines: {node: '>=4'} + dependencies: + pify: 2.3.0 + dev: true + + /exenv@1.2.2: + resolution: {integrity: sha512-Z+ktTxTwv9ILfgKCk32OX3n/doe+OcLTRtqK9pcL+JsP3J1/VW8Uvl4ZjLlKqeW4rzK4oesDOGMEMRIZqtP4Iw==} + dev: false + + /express@4.18.2: + resolution: {integrity: sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==} + engines: {node: '>= 0.10.0'} + dependencies: + accepts: 1.3.8 + array-flatten: 1.1.1 + body-parser: 1.20.1 + content-disposition: 0.5.4 + content-type: 1.0.5 + cookie: 0.5.0 + cookie-signature: 1.0.6 + debug: 2.6.9 + depd: 2.0.0 + encodeurl: 1.0.2 + escape-html: 1.0.3 + etag: 1.8.1 + finalhandler: 1.2.0 + fresh: 0.5.2 + http-errors: 2.0.0 + merge-descriptors: 1.0.1 + methods: 1.1.2 + on-finished: 2.4.1 + parseurl: 1.3.3 + path-to-regexp: 0.1.7 + proxy-addr: 2.0.7 + qs: 6.11.0 + range-parser: 1.2.1 + safe-buffer: 5.2.1 + send: 0.18.0 + serve-static: 1.15.0 + setprototypeof: 1.2.0 + statuses: 2.0.1 + type-is: 1.6.18 + utils-merge: 1.0.1 + vary: 1.1.2 + transitivePeerDependencies: + - supports-color + dev: true + + /extend-shallow@2.0.1: + resolution: {integrity: sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==} + engines: {node: '>=0.10.0'} + dependencies: + is-extendable: 0.1.1 + dev: true + + /extend@3.0.2: + resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==} + + /extract-zip@2.0.1(supports-color@8.1.1): + resolution: {integrity: sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==} + engines: {node: '>= 10.17.0'} + hasBin: true + dependencies: + debug: 4.3.4(supports-color@8.1.1) + get-stream: 5.2.0 + yauzl: 2.10.0 + optionalDependencies: + '@types/yauzl': 2.10.3 + transitivePeerDependencies: + - supports-color + dev: true + + /extsprintf@1.3.0: + resolution: {integrity: sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==} + engines: {'0': node >=0.6.0} + dev: true + + /fast-deep-equal@3.1.3: + resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} + dev: true + + /fast-glob@3.3.2: + resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==} + engines: {node: '>=8.6.0'} + dependencies: + '@nodelib/fs.stat': 2.0.5 + '@nodelib/fs.walk': 1.2.8 + glob-parent: 5.1.2 + merge2: 1.4.1 + micromatch: 4.0.5 + dev: true + + /fast-json-stable-stringify@2.1.0: + resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} + dev: true + + /fast-levenshtein@2.0.6: + resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} + dev: true + + /fastq@1.16.0: + resolution: {integrity: sha512-ifCoaXsDrsdkWTtiNJX5uzHDsrck5TzfKKDcuFFTIrrc/BS076qgEIfoIy1VeZqViznfKiysPYTh/QeHtnIsYA==} + dependencies: + reusify: 1.0.4 + dev: true + + /fault@2.0.1: + resolution: {integrity: sha512-WtySTkS4OKev5JtpHXnib4Gxiurzh5NCGvWrFaZ34m6JehfTUhKZvn9njTfw48t6JumVQOmrKqpmGcdwxnhqBQ==} + dependencies: + format: 0.2.2 + dev: true + + /fd-slicer@1.1.0: + resolution: {integrity: sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==} + dependencies: + pend: 1.2.0 + dev: true + + /fetch-blob@3.2.0: + resolution: {integrity: sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==} + engines: {node: ^12.20 || >= 14.13} + dependencies: + node-domexception: 1.0.0 + web-streams-polyfill: 3.3.2 + dev: true + + /figures@3.2.0: + resolution: {integrity: sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==} + engines: {node: '>=8'} + dependencies: + escape-string-regexp: 1.0.5 + dev: true + + /file-entry-cache@6.0.1: + resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==} + engines: {node: ^10.12.0 || >=12.0.0} + dependencies: + flat-cache: 3.2.0 + dev: true + + /fill-range@7.0.1: + resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==} + engines: {node: '>=8'} + dependencies: + to-regex-range: 5.0.1 + dev: true + + /filter-obj@1.1.0: + resolution: {integrity: sha512-8rXg1ZnX7xzy2NGDVkBVaAy+lSlPNwad13BtgSlLuxfIslyt5Vg64U7tFcCt4WS1R0hvtnQybT/IyCkGZ3DpXQ==} + engines: {node: '>=0.10.0'} + dev: false + + /finalhandler@1.2.0: + resolution: {integrity: sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==} + engines: {node: '>= 0.8'} + dependencies: + debug: 2.6.9 + encodeurl: 1.0.2 + escape-html: 1.0.3 + on-finished: 2.4.1 + parseurl: 1.3.3 + statuses: 2.0.1 + unpipe: 1.0.0 + transitivePeerDependencies: + - supports-color + dev: true + + /find-up@4.1.0: + resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==} + engines: {node: '>=8'} + dependencies: + locate-path: 5.0.0 + path-exists: 4.0.0 + dev: true + + /find-up@5.0.0: + resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} + engines: {node: '>=10'} + dependencies: + locate-path: 6.0.0 + path-exists: 4.0.0 + dev: true + + /flat-cache@3.2.0: + resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==} + engines: {node: ^10.12.0 || >=12.0.0} + dependencies: + flatted: 3.2.9 + keyv: 4.5.4 + rimraf: 3.0.2 + dev: true + + /flatted@3.2.9: + resolution: {integrity: sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==} + dev: true + + /follow-redirects@1.15.4: + resolution: {integrity: sha512-Cr4D/5wlrb0z9dgERpUL3LrmPKVDsETIJhaCMeDfuFYcqa5bldGV6wBsAN6X/vxlXQtFBMrXdXxdL8CbDTGniw==} + engines: {node: '>=4.0'} + peerDependencies: + debug: '*' + peerDependenciesMeta: + debug: + optional: true + dev: false + + /for-each@0.3.3: + resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==} + dependencies: + is-callable: 1.2.7 + dev: true + + /foreground-child@3.1.1: + resolution: {integrity: sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==} + engines: {node: '>=14'} + dependencies: + cross-spawn: 7.0.3 + signal-exit: 4.1.0 + dev: true + + /forever-agent@0.6.1: + resolution: {integrity: sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==} + dev: true + + /form-data@2.3.3: + resolution: {integrity: sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==} + engines: {node: '>= 0.12'} + dependencies: + asynckit: 0.4.0 + combined-stream: 1.0.8 + mime-types: 2.1.35 + dev: true + + /format@0.2.2: + resolution: {integrity: sha512-wzsgA6WOq+09wrU1tsJ09udeR/YZRaeArL9e1wPbFg3GG2yDnC2ldKpxs4xunpFF9DgqCqOIra3bc1HWrJ37Ww==} + engines: {node: '>=0.4.x'} + dev: true + + /formdata-polyfill@4.0.10: + resolution: {integrity: sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==} + engines: {node: '>=12.20.0'} + dependencies: + fetch-blob: 3.2.0 + dev: true + + /forwarded@0.2.0: + resolution: {integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==} + engines: {node: '>= 0.6'} + dev: true + + /fraction.js@4.3.7: + resolution: {integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==} + dev: true + + /fresh@0.5.2: + resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==} + engines: {node: '>= 0.6'} + dev: true + + /fs-extra@10.1.0: + resolution: {integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==} + engines: {node: '>=12'} + dependencies: + graceful-fs: 4.2.11 + jsonfile: 6.1.0 + universalify: 2.0.1 + dev: true + + /fs-extra@9.1.0: + resolution: {integrity: sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==} + engines: {node: '>=10'} + dependencies: + at-least-node: 1.0.0 + graceful-fs: 4.2.11 + jsonfile: 6.1.0 + universalify: 2.0.1 + dev: true + + /fs.realpath@1.0.0: + resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} + dev: true + + /fsevents@2.3.3: + resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} + engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} + os: [darwin] + requiresBuild: true + dev: true + optional: true + + /function-bind@1.1.2: + resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} + dev: true + + /function.prototype.name@1.1.6: + resolution: {integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + functions-have-names: 1.2.3 + dev: true + + /functional-red-black-tree@1.0.1: + resolution: {integrity: sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==} + dev: true + + /functions-have-names@1.2.3: + resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} + dev: true + + /get-caller-file@2.0.5: + resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} + engines: {node: 6.* || 8.* || >= 10.*} + dev: true + + /get-intrinsic@1.2.2: + resolution: {integrity: sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==} + dependencies: + function-bind: 1.1.2 + has-proto: 1.0.1 + has-symbols: 1.0.3 + hasown: 2.0.0 + dev: true + + /get-own-enumerable-property-symbols@3.0.2: + resolution: {integrity: sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==} + dev: true + + /get-stream@5.2.0: + resolution: {integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==} + engines: {node: '>=8'} + dependencies: + pump: 3.0.0 + dev: true + + /get-stream@6.0.1: + resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==} + engines: {node: '>=10'} + dev: true + + /get-symbol-description@1.0.0: + resolution: {integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.5 + get-intrinsic: 1.2.2 + dev: true + + /getos@3.2.1: + resolution: {integrity: sha512-U56CfOK17OKgTVqozZjUKNdkfEv6jk5WISBJ8SHoagjE6L69zOwl3Z+O8myjY9MEW3i2HPWQBt/LTbCgcC973Q==} + dependencies: + async: 3.2.5 + dev: true + + /getpass@0.1.7: + resolution: {integrity: sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==} + dependencies: + assert-plus: 1.0.0 + dev: true + + /giscus@1.4.0: + resolution: {integrity: sha512-Pll+pcclTx47NcFDw8nuka2Ja85Gc4XWpzSgL0rszOQaMQRQIV8UMR+zP4a+/N3tV2TXc1SZ537kWlsN6EsAaw==} + dependencies: + lit: 3.1.0 + dev: false + + /git-raw-commits@2.0.11: + resolution: {integrity: sha512-VnctFhw+xfj8Va1xtfEqCUD2XDrbAPSJx+hSrE5K7fGdjZruW7XV+QOrN7LF/RJyvspRiD2I0asWsxFp0ya26A==} + engines: {node: '>=10'} + hasBin: true + dependencies: + dargs: 7.0.0 + lodash: 4.17.21 + meow: 8.1.2 + split2: 3.2.2 + through2: 4.0.2 + dev: true + + /github-slugger@2.0.0: + resolution: {integrity: sha512-IaOQ9puYtjrkq7Y0Ygl9KDZnrf/aiUJYUpVf89y8kyaxbRG7Y1SrX/jaumrv81vc61+kiMempujsM3Yw7w5qcw==} + dev: true + + /glob-parent@5.1.2: + resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} + engines: {node: '>= 6'} + dependencies: + is-glob: 4.0.3 + dev: true + + /glob-parent@6.0.2: + resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} + engines: {node: '>=10.13.0'} + dependencies: + is-glob: 4.0.3 + dev: true + + /glob@10.3.10: + resolution: {integrity: sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==} + engines: {node: '>=16 || 14 >=14.17'} + hasBin: true + dependencies: + foreground-child: 3.1.1 + jackspeak: 2.3.6 + minimatch: 9.0.3 + minipass: 7.0.4 + path-scurry: 1.10.1 + dev: true + + /glob@7.1.7: + resolution: {integrity: sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==} + dependencies: + fs.realpath: 1.0.0 + inflight: 1.0.6 + inherits: 2.0.4 + minimatch: 3.1.2 + once: 1.4.0 + path-is-absolute: 1.0.1 + dev: true + + /glob@7.2.3: + resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} + dependencies: + fs.realpath: 1.0.0 + inflight: 1.0.6 + inherits: 2.0.4 + minimatch: 3.1.2 + once: 1.4.0 + path-is-absolute: 1.0.1 + dev: true + + /global-dirs@0.1.1: + resolution: {integrity: sha512-NknMLn7F2J7aflwFOlGdNIuCDpN3VGoSoB+aap3KABFWbHVn1TCgFC+np23J8W2BiZbjfEw3BFBycSMv1AFblg==} + engines: {node: '>=4'} + dependencies: + ini: 1.3.8 + dev: true + + /global-dirs@3.0.1: + resolution: {integrity: sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA==} + engines: {node: '>=10'} + dependencies: + ini: 2.0.0 + dev: true + + /globals@13.24.0: + resolution: {integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==} + engines: {node: '>=8'} + dependencies: + type-fest: 0.20.2 + dev: true + + /globalthis@1.0.3: + resolution: {integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==} + engines: {node: '>= 0.4'} + dependencies: + define-properties: 1.2.1 + dev: true + + /globby@11.1.0: + resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} + engines: {node: '>=10'} + dependencies: + array-union: 2.1.0 + dir-glob: 3.0.1 + fast-glob: 3.3.2 + ignore: 5.3.0 + merge2: 1.4.1 + slash: 3.0.0 + dev: true + + /gopd@1.0.1: + resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==} + dependencies: + get-intrinsic: 1.2.2 + dev: true + + /graceful-fs@4.2.11: + resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} + dev: true + + /gray-matter@4.0.3: + resolution: {integrity: sha512-5v6yZd4JK3eMI3FqqCouswVqwugaA9r4dNZB1wwcmrD02QkV5H0y7XBQW8QwQqEaZY1pM9aqORSORhJRdNK44Q==} + engines: {node: '>=6.0'} + dependencies: + js-yaml: 3.14.1 + kind-of: 6.0.3 + section-matter: 1.0.0 + strip-bom-string: 1.0.0 + dev: true + + /hard-rejection@2.1.0: + resolution: {integrity: sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==} + engines: {node: '>=6'} + dev: true + + /has-bigints@1.0.2: + resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==} + dev: true + + /has-flag@3.0.0: + resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} + engines: {node: '>=4'} + dev: true + + /has-flag@4.0.0: + resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} + engines: {node: '>=8'} + dev: true + + /has-property-descriptors@1.0.1: + resolution: {integrity: sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==} + dependencies: + get-intrinsic: 1.2.2 + dev: true + + /has-proto@1.0.1: + resolution: {integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==} + engines: {node: '>= 0.4'} + dev: true + + /has-symbols@1.0.3: + resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==} + engines: {node: '>= 0.4'} + dev: true + + /has-tostringtag@1.0.0: + resolution: {integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==} + engines: {node: '>= 0.4'} + dependencies: + has-symbols: 1.0.3 + dev: true + + /hash-obj@4.0.0: + resolution: {integrity: sha512-FwO1BUVWkyHasWDW4S8o0ssQXjvyghLV2rfVhnN36b2bbcj45eGiuzdn9XOvOpjV3TKQD7Gm2BWNXdE9V4KKYg==} + engines: {node: '>=12'} + dependencies: + is-obj: 3.0.0 + sort-keys: 5.0.0 + type-fest: 1.4.0 + dev: false + + /hasown@2.0.0: + resolution: {integrity: sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==} + engines: {node: '>= 0.4'} + dependencies: + function-bind: 1.1.2 + dev: true + + /hast-util-from-parse5@7.1.2: + resolution: {integrity: sha512-Nz7FfPBuljzsN3tCQ4kCBKqdNhQE2l0Tn+X1ubgKBPRoiDIu1mL08Cfw4k7q71+Duyaw7DXDN+VTAp4Vh3oCOw==} + dependencies: + '@types/hast': 2.3.9 + '@types/unist': 2.0.10 + hastscript: 7.2.0 + property-information: 6.4.0 + vfile: 5.3.7 + vfile-location: 4.1.0 + web-namespaces: 2.0.1 + dev: false + + /hast-util-has-property@2.0.1: + resolution: {integrity: sha512-X2+RwZIMTMKpXUzlotatPzWj8bspCymtXH3cfG3iQKV+wPF53Vgaqxi/eLqGck0wKq1kS9nvoB1wchbCPEL8sg==} + dev: true + + /hast-util-heading-rank@2.1.1: + resolution: {integrity: sha512-iAuRp+ESgJoRFJbSyaqsfvJDY6zzmFoEnL1gtz1+U8gKtGGj1p0CVlysuUAUjq95qlZESHINLThwJzNGmgGZxA==} + dependencies: + '@types/hast': 2.3.9 + dev: true + + /hast-util-is-element@2.1.3: + resolution: {integrity: sha512-O1bKah6mhgEq2WtVMk+Ta5K7pPMqsBBlmzysLdcwKVrqzZQ0CHqUPiIVspNhAG1rvxpvJjtGee17XfauZYKqVA==} + dependencies: + '@types/hast': 2.3.9 + '@types/unist': 2.0.10 + dev: true + + /hast-util-parse-selector@3.1.1: + resolution: {integrity: sha512-jdlwBjEexy1oGz0aJ2f4GKMaVKkA9jwjr4MjAAI22E5fM/TXVZHuS5OpONtdeIkRKqAaryQ2E9xNQxijoThSZA==} + dependencies: + '@types/hast': 2.3.9 + dev: false + + /hast-util-to-estree@2.3.3: + resolution: {integrity: sha512-ihhPIUPxN0v0w6M5+IiAZZrn0LH2uZomeWwhn7uP7avZC6TE7lIiEh2yBMPr5+zi1aUCXq6VoYRgs2Bw9xmycQ==} + dependencies: + '@types/estree': 1.0.5 + '@types/estree-jsx': 1.0.3 + '@types/hast': 2.3.9 + '@types/unist': 2.0.10 + comma-separated-tokens: 2.0.3 + estree-util-attach-comments: 2.1.1 + estree-util-is-identifier-name: 2.1.0 + hast-util-whitespace: 2.0.1 + mdast-util-mdx-expression: 1.3.2 + mdast-util-mdxjs-esm: 1.3.1 + property-information: 6.4.0 + space-separated-tokens: 2.0.2 + style-to-object: 0.4.4 + unist-util-position: 4.0.4 + zwitch: 2.0.4 + transitivePeerDependencies: + - supports-color + dev: true + + /hast-util-to-string@2.0.0: + resolution: {integrity: sha512-02AQ3vLhuH3FisaMM+i/9sm4OXGSq1UhOOCpTLLQtHdL3tZt7qil69r8M8iDkZYyC0HCFylcYoP+8IO7ddta1A==} + dependencies: + '@types/hast': 2.3.9 + + /hast-util-whitespace@2.0.1: + resolution: {integrity: sha512-nAxA0v8+vXSBDt3AnRUNjyRIQ0rD+ntpbAp4LnPkumc5M9yUbSMa4XDU9Q6etY4f1Wp4bNgvc1yjiZtsTTrSng==} + dev: true + + /hastscript@7.2.0: + resolution: {integrity: sha512-TtYPq24IldU8iKoJQqvZOuhi5CyCQRAbvDOX0x1eW6rsHSxa/1i2CCiptNTotGHJ3VoHRGmqiv6/D3q113ikkw==} + dependencies: + '@types/hast': 2.3.9 + comma-separated-tokens: 2.0.3 + hast-util-parse-selector: 3.1.1 + property-information: 6.4.0 + space-separated-tokens: 2.0.2 + dev: false + + /hosted-git-info@2.8.9: + resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==} + dev: true + + /hosted-git-info@4.1.0: + resolution: {integrity: sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==} + engines: {node: '>=10'} + dependencies: + lru-cache: 6.0.0 + dev: true + + /http-errors@2.0.0: + resolution: {integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==} + engines: {node: '>= 0.8'} + dependencies: + depd: 2.0.0 + inherits: 2.0.4 + setprototypeof: 1.2.0 + statuses: 2.0.1 + toidentifier: 1.0.1 + dev: true + + /http-signature@1.3.6: + resolution: {integrity: sha512-3adrsD6zqo4GsTqtO7FyrejHNv+NgiIfAfv68+jVlFmSr9OGy7zrxONceFRLKvnnZA5jbxQBX1u9PpB6Wi32Gw==} + engines: {node: '>=0.10'} + dependencies: + assert-plus: 1.0.0 + jsprim: 2.0.2 + sshpk: 1.18.0 + dev: true + + /human-signals@1.1.1: + resolution: {integrity: sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==} + engines: {node: '>=8.12.0'} + dev: true + + /human-signals@2.1.0: + resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==} + engines: {node: '>=10.17.0'} + dev: true + + /husky@7.0.4: + resolution: {integrity: sha512-vbaCKN2QLtP/vD4yvs6iz6hBEo6wkSzs8HpRah1Z6aGmF2KW5PdYuAd7uX5a+OyBZHBhd+TFLqgjUgytQr4RvQ==} + engines: {node: '>=12'} + hasBin: true + dev: true + + /iconv-lite@0.4.24: + resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==} + engines: {node: '>=0.10.0'} + dependencies: + safer-buffer: 2.1.2 + dev: true + + /ieee754@1.2.1: + resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} + dev: true + + /ignore@4.0.6: + resolution: {integrity: sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==} + engines: {node: '>= 4'} + dev: true + + /ignore@5.3.0: + resolution: {integrity: sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg==} + engines: {node: '>= 4'} + dev: true + + /import-fresh@3.3.0: + resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} + engines: {node: '>=6'} + dependencies: + parent-module: 1.0.1 + resolve-from: 4.0.0 + dev: true + + /imurmurhash@0.1.4: + resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} + engines: {node: '>=0.8.19'} + dev: true + + /indent-string@4.0.0: + resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==} + engines: {node: '>=8'} + dev: true + + /inflight@1.0.6: + resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} + dependencies: + once: 1.4.0 + wrappy: 1.0.2 + dev: true + + /inherits@2.0.4: + resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} + dev: true + + /ini@1.3.8: + resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==} + dev: true + + /ini@2.0.0: + resolution: {integrity: sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==} + engines: {node: '>=10'} + dev: true + + /inline-style-parser@0.1.1: + resolution: {integrity: sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==} + dev: true + + /internal-slot@1.0.6: + resolution: {integrity: sha512-Xj6dv+PsbtwyPpEflsejS+oIZxmMlV44zAhG479uYu89MsjcYOhCFnNyKrkJrihbsiasQyY0afoCl/9BLR65bg==} + engines: {node: '>= 0.4'} + dependencies: + get-intrinsic: 1.2.2 + hasown: 2.0.0 + side-channel: 1.0.4 + dev: true + + /ipaddr.js@1.9.1: + resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==} + engines: {node: '>= 0.10'} + dev: true + + /is-alphabetical@2.0.1: + resolution: {integrity: sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ==} + dev: true + + /is-alphanumerical@2.0.1: + resolution: {integrity: sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==} + dependencies: + is-alphabetical: 2.0.1 + is-decimal: 2.0.1 + dev: true + + /is-array-buffer@3.0.2: + resolution: {integrity: sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==} + dependencies: + call-bind: 1.0.5 + get-intrinsic: 1.2.2 + is-typed-array: 1.1.12 + dev: true + + /is-arrayish@0.2.1: + resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} + dev: true + + /is-async-function@2.0.0: + resolution: {integrity: sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==} + engines: {node: '>= 0.4'} + dependencies: + has-tostringtag: 1.0.0 + dev: true + + /is-bigint@1.0.4: + resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==} + dependencies: + has-bigints: 1.0.2 + dev: true + + /is-binary-path@2.1.0: + resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} + engines: {node: '>=8'} + dependencies: + binary-extensions: 2.2.0 + dev: true + + /is-boolean-object@1.1.2: + resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.5 + has-tostringtag: 1.0.0 + dev: true + + /is-buffer@2.0.5: + resolution: {integrity: sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==} + engines: {node: '>=4'} + + /is-callable@1.2.7: + resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} + engines: {node: '>= 0.4'} + dev: true + + /is-ci@3.0.1: + resolution: {integrity: sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==} + hasBin: true + dependencies: + ci-info: 3.9.0 + dev: true + + /is-core-module@2.13.1: + resolution: {integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==} + dependencies: + hasown: 2.0.0 + dev: true + + /is-date-object@1.0.5: + resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==} + engines: {node: '>= 0.4'} + dependencies: + has-tostringtag: 1.0.0 + dev: true + + /is-decimal@2.0.1: + resolution: {integrity: sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==} + dev: true + + /is-extendable@0.1.1: + resolution: {integrity: sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==} + engines: {node: '>=0.10.0'} + dev: true + + /is-extglob@2.1.1: + resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} + engines: {node: '>=0.10.0'} + dev: true + + /is-finalizationregistry@1.0.2: + resolution: {integrity: sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==} + dependencies: + call-bind: 1.0.5 + dev: true + + /is-fullwidth-code-point@3.0.0: + resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} + engines: {node: '>=8'} + dev: true + + /is-generator-function@1.0.10: + resolution: {integrity: sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==} + engines: {node: '>= 0.4'} + dependencies: + has-tostringtag: 1.0.0 + dev: true + + /is-glob@4.0.3: + resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} + engines: {node: '>=0.10.0'} + dependencies: + is-extglob: 2.1.1 + dev: true + + /is-hexadecimal@2.0.1: + resolution: {integrity: sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg==} + dev: true + + /is-installed-globally@0.4.0: + resolution: {integrity: sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==} + engines: {node: '>=10'} + dependencies: + global-dirs: 3.0.1 + is-path-inside: 3.0.3 + dev: true + + /is-map@2.0.2: + resolution: {integrity: sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==} + dev: true + + /is-negative-zero@2.0.2: + resolution: {integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==} + engines: {node: '>= 0.4'} + dev: true + + /is-number-object@1.0.7: + resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==} + engines: {node: '>= 0.4'} + dependencies: + has-tostringtag: 1.0.0 + dev: true + + /is-number@7.0.0: + resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} + engines: {node: '>=0.12.0'} + dev: true + + /is-obj@1.0.1: + resolution: {integrity: sha512-l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg==} + engines: {node: '>=0.10.0'} + dev: true + + /is-obj@2.0.0: + resolution: {integrity: sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==} + engines: {node: '>=8'} + dev: true + + /is-obj@3.0.0: + resolution: {integrity: sha512-IlsXEHOjtKhpN8r/tRFj2nDyTmHvcfNeu/nrRIcXE17ROeatXchkojffa1SpdqW4cr/Fj6QkEf/Gn4zf6KKvEQ==} + engines: {node: '>=12'} + dev: false + + /is-path-inside@3.0.3: + resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==} + engines: {node: '>=8'} + dev: true + + /is-plain-obj@1.1.0: + resolution: {integrity: sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==} + engines: {node: '>=0.10.0'} + dev: true + + /is-plain-obj@3.0.0: + resolution: {integrity: sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==} + engines: {node: '>=10'} + dev: true + + /is-plain-obj@4.1.0: + resolution: {integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==} + engines: {node: '>=12'} + + /is-reference@3.0.2: + resolution: {integrity: sha512-v3rht/LgVcsdZa3O2Nqs+NMowLOxeOm7Ay9+/ARQ2F+qEoANRcqrjAZKGN0v8ymUetZGgkp26LTnGT7H0Qo9Pg==} + dependencies: + '@types/estree': 1.0.5 + dev: true + + /is-regex@1.1.4: + resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.5 + has-tostringtag: 1.0.0 + dev: true + + /is-regexp@1.0.0: + resolution: {integrity: sha512-7zjFAPO4/gwyQAAgRRmqeEeyIICSdmCqa3tsVHMdBzaXXRiqopZL4Cyghg/XulGWrtABTpbnYYzzIRffLkP4oA==} + engines: {node: '>=0.10.0'} + dev: true + + /is-set@2.0.2: + resolution: {integrity: sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==} + dev: true + + /is-shared-array-buffer@1.0.2: + resolution: {integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==} + dependencies: + call-bind: 1.0.5 + dev: true + + /is-stream@2.0.1: + resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==} + engines: {node: '>=8'} + dev: true + + /is-string@1.0.7: + resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==} + engines: {node: '>= 0.4'} + dependencies: + has-tostringtag: 1.0.0 + dev: true + + /is-symbol@1.0.4: + resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==} + engines: {node: '>= 0.4'} + dependencies: + has-symbols: 1.0.3 + dev: true + + /is-text-path@1.0.1: + resolution: {integrity: sha512-xFuJpne9oFz5qDaodwmmG08e3CawH/2ZV8Qqza1Ko7Sk8POWbkRdwIoAWVhqvq0XeUzANEhKo2n0IXUGBm7A/w==} + engines: {node: '>=0.10.0'} + dependencies: + text-extensions: 1.9.0 + dev: true + + /is-typed-array@1.1.12: + resolution: {integrity: sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==} + engines: {node: '>= 0.4'} + dependencies: + which-typed-array: 1.1.13 + dev: true + + /is-typedarray@1.0.0: + resolution: {integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==} + dev: true + + /is-unicode-supported@0.1.0: + resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==} + engines: {node: '>=10'} + dev: true + + /is-weakmap@2.0.1: + resolution: {integrity: sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==} + dev: true + + /is-weakref@1.0.2: + resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==} + dependencies: + call-bind: 1.0.5 + dev: true + + /is-weakset@2.0.2: + resolution: {integrity: sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==} + dependencies: + call-bind: 1.0.5 + get-intrinsic: 1.2.2 + dev: true + + /isarray@2.0.5: + resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==} + dev: true + + /isexe@2.0.0: + resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} + dev: true + + /isstream@0.1.2: + resolution: {integrity: sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==} + dev: true + + /iterator.prototype@1.1.2: + resolution: {integrity: sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==} + dependencies: + define-properties: 1.2.1 + get-intrinsic: 1.2.2 + has-symbols: 1.0.3 + reflect.getprototypeof: 1.0.4 + set-function-name: 2.0.1 + dev: true + + /jackspeak@2.3.6: + resolution: {integrity: sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==} + engines: {node: '>=14'} + dependencies: + '@isaacs/cliui': 8.0.2 + optionalDependencies: + '@pkgjs/parseargs': 0.11.0 + dev: true + + /jiti@1.21.0: + resolution: {integrity: sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==} + hasBin: true + dev: true + + /js-tokens@4.0.0: + resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} + + /js-yaml@3.14.1: + resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==} + hasBin: true + dependencies: + argparse: 1.0.10 + esprima: 4.0.1 + dev: true + + /js-yaml@4.1.0: + resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} + hasBin: true + dependencies: + argparse: 2.0.1 + dev: true + + /jsbn@0.1.1: + resolution: {integrity: sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==} + dev: true + + /json-buffer@3.0.1: + resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} + dev: true + + /json-parse-even-better-errors@2.3.1: + resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==} + dev: true + + /json-schema-traverse@0.4.1: + resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} + dev: true + + /json-schema-traverse@1.0.0: + resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==} + dev: true + + /json-schema@0.4.0: + resolution: {integrity: sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==} + dev: true + + /json-stable-stringify-without-jsonify@1.0.1: + resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} + dev: true + + /json-stringify-safe@5.0.1: + resolution: {integrity: sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==} + dev: true + + /json5@1.0.2: + resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==} + hasBin: true + dependencies: + minimist: 1.2.8 + dev: true + + /jsonc-parser@3.2.0: + resolution: {integrity: sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==} + dev: false + + /jsonfile@6.1.0: + resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==} + dependencies: + universalify: 2.0.1 + optionalDependencies: + graceful-fs: 4.2.11 + dev: true + + /jsonparse@1.3.1: + resolution: {integrity: sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==} + engines: {'0': node >= 0.2.0} + dev: true + + /jsprim@2.0.2: + resolution: {integrity: sha512-gqXddjPqQ6G40VdnI6T6yObEC+pDNvyP95wdQhkWkg7crHH3km5qP1FsOXEkzEQwnz6gz5qGTn1c2Y52wP3OyQ==} + engines: {'0': node >=0.6.0} + dependencies: + assert-plus: 1.0.0 + extsprintf: 1.3.0 + json-schema: 0.4.0 + verror: 1.10.0 + dev: true + + /jsx-ast-utils@3.3.5: + resolution: {integrity: sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==} + engines: {node: '>=4.0'} + dependencies: + array-includes: 3.1.7 + array.prototype.flat: 1.3.2 + object.assign: 4.1.5 + object.values: 1.1.7 + dev: true + + /keyv@4.5.4: + resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} + dependencies: + json-buffer: 3.0.1 + dev: true + + /kind-of@6.0.3: + resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==} + engines: {node: '>=0.10.0'} + dev: true + + /kleur@4.1.5: + resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==} + engines: {node: '>=6'} + dev: true + + /language-subtag-registry@0.3.22: + resolution: {integrity: sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==} + dev: true + + /language-tags@1.0.9: + resolution: {integrity: sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==} + engines: {node: '>=0.10'} + dependencies: + language-subtag-registry: 0.3.22 + dev: true + + /lazy-ass@1.6.0: + resolution: {integrity: sha512-cc8oEVoctTvsFZ/Oje/kGnHbpWHYBe8IAJe4C0QNc3t8uM/0Y8+erSz/7Y1ALuXTEZTMvxXwO6YbX1ey3ujiZw==} + engines: {node: '> 0.8'} + dev: true + + /levn@0.4.1: + resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} + engines: {node: '>= 0.8.0'} + dependencies: + prelude-ls: 1.2.1 + type-check: 0.4.0 + dev: true + + /lilconfig@2.1.0: + resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==} + engines: {node: '>=10'} + dev: true + + /lilconfig@3.0.0: + resolution: {integrity: sha512-K2U4W2Ff5ibV7j7ydLr+zLAkIg5JJ4lPn1Ltsdt+Tz/IjQ8buJ55pZAxoP34lqIiwtF9iAvtLv3JGv7CAyAg+g==} + engines: {node: '>=14'} + dev: true + + /lines-and-columns@1.2.4: + resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} + dev: true + + /lint-staged@11.2.6: + resolution: {integrity: sha512-Vti55pUnpvPE0J9936lKl0ngVeTdSZpEdTNhASbkaWX7J5R9OEifo1INBGQuGW4zmy6OG+TcWPJ3m5yuy5Q8Tg==} + hasBin: true + dependencies: + cli-truncate: 2.1.0 + colorette: 1.4.0 + commander: 8.3.0 + cosmiconfig: 7.1.0 + debug: 4.3.4(supports-color@8.1.1) + enquirer: 2.4.1 + execa: 5.1.1 + listr2: 3.14.0(enquirer@2.4.1) + micromatch: 4.0.5 + normalize-path: 3.0.0 + please-upgrade-node: 3.2.0 + string-argv: 0.3.1 + stringify-object: 3.3.0 + supports-color: 8.1.1 + dev: true + + /listr2@3.14.0(enquirer@2.4.1): + resolution: {integrity: sha512-TyWI8G99GX9GjE54cJ+RrNMcIFBfwMPxc3XTFiAYGN4s10hWROGtOg7+O6u6LE3mNkyld7RSLE6nrKBvTfcs3g==} + engines: {node: '>=10.0.0'} + peerDependencies: + enquirer: '>= 2.3.0 < 3' + peerDependenciesMeta: + enquirer: + optional: true + dependencies: + cli-truncate: 2.1.0 + colorette: 2.0.20 + enquirer: 2.4.1 + log-update: 4.0.0 + p-map: 4.0.0 + rfdc: 1.3.0 + rxjs: 7.8.1 + through: 2.3.8 + wrap-ansi: 7.0.0 + dev: true + + /lit-element@4.0.2: + resolution: {integrity: sha512-/W6WQZUa5VEXwC7H9tbtDMdSs9aWil3Ou8hU6z2cOKWbsm/tXPAcsoaHVEtrDo0zcOIE5GF6QgU55tlGL2Nihg==} + dependencies: + '@lit-labs/ssr-dom-shim': 1.1.2 + '@lit/reactive-element': 2.0.2 + lit-html: 3.1.0 + dev: false + + /lit-html@3.1.0: + resolution: {integrity: sha512-FwAjq3iNsaO6SOZXEIpeROlJLUlrbyMkn4iuv4f4u1H40Jw8wkeR/OUXZUHUoiYabGk8Y4Y0F/rgq+R4MrOLmA==} + dependencies: + '@types/trusted-types': 2.0.7 + dev: false + + /lit@3.1.0: + resolution: {integrity: sha512-rzo/hmUqX8zmOdamDAeydfjsGXbbdtAFqMhmocnh2j9aDYqbu0fjXygjCa0T99Od9VQ/2itwaGrjZz/ZELVl7w==} + dependencies: + '@lit/reactive-element': 2.0.2 + lit-element: 4.0.2 + lit-html: 3.1.0 + dev: false + + /loadjs@4.2.0: + resolution: {integrity: sha512-AgQGZisAlTPbTEzrHPb6q+NYBMD+DP9uvGSIjSUM5uG+0jG15cb8axWpxuOIqrmQjn6scaaH8JwloiP27b2KXA==} + dev: false + + /local-cypress@1.2.6: + resolution: {integrity: sha512-F3d7eyZNkqOwEamtziRgzleCiKd05z3leIyVR/G9w6IMwnYn4wRtw68C/THx6C+PUFDsBgwNUVNuReRSKRj70A==} + requiresBuild: true + dependencies: + debug: 4.3.4(supports-color@8.1.1) + transitivePeerDependencies: + - supports-color + dev: true + + /locate-path@5.0.0: + resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==} + engines: {node: '>=8'} + dependencies: + p-locate: 4.1.0 + dev: true + + /locate-path@6.0.0: + resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} + engines: {node: '>=10'} + dependencies: + p-locate: 5.0.0 + dev: true + + /lodash.castarray@4.4.0: + resolution: {integrity: sha512-aVx8ztPv7/2ULbArGJ2Y42bG1mEQ5mGjpdvrbJcJFU3TbYybe+QlLS4pst9zV52ymy2in1KpFPiZnAOATxD4+Q==} + dev: true + + /lodash.get@4.4.2: + resolution: {integrity: sha512-z+Uw/vLuy6gQe8cfaFWD7p0wVv8fJl3mbzXh33RS+0oW2wvUqiRXiQ69gLWSLpgB5/6sU+r6BlQR0MBILadqTQ==} + dev: true + + /lodash.isplainobject@4.0.6: + resolution: {integrity: sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==} + dev: true + + /lodash.merge@4.6.2: + resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} + dev: true + + /lodash.once@4.1.1: + resolution: {integrity: sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==} + dev: true + + /lodash.truncate@4.4.2: + resolution: {integrity: sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==} + dev: true + + /lodash@4.17.21: + resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} + + /log-symbols@4.1.0: + resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==} + engines: {node: '>=10'} + dependencies: + chalk: 4.1.2 + is-unicode-supported: 0.1.0 + dev: true + + /log-update@4.0.0: + resolution: {integrity: sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==} + engines: {node: '>=10'} + dependencies: + ansi-escapes: 4.3.2 + cli-cursor: 3.1.0 + slice-ansi: 4.0.0 + wrap-ansi: 6.2.0 + dev: true + + /longest-streak@3.1.0: + resolution: {integrity: sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==} + dev: true + + /loose-envify@1.4.0: + resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} + hasBin: true + dependencies: + js-tokens: 4.0.0 + + /lower-case@2.0.2: + resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==} + dependencies: + tslib: 2.6.2 + dev: false + + /lru-cache@10.1.0: + resolution: {integrity: sha512-/1clY/ui8CzjKFyjdvwPWJUYKiFVXG2I2cY0ssG7h4+hwk+XOIX7ZSG9Q7TW8TW3Kp3BUSqgFWBLgL4PJ+Blag==} + engines: {node: 14 || >=16.14} + dev: true + + /lru-cache@6.0.0: + resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} + engines: {node: '>=10'} + dependencies: + yallist: 4.0.0 + dev: true + + /make-error@1.3.6: + resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==} + dev: true + + /map-obj@1.0.1: + resolution: {integrity: sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==} + engines: {node: '>=0.10.0'} + dev: true + + /map-obj@4.3.0: + resolution: {integrity: sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==} + engines: {node: '>=8'} + dev: true + + /markdown-extensions@1.1.1: + resolution: {integrity: sha512-WWC0ZuMzCyDHYCasEGs4IPvLyTGftYwh6wIEOULOF0HXcqZlhwRzrK0w2VUlxWA98xnvb/jszw4ZSkJ6ADpM6Q==} + engines: {node: '>=0.10.0'} + dev: true + + /markdown-table@3.0.3: + resolution: {integrity: sha512-Z1NL3Tb1M9wH4XESsCDEksWoKTdlUafKc4pt0GRwjUyXaCFZ+dc3g2erqB6zm3szA2IUSi7VnPI+o/9jnxh9hw==} + dev: true + + /mdast-util-definitions@5.1.2: + resolution: {integrity: sha512-8SVPMuHqlPME/z3gqVwWY4zVXn8lqKv/pAhC57FuJ40ImXyBpmO5ukh98zB2v7Blql2FiHjHv9LVztSIqjY+MA==} + dependencies: + '@types/mdast': 3.0.15 + '@types/unist': 2.0.10 + unist-util-visit: 4.1.2 + dev: true + + /mdast-util-find-and-replace@2.2.2: + resolution: {integrity: sha512-MTtdFRz/eMDHXzeK6W3dO7mXUlF82Gom4y0oOgvHhh/HXZAGvIQDUvQ0SuUx+j2tv44b8xTHOm8K/9OoRFnXKw==} + dependencies: + '@types/mdast': 3.0.15 + escape-string-regexp: 5.0.0 + unist-util-is: 5.2.1 + unist-util-visit-parents: 5.1.3 + dev: true + + /mdast-util-from-markdown@1.3.1: + resolution: {integrity: sha512-4xTO/M8c82qBcnQc1tgpNtubGUW/Y1tBQ1B0i5CtSoelOLKFYlElIr3bvgREYYO5iRqbMY1YuqZng0GVOI8Qww==} + dependencies: + '@types/mdast': 3.0.15 + '@types/unist': 2.0.10 + decode-named-character-reference: 1.0.2 + mdast-util-to-string: 3.2.0 + micromark: 3.2.0 + micromark-util-decode-numeric-character-reference: 1.1.0 + micromark-util-decode-string: 1.1.0 + micromark-util-normalize-identifier: 1.1.0 + micromark-util-symbol: 1.1.0 + micromark-util-types: 1.1.0 + unist-util-stringify-position: 3.0.3 + uvu: 0.5.6 + transitivePeerDependencies: + - supports-color + dev: true + + /mdast-util-frontmatter@1.0.1: + resolution: {integrity: sha512-JjA2OjxRqAa8wEG8hloD0uTU0kdn8kbtOWpPP94NBkfAlbxn4S8gCGf/9DwFtEeGPXrDcNXdiDjVaRdUFqYokw==} + dependencies: + '@types/mdast': 3.0.15 + mdast-util-to-markdown: 1.5.0 + micromark-extension-frontmatter: 1.1.1 + dev: true + + /mdast-util-gfm-autolink-literal@1.0.3: + resolution: {integrity: sha512-My8KJ57FYEy2W2LyNom4n3E7hKTuQk/0SES0u16tjA9Z3oFkF4RrC/hPAPgjlSpezsOvI8ObcXcElo92wn5IGA==} + dependencies: + '@types/mdast': 3.0.15 + ccount: 2.0.1 + mdast-util-find-and-replace: 2.2.2 + micromark-util-character: 1.2.0 + dev: true + + /mdast-util-gfm-footnote@1.0.2: + resolution: {integrity: sha512-56D19KOGbE00uKVj3sgIykpwKL179QsVFwx/DCW0u/0+URsryacI4MAdNJl0dh+u2PSsD9FtxPFbHCzJ78qJFQ==} + dependencies: + '@types/mdast': 3.0.15 + mdast-util-to-markdown: 1.5.0 + micromark-util-normalize-identifier: 1.1.0 + dev: true + + /mdast-util-gfm-strikethrough@1.0.3: + resolution: {integrity: sha512-DAPhYzTYrRcXdMjUtUjKvW9z/FNAMTdU0ORyMcbmkwYNbKocDpdk+PX1L1dQgOID/+vVs1uBQ7ElrBQfZ0cuiQ==} + dependencies: + '@types/mdast': 3.0.15 + mdast-util-to-markdown: 1.5.0 + dev: true + + /mdast-util-gfm-table@1.0.7: + resolution: {integrity: sha512-jjcpmNnQvrmN5Vx7y7lEc2iIOEytYv7rTvu+MeyAsSHTASGCCRA79Igg2uKssgOs1i1po8s3plW0sTu1wkkLGg==} + dependencies: + '@types/mdast': 3.0.15 + markdown-table: 3.0.3 + mdast-util-from-markdown: 1.3.1 + mdast-util-to-markdown: 1.5.0 + transitivePeerDependencies: + - supports-color + dev: true + + /mdast-util-gfm-task-list-item@1.0.2: + resolution: {integrity: sha512-PFTA1gzfp1B1UaiJVyhJZA1rm0+Tzn690frc/L8vNX1Jop4STZgOE6bxUhnzdVSB+vm2GU1tIsuQcA9bxTQpMQ==} + dependencies: + '@types/mdast': 3.0.15 + mdast-util-to-markdown: 1.5.0 + dev: true + + /mdast-util-gfm@2.0.2: + resolution: {integrity: sha512-qvZ608nBppZ4icQlhQQIAdc6S3Ffj9RGmzwUKUWuEICFnd1LVkN3EktF7ZHAgfcEdvZB5owU9tQgt99e2TlLjg==} + dependencies: + mdast-util-from-markdown: 1.3.1 + mdast-util-gfm-autolink-literal: 1.0.3 + mdast-util-gfm-footnote: 1.0.2 + mdast-util-gfm-strikethrough: 1.0.3 + mdast-util-gfm-table: 1.0.7 + mdast-util-gfm-task-list-item: 1.0.2 + mdast-util-to-markdown: 1.5.0 + transitivePeerDependencies: + - supports-color + dev: true + + /mdast-util-mdx-expression@1.3.2: + resolution: {integrity: sha512-xIPmR5ReJDu/DHH1OoIT1HkuybIfRGYRywC+gJtI7qHjCJp/M9jrmBEJW22O8lskDWm562BX2W8TiAwRTb0rKA==} + dependencies: + '@types/estree-jsx': 1.0.3 + '@types/hast': 2.3.9 + '@types/mdast': 3.0.15 + mdast-util-from-markdown: 1.3.1 + mdast-util-to-markdown: 1.5.0 + transitivePeerDependencies: + - supports-color + dev: true + + /mdast-util-mdx-jsx@2.1.4: + resolution: {integrity: sha512-DtMn9CmVhVzZx3f+optVDF8yFgQVt7FghCRNdlIaS3X5Bnym3hZwPbg/XW86vdpKjlc1PVj26SpnLGeJBXD3JA==} + dependencies: + '@types/estree-jsx': 1.0.3 + '@types/hast': 2.3.9 + '@types/mdast': 3.0.15 + '@types/unist': 2.0.10 + ccount: 2.0.1 + mdast-util-from-markdown: 1.3.1 + mdast-util-to-markdown: 1.5.0 + parse-entities: 4.0.1 + stringify-entities: 4.0.3 + unist-util-remove-position: 4.0.2 + unist-util-stringify-position: 3.0.3 + vfile-message: 3.1.4 + transitivePeerDependencies: + - supports-color + dev: true + + /mdast-util-mdx@2.0.1: + resolution: {integrity: sha512-38w5y+r8nyKlGvNjSEqWrhG0w5PmnRA+wnBvm+ulYCct7nsGYhFVb0lljS9bQav4psDAS1eGkP2LMVcZBi/aqw==} + dependencies: + mdast-util-from-markdown: 1.3.1 + mdast-util-mdx-expression: 1.3.2 + mdast-util-mdx-jsx: 2.1.4 + mdast-util-mdxjs-esm: 1.3.1 + mdast-util-to-markdown: 1.5.0 + transitivePeerDependencies: + - supports-color + dev: true + + /mdast-util-mdxjs-esm@1.3.1: + resolution: {integrity: sha512-SXqglS0HrEvSdUEfoXFtcg7DRl7S2cwOXc7jkuusG472Mmjag34DUDeOJUZtl+BVnyeO1frIgVpHlNRWc2gk/w==} + dependencies: + '@types/estree-jsx': 1.0.3 + '@types/hast': 2.3.9 + '@types/mdast': 3.0.15 + mdast-util-from-markdown: 1.3.1 + mdast-util-to-markdown: 1.5.0 + transitivePeerDependencies: + - supports-color + dev: true + + /mdast-util-phrasing@3.0.1: + resolution: {integrity: sha512-WmI1gTXUBJo4/ZmSk79Wcb2HcjPJBzM1nlI/OUWA8yk2X9ik3ffNbBGsU+09BFmXaL1IBb9fiuvq6/KMiNycSg==} + dependencies: + '@types/mdast': 3.0.15 + unist-util-is: 5.2.1 + dev: true + + /mdast-util-to-hast@12.3.0: + resolution: {integrity: sha512-pits93r8PhnIoU4Vy9bjW39M2jJ6/tdHyja9rrot9uujkN7UTU9SDnE6WNJz/IGyQk3XHX6yNNtrBH6cQzm8Hw==} + dependencies: + '@types/hast': 2.3.9 + '@types/mdast': 3.0.15 + mdast-util-definitions: 5.1.2 + micromark-util-sanitize-uri: 1.2.0 + trim-lines: 3.0.1 + unist-util-generated: 2.0.1 + unist-util-position: 4.0.4 + unist-util-visit: 4.1.2 + dev: true + + /mdast-util-to-markdown@1.5.0: + resolution: {integrity: sha512-bbv7TPv/WC49thZPg3jXuqzuvI45IL2EVAr/KxF0BSdHsU0ceFHOmwQn6evxAh1GaoK/6GQ1wp4R4oW2+LFL/A==} + dependencies: + '@types/mdast': 3.0.15 + '@types/unist': 2.0.10 + longest-streak: 3.1.0 + mdast-util-phrasing: 3.0.1 + mdast-util-to-string: 3.2.0 + micromark-util-decode-string: 1.1.0 + unist-util-visit: 4.1.2 + zwitch: 2.0.4 + dev: true + + /mdast-util-to-string@3.2.0: + resolution: {integrity: sha512-V4Zn/ncyN1QNSqSBxTrMOLpjr+IKdHl2v3KVLoWmDPscP4r9GcCi71gjgvUV1SFSKh92AjAG4peFuBl2/YgCJg==} + dependencies: + '@types/mdast': 3.0.15 + dev: true + + /mdx-bundler@9.2.1(esbuild@0.17.19): + resolution: {integrity: sha512-hWEEip1KU9MCNqeH2rqwzAZ1pdqPPbfkx9OTJjADqGPQz4t9BO85fhI7AP9gVYrpmfArf9/xJZUN0yBErg/G/Q==} + engines: {node: '>=14', npm: '>=6'} + peerDependencies: + esbuild: 0.* + dependencies: + '@babel/runtime': 7.23.7 + '@esbuild-plugins/node-resolve': 0.1.4(esbuild@0.17.19) + '@fal-works/esbuild-plugin-global-externals': 2.1.2 + '@mdx-js/esbuild': 2.3.0(esbuild@0.17.19) + esbuild: 0.17.19 + gray-matter: 4.0.3 + remark-frontmatter: 4.0.1 + remark-mdx-frontmatter: 1.1.1 + uuid: 8.3.2 + vfile: 5.3.7 + transitivePeerDependencies: + - supports-color + dev: true + + /media-typer@0.3.0: + resolution: {integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==} + engines: {node: '>= 0.6'} + dev: true + + /meow@8.1.2: + resolution: {integrity: sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==} + engines: {node: '>=10'} + dependencies: + '@types/minimist': 1.2.5 + camelcase-keys: 6.2.2 + decamelize-keys: 1.1.1 + hard-rejection: 2.1.0 + minimist-options: 4.1.0 + normalize-package-data: 3.0.3 + read-pkg-up: 7.0.1 + redent: 3.0.0 + trim-newlines: 3.0.1 + type-fest: 0.18.1 + yargs-parser: 20.2.9 + dev: true + + /merge-descriptors@1.0.1: + resolution: {integrity: sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==} + dev: true + + /merge-stream@2.0.0: + resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} + dev: true + + /merge2@1.4.1: + resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} + engines: {node: '>= 8'} + dev: true + + /methods@1.1.2: + resolution: {integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==} + engines: {node: '>= 0.6'} + dev: true + + /micromark-core-commonmark@1.1.0: + resolution: {integrity: sha512-BgHO1aRbolh2hcrzL2d1La37V0Aoz73ymF8rAcKnohLy93titmv62E0gP8Hrx9PKcKrqCZ1BbLGbP3bEhoXYlw==} + dependencies: + decode-named-character-reference: 1.0.2 + micromark-factory-destination: 1.1.0 + micromark-factory-label: 1.1.0 + micromark-factory-space: 1.1.0 + micromark-factory-title: 1.1.0 + micromark-factory-whitespace: 1.1.0 + micromark-util-character: 1.2.0 + micromark-util-chunked: 1.1.0 + micromark-util-classify-character: 1.1.0 + micromark-util-html-tag-name: 1.2.0 + micromark-util-normalize-identifier: 1.1.0 + micromark-util-resolve-all: 1.1.0 + micromark-util-subtokenize: 1.1.0 + micromark-util-symbol: 1.1.0 + micromark-util-types: 1.1.0 + uvu: 0.5.6 + dev: true + + /micromark-extension-frontmatter@1.1.1: + resolution: {integrity: sha512-m2UH9a7n3W8VAH9JO9y01APpPKmNNNs71P0RbknEmYSaZU5Ghogv38BYO94AI5Xw6OYfxZRdHZZ2nYjs/Z+SZQ==} + dependencies: + fault: 2.0.1 + micromark-util-character: 1.2.0 + micromark-util-symbol: 1.1.0 + micromark-util-types: 1.1.0 + dev: true + + /micromark-extension-gfm-autolink-literal@1.0.5: + resolution: {integrity: sha512-z3wJSLrDf8kRDOh2qBtoTRD53vJ+CWIyo7uyZuxf/JAbNJjiHsOpG1y5wxk8drtv3ETAHutCu6N3thkOOgueWg==} + dependencies: + micromark-util-character: 1.2.0 + micromark-util-sanitize-uri: 1.2.0 + micromark-util-symbol: 1.1.0 + micromark-util-types: 1.1.0 + dev: true + + /micromark-extension-gfm-footnote@1.1.2: + resolution: {integrity: sha512-Yxn7z7SxgyGWRNa4wzf8AhYYWNrwl5q1Z8ii+CSTTIqVkmGZF1CElX2JI8g5yGoM3GAman9/PVCUFUSJ0kB/8Q==} + dependencies: + micromark-core-commonmark: 1.1.0 + micromark-factory-space: 1.1.0 + micromark-util-character: 1.2.0 + micromark-util-normalize-identifier: 1.1.0 + micromark-util-sanitize-uri: 1.2.0 + micromark-util-symbol: 1.1.0 + micromark-util-types: 1.1.0 + uvu: 0.5.6 + dev: true + + /micromark-extension-gfm-strikethrough@1.0.7: + resolution: {integrity: sha512-sX0FawVE1o3abGk3vRjOH50L5TTLr3b5XMqnP9YDRb34M0v5OoZhG+OHFz1OffZ9dlwgpTBKaT4XW/AsUVnSDw==} + dependencies: + micromark-util-chunked: 1.1.0 + micromark-util-classify-character: 1.1.0 + micromark-util-resolve-all: 1.1.0 + micromark-util-symbol: 1.1.0 + micromark-util-types: 1.1.0 + uvu: 0.5.6 + dev: true + + /micromark-extension-gfm-table@1.0.7: + resolution: {integrity: sha512-3ZORTHtcSnMQEKtAOsBQ9/oHp9096pI/UvdPtN7ehKvrmZZ2+bbWhi0ln+I9drmwXMt5boocn6OlwQzNXeVeqw==} + dependencies: + micromark-factory-space: 1.1.0 + micromark-util-character: 1.2.0 + micromark-util-symbol: 1.1.0 + micromark-util-types: 1.1.0 + uvu: 0.5.6 + dev: true + + /micromark-extension-gfm-tagfilter@1.0.2: + resolution: {integrity: sha512-5XWB9GbAUSHTn8VPU8/1DBXMuKYT5uOgEjJb8gN3mW0PNW5OPHpSdojoqf+iq1xo7vWzw/P8bAHY0n6ijpXF7g==} + dependencies: + micromark-util-types: 1.1.0 + dev: true + + /micromark-extension-gfm-task-list-item@1.0.5: + resolution: {integrity: sha512-RMFXl2uQ0pNQy6Lun2YBYT9g9INXtWJULgbt01D/x8/6yJ2qpKyzdZD3pi6UIkzF++Da49xAelVKUeUMqd5eIQ==} + dependencies: + micromark-factory-space: 1.1.0 + micromark-util-character: 1.2.0 + micromark-util-symbol: 1.1.0 + micromark-util-types: 1.1.0 + uvu: 0.5.6 + dev: true + + /micromark-extension-gfm@2.0.3: + resolution: {integrity: sha512-vb9OoHqrhCmbRidQv/2+Bc6pkP0FrtlhurxZofvOEy5o8RtuuvTq+RQ1Vw5ZDNrVraQZu3HixESqbG+0iKk/MQ==} + dependencies: + micromark-extension-gfm-autolink-literal: 1.0.5 + micromark-extension-gfm-footnote: 1.1.2 + micromark-extension-gfm-strikethrough: 1.0.7 + micromark-extension-gfm-table: 1.0.7 + micromark-extension-gfm-tagfilter: 1.0.2 + micromark-extension-gfm-task-list-item: 1.0.5 + micromark-util-combine-extensions: 1.1.0 + micromark-util-types: 1.1.0 + dev: true + + /micromark-extension-mdx-expression@1.0.8: + resolution: {integrity: sha512-zZpeQtc5wfWKdzDsHRBY003H2Smg+PUi2REhqgIhdzAa5xonhP03FcXxqFSerFiNUr5AWmHpaNPQTBVOS4lrXw==} + dependencies: + '@types/estree': 1.0.5 + micromark-factory-mdx-expression: 1.0.9 + micromark-factory-space: 1.1.0 + micromark-util-character: 1.2.0 + micromark-util-events-to-acorn: 1.2.3 + micromark-util-symbol: 1.1.0 + micromark-util-types: 1.1.0 + uvu: 0.5.6 + dev: true + + /micromark-extension-mdx-jsx@1.0.5: + resolution: {integrity: sha512-gPH+9ZdmDflbu19Xkb8+gheqEDqkSpdCEubQyxuz/Hn8DOXiXvrXeikOoBA71+e8Pfi0/UYmU3wW3H58kr7akA==} + dependencies: + '@types/acorn': 4.0.6 + '@types/estree': 1.0.5 + estree-util-is-identifier-name: 2.1.0 + micromark-factory-mdx-expression: 1.0.9 + micromark-factory-space: 1.1.0 + micromark-util-character: 1.2.0 + micromark-util-symbol: 1.1.0 + micromark-util-types: 1.1.0 + uvu: 0.5.6 + vfile-message: 3.1.4 + dev: true + + /micromark-extension-mdx-md@1.0.1: + resolution: {integrity: sha512-7MSuj2S7xjOQXAjjkbjBsHkMtb+mDGVW6uI2dBL9snOBCbZmoNgDAeZ0nSn9j3T42UE/g2xVNMn18PJxZvkBEA==} + dependencies: + micromark-util-types: 1.1.0 + dev: true + + /micromark-extension-mdxjs-esm@1.0.5: + resolution: {integrity: sha512-xNRBw4aoURcyz/S69B19WnZAkWJMxHMT5hE36GtDAyhoyn/8TuAeqjFJQlwk+MKQsUD7b3l7kFX+vlfVWgcX1w==} + dependencies: + '@types/estree': 1.0.5 + micromark-core-commonmark: 1.1.0 + micromark-util-character: 1.2.0 + micromark-util-events-to-acorn: 1.2.3 + micromark-util-symbol: 1.1.0 + micromark-util-types: 1.1.0 + unist-util-position-from-estree: 1.1.2 + uvu: 0.5.6 + vfile-message: 3.1.4 + dev: true + + /micromark-extension-mdxjs@1.0.1: + resolution: {integrity: sha512-7YA7hF6i5eKOfFUzZ+0z6avRG52GpWR8DL+kN47y3f2KhxbBZMhmxe7auOeaTBrW2DenbbZTf1ea9tA2hDpC2Q==} + dependencies: + acorn: 8.11.3 + acorn-jsx: 5.3.2(acorn@8.11.3) + micromark-extension-mdx-expression: 1.0.8 + micromark-extension-mdx-jsx: 1.0.5 + micromark-extension-mdx-md: 1.0.1 + micromark-extension-mdxjs-esm: 1.0.5 + micromark-util-combine-extensions: 1.1.0 + micromark-util-types: 1.1.0 + dev: true + + /micromark-factory-destination@1.1.0: + resolution: {integrity: sha512-XaNDROBgx9SgSChd69pjiGKbV+nfHGDPVYFs5dOoDd7ZnMAE+Cuu91BCpsY8RT2NP9vo/B8pds2VQNCLiu0zhg==} + dependencies: + micromark-util-character: 1.2.0 + micromark-util-symbol: 1.1.0 + micromark-util-types: 1.1.0 + dev: true + + /micromark-factory-label@1.1.0: + resolution: {integrity: sha512-OLtyez4vZo/1NjxGhcpDSbHQ+m0IIGnT8BoPamh+7jVlzLJBH98zzuCoUeMxvM6WsNeh8wx8cKvqLiPHEACn0w==} + dependencies: + micromark-util-character: 1.2.0 + micromark-util-symbol: 1.1.0 + micromark-util-types: 1.1.0 + uvu: 0.5.6 + dev: true + + /micromark-factory-mdx-expression@1.0.9: + resolution: {integrity: sha512-jGIWzSmNfdnkJq05c7b0+Wv0Kfz3NJ3N4cBjnbO4zjXIlxJr+f8lk+5ZmwFvqdAbUy2q6B5rCY//g0QAAaXDWA==} + dependencies: + '@types/estree': 1.0.5 + micromark-util-character: 1.2.0 + micromark-util-events-to-acorn: 1.2.3 + micromark-util-symbol: 1.1.0 + micromark-util-types: 1.1.0 + unist-util-position-from-estree: 1.1.2 + uvu: 0.5.6 + vfile-message: 3.1.4 + dev: true + + /micromark-factory-space@1.1.0: + resolution: {integrity: sha512-cRzEj7c0OL4Mw2v6nwzttyOZe8XY/Z8G0rzmWQZTBi/jjwyw/U4uqKtUORXQrR5bAZZnbTI/feRV/R7hc4jQYQ==} + dependencies: + micromark-util-character: 1.2.0 + micromark-util-types: 1.1.0 + dev: true + + /micromark-factory-title@1.1.0: + resolution: {integrity: sha512-J7n9R3vMmgjDOCY8NPw55jiyaQnH5kBdV2/UXCtZIpnHH3P6nHUKaH7XXEYuWwx/xUJcawa8plLBEjMPU24HzQ==} + dependencies: + micromark-factory-space: 1.1.0 + micromark-util-character: 1.2.0 + micromark-util-symbol: 1.1.0 + micromark-util-types: 1.1.0 + dev: true + + /micromark-factory-whitespace@1.1.0: + resolution: {integrity: sha512-v2WlmiymVSp5oMg+1Q0N1Lxmt6pMhIHD457whWM7/GUlEks1hI9xj5w3zbc4uuMKXGisksZk8DzP2UyGbGqNsQ==} + dependencies: + micromark-factory-space: 1.1.0 + micromark-util-character: 1.2.0 + micromark-util-symbol: 1.1.0 + micromark-util-types: 1.1.0 + dev: true + + /micromark-util-character@1.2.0: + resolution: {integrity: sha512-lXraTwcX3yH/vMDaFWCQJP1uIszLVebzUa3ZHdrgxr7KEU/9mL4mVgCpGbyhvNLNlauROiNUq7WN5u7ndbY6xg==} + dependencies: + micromark-util-symbol: 1.1.0 + micromark-util-types: 1.1.0 + dev: true + + /micromark-util-chunked@1.1.0: + resolution: {integrity: sha512-Ye01HXpkZPNcV6FiyoW2fGZDUw4Yc7vT0E9Sad83+bEDiCJ1uXu0S3mr8WLpsz3HaG3x2q0HM6CTuPdcZcluFQ==} + dependencies: + micromark-util-symbol: 1.1.0 + dev: true + + /micromark-util-classify-character@1.1.0: + resolution: {integrity: sha512-SL0wLxtKSnklKSUplok1WQFoGhUdWYKggKUiqhX+Swala+BtptGCu5iPRc+xvzJ4PXE/hwM3FNXsfEVgoZsWbw==} + dependencies: + micromark-util-character: 1.2.0 + micromark-util-symbol: 1.1.0 + micromark-util-types: 1.1.0 + dev: true + + /micromark-util-combine-extensions@1.1.0: + resolution: {integrity: sha512-Q20sp4mfNf9yEqDL50WwuWZHUrCO4fEyeDCnMGmG5Pr0Cz15Uo7KBs6jq+dq0EgX4DPwwrh9m0X+zPV1ypFvUA==} + dependencies: + micromark-util-chunked: 1.1.0 + micromark-util-types: 1.1.0 + dev: true + + /micromark-util-decode-numeric-character-reference@1.1.0: + resolution: {integrity: sha512-m9V0ExGv0jB1OT21mrWcuf4QhP46pH1KkfWy9ZEezqHKAxkj4mPCy3nIH1rkbdMlChLHX531eOrymlwyZIf2iw==} + dependencies: + micromark-util-symbol: 1.1.0 + dev: true + + /micromark-util-decode-string@1.1.0: + resolution: {integrity: sha512-YphLGCK8gM1tG1bd54azwyrQRjCFcmgj2S2GoJDNnh4vYtnL38JS8M4gpxzOPNyHdNEpheyWXCTnnTDY3N+NVQ==} + dependencies: + decode-named-character-reference: 1.0.2 + micromark-util-character: 1.2.0 + micromark-util-decode-numeric-character-reference: 1.1.0 + micromark-util-symbol: 1.1.0 + dev: true + + /micromark-util-encode@1.1.0: + resolution: {integrity: sha512-EuEzTWSTAj9PA5GOAs992GzNh2dGQO52UvAbtSOMvXTxv3Criqb6IOzJUBCmEqrrXSblJIJBbFFv6zPxpreiJw==} + dev: true + + /micromark-util-events-to-acorn@1.2.3: + resolution: {integrity: sha512-ij4X7Wuc4fED6UoLWkmo0xJQhsktfNh1J0m8g4PbIMPlx+ek/4YdW5mvbye8z/aZvAPUoxgXHrwVlXAPKMRp1w==} + dependencies: + '@types/acorn': 4.0.6 + '@types/estree': 1.0.5 + '@types/unist': 2.0.10 + estree-util-visit: 1.2.1 + micromark-util-symbol: 1.1.0 + micromark-util-types: 1.1.0 + uvu: 0.5.6 + vfile-message: 3.1.4 + dev: true + + /micromark-util-html-tag-name@1.2.0: + resolution: {integrity: sha512-VTQzcuQgFUD7yYztuQFKXT49KghjtETQ+Wv/zUjGSGBioZnkA4P1XXZPT1FHeJA6RwRXSF47yvJ1tsJdoxwO+Q==} + dev: true + + /micromark-util-normalize-identifier@1.1.0: + resolution: {integrity: sha512-N+w5vhqrBihhjdpM8+5Xsxy71QWqGn7HYNUvch71iV2PM7+E3uWGox1Qp90loa1ephtCxG2ftRV/Conitc6P2Q==} + dependencies: + micromark-util-symbol: 1.1.0 + dev: true + + /micromark-util-resolve-all@1.1.0: + resolution: {integrity: sha512-b/G6BTMSg+bX+xVCshPTPyAu2tmA0E4X98NSR7eIbeC6ycCqCeE7wjfDIgzEbkzdEVJXRtOG4FbEm/uGbCRouA==} + dependencies: + micromark-util-types: 1.1.0 + dev: true + + /micromark-util-sanitize-uri@1.2.0: + resolution: {integrity: sha512-QO4GXv0XZfWey4pYFndLUKEAktKkG5kZTdUNaTAkzbuJxn2tNBOr+QtxR2XpWaMhbImT2dPzyLrPXLlPhph34A==} + dependencies: + micromark-util-character: 1.2.0 + micromark-util-encode: 1.1.0 + micromark-util-symbol: 1.1.0 + dev: true + + /micromark-util-subtokenize@1.1.0: + resolution: {integrity: sha512-kUQHyzRoxvZO2PuLzMt2P/dwVsTiivCK8icYTeR+3WgbuPqfHgPPy7nFKbeqRivBvn/3N3GBiNC+JRTMSxEC7A==} + dependencies: + micromark-util-chunked: 1.1.0 + micromark-util-symbol: 1.1.0 + micromark-util-types: 1.1.0 + uvu: 0.5.6 + dev: true + + /micromark-util-symbol@1.1.0: + resolution: {integrity: sha512-uEjpEYY6KMs1g7QfJ2eX1SQEV+ZT4rUD3UcF6l57acZvLNK7PBZL+ty82Z1qhK1/yXIY4bdx04FKMgR0g4IAag==} + dev: true + + /micromark-util-types@1.1.0: + resolution: {integrity: sha512-ukRBgie8TIAcacscVHSiddHjO4k/q3pnedmzMQ4iwDcK0FtFCohKOlFbaOL/mPgfnPsL3C1ZyxJa4sbWrBl3jg==} + dev: true + + /micromark@3.2.0: + resolution: {integrity: sha512-uD66tJj54JLYq0De10AhWycZWGQNUvDI55xPgk2sQM5kn1JYlhbCMTtEeT27+vAhW2FBQxLlOmS3pmA7/2z4aA==} + dependencies: + '@types/debug': 4.1.12 + debug: 4.3.4(supports-color@8.1.1) + decode-named-character-reference: 1.0.2 + micromark-core-commonmark: 1.1.0 + micromark-factory-space: 1.1.0 + micromark-util-character: 1.2.0 + micromark-util-chunked: 1.1.0 + micromark-util-combine-extensions: 1.1.0 + micromark-util-decode-numeric-character-reference: 1.1.0 + micromark-util-encode: 1.1.0 + micromark-util-normalize-identifier: 1.1.0 + micromark-util-resolve-all: 1.1.0 + micromark-util-sanitize-uri: 1.2.0 + micromark-util-subtokenize: 1.1.0 + micromark-util-symbol: 1.1.0 + micromark-util-types: 1.1.0 + uvu: 0.5.6 + transitivePeerDependencies: + - supports-color + dev: true + + /micromatch@4.0.5: + resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==} + engines: {node: '>=8.6'} + dependencies: + braces: 3.0.2 + picomatch: 2.3.1 + dev: true + + /mime-db@1.52.0: + resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==} + engines: {node: '>= 0.6'} + dev: true + + /mime-types@2.1.35: + resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==} + engines: {node: '>= 0.6'} + dependencies: + mime-db: 1.52.0 + dev: true + + /mime@1.6.0: + resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==} + engines: {node: '>=4'} + hasBin: true + dev: true + + /mimic-fn@2.1.0: + resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} + engines: {node: '>=6'} + dev: true + + /min-indent@1.0.1: + resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==} + engines: {node: '>=4'} + dev: true + + /mini-svg-data-uri@1.4.4: + resolution: {integrity: sha512-r9deDe9p5FJUPZAk3A59wGH7Ii9YrjjWw0jmw/liSbHl2CHiyXj6FcDXDu2K3TjVAXqiJdaw3xxwlZZr9E6nHg==} + hasBin: true + dev: true + + /minimatch@3.1.2: + resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} + dependencies: + brace-expansion: 1.1.11 + dev: true + + /minimatch@9.0.3: + resolution: {integrity: sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==} + engines: {node: '>=16 || 14 >=14.17'} + dependencies: + brace-expansion: 2.0.1 + dev: true + + /minimist-options@4.1.0: + resolution: {integrity: sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==} + engines: {node: '>= 6'} + dependencies: + arrify: 1.0.1 + is-plain-obj: 1.1.0 + kind-of: 6.0.3 + dev: true + + /minimist@1.2.8: + resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} + dev: true + + /minipass@7.0.4: + resolution: {integrity: sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==} + engines: {node: '>=16 || 14 >=14.17'} + dev: true + + /mri@1.2.0: + resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==} + engines: {node: '>=4'} + dev: true + + /ms@2.0.0: + resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==} + dev: true + + /ms@2.1.2: + resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} + dev: true + + /ms@2.1.3: + resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} + dev: true + + /mz@2.7.0: + resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==} + dependencies: + any-promise: 1.3.0 + object-assign: 4.1.1 + thenify-all: 1.6.0 + dev: true + + /nanoid@3.3.7: + resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==} + engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} + hasBin: true + + /natural-compare@1.4.0: + resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} + dev: true + + /negotiator@0.6.3: + resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==} + engines: {node: '>= 0.6'} + dev: true + + /next-remote-refresh@0.10.0(next@12.3.4)(react@18.2.0): + resolution: {integrity: sha512-x+JjCdH9bjjn5VjBpwnkdWTNXDNzENduZCy1gQJn9J5Ndl5eKlx4M9YQSjH3ywBfKCyLvOa5dstwUrOwNykjuA==} + peerDependencies: + next: '>12.1.0' + react: '>17.0.0' + dependencies: + chokidar: 3.5.3 + next: 12.3.4(react-dom@18.2.0)(react@18.2.0) + react: 18.2.0 + ws: 8.16.0 + transitivePeerDependencies: + - bufferutil + - utf-8-validate + dev: true + + /next-remote-watch@1.0.0: + resolution: {integrity: sha512-kV+pglCwcnKyqJIXPHUUrnZr9d3rCqCIEQWBkFYC02GDXHyKVmcFytoY6q0+wMIQqh/izIAQL1x6OKXZhksjLA==} + hasBin: true + dependencies: + body-parser: 1.20.2 + chalk: 4.1.2 + chokidar: 3.5.3 + commander: 5.1.0 + express: 4.18.2 + transitivePeerDependencies: + - supports-color + dev: true + + /next-sitemap@1.9.12(next@12.3.4): + resolution: {integrity: sha512-kHXf4ZNAGLJyK16HbjzE5X9JlKwXtxW+9J4dh3oT7LSbU/+3bN+VqWjNw/776Otbanf7EJsvl51oQ78qQW5XBQ==} + engines: {node: '>=14'} + hasBin: true + peerDependencies: + next: '*' + dependencies: + '@corex/deepmerge': 2.6.148 + minimist: 1.2.8 + next: 12.3.4(react-dom@18.2.0)(react@18.2.0) + dev: true + + /next-themes@0.2.1(next@12.3.4)(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-B+AKNfYNIzh0vqQQKqQItTS8evEouKD7H5Hj3kmuPERwddR2TxvDSFZuTj6T7Jfn1oyeUyJMydPl1Bkxkh0W7A==} + peerDependencies: + next: '*' + react: '*' + react-dom: '*' + dependencies: + next: 12.3.4(react-dom@18.2.0)(react@18.2.0) + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + dev: false + + /next@12.3.4(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-VcyMJUtLZBGzLKo3oMxrEF0stxh8HwuW976pAzlHhI3t8qJ4SROjCrSh1T24bhrbjw55wfZXAbXPGwPt5FLRfQ==} + engines: {node: '>=12.22.0'} + hasBin: true + peerDependencies: + fibers: '>= 3.1.0' + node-sass: ^6.0.0 || ^7.0.0 + react: ^17.0.2 || ^18.0.0-0 + react-dom: ^17.0.2 || ^18.0.0-0 + sass: ^1.3.0 + peerDependenciesMeta: + fibers: + optional: true + node-sass: + optional: true + sass: + optional: true + dependencies: + '@next/env': 12.3.4 + '@swc/helpers': 0.4.11 + caniuse-lite: 1.0.30001574 + postcss: 8.4.14 + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + styled-jsx: 5.0.7(react@18.2.0) + use-sync-external-store: 1.2.0(react@18.2.0) + optionalDependencies: + '@next/swc-android-arm-eabi': 12.3.4 + '@next/swc-android-arm64': 12.3.4 + '@next/swc-darwin-arm64': 12.3.4 + '@next/swc-darwin-x64': 12.3.4 + '@next/swc-freebsd-x64': 12.3.4 + '@next/swc-linux-arm-gnueabihf': 12.3.4 + '@next/swc-linux-arm64-gnu': 12.3.4 + '@next/swc-linux-arm64-musl': 12.3.4 + '@next/swc-linux-x64-gnu': 12.3.4 + '@next/swc-linux-x64-musl': 12.3.4 + '@next/swc-win32-arm64-msvc': 12.3.4 + '@next/swc-win32-ia32-msvc': 12.3.4 + '@next/swc-win32-x64-msvc': 12.3.4 + transitivePeerDependencies: + - '@babel/core' + - babel-plugin-macros + + /no-case@3.0.4: + resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==} + dependencies: + lower-case: 2.0.2 + tslib: 2.6.2 + dev: false + + /node-domexception@1.0.0: + resolution: {integrity: sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==} + engines: {node: '>=10.5.0'} + dev: true + + /node-fetch@3.3.2: + resolution: {integrity: sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + dependencies: + data-uri-to-buffer: 4.0.1 + fetch-blob: 3.2.0 + formdata-polyfill: 4.0.10 + dev: true + + /node-releases@2.0.14: + resolution: {integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==} + dev: true + + /normalize-package-data@2.5.0: + resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==} + dependencies: + hosted-git-info: 2.8.9 + resolve: 1.22.8 + semver: 5.7.2 + validate-npm-package-license: 3.0.4 + dev: true + + /normalize-package-data@3.0.3: + resolution: {integrity: sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==} + engines: {node: '>=10'} + dependencies: + hosted-git-info: 4.1.0 + is-core-module: 2.13.1 + semver: 7.5.4 + validate-npm-package-license: 3.0.4 + dev: true + + /normalize-path@3.0.0: + resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} + engines: {node: '>=0.10.0'} + dev: true + + /normalize-range@0.1.2: + resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==} + engines: {node: '>=0.10.0'} + dev: true + + /npm-run-path@4.0.1: + resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==} + engines: {node: '>=8'} + dependencies: + path-key: 3.1.1 + dev: true + + /nprogress@0.2.0: + resolution: {integrity: sha512-I19aIingLgR1fmhftnbWWO3dXc0hSxqHQHQb3H8m+K3TnEn/iSeTZZOyvKXWqQESMwuUVnatlCnZdLBZZt2VSA==} + dev: false + + /object-assign@4.1.1: + resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} + engines: {node: '>=0.10.0'} + + /object-hash@3.0.0: + resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==} + engines: {node: '>= 6'} + dev: true + + /object-inspect@1.13.1: + resolution: {integrity: sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==} + dev: true + + /object-keys@1.1.1: + resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} + engines: {node: '>= 0.4'} + dev: true + + /object.assign@4.1.5: + resolution: {integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.5 + define-properties: 1.2.1 + has-symbols: 1.0.3 + object-keys: 1.1.1 + dev: true + + /object.entries@1.1.7: + resolution: {integrity: sha512-jCBs/0plmPsOnrKAfFQXRG2NFjlhZgjjcBLSmTnEhU8U6vVTsVe8ANeQJCHTl3gSsI4J+0emOoCgoKlmQPMgmA==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + dev: true + + /object.fromentries@2.0.7: + resolution: {integrity: sha512-UPbPHML6sL8PI/mOqPwsH4G6iyXcCGzLin8KvEPenOZN5lpCNBZZQ+V62vdjB1mQHrmqGQt5/OJzemUA+KJmEA==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + dev: true + + /object.groupby@1.0.1: + resolution: {integrity: sha512-HqaQtqLnp/8Bn4GL16cj+CUYbnpe1bh0TtEaWvybszDG4tgxCJuRpV8VGuvNaI1fAnI4lUJzDG55MXcOH4JZcQ==} + dependencies: + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + get-intrinsic: 1.2.2 + dev: true + + /object.hasown@1.1.3: + resolution: {integrity: sha512-fFI4VcYpRHvSLXxP7yiZOMAd331cPfd2p7PFDVbgUsYOfCT3tICVqXWngbjr4m49OvsBwUBQ6O2uQoJvy3RexA==} + dependencies: + define-properties: 1.2.1 + es-abstract: 1.22.3 + dev: true + + /object.values@1.1.7: + resolution: {integrity: sha512-aU6xnDFYT3x17e/f0IiiwlGPTy2jzMySGfUB4fq6z7CV8l85CWHDk5ErhyhpfDHhrOMwGFhSQkhMGHaIotA6Ng==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + dev: true + + /on-finished@2.4.1: + resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==} + engines: {node: '>= 0.8'} + dependencies: + ee-first: 1.1.1 + dev: true + + /once@1.4.0: + resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} + dependencies: + wrappy: 1.0.2 + dev: true + + /onetime@5.1.2: + resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==} + engines: {node: '>=6'} + dependencies: + mimic-fn: 2.1.0 + dev: true + + /optionator@0.9.3: + resolution: {integrity: sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==} + engines: {node: '>= 0.8.0'} + dependencies: + '@aashutoshrathi/word-wrap': 1.2.6 + deep-is: 0.1.4 + fast-levenshtein: 2.0.6 + levn: 0.4.1 + prelude-ls: 1.2.1 + type-check: 0.4.0 + dev: true + + /ospath@1.2.2: + resolution: {integrity: sha512-o6E5qJV5zkAbIDNhGSIlyOhScKXgQrSRMilfph0clDfM0nEnBOlKlH4sWDmG95BW/CvwNz0vmm7dJVtU2KlMiA==} + dev: true + + /p-limit@2.3.0: + resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==} + engines: {node: '>=6'} + dependencies: + p-try: 2.2.0 + dev: true + + /p-limit@3.1.0: + resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} + engines: {node: '>=10'} + dependencies: + yocto-queue: 0.1.0 + dev: true + + /p-locate@4.1.0: + resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==} + engines: {node: '>=8'} + dependencies: + p-limit: 2.3.0 + dev: true + + /p-locate@5.0.0: + resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} + engines: {node: '>=10'} + dependencies: + p-limit: 3.1.0 + dev: true + + /p-map@4.0.0: + resolution: {integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==} + engines: {node: '>=10'} + dependencies: + aggregate-error: 3.1.0 + dev: true + + /p-try@2.2.0: + resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} + engines: {node: '>=6'} + dev: true + + /parent-module@1.0.1: + resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} + engines: {node: '>=6'} + dependencies: + callsites: 3.1.0 + dev: true + + /parse-entities@4.0.1: + resolution: {integrity: sha512-SWzvYcSJh4d/SGLIOQfZ/CoNv6BTlI6YEQ7Nj82oDVnRpwe/Z/F1EMx42x3JAOwGBlCjeCH0BRJQbQ/opHL17w==} + dependencies: + '@types/unist': 2.0.10 + character-entities: 2.0.2 + character-entities-legacy: 3.0.0 + character-reference-invalid: 2.0.1 + decode-named-character-reference: 1.0.2 + is-alphanumerical: 2.0.1 + is-decimal: 2.0.1 + is-hexadecimal: 2.0.1 + dev: true + + /parse-json@5.2.0: + resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} + engines: {node: '>=8'} + dependencies: + '@babel/code-frame': 7.23.5 + error-ex: 1.3.2 + json-parse-even-better-errors: 2.3.1 + lines-and-columns: 1.2.4 + dev: true + + /parse-numeric-range@1.3.0: + resolution: {integrity: sha512-twN+njEipszzlMJd4ONUYgSfZPDxgHhT9Ahed5uTigpQn90FggW4SA/AIPq/6a149fTbE9qBEcSwE3FAEp6wQQ==} + dev: false + + /parse5@6.0.1: + resolution: {integrity: sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==} + dev: false + + /parseurl@1.3.3: + resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==} + engines: {node: '>= 0.8'} + dev: true + + /path-exists@4.0.0: + resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} + engines: {node: '>=8'} + dev: true + + /path-is-absolute@1.0.1: + resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} + engines: {node: '>=0.10.0'} + dev: true + + /path-key@3.1.1: + resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} + engines: {node: '>=8'} + dev: true + + /path-parse@1.0.7: + resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} + dev: true + + /path-scurry@1.10.1: + resolution: {integrity: sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==} + engines: {node: '>=16 || 14 >=14.17'} + dependencies: + lru-cache: 10.1.0 + minipass: 7.0.4 + dev: true + + /path-to-regexp@0.1.7: + resolution: {integrity: sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==} + dev: true + + /path-type@4.0.0: + resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} + engines: {node: '>=8'} + dev: true + + /pend@1.2.0: + resolution: {integrity: sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==} + dev: true + + /performance-now@2.1.0: + resolution: {integrity: sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==} + dev: true + + /periscopic@3.1.0: + resolution: {integrity: sha512-vKiQ8RRtkl9P+r/+oefh25C3fhybptkHKCZSPlcXiJux2tJF55GnEj3BVn4A5gKfq9NWWXXrxkHBwVPUfH0opw==} + dependencies: + '@types/estree': 1.0.5 + estree-walker: 3.0.3 + is-reference: 3.0.2 + dev: true + + /picocolors@1.0.0: + resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==} + + /picomatch@2.3.1: + resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} + engines: {node: '>=8.6'} + dev: true + + /pify@2.3.0: + resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==} + engines: {node: '>=0.10.0'} + dev: true + + /pirates@4.0.6: + resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==} + engines: {node: '>= 6'} + dev: true + + /please-upgrade-node@3.2.0: + resolution: {integrity: sha512-gQR3WpIgNIKwBMVLkpMUeR3e1/E1y42bqDQZfql+kDeXd8COYfM8PQA4X6y7a8u9Ua9FHmsrrmirW2vHs45hWg==} + dependencies: + semver-compare: 1.0.0 + dev: true + + /popper.js@1.16.1: + resolution: {integrity: sha512-Wb4p1J4zyFTbM+u6WuO4XstYx4Ky9Cewe4DWrel7B0w6VVICvPwdOpotjzcf6eD8TsckVnIMNONQyPIUFOUbCQ==} + deprecated: You can find the new Popper v2 at @popperjs/core, this package is dedicated to the legacy v1 + dev: false + + /postcss-import@15.1.0(postcss@8.4.33): + resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==} + engines: {node: '>=14.0.0'} + peerDependencies: + postcss: ^8.0.0 + dependencies: + postcss: 8.4.33 + postcss-value-parser: 4.2.0 + read-cache: 1.0.0 + resolve: 1.22.8 + dev: true + + /postcss-js@4.0.1(postcss@8.4.33): + resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==} + engines: {node: ^12 || ^14 || >= 16} + peerDependencies: + postcss: ^8.4.21 + dependencies: + camelcase-css: 2.0.1 + postcss: 8.4.33 + dev: true + + /postcss-load-config@4.0.2(postcss@8.4.33)(ts-node@10.9.2): + resolution: {integrity: sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==} + engines: {node: '>= 14'} + peerDependencies: + postcss: '>=8.0.9' + ts-node: '>=9.0.0' + peerDependenciesMeta: + postcss: + optional: true + ts-node: + optional: true + dependencies: + lilconfig: 3.0.0 + postcss: 8.4.33 + ts-node: 10.9.2(@types/node@18.19.4)(typescript@4.9.5) + yaml: 2.3.4 + dev: true + + /postcss-nested@6.0.1(postcss@8.4.33): + resolution: {integrity: sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==} + engines: {node: '>=12.0'} + peerDependencies: + postcss: ^8.2.14 + dependencies: + postcss: 8.4.33 + postcss-selector-parser: 6.0.15 + dev: true + + /postcss-selector-parser@6.0.10: + resolution: {integrity: sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==} + engines: {node: '>=4'} + dependencies: + cssesc: 3.0.0 + util-deprecate: 1.0.2 + dev: true + + /postcss-selector-parser@6.0.15: + resolution: {integrity: sha512-rEYkQOMUCEMhsKbK66tbEU9QVIxbhN18YiniAwA7XQYTVBqrBy+P2p5JcdqsHgKM2zWylp8d7J6eszocfds5Sw==} + engines: {node: '>=4'} + dependencies: + cssesc: 3.0.0 + util-deprecate: 1.0.2 + dev: true + + /postcss-value-parser@4.2.0: + resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} + dev: true + + /postcss@8.4.14: + resolution: {integrity: sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==} + engines: {node: ^10 || ^12 || >=14} + dependencies: + nanoid: 3.3.7 + picocolors: 1.0.0 + source-map-js: 1.0.2 + + /postcss@8.4.33: + resolution: {integrity: sha512-Kkpbhhdjw2qQs2O2DGX+8m5OVqEcbB9HRBvuYM9pgrjEFUg30A9LmXNlTAUj4S9kgtGyrMbTzVjH7E+s5Re2yg==} + engines: {node: ^10 || ^12 || >=14} + dependencies: + nanoid: 3.3.7 + picocolors: 1.0.0 + source-map-js: 1.0.2 + dev: true + + /prelude-ls@1.2.1: + resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} + engines: {node: '>= 0.8.0'} + dev: true + + /prettier-plugin-tailwindcss@0.1.13(prettier@2.8.8): + resolution: {integrity: sha512-/EKQURUrxLu66CMUg4+1LwGdxnz8of7IDvrSLqEtDqhLH61SAlNNUSr90UTvZaemujgl3OH/VHg+fyGltrNixw==} + engines: {node: '>=12.17.0'} + peerDependencies: + prettier: '>=2.2.0' + dependencies: + prettier: 2.8.8 + dev: true + + /prettier@2.8.8: + resolution: {integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==} + engines: {node: '>=10.13.0'} + hasBin: true + dev: true + + /pretty-bytes@5.6.0: + resolution: {integrity: sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==} + engines: {node: '>=6'} + dev: true + + /prisma@4.16.2: + resolution: {integrity: sha512-SYCsBvDf0/7XSJyf2cHTLjLeTLVXYfqp7pG5eEVafFLeT0u/hLFz/9W196nDRGUOo1JfPatAEb+uEnTQImQC1g==} + engines: {node: '>=14.17'} + hasBin: true + requiresBuild: true + dependencies: + '@prisma/engines': 4.16.2 + + /progress@2.0.3: + resolution: {integrity: sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==} + engines: {node: '>=0.4.0'} + dev: true + + /prop-types@15.8.1: + resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==} + dependencies: + loose-envify: 1.4.0 + object-assign: 4.1.1 + react-is: 16.13.1 + + /property-information@6.4.0: + resolution: {integrity: sha512-9t5qARVofg2xQqKtytzt+lZ4d1Qvj8t5B8fEwXK6qOfgRLgH/b13QlgEyDh033NOS31nXeFbYv7CLUDG1CeifQ==} + + /proxy-addr@2.0.7: + resolution: {integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==} + engines: {node: '>= 0.10'} + dependencies: + forwarded: 0.2.0 + ipaddr.js: 1.9.1 + dev: true + + /proxy-from-env@1.0.0: + resolution: {integrity: sha512-F2JHgJQ1iqwnHDcQjVBsq3n/uoaFL+iPW/eAeL7kVxy/2RrWaN4WroKjjvbsoRtv0ftelNyC01bjRhn/bhcf4A==} + dev: true + + /psl@1.9.0: + resolution: {integrity: sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==} + dev: true + + /pump@3.0.0: + resolution: {integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==} + dependencies: + end-of-stream: 1.4.4 + once: 1.4.0 + dev: true + + /punycode@2.3.1: + resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} + engines: {node: '>=6'} + dev: true + + /q@1.5.1: + resolution: {integrity: sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==} + engines: {node: '>=0.6.0', teleport: '>=0.2.0'} + dev: true + + /qs@6.10.4: + resolution: {integrity: sha512-OQiU+C+Ds5qiH91qh/mg0w+8nwQuLjM4F4M/PbmhDOoYehPh+Fb0bDjtR1sOvy7YKxvj28Y/M0PhP5uVX0kB+g==} + engines: {node: '>=0.6'} + dependencies: + side-channel: 1.0.4 + dev: true + + /qs@6.11.0: + resolution: {integrity: sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==} + engines: {node: '>=0.6'} + dependencies: + side-channel: 1.0.4 + dev: true + + /query-string@7.1.3: + resolution: {integrity: sha512-hh2WYhq4fi8+b+/2Kg9CEge4fDPvHS534aOOvOZeQ3+Vf2mCFsaFBYj0i+iXcAq6I9Vzp5fjMFBlONvayDC1qg==} + engines: {node: '>=6'} + dependencies: + decode-uri-component: 0.2.2 + filter-obj: 1.1.0 + split-on-first: 1.1.0 + strict-uri-encode: 2.0.0 + dev: false + + /querystringify@2.2.0: + resolution: {integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==} + dev: true + + /queue-microtask@1.2.3: + resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} + dev: true + + /quick-lru@4.0.1: + resolution: {integrity: sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==} + engines: {node: '>=8'} + dev: true + + /range-parser@1.2.1: + resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==} + engines: {node: '>= 0.6'} + dev: true + + /raw-body@2.5.1: + resolution: {integrity: sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==} + engines: {node: '>= 0.8'} + dependencies: + bytes: 3.1.2 + http-errors: 2.0.0 + iconv-lite: 0.4.24 + unpipe: 1.0.0 + dev: true + + /raw-body@2.5.2: + resolution: {integrity: sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==} + engines: {node: '>= 0.8'} + dependencies: + bytes: 3.1.2 + http-errors: 2.0.0 + iconv-lite: 0.4.24 + unpipe: 1.0.0 + dev: true + + /react-dom@18.2.0(react@18.2.0): + resolution: {integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==} + peerDependencies: + react: ^18.2.0 + dependencies: + loose-envify: 1.4.0 + react: 18.2.0 + scheduler: 0.23.0 + + /react-hook-form@7.49.2(react@18.2.0): + resolution: {integrity: sha512-TZcnSc17+LPPVpMRIDNVITY6w20deMdNi6iehTFLV1x8SqThXGwu93HjlUVU09pzFgZH7qZOvLMM7UYf2ShAHA==} + engines: {node: '>=18', pnpm: '8'} + peerDependencies: + react: ^16.8.0 || ^17 || ^18 + dependencies: + react: 18.2.0 + dev: false + + /react-icons@4.12.0(react@18.2.0): + resolution: {integrity: sha512-IBaDuHiShdZqmfc/TwHu6+d6k2ltNCf3AszxNmjJc1KUfXdEeRJOKyNvLmAHaarhzGmTSVygNdyu8/opXv2gaw==} + peerDependencies: + react: '*' + dependencies: + react: 18.2.0 + dev: false + + /react-image-lightbox@5.1.4(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-kTiAODz091bgT7SlWNHab0LSMZAPJtlNWDGKv7pLlLY1krmf7FuG1zxE0wyPpeA8gPdwfr3cu6sPwZRqWsc3Eg==} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. + peerDependencies: + react: 16.x || 17.x + react-dom: 16.x || 17.x + dependencies: + prop-types: 15.8.1 + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + react-modal: 3.16.1(react-dom@18.2.0)(react@18.2.0) + dev: false + + /react-intersection-observer@8.34.0(react@18.2.0): + resolution: {integrity: sha512-TYKh52Zc0Uptp5/b4N91XydfSGKubEhgZRtcg1rhTKABXijc4Sdr1uTp5lJ8TN27jwUsdXxjHXtHa0kPj704sw==} + peerDependencies: + react: ^15.0.0 || ^16.0.0 || ^17.0.0|| ^18.0.0 + dependencies: + react: 18.2.0 + dev: false + + /react-is@16.13.1: + resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==} + + /react-lifecycles-compat@3.0.4: + resolution: {integrity: sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==} + dev: false + + /react-lite-youtube-embed@2.4.0(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-Xo6cM1zPlROvvM97JkqQIoXstlQDaC4+DawmM7BB7Hh1cXrkBHEGq1iJlQxBTUWAUklmpcC7ph7qg7CztXtABQ==} + peerDependencies: + react: '>=18.2.0' + react-dom: '>=18.2.0' + dependencies: + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + dev: false + + /react-modal@3.16.1(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-VStHgI3BVcGo7OXczvnJN7yT2TWHJPDXZWyI/a0ssFNhGZWsPmB8cF0z33ewDXq4VfYMO1vXgiv/g8Nj9NDyWg==} + engines: {node: '>=8'} + peerDependencies: + react: ^0.14.0 || ^15.0.0 || ^16 || ^17 || ^18 + react-dom: ^0.14.0 || ^15.0.0 || ^16 || ^17 || ^18 + dependencies: + exenv: 1.2.2 + prop-types: 15.8.1 + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + react-lifecycles-compat: 3.0.4 + warning: 4.0.3 + dev: false + + /react-tippy@1.4.0: + resolution: {integrity: sha512-r/hM5XK9Ztr2ZY7IWKuRmISTlUPS/R6ddz6PO2EuxCgW+4JBcGZRPU06XcVPRDCOIiio8ryBQFrXMhFMhsuaHA==} + dependencies: + popper.js: 1.16.1 + dev: false + + /react-twitter-widgets@1.11.0(react@18.2.0): + resolution: {integrity: sha512-PMCLJQc30iqy01y1b2+HnMfCX+ZkOxWaPKJb4BhHgOgjSjoZb68K5T0nq3q+3YbX9K7OH0bhptgDihtBG/BqRQ==} + peerDependencies: + react: ^16.8.0 || ^17 || ^18 + dependencies: + loadjs: 4.2.0 + react: 18.2.0 + dev: false + + /react@18.2.0: + resolution: {integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==} + engines: {node: '>=0.10.0'} + dependencies: + loose-envify: 1.4.0 + + /read-cache@1.0.0: + resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==} + dependencies: + pify: 2.3.0 + dev: true + + /read-pkg-up@7.0.1: + resolution: {integrity: sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==} + engines: {node: '>=8'} + dependencies: + find-up: 4.1.0 + read-pkg: 5.2.0 + type-fest: 0.8.1 + dev: true + + /read-pkg@5.2.0: + resolution: {integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==} + engines: {node: '>=8'} + dependencies: + '@types/normalize-package-data': 2.4.4 + normalize-package-data: 2.5.0 + parse-json: 5.2.0 + type-fest: 0.6.0 + dev: true + + /readable-stream@3.6.2: + resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==} + engines: {node: '>= 6'} + dependencies: + inherits: 2.0.4 + string_decoder: 1.3.0 + util-deprecate: 1.0.2 + dev: true + + /readdirp@3.6.0: + resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} + engines: {node: '>=8.10.0'} + dependencies: + picomatch: 2.3.1 + dev: true + + /reading-time@1.5.0: + resolution: {integrity: sha512-onYyVhBNr4CmAxFsKS7bz+uTLRakypIe4R+5A824vBSkQy/hB3fZepoVEf8OVAxzLvK+H/jm9TzpI3ETSm64Kg==} + dev: true + + /redent@3.0.0: + resolution: {integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==} + engines: {node: '>=8'} + dependencies: + indent-string: 4.0.0 + strip-indent: 3.0.0 + dev: true + + /reflect.getprototypeof@1.0.4: + resolution: {integrity: sha512-ECkTw8TmJwW60lOTR+ZkODISW6RQ8+2CL3COqtiJKLd6MmB45hN51HprHFziKLGkAuTGQhBb91V8cy+KHlaCjw==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + get-intrinsic: 1.2.2 + globalthis: 1.0.3 + which-builtin-type: 1.1.3 + dev: true + + /regenerator-runtime@0.14.1: + resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==} + + /regexp.prototype.flags@1.5.1: + resolution: {integrity: sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.5 + define-properties: 1.2.1 + set-function-name: 2.0.1 + dev: true + + /regexpp@3.2.0: + resolution: {integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==} + engines: {node: '>=8'} + dev: true + + /rehype-autolink-headings@6.1.1: + resolution: {integrity: sha512-NMYzZIsHM3sA14nC5rAFuUPIOfg+DFmf9EY1YMhaNlB7+3kK/ZlE6kqPfuxr1tsJ1XWkTrMtMoyHosU70d35mA==} + dependencies: + '@types/hast': 2.3.9 + extend: 3.0.2 + hast-util-has-property: 2.0.1 + hast-util-heading-rank: 2.1.1 + hast-util-is-element: 2.1.3 + unified: 10.1.2 + unist-util-visit: 4.1.2 + dev: true + + /rehype-parse@8.0.5: + resolution: {integrity: sha512-Ds3RglaY/+clEX2U2mHflt7NlMA72KspZ0JLUJgBBLpRddBcEw3H8uYZQliQriku22NZpYMfjDdSgHcjxue24A==} + dependencies: + '@types/hast': 2.3.9 + hast-util-from-parse5: 7.1.2 + parse5: 6.0.1 + unified: 10.1.2 + dev: false + + /rehype-pretty-code@0.10.2(shiki@0.14.7): + resolution: {integrity: sha512-yBgk3S4yXtkAWVrkoN1DqDihjsaP0ReuN9Du4Dtkl/wsgwyqGNGuIUGi2etVHAOsi40e2KRHoOulQqnKPuscPA==} + engines: {node: '>=16'} + peerDependencies: + shiki: 0.x + dependencies: + hash-obj: 4.0.0 + hast-util-to-string: 2.0.0 + parse-numeric-range: 1.3.0 + rehype-parse: 8.0.5 + shiki: 0.14.7 + unified: 10.1.2 + unist-util-visit: 4.1.2 + dev: false + + /rehype-slug@5.1.0: + resolution: {integrity: sha512-Gf91dJoXneiorNEnn+Phx97CO7oRMrpi+6r155tTxzGuLtm+QrI4cTwCa9e1rtePdL4i9tSO58PeSS6HWfgsiw==} + dependencies: + '@types/hast': 2.3.9 + github-slugger: 2.0.0 + hast-util-has-property: 2.0.1 + hast-util-heading-rank: 2.1.1 + hast-util-to-string: 2.0.0 + unified: 10.1.2 + unist-util-visit: 4.1.2 + dev: true + + /remark-frontmatter@4.0.1: + resolution: {integrity: sha512-38fJrB0KnmD3E33a5jZC/5+gGAC2WKNiPw1/fdXJvijBlhA7RCsvJklrYJakS0HedninvaCYW8lQGf9C918GfA==} + dependencies: + '@types/mdast': 3.0.15 + mdast-util-frontmatter: 1.0.1 + micromark-extension-frontmatter: 1.1.1 + unified: 10.1.2 + dev: true + + /remark-gfm@3.0.1: + resolution: {integrity: sha512-lEFDoi2PICJyNrACFOfDD3JlLkuSbOa5Wd8EPt06HUdptv8Gn0bxYTdbU/XXQ3swAPkEaGxxPN9cbnMHvVu1Ig==} + dependencies: + '@types/mdast': 3.0.15 + mdast-util-gfm: 2.0.2 + micromark-extension-gfm: 2.0.3 + unified: 10.1.2 + transitivePeerDependencies: + - supports-color + dev: true + + /remark-mdx-frontmatter@1.1.1: + resolution: {integrity: sha512-7teX9DW4tI2WZkXS4DBxneYSY7NHiXl4AKdWDO9LXVweULlCT8OPWsOjLEnMIXViN1j+QcY8mfbq3k0EK6x3uA==} + engines: {node: '>=12.2.0'} + dependencies: + estree-util-is-identifier-name: 1.1.0 + estree-util-value-to-estree: 1.3.0 + js-yaml: 4.1.0 + toml: 3.0.0 + dev: true + + /remark-mdx@2.3.0: + resolution: {integrity: sha512-g53hMkpM0I98MU266IzDFMrTD980gNF3BJnkyFcmN+dD873mQeD5rdMO3Y2X+x8umQfbSE0PcoEDl7ledSA+2g==} + dependencies: + mdast-util-mdx: 2.0.1 + micromark-extension-mdxjs: 1.0.1 + transitivePeerDependencies: + - supports-color + dev: true + + /remark-parse@10.0.2: + resolution: {integrity: sha512-3ydxgHa/ZQzG8LvC7jTXccARYDcRld3VfcgIIFs7bI6vbRSxJJmzgLEIIoYKyrfhaY+ujuWaf/PJiMZXoiCXgw==} + dependencies: + '@types/mdast': 3.0.15 + mdast-util-from-markdown: 1.3.1 + unified: 10.1.2 + transitivePeerDependencies: + - supports-color + dev: true + + /remark-rehype@10.1.0: + resolution: {integrity: sha512-EFmR5zppdBp0WQeDVZ/b66CWJipB2q2VLNFMabzDSGR66Z2fQii83G5gTBbgGEnEEA0QRussvrFHxk1HWGJskw==} + dependencies: + '@types/hast': 2.3.9 + '@types/mdast': 3.0.15 + mdast-util-to-hast: 12.3.0 + unified: 10.1.2 + dev: true + + /request-progress@3.0.0: + resolution: {integrity: sha512-MnWzEHHaxHO2iWiQuHrUPBi/1WeBf5PkxQqNyNvLl9VAYSdXkP8tQ3pBSeCPD+yw0v0Aq1zosWLz0BdeXpWwZg==} + dependencies: + throttleit: 1.0.1 + dev: true + + /require-directory@2.1.1: + resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} + engines: {node: '>=0.10.0'} + dev: true + + /require-from-string@2.0.2: + resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==} + engines: {node: '>=0.10.0'} + dev: true + + /requires-port@1.0.0: + resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==} + dev: true + + /resolve-from@4.0.0: + resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} + engines: {node: '>=4'} + dev: true + + /resolve-from@5.0.0: + resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==} + engines: {node: '>=8'} + dev: true + + /resolve-global@1.0.0: + resolution: {integrity: sha512-zFa12V4OLtT5XUX/Q4VLvTfBf+Ok0SPc1FNGM/z9ctUdiU618qwKpWnd0CHs3+RqROfyEg/DhuHbMWYqcgljEw==} + engines: {node: '>=8'} + dependencies: + global-dirs: 0.1.1 + dev: true + + /resolve@1.22.8: + resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==} + hasBin: true + dependencies: + is-core-module: 2.13.1 + path-parse: 1.0.7 + supports-preserve-symlinks-flag: 1.0.0 + dev: true + + /resolve@2.0.0-next.5: + resolution: {integrity: sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==} + hasBin: true + dependencies: + is-core-module: 2.13.1 + path-parse: 1.0.7 + supports-preserve-symlinks-flag: 1.0.0 + dev: true + + /restore-cursor@3.1.0: + resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==} + engines: {node: '>=8'} + dependencies: + onetime: 5.1.2 + signal-exit: 3.0.7 + dev: true + + /reusify@1.0.4: + resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} + engines: {iojs: '>=1.0.0', node: '>=0.10.0'} + dev: true + + /rfdc@1.3.0: + resolution: {integrity: sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA==} + dev: true + + /rimraf@3.0.2: + resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} + hasBin: true + dependencies: + glob: 7.2.3 + dev: true + + /run-parallel@1.2.0: + resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} + dependencies: + queue-microtask: 1.2.3 + dev: true + + /rxjs@7.8.1: + resolution: {integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==} + dependencies: + tslib: 2.6.2 + dev: true + + /sade@1.8.1: + resolution: {integrity: sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==} + engines: {node: '>=6'} + dependencies: + mri: 1.2.0 + dev: true + + /safe-array-concat@1.0.1: + resolution: {integrity: sha512-6XbUAseYE2KtOuGueyeobCySj9L4+66Tn6KQMOPQJrAJEowYKW/YR/MGJZl7FdydUdaFu4LYyDZjxf4/Nmo23Q==} + engines: {node: '>=0.4'} + dependencies: + call-bind: 1.0.5 + get-intrinsic: 1.2.2 + has-symbols: 1.0.3 + isarray: 2.0.5 + dev: true + + /safe-buffer@5.2.1: + resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} + dev: true + + /safe-regex-test@1.0.0: + resolution: {integrity: sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==} + dependencies: + call-bind: 1.0.5 + get-intrinsic: 1.2.2 + is-regex: 1.1.4 + dev: true + + /safer-buffer@2.1.2: + resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} + dev: true + + /scheduler@0.23.0: + resolution: {integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==} + dependencies: + loose-envify: 1.4.0 + + /section-matter@1.0.0: + resolution: {integrity: sha512-vfD3pmTzGpufjScBh50YHKzEu2lxBWhVEHsNGoEXmCmn2hKGfeNLYMzCJpe8cD7gqX7TJluOVpBkAequ6dgMmA==} + engines: {node: '>=4'} + dependencies: + extend-shallow: 2.0.1 + kind-of: 6.0.3 + dev: true + + /semver-compare@1.0.0: + resolution: {integrity: sha512-YM3/ITh2MJ5MtzaM429anh+x2jiLVjqILF4m4oyQB18W7Ggea7BfqdH/wGMK7dDiMghv/6WG7znWMwUDzJiXow==} + dev: true + + /semver@5.7.2: + resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==} + hasBin: true + dev: true + + /semver@6.3.1: + resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} + hasBin: true + dev: true + + /semver@7.3.5: + resolution: {integrity: sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==} + engines: {node: '>=10'} + hasBin: true + dependencies: + lru-cache: 6.0.0 + dev: true + + /semver@7.5.4: + resolution: {integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==} + engines: {node: '>=10'} + hasBin: true + dependencies: + lru-cache: 6.0.0 + dev: true + + /send@0.18.0: + resolution: {integrity: sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==} + engines: {node: '>= 0.8.0'} + dependencies: + debug: 2.6.9 + depd: 2.0.0 + destroy: 1.2.0 + encodeurl: 1.0.2 + escape-html: 1.0.3 + etag: 1.8.1 + fresh: 0.5.2 + http-errors: 2.0.0 + mime: 1.6.0 + ms: 2.1.3 + on-finished: 2.4.1 + range-parser: 1.2.1 + statuses: 2.0.1 + transitivePeerDependencies: + - supports-color + dev: true + + /serve-static@1.15.0: + resolution: {integrity: sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==} + engines: {node: '>= 0.8.0'} + dependencies: + encodeurl: 1.0.2 + escape-html: 1.0.3 + parseurl: 1.3.3 + send: 0.18.0 + transitivePeerDependencies: + - supports-color + dev: true + + /set-function-length@1.1.1: + resolution: {integrity: sha512-VoaqjbBJKiWtg4yRcKBQ7g7wnGnLV3M8oLvVWwOk2PdYY6PEFegR1vezXR0tw6fZGF9csVakIRjrJiy2veSBFQ==} + engines: {node: '>= 0.4'} + dependencies: + define-data-property: 1.1.1 + get-intrinsic: 1.2.2 + gopd: 1.0.1 + has-property-descriptors: 1.0.1 + dev: true + + /set-function-name@2.0.1: + resolution: {integrity: sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==} + engines: {node: '>= 0.4'} + dependencies: + define-data-property: 1.1.1 + functions-have-names: 1.2.3 + has-property-descriptors: 1.0.1 + dev: true + + /setprototypeof@1.2.0: + resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==} + dev: true + + /shebang-command@2.0.0: + resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} + engines: {node: '>=8'} + dependencies: + shebang-regex: 3.0.0 + dev: true + + /shebang-regex@3.0.0: + resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} + engines: {node: '>=8'} + dev: true + + /shiki@0.14.7: + resolution: {integrity: sha512-dNPAPrxSc87ua2sKJ3H5dQ/6ZaY8RNnaAqK+t0eG7p0Soi2ydiqbGOTaZCqaYvA/uZYfS1LJnemt3Q+mSfcPCg==} + dependencies: + ansi-sequence-parser: 1.1.1 + jsonc-parser: 3.2.0 + vscode-oniguruma: 1.7.0 + vscode-textmate: 8.0.0 + dev: false + + /side-channel@1.0.4: + resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==} + dependencies: + call-bind: 1.0.5 + get-intrinsic: 1.2.2 + object-inspect: 1.13.1 + dev: true + + /signal-exit@3.0.7: + resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} + dev: true + + /signal-exit@4.1.0: + resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==} + engines: {node: '>=14'} + dev: true + + /slash@3.0.0: + resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} + engines: {node: '>=8'} + dev: true + + /slice-ansi@3.0.0: + resolution: {integrity: sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==} + engines: {node: '>=8'} + dependencies: + ansi-styles: 4.3.0 + astral-regex: 2.0.0 + is-fullwidth-code-point: 3.0.0 + dev: true + + /slice-ansi@4.0.0: + resolution: {integrity: sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==} + engines: {node: '>=10'} + dependencies: + ansi-styles: 4.3.0 + astral-regex: 2.0.0 + is-fullwidth-code-point: 3.0.0 + dev: true + + /snake-case@3.0.4: + resolution: {integrity: sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==} + dependencies: + dot-case: 3.0.4 + tslib: 2.6.2 + dev: false + + /sort-keys@5.0.0: + resolution: {integrity: sha512-Pdz01AvCAottHTPQGzndktFNdbRA75BgOfeT1hH+AMnJFv8lynkPi42rfeEhpx1saTEI3YNMWxfqu0sFD1G8pw==} + engines: {node: '>=12'} + dependencies: + is-plain-obj: 4.1.0 + dev: false + + /source-map-js@1.0.2: + resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==} + engines: {node: '>=0.10.0'} + + /source-map-support@0.5.21: + resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==} + dependencies: + buffer-from: 1.1.2 + source-map: 0.6.1 + dev: true + + /source-map@0.6.1: + resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==} + engines: {node: '>=0.10.0'} + dev: true + + /source-map@0.7.4: + resolution: {integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==} + engines: {node: '>= 8'} + dev: true + + /space-separated-tokens@2.0.2: + resolution: {integrity: sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==} + + /spdx-correct@3.2.0: + resolution: {integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==} + dependencies: + spdx-expression-parse: 3.0.1 + spdx-license-ids: 3.0.16 + dev: true + + /spdx-exceptions@2.3.0: + resolution: {integrity: sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==} + dev: true + + /spdx-expression-parse@3.0.1: + resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==} + dependencies: + spdx-exceptions: 2.3.0 + spdx-license-ids: 3.0.16 + dev: true + + /spdx-license-ids@3.0.16: + resolution: {integrity: sha512-eWN+LnM3GR6gPu35WxNgbGl8rmY1AEmoMDvL/QD6zYmPWgywxWqJWNdLGT+ke8dKNWrcYgYjPpG5gbTfghP8rw==} + dev: true + + /split-on-first@1.1.0: + resolution: {integrity: sha512-43ZssAJaMusuKWL8sKUBQXHWOpq8d6CfN/u1p4gUzfJkM05C8rxTmYrkIPTXapZpORA6LkkzcUulJ8FqA7Uudw==} + engines: {node: '>=6'} + dev: false + + /split2@3.2.2: + resolution: {integrity: sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg==} + dependencies: + readable-stream: 3.6.2 + dev: true + + /sprintf-js@1.0.3: + resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==} + dev: true + + /sshpk@1.18.0: + resolution: {integrity: sha512-2p2KJZTSqQ/I3+HX42EpYOa2l3f8Erv8MWKsy2I9uf4wA7yFIkXRffYdsx86y6z4vHtV8u7g+pPlr8/4ouAxsQ==} + engines: {node: '>=0.10.0'} + hasBin: true + dependencies: + asn1: 0.2.6 + assert-plus: 1.0.0 + bcrypt-pbkdf: 1.0.2 + dashdash: 1.14.1 + ecc-jsbn: 0.1.2 + getpass: 0.1.7 + jsbn: 0.1.1 + safer-buffer: 2.1.2 + tweetnacl: 0.14.5 + dev: true + + /statuses@2.0.1: + resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==} + engines: {node: '>= 0.8'} + dev: true + + /strict-uri-encode@2.0.0: + resolution: {integrity: sha512-QwiXZgpRcKkhTj2Scnn++4PKtWsH0kpzZ62L2R6c/LUVYv7hVnZqcg2+sMuT6R7Jusu1vviK/MFsu6kNJfWlEQ==} + engines: {node: '>=4'} + dev: false + + /string-argv@0.3.1: + resolution: {integrity: sha512-a1uQGz7IyVy9YwhqjZIZu1c8JO8dNIe20xBmSS6qu9kv++k3JGzCVmprbNN5Kn+BgzD5E7YYwg1CcjuJMRNsvg==} + engines: {node: '>=0.6.19'} + dev: true + + /string-width@4.2.3: + resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} + engines: {node: '>=8'} + dependencies: + emoji-regex: 8.0.0 + is-fullwidth-code-point: 3.0.0 + strip-ansi: 6.0.1 + dev: true + + /string-width@5.1.2: + resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==} + engines: {node: '>=12'} + dependencies: + eastasianwidth: 0.2.0 + emoji-regex: 9.2.2 + strip-ansi: 7.1.0 + dev: true + + /string.prototype.matchall@4.0.10: + resolution: {integrity: sha512-rGXbGmOEosIQi6Qva94HUjgPs9vKW+dkG7Y8Q5O2OYkWL6wFaTRZO8zM4mhP94uX55wgyrXzfS2aGtGzUL7EJQ==} + dependencies: + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + get-intrinsic: 1.2.2 + has-symbols: 1.0.3 + internal-slot: 1.0.6 + regexp.prototype.flags: 1.5.1 + set-function-name: 2.0.1 + side-channel: 1.0.4 + dev: true + + /string.prototype.trim@1.2.8: + resolution: {integrity: sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + dev: true + + /string.prototype.trimend@1.0.7: + resolution: {integrity: sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==} + dependencies: + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + dev: true + + /string.prototype.trimstart@1.0.7: + resolution: {integrity: sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==} + dependencies: + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + dev: true + + /string_decoder@1.3.0: + resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==} + dependencies: + safe-buffer: 5.2.1 + dev: true + + /stringify-entities@4.0.3: + resolution: {integrity: sha512-BP9nNHMhhfcMbiuQKCqMjhDP5yBCAxsPu4pHFFzJ6Alo9dZgY4VLDPutXqIjpRiMoKdp7Av85Gr73Q5uH9k7+g==} + dependencies: + character-entities-html4: 2.1.0 + character-entities-legacy: 3.0.0 + dev: true + + /stringify-object@3.3.0: + resolution: {integrity: sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==} + engines: {node: '>=4'} + dependencies: + get-own-enumerable-property-symbols: 3.0.2 + is-obj: 1.0.1 + is-regexp: 1.0.0 + dev: true + + /strip-ansi@6.0.1: + resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} + engines: {node: '>=8'} + dependencies: + ansi-regex: 5.0.1 + dev: true + + /strip-ansi@7.1.0: + resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==} + engines: {node: '>=12'} + dependencies: + ansi-regex: 6.0.1 + dev: true + + /strip-bom-string@1.0.0: + resolution: {integrity: sha512-uCC2VHvQRYu+lMh4My/sFNmF2klFymLX1wHJeXnbEJERpV/ZsVuonzerjfrGpIGF7LBVa1O7i9kjiWvJiFck8g==} + engines: {node: '>=0.10.0'} + dev: true + + /strip-bom@3.0.0: + resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} + engines: {node: '>=4'} + dev: true + + /strip-final-newline@2.0.0: + resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==} + engines: {node: '>=6'} + dev: true + + /strip-indent@3.0.0: + resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==} + engines: {node: '>=8'} + dependencies: + min-indent: 1.0.1 + dev: true + + /strip-json-comments@3.1.1: + resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} + engines: {node: '>=8'} + dev: true + + /style-to-object@0.4.4: + resolution: {integrity: sha512-HYNoHZa2GorYNyqiCaBgsxvcJIn7OHq6inEga+E6Ke3m5JkoqpQbnFssk4jwe+K7AhGa2fcha4wSOf1Kn01dMg==} + dependencies: + inline-style-parser: 0.1.1 + dev: true + + /styled-jsx@5.0.7(react@18.2.0): + resolution: {integrity: sha512-b3sUzamS086YLRuvnaDigdAewz1/EFYlHpYBP5mZovKEdQQOIIYq8lApylub3HHZ6xFjV051kkGU7cudJmrXEA==} + engines: {node: '>= 12.0.0'} + peerDependencies: + '@babel/core': '*' + babel-plugin-macros: '*' + react: '>= 16.8.0 || 17.x.x || ^18.0.0-0' + peerDependenciesMeta: + '@babel/core': + optional: true + babel-plugin-macros: + optional: true + dependencies: + react: 18.2.0 + + /sucrase@3.35.0: + resolution: {integrity: sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==} + engines: {node: '>=16 || 14 >=14.17'} + hasBin: true + dependencies: + '@jridgewell/gen-mapping': 0.3.3 + commander: 4.1.1 + glob: 10.3.10 + lines-and-columns: 1.2.4 + mz: 2.7.0 + pirates: 4.0.6 + ts-interface-checker: 0.1.13 + dev: true + + /supports-color@5.5.0: + resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} + engines: {node: '>=4'} + dependencies: + has-flag: 3.0.0 + dev: true + + /supports-color@7.2.0: + resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} + engines: {node: '>=8'} + dependencies: + has-flag: 4.0.0 + dev: true + + /supports-color@8.1.1: + resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==} + engines: {node: '>=10'} + dependencies: + has-flag: 4.0.0 + dev: true + + /supports-preserve-symlinks-flag@1.0.0: + resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} + engines: {node: '>= 0.4'} + dev: true + + /table@6.8.1: + resolution: {integrity: sha512-Y4X9zqrCftUhMeH2EptSSERdVKt/nEdijTOacGD/97EKjhQ/Qs8RTlEGABSJNNN8lac9kheH+af7yAkEWlgneA==} + engines: {node: '>=10.0.0'} + dependencies: + ajv: 8.12.0 + lodash.truncate: 4.4.2 + slice-ansi: 4.0.0 + string-width: 4.2.3 + strip-ansi: 6.0.1 + dev: true + + /tailwind-merge@1.14.0: + resolution: {integrity: sha512-3mFKyCo/MBcgyOTlrY8T7odzZFx+w+qKSMAmdFzRvqBfLlSigU6TZnlFHK0lkMwj9Bj8OYU+9yW9lmGuS0QEnQ==} + dev: false + + /tailwindcss@3.4.1(ts-node@10.9.2): + resolution: {integrity: sha512-qAYmXRfk3ENzuPBakNK0SRrUDipP8NQnEY6772uDhflcQz5EhRdD7JNZxyrFHVQNCwULPBn6FNPp9brpO7ctcA==} + engines: {node: '>=14.0.0'} + hasBin: true + dependencies: + '@alloc/quick-lru': 5.2.0 + arg: 5.0.2 + chokidar: 3.5.3 + didyoumean: 1.2.2 + dlv: 1.1.3 + fast-glob: 3.3.2 + glob-parent: 6.0.2 + is-glob: 4.0.3 + jiti: 1.21.0 + lilconfig: 2.1.0 + micromatch: 4.0.5 + normalize-path: 3.0.0 + object-hash: 3.0.0 + picocolors: 1.0.0 + postcss: 8.4.33 + postcss-import: 15.1.0(postcss@8.4.33) + postcss-js: 4.0.1(postcss@8.4.33) + postcss-load-config: 4.0.2(postcss@8.4.33)(ts-node@10.9.2) + postcss-nested: 6.0.1(postcss@8.4.33) + postcss-selector-parser: 6.0.15 + resolve: 1.22.8 + sucrase: 3.35.0 + transitivePeerDependencies: + - ts-node + dev: true + + /text-extensions@1.9.0: + resolution: {integrity: sha512-wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ==} + engines: {node: '>=0.10'} + dev: true + + /text-table@0.2.0: + resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} + dev: true + + /thenify-all@1.6.0: + resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==} + engines: {node: '>=0.8'} + dependencies: + thenify: 3.3.1 + dev: true + + /thenify@3.3.1: + resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==} + dependencies: + any-promise: 1.3.0 + dev: true + + /throttleit@1.0.1: + resolution: {integrity: sha512-vDZpf9Chs9mAdfY046mcPt8fg5QSZr37hEH4TXYBnDF+izxgrbRGUAAaBvIk/fJm9aOFCGFd1EsNg5AZCbnQCQ==} + dev: true + + /through2@4.0.2: + resolution: {integrity: sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==} + dependencies: + readable-stream: 3.6.2 + dev: true + + /through@2.3.8: + resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==} + dev: true + + /tmp@0.2.1: + resolution: {integrity: sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ==} + engines: {node: '>=8.17.0'} + dependencies: + rimraf: 3.0.2 + dev: true + + /to-regex-range@5.0.1: + resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} + engines: {node: '>=8.0'} + dependencies: + is-number: 7.0.0 + dev: true + + /toidentifier@1.0.1: + resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==} + engines: {node: '>=0.6'} + dev: true + + /toml@3.0.0: + resolution: {integrity: sha512-y/mWCZinnvxjTKYhJ+pYxwD0mRLVvOtdS2Awbgxln6iEnt4rk0yBxeSBHkGJcPucRiG0e55mwWp+g/05rsrd6w==} + dev: true + + /tough-cookie@4.1.3: + resolution: {integrity: sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==} + engines: {node: '>=6'} + dependencies: + psl: 1.9.0 + punycode: 2.3.1 + universalify: 0.2.0 + url-parse: 1.5.10 + dev: true + + /trim-lines@3.0.1: + resolution: {integrity: sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==} + dev: true + + /trim-newlines@3.0.1: + resolution: {integrity: sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==} + engines: {node: '>=8'} + dev: true + + /trough@2.1.0: + resolution: {integrity: sha512-AqTiAOLcj85xS7vQ8QkAV41hPDIJ71XJB4RCUrzo/1GM2CQwhkJGaf9Hgr7BOugMRpgGUrqRg/DrBDl4H40+8g==} + + /ts-interface-checker@0.1.13: + resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==} + dev: true + + /ts-node@10.9.2(@types/node@18.19.4)(typescript@4.9.5): + resolution: {integrity: sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==} + hasBin: true + peerDependencies: + '@swc/core': '>=1.2.50' + '@swc/wasm': '>=1.2.50' + '@types/node': '*' + typescript: '>=2.7' + peerDependenciesMeta: + '@swc/core': + optional: true + '@swc/wasm': + optional: true + dependencies: + '@cspotcode/source-map-support': 0.8.1 + '@tsconfig/node10': 1.0.9 + '@tsconfig/node12': 1.0.11 + '@tsconfig/node14': 1.0.3 + '@tsconfig/node16': 1.0.4 + '@types/node': 18.19.4 + acorn: 8.11.3 + acorn-walk: 8.3.1 + arg: 4.1.3 + create-require: 1.1.1 + diff: 4.0.2 + make-error: 1.3.6 + typescript: 4.9.5 + v8-compile-cache-lib: 3.0.1 + yn: 3.1.1 + dev: true + + /ts-node@9.1.1(typescript@4.9.5): + resolution: {integrity: sha512-hPlt7ZACERQGf03M253ytLY3dHbGNGrAq9qIHWUY9XHYl1z7wYngSr3OQ5xmui8o2AaxsONxIzjafLUiWBo1Fg==} + engines: {node: '>=10.0.0'} + hasBin: true + peerDependencies: + typescript: '>=2.7' + dependencies: + arg: 4.1.3 + create-require: 1.1.1 + diff: 4.0.2 + make-error: 1.3.6 + source-map-support: 0.5.21 + typescript: 4.9.5 + yn: 3.1.1 + dev: true + + /tsconfig-paths@3.15.0: + resolution: {integrity: sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==} + dependencies: + '@types/json5': 0.0.29 + json5: 1.0.2 + minimist: 1.2.8 + strip-bom: 3.0.0 + dev: true + + /tslib@1.14.1: + resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==} + dev: true + + /tslib@2.6.2: + resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==} + + /tsutils@3.21.0(typescript@4.9.5): + resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} + engines: {node: '>= 6'} + peerDependencies: + 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' + dependencies: + tslib: 1.14.1 + typescript: 4.9.5 + dev: true + + /tunnel-agent@0.6.0: + resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==} + dependencies: + safe-buffer: 5.2.1 + dev: true + + /tweetnacl@0.14.5: + resolution: {integrity: sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==} + dev: true + + /type-check@0.4.0: + resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} + engines: {node: '>= 0.8.0'} + dependencies: + prelude-ls: 1.2.1 + dev: true + + /type-fest@0.18.1: + resolution: {integrity: sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==} + engines: {node: '>=10'} + dev: true + + /type-fest@0.20.2: + resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} + engines: {node: '>=10'} + dev: true + + /type-fest@0.21.3: + resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==} + engines: {node: '>=10'} + dev: true + + /type-fest@0.6.0: + resolution: {integrity: sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==} + engines: {node: '>=8'} + dev: true + + /type-fest@0.8.1: + resolution: {integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==} + engines: {node: '>=8'} + dev: true + + /type-fest@1.4.0: + resolution: {integrity: sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==} + engines: {node: '>=10'} + dev: false + + /type-is@1.6.18: + resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==} + engines: {node: '>= 0.6'} + dependencies: + media-typer: 0.3.0 + mime-types: 2.1.35 + dev: true + + /typed-array-buffer@1.0.0: + resolution: {integrity: sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.5 + get-intrinsic: 1.2.2 + is-typed-array: 1.1.12 + dev: true + + /typed-array-byte-length@1.0.0: + resolution: {integrity: sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.5 + for-each: 0.3.3 + has-proto: 1.0.1 + is-typed-array: 1.1.12 + dev: true + + /typed-array-byte-offset@1.0.0: + resolution: {integrity: sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==} + engines: {node: '>= 0.4'} + dependencies: + available-typed-arrays: 1.0.5 + call-bind: 1.0.5 + for-each: 0.3.3 + has-proto: 1.0.1 + is-typed-array: 1.1.12 + dev: true + + /typed-array-length@1.0.4: + resolution: {integrity: sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==} + dependencies: + call-bind: 1.0.5 + for-each: 0.3.3 + is-typed-array: 1.1.12 + dev: true + + /typescript@4.9.5: + resolution: {integrity: sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==} + engines: {node: '>=4.2.0'} + hasBin: true + dev: true + + /unbox-primitive@1.0.2: + resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==} + dependencies: + call-bind: 1.0.5 + has-bigints: 1.0.2 + has-symbols: 1.0.3 + which-boxed-primitive: 1.0.2 + dev: true + + /undici-types@5.26.5: + resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==} + dev: true + + /unified@10.1.2: + resolution: {integrity: sha512-pUSWAi/RAnVy1Pif2kAoeWNBa3JVrx0MId2LASj8G+7AiHWoKZNTomq6LG326T68U7/e263X6fTdcXIy7XnF7Q==} + dependencies: + '@types/unist': 2.0.10 + bail: 2.0.2 + extend: 3.0.2 + is-buffer: 2.0.5 + is-plain-obj: 4.1.0 + trough: 2.1.0 + vfile: 5.3.7 + + /unist-util-generated@2.0.1: + resolution: {integrity: sha512-qF72kLmPxAw0oN2fwpWIqbXAVyEqUzDHMsbtPvOudIlUzXYFIeQIuxXQCRCFh22B7cixvU0MG7m3MW8FTq/S+A==} + dev: true + + /unist-util-is@5.2.1: + resolution: {integrity: sha512-u9njyyfEh43npf1M+yGKDGVPbY/JWEemg5nH05ncKPfi+kBbKBJoTdsogMu33uhytuLlv9y0O7GH7fEdwLdLQw==} + dependencies: + '@types/unist': 2.0.10 + + /unist-util-position-from-estree@1.1.2: + resolution: {integrity: sha512-poZa0eXpS+/XpoQwGwl79UUdea4ol2ZuCYguVaJS4qzIOMDzbqz8a3erUCOmubSZkaOuGamb3tX790iwOIROww==} + dependencies: + '@types/unist': 2.0.10 + dev: true + + /unist-util-position@4.0.4: + resolution: {integrity: sha512-kUBE91efOWfIVBo8xzh/uZQ7p9ffYRtUbMRZBNFYwf0RK8koUMx6dGUfwylLOKmaT2cs4wSW96QoYUSXAyEtpg==} + dependencies: + '@types/unist': 2.0.10 + dev: true + + /unist-util-remove-position@4.0.2: + resolution: {integrity: sha512-TkBb0HABNmxzAcfLf4qsIbFbaPDvMO6wa3b3j4VcEzFVaw1LBKwnW4/sRJ/atSLSzoIg41JWEdnE7N6DIhGDGQ==} + dependencies: + '@types/unist': 2.0.10 + unist-util-visit: 4.1.2 + dev: true + + /unist-util-stringify-position@3.0.3: + resolution: {integrity: sha512-k5GzIBZ/QatR8N5X2y+drfpWG8IDBzdnVj6OInRNWm1oXrzydiaAT2OQiA8DPRRZyAKb9b6I2a6PxYklZD0gKg==} + dependencies: + '@types/unist': 2.0.10 + + /unist-util-visit-parents@5.1.3: + resolution: {integrity: sha512-x6+y8g7wWMyQhL1iZfhIPhDAs7Xwbn9nRosDXl7qoPTSCy0yNxnKc+hWokFifWQIDGi154rdUqKvbCa4+1kLhg==} + dependencies: + '@types/unist': 2.0.10 + unist-util-is: 5.2.1 + + /unist-util-visit@4.1.2: + resolution: {integrity: sha512-MSd8OUGISqHdVvfY9TPhyK2VdUrPgxkUtWSuMHF6XAAFuL4LokseigBnZtPnJMu+FbynTkFNnFlyjxpVKujMRg==} + dependencies: + '@types/unist': 2.0.10 + unist-util-is: 5.2.1 + unist-util-visit-parents: 5.1.3 + + /universalify@0.2.0: + resolution: {integrity: sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==} + engines: {node: '>= 4.0.0'} + dev: true + + /universalify@2.0.1: + resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==} + engines: {node: '>= 10.0.0'} + dev: true + + /unpipe@1.0.0: + resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==} + engines: {node: '>= 0.8'} + dev: true + + /untildify@4.0.0: + resolution: {integrity: sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==} + engines: {node: '>=8'} + dev: true + + /update-browserslist-db@1.0.13(browserslist@4.22.2): + resolution: {integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==} + hasBin: true + peerDependencies: + browserslist: '>= 4.21.0' + dependencies: + browserslist: 4.22.2 + escalade: 3.1.1 + picocolors: 1.0.0 + dev: true + + /uri-js@4.4.1: + resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} + dependencies: + punycode: 2.3.1 + dev: true + + /url-parse@1.5.10: + resolution: {integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==} + dependencies: + querystringify: 2.2.0 + requires-port: 1.0.0 + dev: true + + /use-sync-external-store@1.2.0(react@18.2.0): + resolution: {integrity: sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + dependencies: + react: 18.2.0 + + /util-deprecate@1.0.2: + resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} + dev: true + + /utils-merge@1.0.1: + resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==} + engines: {node: '>= 0.4.0'} + dev: true + + /uuid@8.3.2: + resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==} + hasBin: true + dev: true + + /uvu@0.5.6: + resolution: {integrity: sha512-+g8ENReyr8YsOc6fv/NVJs2vFdHBnBNdfE49rshrTzDWOlUx4Gq7KOS2GD8eqhy2j+Ejq29+SbKH8yjkAqXqoA==} + engines: {node: '>=8'} + hasBin: true + dependencies: + dequal: 2.0.3 + diff: 5.1.0 + kleur: 4.1.5 + sade: 1.8.1 + dev: true + + /v8-compile-cache-lib@3.0.1: + resolution: {integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==} + dev: true + + /v8-compile-cache@2.4.0: + resolution: {integrity: sha512-ocyWc3bAHBB/guyqJQVI5o4BZkPhznPYUG2ea80Gond/BgNWpap8TOmLSeeQG7bnh2KMISxskdADG59j7zruhw==} + dev: true + + /validate-npm-package-license@3.0.4: + resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==} + dependencies: + spdx-correct: 3.2.0 + spdx-expression-parse: 3.0.1 + dev: true + + /vary@1.1.2: + resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==} + engines: {node: '>= 0.8'} + dev: true + + /verror@1.10.0: + resolution: {integrity: sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==} + engines: {'0': node >=0.6.0} + dependencies: + assert-plus: 1.0.0 + core-util-is: 1.0.2 + extsprintf: 1.3.0 + dev: true + + /vfile-location@4.1.0: + resolution: {integrity: sha512-YF23YMyASIIJXpktBa4vIGLJ5Gs88UB/XePgqPmTa7cDA+JeO3yclbpheQYCHjVHBn/yePzrXuygIL+xbvRYHw==} + dependencies: + '@types/unist': 2.0.10 + vfile: 5.3.7 + dev: false + + /vfile-message@3.1.4: + resolution: {integrity: sha512-fa0Z6P8HUrQN4BZaX05SIVXic+7kE3b05PWAtPuYP9QLHsLKYR7/AlLW3NtOrpXRLeawpDLMsVkmk5DG0NXgWw==} + dependencies: + '@types/unist': 2.0.10 + unist-util-stringify-position: 3.0.3 + + /vfile@5.3.7: + resolution: {integrity: sha512-r7qlzkgErKjobAmyNIkkSpizsFPYiUPuJb5pNW1RB4JcYVZhs4lIbVqk8XPk033CV/1z8ss5pkax8SuhGpcG8g==} + dependencies: + '@types/unist': 2.0.10 + is-buffer: 2.0.5 + unist-util-stringify-position: 3.0.3 + vfile-message: 3.1.4 + + /vscode-oniguruma@1.7.0: + resolution: {integrity: sha512-L9WMGRfrjOhgHSdOYgCt/yRMsXzLDJSL7BPrOZt73gU0iWO4mpqzqQzOz5srxqTvMBaR0XZTSrVWo4j55Rc6cA==} + dev: false + + /vscode-textmate@8.0.0: + resolution: {integrity: sha512-AFbieoL7a5LMqcnOF04ji+rpXadgOXnZsxQr//r83kLPr7biP7am3g9zbaZIaBGwBRWeSvoMD4mgPdX3e4NWBg==} + dev: false + + /warning@4.0.3: + resolution: {integrity: sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==} + dependencies: + loose-envify: 1.4.0 + dev: false + + /web-namespaces@2.0.1: + resolution: {integrity: sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ==} + dev: false + + /web-streams-polyfill@3.3.2: + resolution: {integrity: sha512-3pRGuxRF5gpuZc0W+EpwQRmCD7gRqcDOMt688KmdlDAgAyaB1XlN0zq2njfDNm44XVdIouE7pZ6GzbdyH47uIQ==} + engines: {node: '>= 8'} + dev: true + + /which-boxed-primitive@1.0.2: + resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==} + dependencies: + is-bigint: 1.0.4 + is-boolean-object: 1.1.2 + is-number-object: 1.0.7 + is-string: 1.0.7 + is-symbol: 1.0.4 + dev: true + + /which-builtin-type@1.1.3: + resolution: {integrity: sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==} + engines: {node: '>= 0.4'} + dependencies: + function.prototype.name: 1.1.6 + has-tostringtag: 1.0.0 + is-async-function: 2.0.0 + is-date-object: 1.0.5 + is-finalizationregistry: 1.0.2 + is-generator-function: 1.0.10 + is-regex: 1.1.4 + is-weakref: 1.0.2 + isarray: 2.0.5 + which-boxed-primitive: 1.0.2 + which-collection: 1.0.1 + which-typed-array: 1.1.13 + dev: true + + /which-collection@1.0.1: + resolution: {integrity: sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==} + dependencies: + is-map: 2.0.2 + is-set: 2.0.2 + is-weakmap: 2.0.1 + is-weakset: 2.0.2 + dev: true + + /which-typed-array@1.1.13: + resolution: {integrity: sha512-P5Nra0qjSncduVPEAr7xhoF5guty49ArDTwzJ/yNuPIbZppyRxFQsRCWrocxIY+CnMVG+qfbU2FmDKyvSGClow==} + engines: {node: '>= 0.4'} + dependencies: + available-typed-arrays: 1.0.5 + call-bind: 1.0.5 + for-each: 0.3.3 + gopd: 1.0.1 + has-tostringtag: 1.0.0 + dev: true + + /which@2.0.2: + resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} + engines: {node: '>= 8'} + hasBin: true + dependencies: + isexe: 2.0.0 + dev: true + + /wrap-ansi@6.2.0: + resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==} + engines: {node: '>=8'} + dependencies: + ansi-styles: 4.3.0 + string-width: 4.2.3 + strip-ansi: 6.0.1 + dev: true + + /wrap-ansi@7.0.0: + resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} + engines: {node: '>=10'} + dependencies: + ansi-styles: 4.3.0 + string-width: 4.2.3 + strip-ansi: 6.0.1 + dev: true + + /wrap-ansi@8.1.0: + resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==} + engines: {node: '>=12'} + dependencies: + ansi-styles: 6.2.1 + string-width: 5.1.2 + strip-ansi: 7.1.0 + dev: true + + /wrappy@1.0.2: + resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} + dev: true + + /ws@8.16.0: + resolution: {integrity: sha512-HS0c//TP7Ina87TfiPUz1rQzMhHrl/SG2guqRcTOIUYD2q8uhUdNHZYJUaQ8aTGPzCh+c6oawMKW35nFl1dxyQ==} + engines: {node: '>=10.0.0'} + peerDependencies: + bufferutil: ^4.0.1 + utf-8-validate: '>=5.0.2' + peerDependenciesMeta: + bufferutil: + optional: true + utf-8-validate: + optional: true + dev: true + + /y18n@5.0.8: + resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} + engines: {node: '>=10'} + dev: true + + /yallist@4.0.0: + resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} + dev: true + + /yaml@1.10.2: + resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==} + engines: {node: '>= 6'} + dev: true + + /yaml@2.3.4: + resolution: {integrity: sha512-8aAvwVUSHpfEqTQ4w/KMlf3HcRdt50E5ODIQJBw1fQ5RL34xabzxtUlzTXVqc4rkZsPbvrXKWnABCD7kWSmocA==} + engines: {node: '>= 14'} + dev: true + + /yargs-parser@20.2.9: + resolution: {integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==} + engines: {node: '>=10'} + dev: true + + /yargs-parser@21.1.1: + resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} + engines: {node: '>=12'} + dev: true + + /yargs@17.7.2: + resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==} + engines: {node: '>=12'} + dependencies: + cliui: 8.0.1 + escalade: 3.1.1 + get-caller-file: 2.0.5 + require-directory: 2.1.1 + string-width: 4.2.3 + y18n: 5.0.8 + yargs-parser: 21.1.1 + dev: true + + /yauzl@2.10.0: + resolution: {integrity: sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==} + dependencies: + buffer-crc32: 0.2.13 + fd-slicer: 1.1.0 + dev: true + + /yn@3.1.1: + resolution: {integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==} + engines: {node: '>=6'} + dev: true + + /yocto-queue@0.1.0: + resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} + engines: {node: '>=10'} + dev: true + + /zod@3.22.4: + resolution: {integrity: sha512-iC+8Io04lddc+mVqQ9AZ7OQ2MrUKGN+oIQyq1vemgt46jwCwLfhq7/pwnBnNXXXZb8VTVLKwp9EDkx+ryxIWmg==} + dev: false + + /zwitch@2.0.4: + resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==} + dev: true diff --git a/postcss.config.js b/postcss.config.js new file mode 100644 index 0000000..12a703d --- /dev/null +++ b/postcss.config.js @@ -0,0 +1,6 @@ +module.exports = { + plugins: { + tailwindcss: {}, + autoprefixer: {}, + }, +}; diff --git a/prisma/data/fauna-backup.json b/prisma/data/fauna-backup.json new file mode 100644 index 0000000..84ab372 --- /dev/null +++ b/prisma/data/fauna-backup.json @@ -0,0 +1,3001 @@ +[ + { + "slug": "l_absolute-import", + "views": 1849, + "likes": 620, + "likesByUser": { + "b2d585819becc679ae67713447babcea": 5, + "ab194328b8d208b62cc042e90b961889": 5, + "52aefe237301f69d5e11a1d992f8eb45": 3, + "99f1e3b9bcfd3b736eacfd49bf3bb514": 5, + "0d333741ca2e9d768c402e65efa46127": 5, + "55eacb8563f78f46b94cd3874f375b43": 4, + "1ad23f8bfe0b1d6de341d461a27147d0": 5, + "9a561841af63cc8e22057bd9b976c181": 5, + "1afc22e3a8f622e1eacc9e734ab8ad48": 5, + "d49ca1e0190df570ee41285fa419e21b": 5, + "d2f8950d8b0c3d57e91485b2130a72f1": 4, + "2bb23436c8b4491e509a8e130f239387": 5, + "4b754411ca2818602da13709b03a8884": 5, + "30e7e81ec358a0460013ab060a476e46": 5, + "f576e3e61d15b1c00272a438d0484187": 5, + "a1e897aa1f5d1edb01d521f1880b53f3": 5, + "2d16ef26fae70514f2f5de4b3bd8e980": 5, + "45a226fad673bf8ab6e49fbc57e90a94": 5, + "68c9581475a458b5ea0f8e38d3112cb0": 5, + "4cfb9782390a093891316eda7071bd49": 5, + "d44d8b4de9875cae3cdad7fe303c0be6": 5, + "7457d0a9b09933d9256e1163b9faee18": 5, + "4565ad65b5fb68e8fe4d8502832a1596": 5, + "1a355c55658e79064b2be6570737b375": 5, + "ff85163f25c1cd27d93d82f55d72279f": 5, + "f1ff88b81f361145d56c3e480e205f08": 5, + "c7a81bd2196320951f2eda6b8066c15f": 5, + "e74395768fe31650608055ac2e522ee4": 1, + "27b98c45f3f1bea08fb37801b787222e": 5, + "b0c00bbc8273e8464209c78f9321f39e": 5, + "c6fcc09cf0104bd8c77b3d7c3ffba109": 5, + "6da3cedb4cf52ee5b876c9bf4126b1f5": 5, + "0185b7e4e68e6038f04bec274333e7d7": 5, + "3cf64f04ba38390ea2638d8194d4cd8d": 3, + "374d14d8d86bbde3b921e1b709208481": 1, + "984e57769182423b6bbcde4aff0e4061": 3, + "61a1e97174d71e84143a504557430f75": 5, + "d92a6b82fbbcc55d1c4ea546d12bf037": 5, + "424cb527fbb03f52d413549205b53a32": 5, + "867169899ab89ef6b59306835b6a3fc2": 5, + "dea8825db7f066de69907b886b5c3f2d": 5, + "fb2934504569be79de58b11875d965e6": 5, + "e8e51f73203787e388a5b3da82b635d6": 5, + "4aa9f55bfdaeb0afc05ce334a4fc5a31": 2, + "9a928045464556d755a40aaa95881fe6": 5, + "07d7a4ed5f5ac9bd172c4cdeca380887": 5, + "2e1060d913aec13fe3d2c39e8ee08060": 3, + "10d7c741684da2c85f6d9a1fbb6d01b6": 1, + "848b831337a26f1af3e5a2c60065d737": 5, + "24f4407d710dfafa81918e1b9393d322": 1, + "069b98fbe71d365ad9468ccfde2f46dd": 2, + "b1939b31ccdcabaefacef086de08208b": 5, + "58a06a74e78837fd5f9c49b422de56b6": 5, + "f985b7cb016e71986815dec7d9e0e359": 5, + "28c7f7a3219d26a2ec350b613df9c739": 5, + "a09da1ec76dc4b8f375752811edee9b9": 5, + "4c1839e6333bfe0dd38557df2fd32a71": 5, + "ff9cc7c7499a2aedf95f08b51573f3c8": 5, + "23c169c886726af682b23a366ee6964f": 5, + "3f9b052401056bb139daf37a66d56896": 5, + "96bde0517b6ccbf021fd8adfd39ab71a": 5, + "a0a53acdb701ae915bc264835f4e0283": 5, + "da30d46e2f04f4e8a19b66baba0e4e68": 5, + "4be8ddf0ee2f08193b6199437ba7c3ed": 5, + "bb6c2147fac337d39392f9a3e0726040": 5, + "92dbc541f7732d987968f044c9089c15": 5, + "b5c81ffe06e8b4be4e47e4b74a3c0e9d": 1, + "0aac27d153da9a55201419ea42124155": 5, + "1b3a42b7d914104debc68382814044a9": 1, + "d3db0552c0f7c4a2c94faadc242656e0": 5, + "8de157ecaff375a1863168fc9295b313": 5, + "53bca37e45d7b34ac0f097d048e84b71": 5, + "1a4f5065a6a1c3b42b8c204257838291": 5, + "2ecedc19842be7a8ef3f0b811a8c2ffe": 1, + "442bea94b889489e4693db23d62d7e60": 5, + "a4d35cad0d109a012b2c4fbda0ef9591": 1, + "054ef00e72204e842164f7a203b36fdc": 5, + "c638ae7b28cb8d5bba6c4fc2d70ba39b": 5, + "454b2524302994a2ce23d1c72afec60b": 5, + "447a9fe8c60b9b47c98bc001016555a7": 2, + "0be6930249721b36250f1ac736860310": 1, + "2a722f2bbef515d0a82b2e4154c3b210": 5, + "6e458d759ee610bb7cd65a8624b310ff": 5, + "f79a9e595edc1256ca19a9cae4d39ba1": 5, + "debfc5dda67a16e29ea38e7e79539b1d": 2, + "222f3ce2d75276c4060c6c35c6bd32a3": 5, + "efa0dc710cbc1970c41028da7bc8b6f4": 5, + "409b2fc813a2866b14f6c1005ac9559f": 5, + "7100ad59cc1899eb78e7429ca5e63b57": 5, + "94ebfef6c5652bbd5ac9c78e353e75fa": 5, + "48be50b469557fcac2463c246812cb3b": 1, + "28444d94a8402a57a3570fb3ddf9ea6f": 1, + "02cdf6e444fb1b3683f5abd5e37da90b": 5, + "3b307b58b148ad8f16d92395d4dd345e": 5, + "443d9d0d3d8080a572cdd82eff084781": 5, + "6c71bf30a1fb5b5668ce78a2eda72e43": 5, + "0e0449c858a708f9bc169d67b194a4e2": 5, + "407b79b662bb05e5bb3c52ad7548443b": 5, + "947358184ad5e0bf429af778998fcdeb": 5, + "306be0c755e5546c636c2e39d37aa639": 5, + "db664b3853146cb352708a62b6d0ecdc": 5, + "4f1ba2f6d6ed6d6902a5b468db5c6fb1": 5, + "655f9524484104233bd62b3f5e34656b": 5, + "20b7bc2b2f1b7a14290d86905e676047": 1, + "59ee39fe2e8355d9a328d99da1fdc025": 5, + "27d5ed32fa6471127ae12cba55e387ea": 5, + "43e4022af0f8a07cb8c3fcc8860d3f4a": 2, + "5df6615d5a17e442ba047e572c87fe66": 5, + "07d11dc348b79a9f98e83158cf18cb26": 5, + "828e0b16561f1be1a6d3fa19f23ffbf4": 5, + "83d05a73946a69a2a467a869809dc40a": 5, + "c14eb9d88442ba1a39c5b21ace65248f": 5, + "8ba4c1fb71bc5f3b545069800d1a7116": 5, + "b8491d0a5224b70824e411da412e6fa2": 5, + "37591587c05f246528a49caf41aad7e2": 5, + "983f7332a35fd1b5ea652b68635d3837": 5, + "5e50fbe466fce4012edc5539f1ffba3d": 5, + "5aab20136e719e6f96c913e0b6b7b8cc": 5, + "03d28eb08d5cc823853b42997e9201ed": 1, + "d07056207659f7c0bc8a375102f374e3": 5, + "8297fd2a8cac7ac71d4084e980ef888a": 5, + "01d06a4fcbe839b3a44982e59d0ab779": 5, + "d15ea7eca998d2fb52f9947911283cce": 5, + "2fee271a40ae5643710961a2b75d8ef9": 5, + "aa99d7f4f78108ea61ff2e0a668c79c7": 5, + "d3fb9a9d92b8d6a1a0250814ee5dd8a8": 5, + "9bfa2b9ee59796ed3036dfe8a037097e": 2, + "ebcbc1621d56beff28075988d961de26": 5, + "7e22b3c856edefef56e4be84ab580695": 1, + "4a8a07a0979c2b599c1544acb1997fb9": 5, + "6f5fe07aef87bc4a5c9ca38640a3c210": 4, + "21585418a7a8f15354c3bd9c61dc5e00": 5, + "ed8356eb96edab88f9b7158af13a146d": 5, + "ad5d2a7cd0a80a1e0f9b3cd80b1de1b5": 1, + "49fff6ef9e3ddc909ddf68253196d92f": 5, + "151e11071802fcc77841dbab53b9d713": 2, + "da1c5e07eb20adaca43058eacf007793": 5, + "ee9e6648cf744f34ddd3913fdc269249": 5, + "ff992efc0895b396e89afa702a090063": 1, + "441a8141cec590307a3ca201aae3ea05": 5, + "ecb4cb9e81e7dd8d5d09e4c29b8476f3": 5, + "214dd1004ae19407d90499c97bb769cb": 5, + "ab01da64d24f4d0718af0088a698f8d2": 5 + } + }, + { + "slug": "b_nextjs-redirect-no-flashing", + "views": 18110, + "likes": 510, + "likesByUser": { + "b2d585819becc679ae67713447babcea": 5, + "a2ae7fb5eddab9842416aa3c502f6d5a": 1, + "0a8a0ca7f89e9ecd9e60bb7280056576": 5, + "29f8fa47508385d29a8c552d4eef5b77": 5, + "2908c17f657f163e753d5d31969e10b4": 5, + "755375f20eebd2489b2b07ce537ebbcb": 2, + "73deb82f9d5f8025f7e19b085fd93069": 5, + "ed18a5ab0565f0fa44f29ff71aca943f": 5, + "b79788031807a7c7f2e48a47d86a94e4": 5, + "c5a318bb92857fe968103c26e96ad653": 5, + "d4a6042f9fed9826343dbe48ffc733fb": 5, + "96dfb11d6d36c7c95b65e77fd2c66516": 5, + "18349b4aba8acb1f93bdb15f21270057": 5, + "347226535d996dd506cf2e30e49b1d5f": 5, + "6b900e277bedcedabaa4a59955242f6b": 5, + "8a401a3b0e8d38f0ee5ce035991dd25e": 5, + "03afafd88ee68ef285f94176d8eb5705": 5, + "f322f02e6124b83dc8c3e813393ffb6a": 5, + "173569759bc79638718b12eed650f462": 1, + "b284f0ac73d7681a687cd388549f2433": 5, + "dcc9a93ece0185aeaef6203ac1b12883": 5, + "0c6e606409ff829932b6ba4e979b2f45": 5, + "29878c14614b3b223320975f28ad3e9d": 5, + "a620c77fbcbb8c4350b5150c9c3a0a4d": 5, + "19ccd3eea33e7e17c223c4c291f53a18": 5, + "ca7fdb566651da20f89c5010f29b225e": 1, + "fbd5a750413cf1434599fd2cdb5e076a": 5, + "a2b8161823c657c201efd136de8bebb2": 5, + "a437e1fe2b08cd678e002d7d76a0fa64": 5, + "77014036e3b007fbae493bc11482142e": 5, + "443490630e9d5efd54b283ad4ed1fa1e": 5, + "8b1cebc0637bd7628398cebfdc52e9c7": 5, + "e9ce639ad65d7826c62a89719a07d7e2": 1, + "04ef3d7b37754b9442a776cf8ecc66ef": 5, + "e6255db8b95852607c9c2d0751f0677e": 5, + "1b4c564be9b36edd3678c193991f68ff": 5, + "8ba2b8f1ef5bb667f2b48064f6d1ea17": 5, + "327cb2364ae374eae8f931b9d6af59e8": 5, + "9885751646eff1b3457c32c155dc6b8e": 5, + "837d2d0b98077cbc8b5336cb23efc924": 5, + "c7d7a405f17d20bf2b5308ccadd98f1c": 1, + "68874d444d51a020346706d2304cf77f": 5, + "ff1732316701b432d865440f47a8bbfd": 5, + "d39641670a4995e880c060ca2509f02c": 5, + "6c30b86a34f4f0d1f3dc12689ff5829d": 5, + "ba01592f766151a2c7efb77a099110fa": 1, + "bc5e1c7acdf04e751809b2e178ee4c10": 5, + "72a4c3324d391449e0034f316069e689": 5, + "cd166bdca956e29575ac6dc89221a8a4": 5, + "3aafa126e8f02000c44f4d6a52f0ef62": 5, + "c030ced2e635086c9daf64b16e015381": 5, + "146567183e7aa20450afe9fb42b180bc": 5, + "b3ca40999b120238ef09ad05049d87b9": 5, + "3fc76b879f0d97a6c06b274cedb91a3f": 5, + "16ec08bf939c241f48a38a8cf0d6f570": 5, + "06461f908d3c395b8b748fea9345c178": 3, + "8f0bf91ac866129b775f450b1777e97a": 5, + "1c682a2d36e92d56d1120b09ca6f3120": 5, + "8c56a8aeba60c652ebb8df6cab0a3a23": 5, + "31b8590d57bc8d0b23aea69e3e347645": 5, + "05db2d8d07a4a10baea82bfc2a0267d1": 5, + "44f343205b823c04a313cd2b28434dec": 5, + "41a0c712cd0b49c97fa1958a43856805": 5, + "f60e55c838701e4a4c5cde7aa6215ac6": 5, + "7ce20bd0c59dfcd5b7be4fa773be14bf": 2, + "efa50f707e1154b75ad13d5e93b46692": 5, + "f6cd249a00009e196ab8a069a69eef18": 5, + "5f728d8569f3cb0237906d9eb8ee9e09": 5, + "073c47944e2bb7d0028cdd69ae58d5ac": 5, + "fa160a2a262c044c6a2bcd3119e15358": 5, + "474ec6fe5f2bdd2bf6b86fb7b3133cf6": 5, + "542d960b94935236ac43de95112b8e01": 5, + "17807a5045e07fe45ae67d6b4406c053": 5, + "4c592eb0b8911b7f7c2d8ad3fe757d0d": 5, + "3cab2cf4e81eb7459f250844ce05386c": 5, + "ea5fb72122f7adc10fd6ec6185c85312": 5, + "e3930a6433ba8d99861942525bcd7f2b": 5, + "6998e79ff848133027d46bef0b16134f": 1, + "7c5ef6f3df51e2add4d43c10e4af37ec": 5, + "9b21268d34634c595e7a9e8079387b7e": 5, + "e1598bd9c00169781fb386cf90484783": 5, + "1a4f024d65b9a87cc5f1ee019b4c1e4a": 2, + "c697e7997b5dcbec48891c926bda07b9": 2, + "828e0b16561f1be1a6d3fa19f23ffbf4": 5, + "8181dc67a452123856e8cddc1ec9823f": 5, + "f0cbe009c84e2795ceed48dea363952c": 5, + "867b80bde018a350eac5dde5b5ef4862": 5, + "82ec6e1787887dcb426cab40046106bd": 5, + "0c9926a060fac02259b4386b95cea87c": 5, + "7c3620d4152e237658d67ab34d4248c9": 5, + "5383af4559ca911ba499428cee1404bb": 2, + "f491d2441693b3a500e6448c148022da": 5, + "1a16969f1eee33d34b3db37a9c8998d2": 5, + "a0e8a1a38c355cf0ed5b73de7cd04702": 1, + "8f27b1e1cb65ee79d7ee2dc457af2fd8": 5, + "940f91d1fa19f4a971fb69b49a3d372d": 5, + "327b55207181469be83ef6e69073bc3f": 5, + "93c84093c6bf6518574114b76c255e1e": 5, + "8d72e6bd1408fa3a044ccb684b9ef45d": 5, + "8c930e9f8d64e17a74dcb86398c5ae4d": 1, + "cc51ec9f8dbfd5ca059e73fc5c846021": 5, + "e5e3dc943c7b31a93e2714101fd9b396": 5, + "28e4b3f4482af705df45f17ba8cf46c6": 5, + "b19aa0050d82b2f51b81217a53accf77": 5, + "72b1d4b412e78e0f7f84361eb996afa4": 5, + "1742a025c51edd23264c128276145f0d": 5, + "d5f371058aa78c5bdc57d41a18ee34bc": 2, + "02bdb425e0a0ff29613db1a81c8bd130": 5, + "97c464153d6a1b0f3b4ed77e679abd2a": 5, + "d42478e1525eae947950ebe44deacbc6": 5, + "03230fb7470277b6a55830d6fdcfacdd": 5, + "59ddcb2661aaaf06c1579b4af9976d6c": 5, + "442b7acc60b646e9f112f4c2364188e8": 5 + } + }, + { + "slug": "b_tailwindcss-best-practice", + "views": 10031, + "likes": 447, + "likesByUser": { + "b2d585819becc679ae67713447babcea": 5, + "96c61af635d80a216317f2d3442243e9": 5, + "a90435bc5a1a57717a994179c4e12ba9": 5, + "69740dcc889791285578dd97f99b2425": 5, + "138a5a10a074f18e6501012adaf9e47f": 5, + "3b30e8996431340716c6de4c3cfcd4ff": 5, + "cadde3195723c93e9ef1c0d3af514af5": 5, + "5bf594e20be0ad51b9b24ca08b467348": 5, + "4eaf240e7664aed2c3f2358c19870560": 5, + "a0a052f4413d2069d3b60eefaf595ad7": 5, + "09512171c6bd53e5505dacfb5f610042": 5, + "ab047e456526799559fc21de12abad80": 3, + "c29c90b4bad3aa1564564e3d45f9699e": 5, + "758a9f9a21bae3bda995f22cdd4f535f": 5, + "c983ef8855dcc30ba82d2a11f8ec76b9": 5, + "443490630e9d5efd54b283ad4ed1fa1e": 5, + "febb5d122fe229d0f648ad7fe8fea633": 1, + "e87d180bfbd3126f9e4e5c7fe4373be0": 5, + "9db19585dde7cfa47d61d5afcc88615f": 4, + "44929779f113bfc4862524cf6347f7c2": 5, + "0f969dc7a9f819b2250e7d28950001ac": 5, + "096fc9593076f15b782403fed342a386": 1, + "a5358f5481f3ef8d9e80cb1909d9dcb2": 1, + "0c7dc557046da9ad76b7651e62934e09": 5, + "14bad6b10f530ea618ada1fd82a59d82": 5, + "3d2d7152f168ba4c79af30f335841636": 5, + "465250cf81b17ab48f5a7bf040c8854b": 5, + "1cbe86897fc84ba6ec7824ef5107565e": 5, + "e7f96846f2c2a4d09a158c5e04edfa1f": 5, + "2b04fb5f25be192208962eeebeab035f": 5, + "689f2885e9154337a35869051df94590": 1, + "e5a42ab31dbd63b5309b7eaac435e5a7": 5, + "d2698797898981a92c47719d1212e0fa": 1, + "28adebe039d904a673341b0e81f6bfcc": 1, + "98a37cc9e8a4594b505b427f7b4eed6e": 5, + "185f899d9196cf8670fa88be2736838d": 5, + "c4172dc473be79556ac8818f15a27aed": 5, + "0b104caad5d4359f468d9a748983689c": 5, + "da9369d6cf7539f536987e4b980363fa": 1, + "3e5972ed727c90f7591648924f7861d6": 1, + "75ab9c9dabaae4257aaee851790e33dc": 5, + "f82c0e111c01bc69ba2d450229b02d49": 5, + "fa411773485166556fa226b2022e331d": 5, + "23f470bd21161e9594ebf37ef1168737": 5, + "bc0c517cd7eb3e981d49d84e4b93695f": 1, + "bf219a909a3858fdf6725bbc2472776d": 5, + "1549302b15341e59a76c89efc8cc67e8": 5, + "53d01941bab8e4d0fb1cc9c2a140346b": 5, + "b99930232682a522db3a11b040485665": 5, + "7fced34e836b002586ae01b5443f8e98": 5, + "fd23629c7785a5236376760669f09865": 5, + "b554d32bcea3377a2e2328b09235adfd": 5, + "8e3303ea2e8676104338002109839b45": 5, + "b248043ed9bb80a08886b4b61fd23b24": 3, + "e9a0e61df54df3dc49b35ffdb7a00066": 5, + "de03d6e2d6c5134f6d21ee3a4cfbbe33": 5, + "507a46e6590e8fbb2d093c91efb67e65": 5, + "946550bf9c5384e07ec3b3740a53897c": 5, + "2ecedc19842be7a8ef3f0b811a8c2ffe": 1, + "0684d18fc0f254f8d2008310449c8594": 5, + "24beec05ebbffc785f01f69da59188b3": 1, + "32eed6bc21198f41cd22ecc420a7d3a8": 5, + "3b843f31cb03e352e5ec940fa6564152": 5, + "291cff320e657ccbc40a027e89e591fc": 5, + "1919982047ef663f5f3d900731e87b9d": 5, + "3aa822a2c8258496c26b978ba12b1f2d": 5, + "528332a29ff896eeee52c779d25cfe79": 5, + "089032180e914f626f61d3dfb30620b1": 2, + "260a3b6dcbe7794e8efbccabfc42d223": 5, + "222f3ce2d75276c4060c6c35c6bd32a3": 5, + "2bdf29699e3ea02cae4537e615c8790a": 1, + "567fac74d8191eff8770e596c9764349": 5, + "9ae3c2ac023f009914937f3a8cc4ec85": 5, + "df7a9091c25e73d904e0bbac9cf7cfdb": 5, + "9598f410a36678ad04eb56aac6834de3": 5, + "fe44021b7d31c953a1481b3216512e9e": 1, + "6cc84c81c4831533e22a9477bf32d726": 5, + "58ef2c4e106e9711f46385e9fae89382": 5, + "ca2655ff046fe474f7e49284c85ebfcf": 5, + "2835103a94756b25f5a6d69209a9adee": 1, + "27c52d0aea90f7478773dbdaf2887222": 5, + "fd753cbc885da32f189fd879c685b0d0": 5, + "a1c3dc44fd7ab4f62f6731094f6fb5ad": 5, + "56b4b16c3eb5b5cbb3408f929280caec": 5, + "c294e112fcfe6e8a60f99bdc6f044471": 5, + "fb7f4c97cf15a6477bcd8e32b7473c1e": 5, + "b8491d0a5224b70824e411da412e6fa2": 5, + "a02aede48cdc0381876afb48d5c71d60": 2, + "84e305be18087c49c1faf20f579344c0": 5, + "94456b2fedf02ebb3dc224dc87b5c8aa": 1, + "f1dd6319920ba68ad15ff46a5ae545e7": 5, + "783711569e1264d3595f1ce98c654a47": 5, + "141a0446ffbd95d6cb419798a1863980": 5, + "4310b5edd65c57cd5503e55b247d788b": 5, + "2fee271a40ae5643710961a2b75d8ef9": 5, + "07745293a25197708ff209d8b9d8f76d": 2, + "1dd0a0885c87eee1ba43b011d2ae7904": 5, + "2fbe093b2118a87a7dcf5ed6d3737afd": 5, + "c8aa95394c546facaf1d4809845bad17": 5, + "7d78fb00594799ee32975958e58a6438": 5, + "c562d387d756afc9f72279469192a3e7": 5, + "57d2b3e89b49ba0bbe166a571524d870": 5, + "bdf37e64b7db1b1b5e50a3de323bf787": 5, + "325edae151a4371de79d062b6f0b1458": 5 + } + }, + { + "slug": "b_my-addons", + "views": 554, + "likes": 50, + "likesByUser": { + "b2d585819becc679ae67713447babcea": 5, + "9e8dad3d659f7537aa1ed6523c17ef24": 5, + "f9165bfe7e6c4ab5be1ed78a4c24f616": 5, + "d9df6390a8ab9b715d80306ebfcd4502": 5, + "6a422cfef35fa24f7ee9c5d7ddc2756c": 3, + "22ab0b368d70206c7edaca792f232b4f": 5, + "d28b9da94cbd177114b86d00a577cf4e": 5, + "23f470bd21161e9594ebf37ef1168737": 5, + "13d53d7fc38b4011550a63cb0ae26a88": 5, + "d6219810ea0c173f7dd6c9c3f5a59e23": 1, + "164ebaa87e7f9dc32124336afa1e6cb9": 5 + } + }, + { + "slug": "b_vite-cra", + "views": 1303, + "likes": 60, + "likesByUser": { + "b2d585819becc679ae67713447babcea": 5, + "1b894d85baddfb94ee1116512723ed80": 5, + "85c7d0d0f78a6eb9f6741503225927ce": 5, + "3abfef8b032e4b4238280fa335170926": 1, + "60e070f81dea2439e9ee69840fa0227b": 5, + "464ac9ff98fa271f6ce7d878165e3830": 5, + "185f899d9196cf8670fa88be2736838d": 4, + "d28b9da94cbd177114b86d00a577cf4e": 1, + "d8206f8cca270626af1c26f2c8f67fba": 5, + "aa54fe0169cba7509a919cc2ff066fb7": 5, + "f6279e3617fa7c7f53070671997570f5": 2, + "f0fdec0273967a4986fa9f141e81c55c": 5, + "79975eac1e8a597dc3cc55944d9ea0f3": 5, + "9e4756950224cedefc6e485a007cc4a6": 1, + "828e0b16561f1be1a6d3fa19f23ffbf4": 5 + } + }, + { + "slug": "b_btb-rem-em", + "views": 2238, + "likes": 140, + "likesByUser": { + "90d58f0ba79672cc6da8c827a175e7b0": 2, + "cd01a459ffc9f16d32e7d2fc8b912f1b": 5, + "ca39ef294f12072205134605ec95172d": 5, + "1bfe4068bbe2b94249a19152a3a9b1ac": 5, + "35d93ac0f2110adcfa45eef04b59ce58": 5, + "6b900e277bedcedabaa4a59955242f6b": 5, + "c73990407a5522f78c8315362d2f31d5": 5, + "4ec88db6a431e3bf6b7c410df12f25ac": 5, + "fc8766e7bec6bd5c0fbc6cade81f1ae7": 5, + "6b8f3a33f216d09a2319d384eb9f5cd8": 5, + "3a97b0b9c29e804b102eec598cf99a45": 5, + "102da73a700200bd500a0f49b6577207": 5, + "713436492d4351de7206dd3ce0cfa2bf": 5, + "e61cb53634c26c2b063a19ec88b7df23": 1, + "668c6199765e094d9e00457c06b2e12f": 5, + "e1f1eeef92c5ac645b4c343aeb673608": 5, + "32414ecdf31a965d655e09e2a95faffd": 5, + "d28b9da94cbd177114b86d00a577cf4e": 5, + "1549302b15341e59a76c89efc8cc67e8": 5, + "5a7011564a06c504eb3a4559367b6b11": 5, + "fa411773485166556fa226b2022e331d": 5, + "92dbc541f7732d987968f044c9089c15": 5, + "eb3b4b162b3a0b3e83c245a956257676": 3, + "2fcf307288de92f36ddb855831234ee2": 5, + "260a3b6dcbe7794e8efbccabfc42d223": 5, + "671267a7533f1277a20dd61d66ba108e": 1, + "891320e9fd391b56c024e3e01fb4542a": 5, + "a03e87b2f8ae939d4b031dc8c54b5772": 2, + "8a2c093723190247b6c1f92441c078c5": 5, + "0afa87548a901d5153bcc9388d748c5c": 5, + "6fdf418d7b261e1adda32a659e86535e": 5 + } + }, + { + "slug": "b_btb-ui-fundamental", + "views": 657, + "likes": 57, + "likesByUser": { + "b2d585819becc679ae67713447babcea": 5, + "db4403c88a12a2fd51f418e56cb76163": 5, + "35d93ac0f2110adcfa45eef04b59ce58": 4, + "058280a3e3d5943c3e4096c86a416fb6": 1, + "dad3d9d641c7b25d7b79b5ddda6823b7": 5, + "f54b3f4fcb7163b93d17e005bedde841": 5, + "d7466c27688e427d134f6d868ec7adb0": 1, + "2d61e4a60c5a9706d3b282b3975d19ec": 5, + "1cacfb7c2f34fa82d946763d05327169": 5, + "e4c92c9bdf09978be01506fdb123a631": 5, + "9c0bbd1cb4cf999fc3784588923a7b5b": 5, + "947d2f5517e4645316c6750182b5becd": 5, + "2d52216c39d2123906b03b3316dc38e6": 5 + } + }, + { + "slug": "b_btb-flexbox-grid", + "views": 1507, + "likes": 187, + "likesByUser": { + "4613db9c2c80f0ee595702fa66c1183e": 5, + "d4a6042f9fed9826343dbe48ffc733fb": 5, + "ef78b4a98f477d2f4713b6ed76ac4fb8": 5, + "98ae590b4c66455f9dd23519d16acd47": 1, + "1c3622dd292be438dda858c308896246": 1, + "dad3d9d641c7b25d7b79b5ddda6823b7": 5, + "0978dc48eedf9711a5f055d880e2860d": 5, + "7486c8c118739419d54f36dbbe301e3c": 5, + "b2d585819becc679ae67713447babcea": 5, + "df43bacb9095b6af03a3fbeb05f3a3d7": 5, + "5739abf754bb6f9570cf0087f0c18647": 5, + "229c8dda6f387d788f041892c6c6254e": 5, + "5db2cdb52c8748af58d9de17ca080e77": 2, + "8bb9af7d52dd260c7c3d733e7c8f0dea": 5, + "b921e79ad317da2abd054eb7602844d7": 5, + "805252d45656bbbace13475b29ec93b0": 5, + "123c692c8efe952d634217a65a3ba60a": 5, + "a216a46e2aa8b88786ca31cb73d6af6b": 5, + "102da73a700200bd500a0f49b6577207": 5, + "fa9e409db76285bb153749870003c2b4": 5, + "713436492d4351de7206dd3ce0cfa2bf": 5, + "3c7042755028b7950beb4a91ab260e64": 4, + "d2b9f7f78575f3d199741df0488117ec": 5, + "2529802b98171b178add6cf68ea90856": 4, + "03e18a839eb866c91a106a13e0f312aa": 1, + "dea8825db7f066de69907b886b5c3f2d": 5, + "1fed36c52113293802aad79c292e6b7d": 5, + "d7466c27688e427d134f6d868ec7adb0": 5, + "59b4e0e12f1b3bfefb833173266da675": 5, + "b5994277b3ebd39999114c804dea21ba": 2, + "4fb6fde215923f11de40771da66a4808": 5, + "528332a29ff896eeee52c779d25cfe79": 5, + "260a3b6dcbe7794e8efbccabfc42d223": 5, + "4e6888f2f27df4b52a0d5501130798c9": 5, + "d936c168a7b6f64331f26b6a6cd180d5": 5, + "df692dae78b5b220da0f4140ddc2ea5d": 5, + "536bd0ff8974cf7de9337aadfc4ea7a5": 5, + "905521ad912c0f104d129dded3509edf": 5, + "471dff4421895bffce98a940613c613b": 1, + "1dd0a0885c87eee1ba43b011d2ae7904": 5, + "4098fbdf517526e09aa8ea95f3b69670": 5, + "97c464153d6a1b0f3b4ed77e679abd2a": 5 + } + }, + { + "slug": "b_youtube-list", + "views": 3306, + "likes": 591, + "likesByUser": { + "f9b04e16d71bbb943d7b037ba22ad608": 5, + "b2d585819becc679ae67713447babcea": 5, + "d241da952a32c1a192582af5bfbc8fe3": 1, + "94d12eebbf9a1d5645da714cfb5106a0": 5, + "20b767d233b450279e7330b06ffa993b": 5, + "2f0718691015b13ba939c91fc5a71056": 1, + "23d94b4d233756e421977dc1d4ebfc87": 5, + "31ab9b0765fd76641e960cb8998ca561": 5, + "b38fd227e90e3a58b5538a22ddb9859e": 5, + "b5b1d61cab472a37c5e56135db4f2276": 1, + "18ed78705aa798c4b75d205bbb4c9ca9": 5, + "8c4689e5378c828063db3ed53d7a4706": 5, + "c15e2f23dcd9cf18048688aac5d2130d": 5, + "1cce54bd0d719d4dd6520e5ac6994347": 1, + "42a3d1a50feb73078cb7f2b12382fa1e": 2, + "d4a6042f9fed9826343dbe48ffc733fb": 5, + "f2f76e012cccccaa2f96224565b3ad68": 5, + "051474b69fda4184dae3f84864861e80": 1, + "247e0441f20d45ef7d7bbe2a5a93bf2d": 5, + "94106247073215ff584ded1bf3e4da76": 5, + "35d93ac0f2110adcfa45eef04b59ce58": 5, + "c9b4ae6c33cc011a60bb8a2484e2faf3": 5, + "c96afd7f25ca6900838f06ab1dff5106": 4, + "06ab21e75e67ed82f241d1ec852cc072": 5, + "4ec88db6a431e3bf6b7c410df12f25ac": 5, + "77a63f4279c7f5d75d296e3d36e8c8ce": 5, + "ea6c2946ece0bec60ad8a0b8b6a94fd3": 5, + "b0d935368bfe45b0ed4c6090beedc26c": 5, + "65e2ae7ada5adaf0e38c6a1d92f7c673": 1, + "288fe9dbe4661cfa63dadad5651aeb38": 2, + "79c0a4a969926a70e990d8e6f5066b10": 5, + "43c48e5abc8f8e89498b7921462b2819": 5, + "6cb10b11d8298a447d5ada9a86e7cefa": 5, + "b33882be6739b1358a8e64b71827ec3e": 1, + "d4f5542baa7658fb4d528e564f837f3c": 1, + "829d0fa68f64d290c65f6454475e29e8": 5, + "fb3c48b44bb9c3bc2ec28cf653ecc5b0": 2, + "28d31b5f1719253d9c85a22861a07657": 5, + "558b611b1878374dd6484f14641dbed6": 5, + "261dd5af274ac93963eec2177b3f3105": 5, + "7ec0b52d00f17316934e52d1bd920670": 5, + "123c692c8efe952d634217a65a3ba60a": 5, + "7063b417c979ed3de86aa7700815bf33": 5, + "06def7938e2266aaf97b1058481f1bcc": 1, + "7dcebfc58d22a8fdccdaed6b169d05b0": 5, + "ab30b9681efd58bda1ceaaca2f6c82e6": 5, + "8eaecb5e8f7e3200cdb97e0a2d434898": 5, + "713436492d4351de7206dd3ce0cfa2bf": 5, + "aa24aa8c261adddb61ffe03c09720f50": 5, + "ca897c7892c53254e035ddfae0beea53": 1, + "71cddf58f7dc6531650519af3bf2d13c": 5, + "68cba654c522427616085aaef208661a": 5, + "af4f0f262399a437ab1419e10045ba3d": 5, + "a9ccba916b0e1417a47cd03e67e83752": 5, + "3d09eaf2497459be95a66db8a00213cd": 5, + "8a3d58bdec86e9ad0d7a70b0acdd43b9": 5, + "7d163d54f62a3d5155435266974eaf8a": 5, + "1e98bd94bf3752577f588925c5bb4171": 5, + "b78fc05119ad1e2b4760636cea388d06": 5, + "e3f7f9a5f02b627e9193afcd5a62fb17": 5, + "c921a5f4f64f62fa5322ed84f4ba7936": 5, + "bde080223ccc17b0fb67e12bfeff95f0": 5, + "3b65fa45a6c81aa4f9ca2d8bda161570": 5, + "90eb0aabf9ad7dcf2924b5120659ee40": 5, + "f571b9009448c413f88723c101f7a990": 5, + "ed55879ded0f7b93b05c8bd7a9fff4d7": 5, + "41b61f14a71955d92deb0e80f11fecc1": 1, + "8a56507ff998cb7ea014414f70ab877e": 5, + "689f2885e9154337a35869051df94590": 5, + "041d4425291bfa886b99ff8bef9692a8": 5, + "446c99f8341ac0cb97d40c87973f5fd7": 5, + "58987b331150ba43daae17291adab4c3": 5, + "f5a35c2655f262408bfeba4031236af9": 5, + "1413dbf7b3af296a431e9dabd5e5fe3b": 5, + "4eca00ed4d5c3f111c5530f551d6e2c1": 5, + "471962a51e6215a6b7693e46a03225fc": 5, + "8632fdc202939ebdc2f7b07ebfe86b29": 5, + "4a5e12e14eb4b9d6e80bd9276a02926f": 1, + "3f9c06dd17c05fc745502f3f179d83ed": 5, + "98b3fe6489c7c56cf4240d92133a69a6": 5, + "c82abd3b6f79552ae570e018fd7166cf": 5, + "27c4cc56a5912fad75efc907713aad65": 5, + "58870f8a1ac7c5e5326295a7acdb4192": 5, + "1e2d384a3e09dfaf34e02e1df35495d6": 5, + "3359d7b19c1335db91492d525abe4775": 1, + "558a45e3d32c141fc13b91f7fccf36de": 5, + "f72fefb3ab102186c9136d6566a593b9": 1, + "b0790ee663d81934b0df8966c96432e9": 5, + "dbad0af971cf13cab3b5033bf5b97724": 5, + "46362af62c0fe31e38a94ba2c29a3ded": 5, + "9477cb416fbfc0c4ef54ab88775f116e": 5, + "b8a3a52ee9459b2b7429ddd2725655a3": 1, + "1be3e8beac143760c25a17ecc8148644": 5, + "f478687432402b2f3e16616cc9ab3e3d": 5, + "f7cd772f630acd78aa693bf10171f371": 5, + "d13d098ac0f8240e686e2550aa494461": 5, + "efa0dc710cbc1970c41028da7bc8b6f4": 5, + "27d1444c51705cb5b3b0e3d53fde73f2": 5, + "6f8f0631d681d6a4836103899d721031": 5, + "2d697fa6220fc1d76e41d7ef7f7c4f79": 5, + "73d3b69568682ddd61e285829b8bee3b": 5, + "ef35bb5525ef30c29a2baac6415f257d": 5, + "77d40990b2fdae5d749727af8560c461": 5, + "431a89ad00ffc9fb2132837dd9f1475a": 5, + "5eaf9ec8ed0506d8b869aaa4fd744e09": 5, + "fc4178d475f902a32d97f3edcaa82faa": 1, + "284cfca335df0c5bd5476afe9dffb145": 5, + "6bb884eee037671752bb73dc49b88aec": 5, + "a0283cae22817fcc24b8e8055bc005c4": 1, + "c294e112fcfe6e8a60f99bdc6f044471": 5, + "5ce59f4cc0cd8629fc339bca46c2d124": 2, + "cb87c78d49062e89ab8012560f16bdb8": 5, + "3a43d5e86e8730a1f139adbe27b5238b": 5, + "5672bab72c61637443ef5d6d74130928": 5, + "e3951c51c29fce2ef0b13addbf185b8f": 5, + "f71875f2b0c38607eee481ce9d23e8d3": 5, + "dfe09d4cbf0f678767fa83df6d7e428a": 5, + "5a8b783a93fe1adb53d7a6ac59c62cb2": 2, + "e99c13329177c3c5cb29badecd243d6f": 5, + "b898138fb04583426d94a9bf8570ec40": 5, + "a583428ac6889683fa24954d6ec70290": 1, + "61169bbb931bd9539ab2858b90a9c8cc": 5, + "ca2655ff046fe474f7e49284c85ebfcf": 5, + "6dcafda3e9cd6fda05d71d4a89f73f48": 5, + "e34c4101670f90b8c0d345c185c9c875": 2, + "f25750a291823eb64af7db2a8b597831": 5, + "df4c3b8611586619075e980bb999b548": 5, + "2fee271a40ae5643710961a2b75d8ef9": 5, + "721668cfa08a8eb9cd7ecf1ffd7000b1": 5, + "e39dcbfe0a319c3f9f916bef4bd3c45c": 5, + "792e5ded796749453fd02e5a71fe3dd5": 5, + "475dc65a0f2ecc6c8c642a14f1adb7c9": 5, + "f5d7e9d67aa77d6a83e91adcc53c06fb": 5, + "119fdc1486bca666d8625994d765322f": 1, + "d7825f30c5b10469d4544f3b170f5d07": 5, + "ed6772e7d4cfb5aa1681e639253c6a78": 5, + "e8a3a93713d554910834441ad3691a0f": 5 + } + }, + { + "slug": "b_spotify-now-playing", + "views": 1675, + "likes": 249, + "likesByUser": { + "b2d585819becc679ae67713447babcea": 5, + "3f51ede66306859e5cc38e07fea971f0": 5, + "7b71a5f159a2929132cfb0a593e93918": 5, + "1cce54bd0d719d4dd6520e5ac6994347": 5, + "29e41766690ec924f96955df28c6be1e": 5, + "13ba8996c9d66ea69dab38879aecf93a": 5, + "d4a6042f9fed9826343dbe48ffc733fb": 2, + "5db2cdb52c8748af58d9de17ca080e77": 5, + "210bddcf8d6ec96fcaa2d1392ae643ca": 5, + "676aaa2df68f0ebb72af6467aa276d76": 5, + "a3ffbcb7b74313de4a56764b1513f554": 5, + "fbd5a750413cf1434599fd2cdb5e076a": 5, + "29b8ca94094027da56a8fe7c8f7cc2bc": 5, + "b99c58d4beddaf3555aadefaa938669d": 5, + "f86b398eac80a321c9e140c875735e20": 1, + "cc3a78780677e6e3621c7b6a74790e41": 5, + "a7dfb8b2c524ede84f5fd304f0902395": 5, + "074ccb9837871e12f1abc50aaf0ee5b3": 5, + "b78fc05119ad1e2b4760636cea388d06": 5, + "70e51c551dd6a189d41bebd47efd8527": 5, + "485e1abf79821a11311260662025cf62": 5, + "2778eef2b68a6f24a8273d6ccd26fefa": 5, + "a3d93a207e9d2ae80556612003d9c350": 1, + "2c8b06b8ef65c853ec270adf762c0897": 5, + "d795f4c25106c2164f55f438146741b8": 5, + "78a6292fd0a4033634c9be82fe87a167": 5, + "ec440a2f71d26fa05035b80ed27426ca": 5, + "53bca37e45d7b34ac0f097d048e84b71": 5, + "b2805954f60e19e1d0070afa40f15de4": 2, + "b82e1253a957fc05ed3cf36694595b8b": 5, + "07f0b68cf3387ccb2ada06953c617797": 5, + "ef86802e5e70be5da57ca36c1935fc58": 5, + "6588dc915bc289563b20c4a04f443105": 5, + "d737d9159c5b7103cac6b3814bc23864": 5, + "7333f328e57c783fff2fa33fa0898c9c": 5, + "5c7ba9ea2dde3776c98784d086e41643": 1, + "4aa9aacf6663599ab605d9ab30fafe04": 5, + "19c50d7758f56c69db500628583dde9d": 5, + "30d598a3903d67316ecd396ca5282ee3": 5, + "393ad68df816e2e666c77804bebe1ad7": 5, + "891320e9fd391b56c024e3e01fb4542a": 5, + "04cf0b796048ba32b4ec0df6ce8351d7": 1, + "62690fdea027ccde25839d68727a7bce": 5, + "a4de7f55f7e1c9cb9c791076bf238155": 5, + "4dcc798ef9a0b4394b9ef7b8d2b3c770": 5, + "ff1077984cf68563186bf5a733f51512": 5, + "a609fb600ac4d03a1b005cf78b0c2c23": 5, + "3ef397d528caedbe657859025158dfea": 5, + "f2e73e516dff3028aa2373831a8d3e9d": 5, + "77d0ac1a649b44d727d97d5918fe8605": 5, + "f47345aae831b38659a4b17cf47f9840": 5, + "fd0a44f93def8220cfc1651ece9ca192": 5, + "c2ffec3e0cbcb967b62ee542d583b68c": 5, + "cf34432419bc57644643e94195ced74a": 5 + } + }, + { + "slug": "b_nextjs-vs-cra", + "views": 836, + "likes": 104, + "likesByUser": { + "d4a6042f9fed9826343dbe48ffc733fb": 5, + "7f459bb51fa5c194c9056b9128761c12": 2, + "7282361e4e5427f65f8d3f7eac65a0c9": 5, + "b2d585819becc679ae67713447babcea": 5, + "123c692c8efe952d634217a65a3ba60a": 5, + "d4119bbfec2ae28932bed0a41b11d418": 1, + "d44d8b4de9875cae3cdad7fe303c0be6": 5, + "df292fedd4c84c6c35d4620e3bb3d712": 1, + "d7466c27688e427d134f6d868ec7adb0": 5, + "54cc0200660ba4082243db3e67c028ae": 1, + "f9f2614ec7c46fd1e3c1f2766ff8f395": 5, + "e52d0e83695e537ac388e9f5b44fc2af": 1, + "63defdabf2d6eaf01c5cfc00011f556f": 5, + "17006fcafa6fd62dbd265348ea1fe8fd": 2, + "4f8e7287184a21b8004b56e1bb6d6cfd": 5, + "30898d45675eec5875269ea73c855b13": 5, + "046367077d537b59f272ce24e31245f6": 5, + "440e3cd20bebf1791fd6e2fc49e90e64": 5, + "692fb1a7ac0aa62dce344968a4ad1ecb": 5, + "04cf0b796048ba32b4ec0df6ce8351d7": 1, + "0970c0c541dcd9dc3d1eb3e28e324c4d": 5, + "e21c66fa4f39866389db1a3395794ed6": 5, + "70fb79fd10cf2825baed0dc22d01da6c": 3, + "8f0ccef40c66a3e3abdd2177edadeedc": 5, + "8ca3fab06eff34a4ff3936a4d4121340": 5, + "7a32acf2b9c893425ef56d1cb282d9b5": 1, + "892713bfb7473d42f23045a0f319f69d": 5 + } + }, + { + "slug": "p_sxceosleague", + "views": 740, + "likes": 166, + "likesByUser": { + "b2d585819becc679ae67713447babcea": 5, + "77481efcd0cb824644bd66113d8bd989": 5, + "c6ea81e486c7fd65032231e5dd1851c4": 5, + "42c137b9b67ab36dabc1a66c9073295b": 5, + "873d859dc10456e000477ba49bd024be": 5, + "722be05614b2d469dcd0fbdb583dbbf2": 5, + "f447e77393974b6251d2b014f5145e21": 5, + "5db2cdb52c8748af58d9de17ca080e77": 1, + "90c61b5d0c6e103366ecfbedf5c756ce": 1, + "30b09281f3d0a53f0c04337199168970": 5, + "7db99a717b95b61e0879a606d9915ba9": 5, + "d4a6042f9fed9826343dbe48ffc733fb": 5, + "225ad2527371bbe1ef1b9a362b74e3b8": 5, + "4eaf240e7664aed2c3f2358c19870560": 5, + "b0829106df87153d0bf67a912aabdc76": 4, + "a7f35aa60fb467ed923efc18fe391438": 5, + "9ab6742fba90c4753faa4f7b61eb779b": 5, + "0536247182e386dfc6ef919213758ad0": 5, + "42de451d20bd35fee67ed573af82bd78": 5, + "c33d601996aee1baae89c84349e186eb": 5, + "16736f33610586c1e3acf7276cd7e9f9": 2, + "9085e5bd1c2aa91e9064d39cd38550cb": 5, + "182b7f4ffb79c8c0ff00d9b2309c70ab": 5, + "6583fddd22698003b1d0c369be8ac4de": 5, + "7282361e4e5427f65f8d3f7eac65a0c9": 5, + "7ef4a7a31a99323b7d406c4dc0823be8": 5, + "dca5051313a20856b082529bb280e23b": 5, + "b02cc39d3199cad9eb5b4d2073b4fad0": 5, + "4841e0552360e12a49616ccab3721e7f": 5, + "8503fade803a0d4ff9141bcff80333b9": 5, + "b0f614792d3aa01ff70afb5ef5b61599": 1, + "6deaaa0493381fee912d516e987336cb": 2, + "0a4e2de8227ad348a1728ecfaeffb25b": 3, + "d8e31e49b67df5686b82a24d6d03ef45": 5, + "a4c899357b558cef195b102353e92285": 5, + "4d5eb3d5eae6edc18b40e22bb4938d0e": 5, + "fb913e6894f3702d413dddeeaf72dc0a": 5, + "441a8141cec590307a3ca201aae3ea05": 1 + } + }, + { + "slug": "p_petrolida-2021", + "views": 480, + "likes": 57, + "likesByUser": { + "b2d585819becc679ae67713447babcea": 5, + "7822abc4700a88a7193889964fb8c1fe": 5, + "5cf43715be3170e531062d377d226fd2": 5, + "f71c421ef8c637afbdce9a494b30fab5": 1, + "5991309c02431670f452ff7ac86525ac": 5, + "9085e5bd1c2aa91e9064d39cd38550cb": 5, + "6a422cfef35fa24f7ee9c5d7ddc2756c": 5, + "f82b6c1350c5eab5c30ec5436a5a1c14": 5, + "61a1e97174d71e84143a504557430f75": 5, + "b601732d984af69581d55ef22a7f5335": 5, + "5a7011564a06c504eb3a4559367b6b11": 5, + "e2f019d84268a70b708d01da26e98d68": 5 + } + }, + { + "slug": "p_tutee-id", + "views": 618, + "likes": 112, + "likesByUser": { + "b2d585819becc679ae67713447babcea": 5, + "bec688a78985e47456f066db09c07d25": 5, + "4eaf240e7664aed2c3f2358c19870560": 5, + "aa7667b437c034b1533cd31388b256ba": 5, + "5be2ad3f35422255c71d5a5f879aad7f": 5, + "585a26c299170b6076154f8c1fa2a944": 5, + "54f4d9697c513eb9db8ca74c14ef7165": 5, + "990013de3fa0166ba88ac43547c65fe8": 5, + "1fed150f69a81c1b0ff0185e4884e1a8": 5, + "12ff5435edceebed9a156306c4401965": 5, + "c92cfe2b921bca1c350ac9a8c9ecc423": 5, + "dea8825db7f066de69907b886b5c3f2d": 5, + "d941310dc14e683ac4a9ce7fa437abf1": 1, + "25e2ddb507f55b1c2c539534a7594b83": 5, + "1cacfb7c2f34fa82d946763d05327169": 5, + "5a7011564a06c504eb3a4559367b6b11": 5, + "2d697fa6220fc1d76e41d7ef7f7c4f79": 5, + "28444d94a8402a57a3570fb3ddf9ea6f": 3, + "17b0b119918591cc1db2b15b706f6860": 1, + "ec3271cd5dcaac5371570901c8a2df6f": 5, + "5e54566ad572c68c17705cceab87ed34": 5, + "2fee271a40ae5643710961a2b75d8ef9": 5, + "ebcbc1621d56beff28075988d961de26": 1, + "a5f8df29b8a8435b4247ea4c5affd6dc": 5, + "734676855055927db100b1f7483de803": 5 + } + }, + { + "slug": "p_love4heroes", + "views": 603, + "likes": 101, + "likesByUser": { + "b2d585819becc679ae67713447babcea": 5, + "841c1309e5952f668d8c37a0ff04ce5a": 5, + "a9390cc441fe57fb60ad4800506b7c43": 5, + "43c742d9dd668a00a834703c460dd25f": 5, + "e733c8ece1423a2379beb108e7d73a47": 5, + "c20a67816f5adecc795ead1eecb9d34d": 1, + "06def7938e2266aaf97b1058481f1bcc": 2, + "ab30b9681efd58bda1ceaaca2f6c82e6": 5, + "114099dd6f14b9414a34cdf24d562ea6": 5, + "b601732d984af69581d55ef22a7f5335": 5, + "0516368855f85b006d753d2b2701d244": 5, + "d8206f8cca270626af1c26f2c8f67fba": 5, + "786333462ba706526f9ee82c23e34960": 5, + "0b9493270139343fea152c09b10d2070": 5, + "93648c3521964cb08bddd145bfab4a7a": 5, + "088feed282bb79d8557bae1dfe63103a": 1, + "68d0da40658b84a159e0fccbe3930655": 5, + "0768d3c0f99d4772672a4747ebf5ba14": 5, + "f71875f2b0c38607eee481ce9d23e8d3": 5, + "e3850b2861e1a9c7fb5894c6712a0dbe": 1, + "d5e3fb6bcf9daccd9e5fbdecff790859": 5, + "f45a9d10b0c09560d2202221760c3656": 5, + "b83ec8a54e45475abe21c1bf4167a451": 5 + } + }, + { + "slug": "l_auth-context", + "views": 3048, + "likes": 392, + "likesByUser": { + "b2d585819becc679ae67713447babcea": 5, + "589d26b01ec95a0d1127db243e50a48d": 5, + "5db2cdb52c8748af58d9de17ca080e77": 5, + "3f9d11a8e344d67c20c1e874ee1496fa": 5, + "83389a09371b675545e3809dc9141cfc": 5, + "d4a6042f9fed9826343dbe48ffc733fb": 5, + "8a401a3b0e8d38f0ee5ce035991dd25e": 5, + "d28ccf2581b6bd879dd4f77112375305": 1, + "68c9581475a458b5ea0f8e38d3112cb0": 5, + "e7be27ee4571bbf1feb1a2e41ef0b8d6": 5, + "651476a8fd8050f81563d3516a52030c": 5, + "833bba309bb5a7836f2c970536c9b9d8": 5, + "7033e13ecdde6a5cd0c2799c9e2023e3": 5, + "36d93f3090a07dde66d54f18d32c4799": 5, + "d01785d8241f454d9ed6b982d5e7368c": 5, + "5e143e2396b1b94c8511b3aefdc3fa49": 5, + "12b793fd5df557c991943d757c2ed197": 5, + "602f94b0a5a33757e2d499131da67d7e": 2, + "fc8766e7bec6bd5c0fbc6cade81f1ae7": 5, + "9d2fa0e41963d0d452e4438fe1dd64a0": 2, + "46c09d9add7e4035f387001980ed68f6": 5, + "6498b6bc39a0ee9abefa6893a9ef2afc": 2, + "b10f6e242c0d991a5edd76e6531e03dc": 5, + "2fbf1398fb72984538a2d0d9b9a1784b": 5, + "6ee300ae813bd2d61b63db45d6f12543": 5, + "8097201b48482d18b61759e1b341c897": 5, + "8f13ec0b7391fc3efca5f5c0483be360": 5, + "ffa1829f9fb2f657178bc9e00dfecfce": 5, + "98deb36302b75442416fb4fd1a7ad309": 5, + "2529802b98171b178add6cf68ea90856": 1, + "ca897c7892c53254e035ddfae0beea53": 5, + "e8e51f73203787e388a5b3da82b635d6": 5, + "f1e7a56768b1690d4eaa0f0ebd5782a4": 5, + "069b98fbe71d365ad9468ccfde2f46dd": 1, + "70230b22dee348b2dc795fdebdadeed9": 1, + "7315c59b97036d3891f3c2487b2f76ec": 5, + "e85daffa051b18807446ae274926cde6": 2, + "4f0682cf6310d0fc48e266227a7e9374": 5, + "53836cd7440eb36e238d2ac257423f2c": 5, + "f8be1c2e80c43b49f61bcfb90121f665": 5, + "51a198724cde2673a04ff75edfffb954": 5, + "171d79d6127aab97308eb62ee8be7312": 1, + "bbf72cc4809c4449de5f3a29fe8c30e5": 5, + "2e625211add629baf9f0dab51eaef3d1": 5, + "87fd183aa3f58fdfa808b62036ce0694": 5, + "403d6f4f1a07a0e0bd1906cd98b4f6a4": 5, + "517cfafad01727260de577b81b3a0448": 5, + "7ae901fd5cc3ccbf1af3c5aebe17e92e": 5, + "d89a9662f4bfc050cbc272470e82728e": 5, + "501b7dcff5906ad9b233781129a60c94": 5, + "79378b55ca43ef836ee9cc5deeb1887f": 1, + "483dcb485a0b4529ed6015e064c7177e": 1, + "e46a893411c29ff6a681b1acaa37cc9b": 5, + "d10b73ba3791c74a4fb4bf1bf18b0f3f": 5, + "407b79b662bb05e5bb3c52ad7548443b": 5, + "3c63135943567b8508b83fdc9a8a5335": 1, + "e7bee755b2768f9a26bae2015ecdcc98": 5, + "b34cca65641cf901096f7f93708f7395": 5, + "2cb88ff0e17b4725bf50148b935bc1f9": 5, + "647eb9becbe21b2af4ee3c973470bd58": 5, + "aa1b1d13c7ed320257bbd71005d51be8": 5, + "9c85f400fa18f032a687f4e114c516cb": 5, + "250f3f5dd57ca849e77f9a20aa52b50c": 1, + "828e0b16561f1be1a6d3fa19f23ffbf4": 5, + "f71c9107f0a439274a8d8cac863e3690": 5, + "e5625158ac43fda7a68e22f8b56d9d11": 5, + "3473461c7a4c2a940ceafc9b453057be": 5, + "3085746a797bca4a0f01e0a6960d1a14": 5, + "1187c56d042c6b02b5424cb3bd74fb4b": 5, + "406822313ee93fed66425f1205461274": 5, + "44adbb7bd4350504132ef5495438f78a": 2, + "536bd0ff8974cf7de9337aadfc4ea7a5": 5, + "d92731f5079c6efeded7b947160a023a": 5, + "6bb884eee037671752bb73dc49b88aec": 5, + "44cf3adb71f6f4c031a7420083e11e51": 5, + "2fee271a40ae5643710961a2b75d8ef9": 5, + "a774af9d75f4133ee3791dec1879dce3": 5, + "6f9df8581cf7f7ac203c4efd9d98ec0f": 1, + "ab85748ff8e63dc1762b101a26983794": 5, + "89866a1d6ded78e40dc117df14c5b151": 5, + "700b19bea31561783ebfc1563083524b": 5, + "314d720cccd61730140741d27a619335": 5, + "c7c47d7332932bd3089f1cc52df0b296": 5, + "5be5d4fb2c444db29f33adac5ba04b22": 5, + "21585418a7a8f15354c3bd9c61dc5e00": 5, + "37fedcc07174d5a16d5b9ad073a341df": 1, + "f10e5d344025e593a87b9d85b47db0f1": 5, + "792e5ded796749453fd02e5a71fe3dd5": 5, + "a517225f6d9b4e5a8df5c7df6834324f": 5, + "ee88fba8e1905a3e79ece95c5db7ba0c": 5 + } + }, + { + "slug": "l_conditional-link", + "views": 621, + "likes": 62, + "likesByUser": { + "d4a6042f9fed9826343dbe48ffc733fb": 5, + "764902c0ea077cd54211c24de8acaa3c": 5, + "f77a8927994bc35c3744f91beb9ab5df": 5, + "6aa210be160f758a6bbe9a4cf881b11b": 5, + "3259f0040d70dff048780dba11fec2fb": 5, + "a53e5c16f044c2ee7516f7134dfce211": 5, + "5ced496abdac89a7b6385218ee86b302": 5, + "545d8780c5a7d5ec265a8a8b520f9522": 5, + "32a4481249e905d24c21123433a7d64c": 5, + "8413da0580b54180877f7061aa767a5f": 1, + "21585418a7a8f15354c3bd9c61dc5e00": 5, + "ee9e6648cf744f34ddd3913fdc269249": 5, + "23c5624b8cea1ed5ed8169889dde7c1d": 5 + } + }, + { + "slug": "l_conventional-commit-readme", + "views": 1561, + "likes": 170, + "likesByUser": { + "b2d585819becc679ae67713447babcea": 5, + "2faa6d9a3f496bbb1f19726e447359ce": 5, + "4d84cc51060bb12ea728b094160f2725": 5, + "a1715c221a1541e78f1d76183147b86f": 5, + "247e0441f20d45ef7d7bbe2a5a93bf2d": 5, + "4180e61a15389367ec2637626c889b86": 2, + "b1c2f3306768bd0ae9159ffca57d8bca": 5, + "cdfde0ad8afc09b56d8e25f70eaa3402": 5, + "7dcebfc58d22a8fdccdaed6b169d05b0": 5, + "dcabd78c00140c8027bb7db2b8eb5b70": 2, + "ca897c7892c53254e035ddfae0beea53": 5, + "c59e376ced2c73e78b1420e62464e0c7": 5, + "a93a9f30281e3975ad8c14c9ccbb919b": 5, + "d8ef90d8bd08648e50ddc33f4f30051e": 5, + "60853c7e988cd13d85174ca901a97f54": 5, + "838ee7eaed94765daadefd322d7d94b7": 5, + "1d5716ee626d696840f3af13c2e6bbee": 4, + "112a2feac10d74e28b671be9d64831f9": 5, + "17807a5045e07fe45ae67d6b4406c053": 5, + "16337edebd0332916cf06f2e2b302c97": 5, + "cd26a355d562fca9facaf7b33cc71ce7": 5, + "ca28cdba57094cab0896f45ce7f8f7ff": 5, + "671267a7533f1277a20dd61d66ba108e": 5, + "784611bc0708846df43172c9a0543e00": 5, + "828e0b16561f1be1a6d3fa19f23ffbf4": 5, + "fc3a97d2cd6a57b3190ba5ff0a37290a": 1, + "0892f4c66c8309f01e396164e3a9d4fb": 5, + "9e3b1fac0303e879d7c3150baaaff782": 5, + "2fee271a40ae5643710961a2b75d8ef9": 5, + "bb93ddfc28741244914fb7772e37d53a": 5, + "1ab9fe2528db948ee418578f0f8a1bab": 5, + "467bfe00947a859f99073fc27f812e85": 5, + "c065c44f4ce10c922b88ab9e89291cc6": 5, + "21585418a7a8f15354c3bd9c61dc5e00": 5, + "313b80ae09d44f6210ef7feccd73ba91": 5, + "cd103f8fa9033251cb862918e6a9533f": 5 + } + }, + { + "slug": "l_get-local-storage", + "views": 368, + "likes": 55, + "likesByUser": { + "7dcebfc58d22a8fdccdaed6b169d05b0": 5, + "a2b2e294662c7b45db58439bf049ac69": 1, + "3f9c06dd17c05fc745502f3f179d83ed": 2, + "eeb52348e9794886221c0e2481ccec1e": 5, + "5bede80feccdf41496afe3a24c83d628": 5, + "ee9921c84345a1b1c850c82b21a799e7": 5, + "aa8701d9ba4ae66991bce5b7b399187c": 5, + "2fee271a40ae5643710961a2b75d8ef9": 5, + "21585418a7a8f15354c3bd9c61dc5e00": 5, + "49fff6ef9e3ddc909ddf68253196d92f": 1, + "97c464153d6a1b0f3b4ed77e679abd2a": 5, + "9fb1e24fff02402664900a67a6ecab61": 5, + "38daa5414d5cf78f8f168e99ff8916f1": 5 + } + }, + { + "slug": "l_husky-commitlint-prettier", + "views": 1377, + "likes": 242, + "likesByUser": { + "69ca1def9d657f67c3663ac37fe4173b": 1, + "5db2cdb52c8748af58d9de17ca080e77": 5, + "3f9d11a8e344d67c20c1e874ee1496fa": 1, + "3f3036df57178f86fcd4c591f8627369": 1, + "6b900e277bedcedabaa4a59955242f6b": 3, + "8cc6a1fbe6407036027e759fd955822f": 1, + "f61b2c2dc3efbed8389d987c2b6c9fc2": 5, + "19a205416f6c8af5314e41dc4ae32333": 5, + "22ab0b368d70206c7edaca792f232b4f": 5, + "d9c14d65f1ed1f61dc5ecd93473574da": 5, + "6b472ce92f15e5b5dbd287e10a27efb7": 5, + "fa9e409db76285bb153749870003c2b4": 5, + "b99c58d4beddaf3555aadefaa938669d": 3, + "fbf447256b984c2575c22c333e71f33c": 5, + "484a6dc03f756499c1eab8a013b29954": 5, + "82ddbad447d51e2c111a781bbc101832": 5, + "a3e76f6f3bbed0e12be6beef98e72ada": 5, + "3635a47363b90802f5fd72529fc76fa1": 5, + "a2cf844abf6cba17406904d706e45fdc": 5, + "4e60cb948d0d335fbade9e60b1df1191": 5, + "ab765108df34f9d07a86e1d2fb1b2458": 5, + "2189573c928b7356566ca5acf8eb4b96": 5, + "8db61138eddd60f1a5d620468e3d1184": 5, + "28872c2c586dd834e2daf68e5b9175a4": 5, + "214fd2f42eafd1963cb38eff5c0163a5": 5, + "dbad0af971cf13cab3b5033bf5b97724": 5, + "fe94dad310c3710143740f3735f54eda": 5, + "dcbcd7ea09eceaa66df4d06165d46d5d": 5, + "d737d9159c5b7103cac6b3814bc23864": 5, + "c638ae7b28cb8d5bba6c4fc2d70ba39b": 5, + "adaedff305af753806249270b78b4f60": 5, + "7ae901fd5cc3ccbf1af3c5aebe17e92e": 5, + "efa0dc710cbc1970c41028da7bc8b6f4": 5, + "1a37828eb014fddccc932aa11effa9a5": 5, + "e90288c13149e186df6097659b90d79d": 1, + "828e0b16561f1be1a6d3fa19f23ffbf4": 5, + "a4de7f55f7e1c9cb9c791076bf238155": 5, + "f0cbe009c84e2795ceed48dea363952c": 5, + "f2b7cd6bfe889de065389a1784b3c2e9": 5, + "84e305be18087c49c1faf20f579344c0": 5, + "0892f4c66c8309f01e396164e3a9d4fb": 5, + "536bd0ff8974cf7de9337aadfc4ea7a5": 5, + "a6bf9a19e403b5c30e712c65a3d43292": 5, + "a9b616600fc66c9846e5321fd1fabb78": 5, + "4e7f83b62b9c8d843d271fa0da724eac": 5, + "8ff2715a50682a73f1c97f216b751f50": 5, + "6cc84c81c4831533e22a9477bf32d726": 5, + "21585418a7a8f15354c3bd9c61dc5e00": 5, + "20e7693271401bbb66b46dcf39832b80": 5, + "331cc7c57aec8e3e63507fae47a7fd3f": 5, + "efa43962cde522a6becafa69c3565bab": 5, + "82345872f1d39742f858e40bd1f2ed06": 5, + "f43aab7af0b3609f491ac406658afc1d": 5 + } + }, + { + "slug": "l_rhf-input", + "views": 2, + "likes": 3, + "likesByUser": { "b2d585819becc679ae67713447babcea": 2 } + }, + { + "slug": "l_cloudinary-blur-loader", + "views": 534, + "likes": 94, + "likesByUser": { + "b2d585819becc679ae67713447babcea": 5, + "d4b628fe83a8c08813c204fc766920dc": 5, + "d4a6042f9fed9826343dbe48ffc733fb": 5, + "7f7b4079ef2d7ece854606e6902e08f2": 5, + "9a30e326b914eb58920e31cbca1f448e": 5, + "c8d4b6394215ef5455d6fc5ebd39d19f": 2, + "a2cf844abf6cba17406904d706e45fdc": 5, + "3f9c06dd17c05fc745502f3f179d83ed": 5, + "bb56caf7c8797baf12a708bb8f66c0ea": 5, + "7ae901fd5cc3ccbf1af3c5aebe17e92e": 5, + "62a9fa351591334dfc20c79bf0ae7f5a": 5, + "7bf0db115cacfdc01ad3353aa74799df": 5, + "7cdfca90d6b8765f62f276e571e5934b": 5, + "aa99d7f4f78108ea61ff2e0a668c79c7": 5, + "2fee271a40ae5643710961a2b75d8ef9": 5, + "b057c4733293461a8a56297a6832a9dd": 5, + "21585418a7a8f15354c3bd9c61dc5e00": 5, + "bfa56edf414a1b90f9ab7eb9c9d5f3e3": 5, + "89f0c4f7bacba737766d3296be9dd576": 5, + "bb199dee1b14a9e41b355c76867ad94b": 1 + } + }, + { + "slug": "l_prettier-config", + "views": 112, + "likes": 13, + "likesByUser": { + "b2d585819becc679ae67713447babcea": 5, + "ecca0199436926c856edcb4952eb86fc": 5, + "8cc6a1fbe6407036027e759fd955822f": 2 + } + }, + { + "slug": "l_search-debounce", + "views": 280, + "likes": 66, + "likesByUser": { + "7346d7903eb6af1291028cda02e9ee0b": 5, + "a1451e0e981d8fbff3fd6429750f32d0": 1, + "510ab2d5442eee5a35fa35a1c8487f76": 1, + "3f9c06dd17c05fc745502f3f179d83ed": 1, + "de6ac5e44f2d5b95e4b38b563071e97a": 1, + "f77a8927994bc35c3744f91beb9ab5df": 5, + "4aa9aacf6663599ab605d9ab30fafe04": 3, + "ff61ffb790b8ca2bb87f0428d361f224": 5, + "d0b417f170787f93902539f9c82ab27a": 5, + "7ae901fd5cc3ccbf1af3c5aebe17e92e": 2, + "e492aceff481c9686a88d5855798bac0": 5, + "e53373ad77eecdef1913330f64ce10fe": 5, + "43a5cce3767a0bb1a62e489c8b5a3277": 5, + "f790df65102aa658f87f070fd1039bb4": 5, + "2fee271a40ae5643710961a2b75d8ef9": 5, + "1a2ae06b10ca7f21cd76de5df911b662": 5, + "21585418a7a8f15354c3bd9c61dc5e00": 5, + "b724dccce3296b9361e3f8569ecb2864": 1 + } + }, + { + "slug": "l_seo", + "views": 456, + "likes": 84, + "likesByUser": { + "b2d585819becc679ae67713447babcea": 5, + "90c61b5d0c6e103366ecfbedf5c756ce": 1, + "d4a6042f9fed9826343dbe48ffc733fb": 5, + "5db2cdb52c8748af58d9de17ca080e77": 5, + "7b8867aaf125ed368c1e9a2159c3b7f9": 1, + "cdb2676091bbd677344c4170a2a6efba": 5, + "4a8b16b3ea27f19e4cb41301099927b1": 5, + "3d5d94046d480f6e46d290b5889a993a": 5, + "c720bf4e1d49c4f5ddbbad50a39e00ac": 5, + "523f562047769dcf9247d9391d65de9c": 5, + "c638ae7b28cb8d5bba6c4fc2d70ba39b": 5, + "7ae901fd5cc3ccbf1af3c5aebe17e92e": 4, + "431a89ad00ffc9fb2132837dd9f1475a": 5, + "2ee58499674425fa54aebe8b58156870": 5, + "828e0b16561f1be1a6d3fa19f23ffbf4": 5, + "2fee271a40ae5643710961a2b75d8ef9": 5, + "7b80eaed4639871b8812b9dd2e210c89": 2, + "26638eb76b61f7aa3b0ca7538c963e54": 5, + "21585418a7a8f15354c3bd9c61dc5e00": 5 + } + }, + { + "slug": "l_tailwindcss-basestyle", + "views": 3881, + "likes": 284, + "likesByUser": { + "b2d585819becc679ae67713447babcea": 5, + "80a22f2d9379df59d5446e02b903f4de": 5, + "9a561841af63cc8e22057bd9b976c181": 5, + "7e9eea15484753623d0d18c0de3d8240": 5, + "68c61cd1196e5c85fb512e35ccfc4fe2": 5, + "f61b2c2dc3efbed8389d987c2b6c9fc2": 2, + "653e554a81cb35a0b02772ee53d51022": 5, + "19ccd3eea33e7e17c223c4c291f53a18": 5, + "12b793fd5df557c991943d757c2ed197": 5, + "2a6e27b0799dcb76c25609fa1a2cb7e9": 5, + "61463becac593a91e8dbd0eb9eaa8bdf": 5, + "239d9ae28e635b260b256f659b41d319": 2, + "2e1060d913aec13fe3d2c39e8ee08060": 5, + "82666c1808619008074bf00ab5e3402a": 5, + "3d09eaf2497459be95a66db8a00213cd": 5, + "4062987e05dddc743be71c67acec536d": 5, + "9d6ca72fcd33736f931274aa2c3f8b46": 5, + "2d990f3e1072e605a78cd26adf2d2ab1": 5, + "e7ce076ae37863753b7bc944040965dc": 5, + "f3963fd8b930ca97096ac61883a03237": 5, + "deef536472950dc23dc41147f5383030": 1, + "36a2475166f8195da3c4d8a8a2ded512": 5, + "83323f1baf0a5208f15748fb32fc799b": 5, + "51fb437bfc2613bc9f218702359a6ec3": 1, + "da342874b29802c0ae1587b3203d6290": 5, + "56270105038cb41f781a9a05cf91baeb": 5, + "2ecedc19842be7a8ef3f0b811a8c2ffe": 2, + "c638ae7b28cb8d5bba6c4fc2d70ba39b": 5, + "1bc8308519723333289160b68f4afb2f": 5, + "21de18b0b6b600fc02b5f40c77b31b2b": 5, + "9b7cb7fe6c9f2ac0422416fe54943f97": 5, + "e154cfe3049a9f5b7d07e3e3449a2c9a": 1, + "79a610b14d1d7cb84a9c16671e50cef9": 5, + "bce786d706720c5e13a32bc3bc0766b4": 5, + "e4cea2d433da3c7d42c588ad15fa77a2": 1, + "0e0449c858a708f9bc169d67b194a4e2": 5, + "81f108406fe1d79658de97aa3b56842e": 5, + "7ae901fd5cc3ccbf1af3c5aebe17e92e": 1, + "8c6c0b29ec3b4b53018c411f4cb70e13": 5, + "9f0ae8f6a6ec6aad631f822d2554b8a3": 5, + "cf621a70cac64ab578607ee105252124": 5, + "3b56861f918d92679e248d49743cc9aa": 5, + "1de803f2a51b183c8bf1ef56e7d76c5e": 5, + "c12e0366a74142890195c74f7e9db423": 5, + "dd9a7eef3df7931fdad6521783533be9": 5, + "6cc84c81c4831533e22a9477bf32d726": 5, + "0bf3c954f775119dc7e43bfde22f8047": 5, + "2e539d6a4ccf0ed264449de1ecdcccbe": 5, + "ec3271cd5dcaac5371570901c8a2df6f": 1, + "917810f709c2045ca57477f90ed28dd0": 5, + "fe94dad310c3710143740f3735f54eda": 5, + "ca7ead863691351fd6246d73c99dd2b8": 5, + "0d4fa8edeae762bddfed877c77e245fb": 5, + "868b41ce85156e556cb4330abb55f397": 1, + "952d0c6cf840cd2588953f0219ff4b97": 5, + "1ae8c8f122a5a35e3afb4137acb7445c": 5, + "2fee271a40ae5643710961a2b75d8ef9": 5, + "971a501c317adf5990f77121d3368486": 5, + "1d4d75f46a9822b79bf37da5bb1a383b": 5, + "21585418a7a8f15354c3bd9c61dc5e00": 5, + "c294e112fcfe6e8a60f99bdc6f044471": 5, + "b03becfe2717ee763f9ec13c8236953d": 5, + "12815be56e26253c79591bda43fdf746": 5, + "2e81f3700d12b087ebaabbe81a95af69": 5 + } + }, + { + "slug": "l_swr-fetcher", + "views": 52, + "likes": 2, + "likesByUser": { "a73c895dcb3c24990f085b1361c530f5": 1 } + }, + { + "slug": "l_youtube-embed", + "views": 279, + "likes": 76, + "likesByUser": { + "b2d585819becc679ae67713447babcea": 5, + "cf8a34ae6fb74a709bf42b248e8488e6": 5, + "ceb9b915eddaaa69cbb4c0b3821c9c72": 5, + "5db2cdb52c8748af58d9de17ca080e77": 5, + "5c7ba9ea2dde3776c98784d086e41643": 5, + "099af06c9734d8b65388c17782cd0666": 5, + "38a269d45465e50cbb8cd641fc8da3e0": 5, + "27d2b1360d17b09f00b2a042c5ac1bc5": 3, + "0a55ed70aa4f80b1d1c2b0d29a303742": 1, + "c08b8538ee94f1231fea0951b9a25191": 5, + "7ae901fd5cc3ccbf1af3c5aebe17e92e": 5, + "4aa9aacf6663599ab605d9ab30fafe04": 5, + "e7b0e5a8536e0f72e67d64cb0edc1921": 5, + "473bd994af2e49f6a4df13ba80244f50": 5, + "8a2c093723190247b6c1f92441c078c5": 1, + "4ae6a80e31af55dcf53c094e30a159ef": 5, + "21585418a7a8f15354c3bd9c61dc5e00": 5 + } + }, + { + "slug": "l_toast", + "views": 1967, + "likes": 252, + "likesByUser": { + "b2d585819becc679ae67713447babcea": 5, + "4eaf240e7664aed2c3f2358c19870560": 5, + "3f9d11a8e344d67c20c1e874ee1496fa": 1, + "6b900e277bedcedabaa4a59955242f6b": 5, + "14c425ad65d6a1947b607883ed95592b": 5, + "182b7f4ffb79c8c0ff00d9b2309c70ab": 5, + "8e489ba27b49568983bcc70ac040668e": 2, + "5db2cdb52c8748af58d9de17ca080e77": 5, + "92254424b2b5f1c8c5e553aa284749f9": 2, + "55b182ec9634c43d06031b198b689e41": 5, + "1838eb175f1a61b79f2014d379c5e156": 5, + "8097201b48482d18b61759e1b341c897": 5, + "53508b33e6a190c7dfe648e4d3976cfa": 5, + "ab30b9681efd58bda1ceaaca2f6c82e6": 5, + "e944ac090b41690fdb1cf01eb2dc97e9": 5, + "ca897c7892c53254e035ddfae0beea53": 5, + "59b4e0e12f1b3bfefb833173266da675": 5, + "42f3d130e0e8e87d09aecdb3730429f6": 5, + "185f899d9196cf8670fa88be2736838d": 4, + "c065c44f4ce10c922b88ab9e89291cc6": 5, + "f6dd51ef2e414a3e62b5020c2ae44ae1": 1, + "4be8ddf0ee2f08193b6199437ba7c3ed": 5, + "98b3fe6489c7c56cf4240d92133a69a6": 5, + "a68973b9879d35507f77ff75934bd9aa": 3, + "d937b3ece1260cb4321e418789c5a89e": 5, + "7752beaf24b20a776fca8f44b811e8e9": 1, + "0a8cb7a64a329f95d3404e1d2742120d": 1, + "29eab9a3b2b61c912047273e739731b9": 5, + "dcbcd7ea09eceaa66df4d06165d46d5d": 5, + "f60a75997b43e26d0a8187175ecea83d": 5, + "a3b330a9d0c224f20dd8387151a834d3": 5, + "7ae901fd5cc3ccbf1af3c5aebe17e92e": 2, + "386e8723a08f6f7b38e2edbc857bf925": 5, + "27d1444c51705cb5b3b0e3d53fde73f2": 1, + "6d8cda18bd99c3cd888022ac53a1ebc2": 5, + "9a87e69642e180ffb5976b38bc039213": 1, + "cf42feb12168313e748060abfdc6062e": 5, + "0b63ddc98ec13ab059a3dc22d08bd011": 2, + "ca2655ff046fe474f7e49284c85ebfcf": 5, + "9b21268d34634c595e7a9e8079387b7e": 1, + "c7f0cdff60a9708509a24d9a4e2e9cd7": 1, + "405903edf324a63cd87908156eecb521": 5, + "484a82f87365d4088b40e3c0df80d231": 3, + "84e305be18087c49c1faf20f579344c0": 5, + "0c3a98236aaadd46dc62966b871d1d32": 3, + "6e2ef09594341265a7d765e2576a692f": 5, + "3150d96f940664b9f048147dfa03b546": 5, + "6dcafda3e9cd6fda05d71d4a89f73f48": 5, + "2fee271a40ae5643710961a2b75d8ef9": 5, + "d52810a561eb47db91940dfe6b59d59b": 5, + "a977908c9d539e971468019a956c3a41": 5, + "be0c5c83c07e6f92c2d50001738e66a0": 5, + "f74aab9840b0561ce7a50b895f8845ab": 5, + "9a8e19e7cff7a2be150ac440843f1b68": 5, + "3aa29f62a38b0ac3871204103dea89d1": 1, + "c8aa95394c546facaf1d4809845bad17": 5, + "5076f593506ab40418bed47870eb84f6": 5, + "c3bda51bb9475681dc5a8518c6ceb4fb": 5, + "21585418a7a8f15354c3bd9c61dc5e00": 5, + "49078e1b9403e88eb7ea12db5e67ea88": 5, + "121c136430963cafba8c2ddb48c2ff00": 1, + "75a08c83443600de1f52f0c22d15c94a": 5 + } + }, + { + "slug": "l_sticky-nav", + "views": 609, + "likes": 121, + "likesByUser": { + "b2d585819becc679ae67713447babcea": 2, + "4bf5ae7967a42da434f8711f81f3fbc5": 1, + "1afc22e3a8f622e1eacc9e734ab8ad48": 5, + "d4a6042f9fed9826343dbe48ffc733fb": 5, + "819a3ceda00a5ea63fcddaa3d2809aeb": 5, + "2bdb0c7ff3e4c3e10ca46ac5603e4d48": 2, + "67002c612415c164f85227e597bab36d": 5, + "f1ff88b81f361145d56c3e480e205f08": 5, + "7b8867aaf125ed368c1e9a2159c3b7f9": 5, + "ffa1829f9fb2f657178bc9e00dfecfce": 5, + "949c097d6d901dcdeddb6552bb33cfa1": 5, + "8c3478e94b9c256239be23ee161f84b2": 1, + "9e6b6c4d340c607c154fcd97bfccb114": 5, + "2f3e5ca6709562804d95e4738b53b2e2": 5, + "f77a8927994bc35c3744f91beb9ab5df": 5, + "c638ae7b28cb8d5bba6c4fc2d70ba39b": 5, + "12e8ec3f0053f213f2626d81bb2939a3": 5, + "28668544053502ac482b21e7c217dd7d": 1, + "6cc84c81c4831533e22a9477bf32d726": 5, + "9eb186b3754545a2dc3770405e91eb69": 5, + "0970c0c541dcd9dc3d1eb3e28e324c4d": 5, + "84e305be18087c49c1faf20f579344c0": 5, + "2fee271a40ae5643710961a2b75d8ef9": 5, + "c1dc085834aa624c9ad828cfceb80399": 5, + "6ea14312ba1d7dd9e3666e2446c71419": 2, + "21585418a7a8f15354c3bd9c61dc5e00": 5, + "102bb32fa760098ad317a607cc683787": 5, + "97c464153d6a1b0f3b4ed77e679abd2a": 5, + "052edb90adea362f87a3b05a545f041a": 1 + } + }, + { + "slug": "l_next-themes", + "views": 624, + "likes": 107, + "likesByUser": { + "b2d585819becc679ae67713447babcea": 2, + "edefb97194aa846a1a477cb7c56a64f9": 5, + "bb7cf39333f7e82209307c59e6360ab2": 5, + "c82b5e7032eb8fde6acf9315d340e51e": 5, + "2c564271203a94dddb1ab79a99b6f598": 5, + "6a422cfef35fa24f7ee9c5d7ddc2756c": 5, + "7f2816119c024205b6d1457f01a20dad": 2, + "ebae5d6a2444f3e07451fd244b6542b8": 2, + "5a7011564a06c504eb3a4559367b6b11": 5, + "f77a8927994bc35c3744f91beb9ab5df": 5, + "4aa9aacf6663599ab605d9ab30fafe04": 5, + "442bea94b889489e4693db23d62d7e60": 5, + "1dc1e543f7b3f99af8cde2b9554412ea": 2, + "63514ea957dd33cdaafb8eea01588db7": 5, + "2daa6f09bd0c04473cf94cda9c626726": 5, + "838ee7eaed94765daadefd322d7d94b7": 1, + "204b81aaa4a4a7ad3ea4ce5d49f1fb49": 2, + "881ddb0f4169b86a0afde009d0227abe": 5, + "567fac74d8191eff8770e596c9764349": 5, + "0970c0c541dcd9dc3d1eb3e28e324c4d": 5, + "bfc0ee570bc5c22419106c0b6df3f463": 5, + "2bdf29699e3ea02cae4537e615c8790a": 2, + "d936c168a7b6f64331f26b6a6cd180d5": 5, + "5683d35013915442e055464727c39e54": 1, + "3f686a86229bdcbcff2cb742b58c6a8a": 5, + "21585418a7a8f15354c3bd9c61dc5e00": 5, + "39dd7ff855ec2722a5eea61676bc297a": 2 + } + }, + { + "slug": "l_next-google-analytics", + "views": 65, + "likes": 16, + "likesByUser": { + "b2d585819becc679ae67713447babcea": 5, + "62167ad5989d35ea76b5edbe430c4288": 5, + "d4a6042f9fed9826343dbe48ffc733fb": 5 + } + }, + { + "slug": "p_20-javascript", + "views": 1420, + "likes": 216, + "likesByUser": { + "b2d585819becc679ae67713447babcea": 5, + "873d859dc10456e000477ba49bd024be": 5, + "9735c908ea4a268ae8cd88a319fbac41": 5, + "f447e77393974b6251d2b014f5145e21": 5, + "96dfb11d6d36c7c95b65e77fd2c66516": 5, + "b02887650d8f71a8e44358a754e56b0a": 5, + "08d7479fb2dd03072fe2a5143226abb4": 5, + "4eaf240e7664aed2c3f2358c19870560": 5, + "e464e730d50c90839b28f928ccd83cd1": 5, + "525e59e341e20e32401d4be91e029939": 5, + "2d16ef26fae70514f2f5de4b3bd8e980": 5, + "57f130394e04f63638ee77987c93a2af": 5, + "cf042a902272ed96f9fcda3fcd92ce0e": 2, + "3cfcfa94cb21df6dbd944f6d1a3b686a": 5, + "a97640761cc50b3dc58be85ab07d9fda": 2, + "7033e13ecdde6a5cd0c2799c9e2023e3": 5, + "205cb7b6fc522b1d132abcfacb2fe9b5": 5, + "90bf260ee03ab1b0421bc743ff209e66": 1, + "8f41451a2b3ee7bfec750a2fef9d7a81": 5, + "0b04b598022516f75859770eddfea836": 5, + "c093b7bc14396681f9067170ec6dfc3c": 1, + "7b2b0bb89724d253d83034837cb33333": 1, + "b10e90e9fb230df11907607fd6dcbefa": 5, + "e93392820c876d8c38fb6d4c0eff54de": 5, + "ae935f1e382f016d30c8dc1848edb2cb": 1, + "cbce1458b99f0facf7224c123f85f104": 5, + "7d5deee7398c359ca0c83aa5092eaa86": 5, + "88ed7c34c9205102917c670e28eae5d9": 5, + "5a7011564a06c504eb3a4559367b6b11": 5, + "1b95efb474e9cd8d748b59d538397288": 5, + "c82abd3b6f79552ae570e018fd7166cf": 5, + "d65766189a54ae3b4e04f5b8d26be549": 5, + "ec7168c6992b90cd3760cbfd3761845f": 5, + "89fd8b6c3eb7933ffc854855b7f5ec78": 5, + "fa9e409db76285bb153749870003c2b4": 5, + "de1486552fd7dcf84eabe3a32ce45613": 5, + "c0f3b43bd6d4d5924b87f802ce6a3939": 5, + "17b0b119918591cc1db2b15b706f6860": 1, + "e5625158ac43fda7a68e22f8b56d9d11": 5, + "c294e112fcfe6e8a60f99bdc6f044471": 5, + "a4de7f55f7e1c9cb9c791076bf238155": 1, + "983f7332a35fd1b5ea652b68635d3837": 5, + "5e050d397cd8f12fbbb8078eebeadb16": 5, + "869db056f9e90b8bd40ceb7db88084d3": 5, + "2fee271a40ae5643710961a2b75d8ef9": 5, + "fb913e6894f3702d413dddeeaf72dc0a": 5, + "467bfe00947a859f99073fc27f812e85": 5, + "fec43ec4813207eff5c9d7a01ec8855c": 5, + "e4e6293ef28ee3b25e6f90fdb88a6a7f": 5 + } + }, + { + "slug": "b_rhf", + "views": 2917, + "likes": 249, + "likesByUser": { + "b2d585819becc679ae67713447babcea": 5, + "e48bf01e776ea7efb878bffed780480a": 2, + "559d8aa98b40b43c04fb13b5b8ea6b00": 1, + "c6ea81e486c7fd65032231e5dd1851c4": 5, + "988050386ea6129f233bf40103573b42": 5, + "da7cf0b2b96a6b926cb01c6844d80af2": 5, + "2affadbcf076a59dd38492d347ce09e9": 5, + "d6284fce2d185f6fc23726a2d17dae8b": 5, + "4bf5ae7967a42da434f8711f81f3fbc5": 1, + "c6c981ea3b204d4a91f6cbc473b5ce32": 5, + "d4a6042f9fed9826343dbe48ffc733fb": 5, + "aa7667b437c034b1533cd31388b256ba": 5, + "2964954f49795c516b841e97107c6b82": 5, + "6672b81e5cf21b2d2cd03b9eccc304d8": 5, + "d8206f8cca270626af1c26f2c8f67fba": 5, + "23f470bd21161e9594ebf37ef1168737": 5, + "9b7cb7fe6c9f2ac0422416fe54943f97": 1, + "01875bb8c1d384bce04ffb79dcb62a53": 5, + "dea3f32ed1b4495474c9a3038edeb228": 5, + "070c2978cfac0e0d9e4cb2044e6accea": 5, + "e474264932a1bd73c2e6014d32d9782c": 5, + "0569d0c113dd2c428ffb308bddb4abc8": 1, + "eeb52348e9794886221c0e2481ccec1e": 5, + "438448e0fed26807b3cffd02e27a8769": 5, + "a17f34f49cc318a146a4e07f7dc0f239": 5, + "ed9f4c2b576c55f303cda83649327584": 5, + "15e435b6cf6d66f626e38b02dc99b911": 5, + "e05acd22d6a1dea6a4d9b5151a86a1a2": 5, + "b3478e5199866d6eb501e27a984130bb": 5, + "32c6d40bb99b54f2bb6c98de487ccd7d": 5, + "387b86f7f5b64acadfa9e17dcd0eb1a6": 5, + "d0d3904b287f81a124f0a4c9780a2eec": 5, + "f71c9107f0a439274a8d8cac863e3690": 5, + "88ae739067f8302a65b50aababab62cb": 5, + "b3751e0c5f14017811970f1c21babb0a": 5, + "79f7b64b4bfd7b2fb7e99c5730b252ae": 5, + "9b32eb83aa4c022a512f3482a5835b6a": 1, + "09ae744736295bcbc6fed37d3ed93c26": 2, + "0e40eb6b62e81974312582d388949390": 4, + "6e98b3cf71910b45be98bd35579dda06": 5, + "5de6b4b7e6d786b54ee9f0aa8c78454d": 5, + "15d8541fb5fe9e3616bcd5fdfc253fde": 5, + "8a1a3334d7768c78b62981d668233ce0": 5, + "e2c90ff10839c5b00fb053bc1aaecfb5": 5, + "e658c41bfb0102c785b9297fbe00557b": 5, + "40e3e968f8fc9208616a85aca6de0a57": 5, + "e43604bdf08ec2cdeda599cedc7626df": 1, + "2fee271a40ae5643710961a2b75d8ef9": 5, + "a2937ee994a329e8502dc70078c9e11d": 5, + "d7e6cdf297b7e91e7e85bdfaf143967a": 5, + "1591ca248b4c17829d0cc1a05c91bb69": 5, + "b6411126f3c70d1440ee56d0131c210e": 5, + "8ff6f609123d32c8d89ecd67b73fea9d": 5, + "26638eb76b61f7aa3b0ca7538c963e54": 5, + "21585418a7a8f15354c3bd9c61dc5e00": 5, + "2d52216c39d2123906b03b3316dc38e6": 4 + } + }, + { + "slug": "b_btb-flex-mental-model", + "views": 2499, + "likes": 558, + "likesByUser": { + "5db2cdb52c8748af58d9de17ca080e77": 5, + "b2d585819becc679ae67713447babcea": 5, + "e1fd55673eb739ac533730ffb54809c4": 5, + "736811ec0091f9c30e0d35cfb76b8482": 5, + "8e4295e7bedddb3a8539049a37c0c34f": 1, + "255f87cc7a2f428f46769373afce869c": 5, + "7ffe63f0510a336e88fed7b0edc8ef56": 5, + "03ba86f8b213d5849e5731aa3013bbf3": 5, + "c3bd1591b01cc2851fe7424d9a9e6bee": 5, + "50c426930980f7eae43b9522817071b1": 5, + "d619760ea67ab8bb440876aa641d07de": 2, + "d4a6042f9fed9826343dbe48ffc733fb": 5, + "35d93ac0f2110adcfa45eef04b59ce58": 5, + "4eaf240e7664aed2c3f2358c19870560": 5, + "4b39dae0b624e039b60480240ef68f5e": 5, + "5c7ba9ea2dde3776c98784d086e41643": 5, + "6227b4bf6b5be15fb719eb1d528c090d": 1, + "c4889f503f2b0d7053868d5d519e81f7": 5, + "29567a5ec1590d0f92ad528d89bb3b14": 5, + "d9df6390a8ab9b715d80306ebfcd4502": 5, + "0b1a41e66e2772fdec003b8f802002ec": 5, + "f74c494a2acac37e311443e2db463775": 5, + "8fb25bb570438f9912f3779866806574": 5, + "3e8428c6489588d546dcb3ce6035dd96": 5, + "eaae90deb3a175fae173ad52a34e9d4b": 5, + "8dc1a74f2a8c93e6628ca6813e120fb4": 5, + "ad8fae2daeca375f20331bdaf4b0c3a9": 1, + "7cea1b9a1130ba27f535af215a4ae4f0": 5, + "4162b32cb0e6fd158cf3f1be041a4798": 5, + "c755e4c07fba71881e32452b84857c1c": 5, + "ec381e2fc91a42bda811ba2e201fdcc5": 5, + "ed9afa1e3006f6db91a72d25ada81d5b": 2, + "33e1bb86c27fa93b49e786b90808de28": 5, + "558b611b1878374dd6484f14641dbed6": 5, + "978b09ced3740732736d1f0f7103bc72": 5, + "38dc4393663888cfad5fc67fb639ceda": 5, + "d06587a0e3c7810b1d8e46e4b85ef365": 5, + "8097e15509f9306b43626cf2d119f806": 5, + "f74351f2f33864dec3168bff94e030a4": 5, + "713436492d4351de7206dd3ce0cfa2bf": 5, + "28bae283dbf718fbd4c028c490148764": 5, + "e8d2c5558259b453c82ad048546df52f": 5, + "b10e90e9fb230df11907607fd6dcbefa": 5, + "3c7042755028b7950beb4a91ab260e64": 5, + "bcb0e187be50dea54603555396fd80be": 5, + "7d563e2029cd7997021d20bdeddc2e1f": 5, + "1694e139ff3951466ca4d06dd0f729f1": 5, + "ca897c7892c53254e035ddfae0beea53": 5, + "0c7dc557046da9ad76b7651e62934e09": 5, + "47dfe7adecab21135a599df9fd91d8dd": 5, + "fb2934504569be79de58b11875d965e6": 5, + "c5fa9df80eb6b8568d0db0446d6931f2": 5, + "6a422cfef35fa24f7ee9c5d7ddc2756c": 5, + "dc533691726af98d9f094dcb2320c660": 5, + "ed55879ded0f7b93b05c8bd7a9fff4d7": 5, + "2d61e4a60c5a9706d3b282b3975d19ec": 5, + "7b897b5869e2e0e55beed5af18a94092": 5, + "b7943fa6a1a1e14f5e550f9e4fa73f68": 5, + "28adebe039d904a673341b0e81f6bfcc": 1, + "7a2dd7e7bf72fca541d7242053c7ba1f": 5, + "b2097e36a57da46fe8695066bed2c293": 5, + "6202839093bf817769fd153393bb5bed": 5, + "60af3beca2a2d90dfc72dcbf81fb703b": 5, + "d8206f8cca270626af1c26f2c8f67fba": 5, + "2103426e855bed48d676b8b22fc53722": 1, + "85301819d7fee165ca9089e6d854266c": 5, + "fa411773485166556fa226b2022e331d": 5, + "31b9c8fb8fad59d46e73a50fbc87a432": 1, + "1e94bcd8a7e49067a2a497fb977757df": 5, + "601b660f18350894298c1931d38a6ba5": 5, + "8d7fa266c2f31ab8e39f6675c214ec19": 5, + "aaeef6c464349514955bf533befff849": 2, + "3c05de731fc8e371e1de731feee406d5": 5, + "65134c5b92e2a0f30a07f69262563dc7": 5, + "13637bf58e3ccc8419efff11b21ed890": 5, + "ea5e439a16e94280066ec18b61ab06a8": 2, + "7ba9271d8622e8c5cdd5a1c84c79eefc": 5, + "2bd64110ed409cdbc674ee438de6074e": 5, + "9477cb416fbfc0c4ef54ab88775f116e": 5, + "84e0d6238bbd3b8215e5672ede08bf79": 1, + "e705d68e38537d2e4cf50d1e49e3a4bf": 1, + "168c948e160e92dbd5629256a87f1d20": 5, + "17fada47c06ee394cf93482fcf75d8e7": 5, + "a2b3269f3371bd37ec72dae2136ccfd0": 4, + "b7fa3dd9319481478eb3f0307c9f0320": 5, + "193de9a3c4f1f9b7dcfa6d8e7b2c4b14": 5, + "0435c5a4610ed02effdfa353935bfee6": 5, + "de1486552fd7dcf84eabe3a32ce45613": 1, + "6bf325be3db641048fae71a81cc14286": 1, + "515de9d9c3695e48a8eff0206b4ac452": 5, + "9c8fb8a2332c84c0112eacb5cb9f1c7b": 2, + "22650b1539d66af36d424eeb4c65eb2a": 5, + "f6a5d6c9159647d07a04da02f94ef94c": 5, + "e51d9bf7ee9d415240889c5a8c54dece": 5, + "e0a6e4c633631186084f0e8a65c6a9cb": 5, + "fccf98bdd1bd9047b1183bc65ba372f6": 5, + "79aa8116b21d7afa37ab2aec2926be2c": 2, + "941952186bc4fe060c5f3f97a2d59578": 5, + "78644c549f0f7498b08c501b632430b2": 5, + "4378f79b69cee81205d606c6f6a5e116": 1, + "f0cbe009c84e2795ceed48dea363952c": 5, + "a3493987407fc1a5862b9c7c08d41d55": 5, + "5683d35013915442e055464727c39e54": 5, + "2a1b6e50b6ff997713150bfceb6d254f": 5, + "8f0ccef40c66a3e3abdd2177edadeedc": 5, + "983f7332a35fd1b5ea652b68635d3837": 5, + "bd4ac46515c5eaad3384b6d3411491b7": 5, + "f53df8442b675dc24ab81491caf235bd": 5, + "36480100849c7a1d09b44239b6d25c5b": 5, + "74a1b1f964a7eb16204a541e09fa4bcf": 5, + "85fe82e274a54e8a62e566392ac67151": 5, + "471dff4421895bffce98a940613c613b": 1, + "afb9957509028d4bdcfcc3b959449f9a": 3, + "9002ed2d133cf1df5c0bf7967cfd9637": 5, + "3e14b343c5d934ac7402f29f43ecf766": 2, + "d2ff13a513168452a95691f2422fcd56": 5, + "c14c8876b902e13b2df49a7baabc1893": 1, + "391ed89ab31a690c9bf66142fac47c07": 5, + "b83ec8a54e45475abe21c1bf4167a451": 5, + "29d343b95f5e3eeb1452fc95e5a2ea77": 5, + "523a9e42536f96e85447b966b4b36015": 5, + "3f26c6bc2f12d4ec1a4c5f0427028be7": 5, + "c735271b699424207efec321f2fc0cd7": 5, + "2d52216c39d2123906b03b3316dc38e6": 5, + "5b614b83f26a92598b79325ebd4c3989": 3, + "38243a9ccc95cec65e0d6f97b7f00a17": 5, + "f0a4bfd50e5d08b1ad670362c454c00b": 5 + } + }, + { + "slug": "p_ppdbsumsel", + "views": 1826, + "likes": 430, + "likesByUser": { + "5db2cdb52c8748af58d9de17ca080e77": 5, + "4c4efe8dfbc65daa37354999653674c0": 1, + "b2d585819becc679ae67713447babcea": 5, + "bfc25694ecd10764cb93a98450bf9148": 2, + "7b71a5f159a2929132cfb0a593e93918": 5, + "f9b04e16d71bbb943d7b037ba22ad608": 1, + "f447e77393974b6251d2b014f5145e21": 5, + "59819c95e0d3327732b89baf7e32a9c6": 5, + "6a66539321cea01dad85b29d7278d947": 5, + "72e14e1eb80bbf2962f9bd96241063ae": 5, + "3a03cfe20e35882e12a4cfe9270a77cc": 5, + "f089d3ae44444af9f0d085847f7b64e9": 5, + "b44a72cb33fdb80c47a7707cb9a173b0": 2, + "b76212678593f5b8d514748734abb5e1": 1, + "eca92b6cc541efe2ba690b7c15472598": 1, + "99ccc861c5a3f3b8bd8a8a6adfbddfbb": 5, + "d4a6042f9fed9826343dbe48ffc733fb": 5, + "7db99a717b95b61e0879a606d9915ba9": 5, + "01bd11873513d9072ec17d47a44036d1": 5, + "11ee1a17fa2407aa36a28a4a3ff5bfd3": 1, + "95d71127c2daec3e1650bb53e52a6b45": 1, + "6c9d0a6bfbe165387c56107a53559f64": 5, + "db4403c88a12a2fd51f418e56cb76163": 5, + "95d6b6b81ca73e27ca02df265cd1ae24": 2, + "4eaf240e7664aed2c3f2358c19870560": 5, + "c0d5129d727fa2af74b24dbc712acdd6": 5, + "351ee70ffb9e104e4abf3638a80f4218": 2, + "cdbb9c593793d90511895b19323c7d2c": 5, + "8763754865278d312e8a4bb4525149f8": 5, + "f328e38f0027d54a69528384bab06264": 5, + "a7f35aa60fb467ed923efc18fe391438": 5, + "8ae67ede685bda6a160d0053465c91c6": 1, + "5766af547c8d4e8dd7e7e4c9a9d200b8": 5, + "662ef10e123c7e1c01faad4f6748389c": 5, + "1904796f8d76c8de9ac5b02b8f9fdf43": 1, + "b306999797556a8e1ebcabb1e03de279": 1, + "42de451d20bd35fee67ed573af82bd78": 5, + "b1c2f3306768bd0ae9159ffca57d8bca": 5, + "68c9581475a458b5ea0f8e38d3112cb0": 3, + "2c468b64fdc145057c696f8fb5b17ab7": 5, + "6770e6580097eba30a17c390ab4cbfc5": 5, + "4e201e56a18ce44d5c7b1586fcb65c63": 1, + "de934e2fcd63a8a728e254cb2cdfae11": 5, + "9085e5bd1c2aa91e9064d39cd38550cb": 5, + "794a6f56a5e623078f30a4a2aea05082": 5, + "de72c8e55add23a10aee1e7d5a2286bf": 5, + "9b35f15f9f176928ada4d6c063b6fc5a": 5, + "61a1e97174d71e84143a504557430f75": 5, + "c1eaf747bb9dd4d61803ef903db619e6": 5, + "dff4ae75c8b5c26576192b5677697ed5": 5, + "3c1821ab6dd4375997c4c7dce72e18f8": 5, + "84201394d3c66ed586b6b2335541b044": 5, + "26dd320d179d32c34eaa76239baf2eae": 5, + "36c86b2532873a0e118422bcd9bd9965": 5, + "ee90884b6950ae4a06e28726f83644d6": 1, + "3e8428c6489588d546dcb3ce6035dd96": 5, + "b98c90403cc6bcd4f7c4cb7ec9937946": 1, + "8c58ce95a8e5066a266dba956cce7d7b": 5, + "b02cc39d3199cad9eb5b4d2073b4fad0": 5, + "41cced5bb66a17ed99c0dba2c542362d": 1, + "2f8a31e01e403e40203bd4c6bd5b7478": 5, + "758882c3609a0b537bda24599c70dfac": 5, + "4805e5b1d9d2cfb2e6cc0889374edb49": 5, + "dea8825db7f066de69907b886b5c3f2d": 5, + "0c7dc557046da9ad76b7651e62934e09": 5, + "624d6a394ad741d61e9400bf1b60333b": 1, + "114099dd6f14b9414a34cdf24d562ea6": 2, + "c421f818654379fd3234a53889dbaaed": 2, + "096fc9593076f15b782403fed342a386": 5, + "8b7fa40cb12cce404ee81b0f9db66669": 5, + "c5064829d70c236863f11d4a88baec1b": 5, + "e32bde10bbeaa3369e4da6758632640f": 2, + "77d40990b2fdae5d749727af8560c461": 5, + "558bc60fdd29706e0911220ee2e385ae": 5, + "ae08fdb60aadc0a8492c1effa070396a": 1, + "15eec690c5f562ae41234e2027f98a0d": 5, + "9961fbd71e3058a5708e3822bacf4b75": 1, + "c38491ebcfbea8af6713eb3e62a6e076": 5, + "4c6d913f878a012d7ea6e57ddf53cfe4": 5, + "d0732989ea6432aa6a9986d5f231401a": 5, + "40584bdde3306b39c446d266ae9198f2": 5, + "bb6771af7db908925103e5b2f33a781b": 5, + "b4bfe6f6a22a8e72a82c68b1dbb2f9d9": 1, + "7038462375bc39c269ee8fdd5a7e13a0": 5, + "ba17d0585d015924f6b1a9e6bcbc2c8d": 5, + "8bdaf3c3e44ae58aea6aaf5d8be19c19": 5, + "0b63ddc98ec13ab059a3dc22d08bd011": 5, + "fccf98bdd1bd9047b1183bc65ba372f6": 5, + "784611bc0708846df43172c9a0543e00": 5, + "9eb186b3754545a2dc3770405e91eb69": 5, + "c91b68c0aefd4f7c348893aa6ea7a66e": 5, + "7ff9f79f2c698cbe7552d5ce34e17bde": 2, + "c294e112fcfe6e8a60f99bdc6f044471": 5, + "e8bf5b74e914978d2c6950589b63064d": 5, + "bcfde2afc7d19c51886f7a58ac990855": 5, + "dd364d8653d90b7c98b0c3043cfcb772": 5, + "a977908c9d539e971468019a956c3a41": 5, + "314d720cccd61730140741d27a619335": 5, + "bc7d40398748c1a4a5c15441776c1b92": 1, + "26638eb76b61f7aa3b0ca7538c963e54": 5, + "10fdd7f0ada33109a5454ed4579e9b47": 5, + "c3cfca0686f6826231affff24e15f7f2": 1, + "441a8141cec590307a3ca201aae3ea05": 1, + "45e1dea5f791883b7239e231e686eb36": 5, + "5b614b83f26a92598b79325ebd4c3989": 5, + "94169f3867bc2ac6cff9cc9864525bdf": 5, + "2b72e00ba75b5002b0785285ce7fc65c": 5 + } + }, + { + "slug": "p_side-projects", + "views": 2027, + "likes": 253, + "likesByUser": { + "5db2cdb52c8748af58d9de17ca080e77": 5, + "b2d585819becc679ae67713447babcea": 5, + "5028df3a4a884f813e043d7f60545bb4": 5, + "96dfb11d6d36c7c95b65e77fd2c66516": 5, + "0a83f3b447fa4939133d98af6ce70fc0": 5, + "5da9a93546e0be0560d8740a44762d3d": 5, + "c2f46be004acc67176c3cf0eb366d200": 5, + "29e41766690ec924f96955df28c6be1e": 5, + "b40515477720e2cefec47188de8d48e9": 5, + "4b8e41f07a24c18b60129e258c50337c": 5, + "cdbb9c593793d90511895b19323c7d2c": 5, + "06ab21e75e67ed82f241d1ec852cc072": 5, + "972892c0c4100c48c47013d48e389a7e": 5, + "9f07848886c44e6d31c29647b9221229": 5, + "ffcb8a0c6a792f6e7d3d2b09de9658a9": 5, + "750b403869fcb64c6c3143dc5dad1ca0": 5, + "bc77d76bdf8739309c98fe592f46c7da": 5, + "984e57769182423b6bbcde4aff0e4061": 5, + "b695c426f1fcfe5ff1938c8381bd0ded": 5, + "6a422cfef35fa24f7ee9c5d7ddc2756c": 4, + "7b64edfa7d4f0ec53f814b859d4248a0": 5, + "58f6ca2a203a57b7773c6f3c4abd9aca": 5, + "1d753c070f9f4f9e9ac6a84f8f3cd7a1": 5, + "e8922a82068037cf7ee1cf7529ca2e01": 1, + "47d23659ab75e42be92de64c1d37659b": 2, + "9df83ab5606523d1a7df3d40a7fe65d2": 1, + "9188c944c39a5d135b2faa054dfcfd78": 1, + "7dcebfc58d22a8fdccdaed6b169d05b0": 5, + "2c564271203a94dddb1ab79a99b6f598": 5, + "b5b666678fbfa047cc21307b04f9927e": 1, + "dea8825db7f066de69907b886b5c3f2d": 5, + "2d61e4a60c5a9706d3b282b3975d19ec": 5, + "096fc9593076f15b782403fed342a386": 5, + "7d1b5a8be89e7e0b275badc4b03eed4b": 5, + "34020f417fa32b281233e32c7e51dc6c": 5, + "13a987b03f15b1d1a4689acef087490e": 5, + "2db1fd25e99169efdb6c077309da4a7f": 5, + "a571c02b58c96c0b67a75837cb08ccf3": 5, + "4f4756a869c1aa06fe3e0de6051c1c91": 5, + "44af6745303844ca15a38b7e78574faa": 2, + "1b95efb474e9cd8d748b59d538397288": 5, + "720f9445bf5fe243a128d40d8ba2ba71": 5, + "fa9e409db76285bb153749870003c2b4": 5, + "3bcf85ca4337b079cacd13dc1dca503f": 5, + "938efbcfbfbf4d7463fdc29252ad50f8": 5, + "06d01674f7ffcca95e938d13b9d30957": 5, + "a06f96f9e5eeaf092e344d20c9428c92": 5, + "a2e223c0945e406b9958c094055f657b": 5, + "f3e11e36a4478979ca0e854f970ce1e9": 5, + "c89c55d57b81d264a243c4275e6e0e5f": 5, + "983f7332a35fd1b5ea652b68635d3837": 5, + "e14947f5307afbcadbed63013fb8992b": 5, + "3b8c5d71706cb6a6781fea89ebdbaf35": 5, + "f71875f2b0c38607eee481ce9d23e8d3": 5, + "5b614b83f26a92598b79325ebd4c3989": 5 + } + }, + { + "slug": "b_nextjs-fetch-method", + "views": 27802, + "likes": 1074, + "likesByUser": { + "d4a6042f9fed9826343dbe48ffc733fb": 5, + "202200730cd47e1a2727b3a41f7b433c": 5, + "8410ad6acf4bd1df016b694dce138fcc": 5, + "a4025de2e2ca2f84f09cbe9a98fee833": 5, + "c07affa00f7dda095f9144186c88ef9b": 5, + "6f6200cdd7cf40f0107f80192aa23b16": 5, + "94106247073215ff584ded1bf3e4da76": 5, + "791d167f9d2110c0786ba9c89ee4b36d": 5, + "f1fe887a128ca7e376b5893cc3c39bbe": 1, + "ae0ffc6f71accef9d43ba5ee53bc2b28": 2, + "c615564751391bf424f65c1ab63005e4": 5, + "c9a4baba8bba5f693fcc6f11abd81eec": 1, + "60c83876ba96baa998b7ca08539edd58": 1, + "0899fea840cba658be56439088eae300": 2, + "e5bf59794bed89607daa537dc5f58f75": 5, + "126d676540f7c13a127889e91d0e555b": 5, + "30d5e707675778bba004942580c49414": 5, + "aa7667b437c034b1533cd31388b256ba": 5, + "43cb969e72dde0af6da07384bd473852": 5, + "35d93ac0f2110adcfa45eef04b59ce58": 5, + "dc4c12919de64dab7995665426101d61": 1, + "a6227f6535b79ad4b82aeb9ae0fe398d": 5, + "ecec7f5a3890b670ccd886248a15d505": 1, + "6c0be6c45d432457dcbcabcef98e548a": 5, + "5db2cdb52c8748af58d9de17ca080e77": 5, + "53c822efd66a53afe7fa63846057c249": 1, + "18349b4aba8acb1f93bdb15f21270057": 5, + "282a5ee576c0472a364bbd8d4fed7d82": 5, + "221be15bef1773eaaac0c48652858b39": 1, + "2093fff67ee29349dbc8c60740c56084": 5, + "1e1650fbe2552c6914f38ae5b1046b9c": 5, + "d8c55a31bde00b7c8e8e39a97781246c": 5, + "d0f5ea4cd3f367890a8051362370fd97": 5, + "fd56f65c00ed14b372f2e2ff8b402664": 5, + "d97ddae86a38b29d8917d187727f951a": 5, + "d0a40b763f0b7fa984922db362714949": 1, + "cfdf984e528054d468967d7842452bb8": 5, + "3abfef8b032e4b4238280fa335170926": 1, + "84bfe73b31f69cefced94ce1cfe663dd": 5, + "ff83b25e4103557126da84b19f75fc5c": 5, + "dcc9a93ece0185aeaef6203ac1b12883": 5, + "d9df6390a8ab9b715d80306ebfcd4502": 5, + "ebc9a290f908ea339e14223a2ff1cbb1": 5, + "1106e929441a3c8c1628fb56afe05ca4": 1, + "781390b43f059f42ab7582d310526983": 5, + "1507df3875a400e9e69c5ae7a9bedbaf": 5, + "9a2328d80c85730f2cd2da188d279014": 1, + "19ccd3eea33e7e17c223c4c291f53a18": 5, + "9fde540329fbbc9eb1c6edc278a0f894": 5, + "96dfb11d6d36c7c95b65e77fd2c66516": 5, + "01346e92adc7d7d3e148a296d130b45c": 5, + "b5d0a8519e982ee26db3fa4e63433e2e": 5, + "b2d585819becc679ae67713447babcea": 5, + "64512edcead411438836c66fdb25e159": 5, + "6a422cfef35fa24f7ee9c5d7ddc2756c": 5, + "e9962964a54b2373b072ebc1802fb4f5": 5, + "d0af664fab580c6d843bef91a490af97": 1, + "cdf9acbbd8de2d1adac1eb974a615eb8": 1, + "8de35b18224c19dd49265567a4d64f6f": 5, + "42047a31ebcee0c7b4c112b4a930559b": 5, + "b2eb7d61f8f6011f6c4cc097772ff2dd": 5, + "443490630e9d5efd54b283ad4ed1fa1e": 5, + "16241a48e73def64e2074c3883ab2771": 1, + "838875c9afbf6fa0d5235cd0dc0a9cc8": 5, + "5d728d3779be73fa879a5ffcef1921dc": 1, + "20d9d14c838cf8f8815d956d972e2e31": 5, + "91d440116f7cac4178955b920e7fc8fa": 1, + "d6412382f2c7b641903d83a828ebccf5": 5, + "47d3676b543f6e05e5b4a338b92ddc4b": 1, + "8a2c2244994a4e4a9def0b582f16d4bf": 2, + "23fbcd6d482e807f3105100b00d563f6": 5, + "c60ca5904a3b6818d67e6d2c6165ae28": 5, + "ab3907cdcf66a58072bea3ef4704fc17": 5, + "a31935bf257292636a316b6dd0eea61c": 5, + "03e18a839eb866c91a106a13e0f312aa": 1, + "13a43ca15941af0c33c1192515898f7d": 5, + "daba90498d2a8173e88225d982b5a0e5": 5, + "cec8d5647a662034b00d100b5cdc6457": 2, + "14bad6b10f530ea618ada1fd82a59d82": 5, + "f7fe678048d478c89bad1b5608201038": 1, + "d605513fbca41636167979526c3f8d3f": 5, + "102da73a700200bd500a0f49b6577207": 5, + "3bbaade3d0b9f0775b2297949887bdcf": 5, + "44d3de9f6a2eec0754baa5e7b808259a": 5, + "7b589597f45c062cf1fdd9d2704b9e68": 5, + "e34d2d6622d22384f306d4d7192ed365": 1, + "feec24d6c53a0378f6e6d525eea45d8b": 2, + "91ee0ab37780a0d15de479aefb459e52": 5, + "a6993e2db1e313cace841d4a56e43a94": 5, + "b66aafc378e6966c8943f052daffab69": 5, + "668c6199765e094d9e00457c06b2e12f": 5, + "e312726ae62bcf354d89c15badc1b68b": 5, + "ff8a8bb6a5031dd930af95d28aedcd7e": 5, + "aa4c8f5377184cd950f53c8e77b4402f": 5, + "185f899d9196cf8670fa88be2736838d": 5, + "5cbed5d85c4642d13aec078cbf90c235": 5, + "de221dbcb4f6070388939e4a8d819a4a": 5, + "77d40990b2fdae5d749727af8560c461": 5, + "4e9fa9004abd197a8cf797cafee37800": 5, + "5208e22f2e9618984d00d8aba4378820": 1, + "e8940a36bcc3d6fd3631ad43727d9691": 5, + "7f6781ea5c519e0ee3b4e824d3f0c50f": 5, + "48e1dc7893de3da73ef3c78727e20d9e": 5, + "1549302b15341e59a76c89efc8cc67e8": 5, + "b8cbebfce9b3128a54b554ffd96b6745": 5, + "db7b163f4fd5c1076d7c30d937dae751": 1, + "c411ad265db94873f0dfd02c3da84d3f": 5, + "ffbad3592ef6d4391eb3f7f540c12e97": 1, + "fb8110e9ec78f5ca8baa75558507dd0a": 5, + "6183b0803147092f9cef9df54660f65f": 5, + "941e95eecb18105c83517c67c2e9f0e8": 1, + "573758490980f6d5e2e70b9d51b29654": 5, + "32cd47323a9db8589cee998924cf08b0": 5, + "bfccb4879bded91f5b6bdb63c84f4563": 1, + "fd1549d8eb31eae5bf817859afdfd83d": 5, + "b07497b067f04f6d156b96bc65abc411": 5, + "95287a814eb3795d06bab75c5f23ad66": 5, + "d9380efe636a71fee6ee627f1766a332": 5, + "40300b27c8204cf48e31d524656f72c6": 1, + "530d9a466272976e2f19b5633a50c57e": 5, + "e598b4dac49184db3991bedf7ce14a91": 5, + "ac230d80c739d6ac3e44df055fbe5d16": 1, + "d737d9159c5b7103cac6b3814bc23864": 1, + "ccbceed0d65b51d7df6e8712a62c0a11": 5, + "ea4eebecc295a84c779797e99c9920ab": 1, + "f4bc584aa1ad6ec527211e2445bc1e75": 5, + "771b38f114f6e93fb2a1767cb35fd332": 3, + "d01e49be7f4e8f102bd2b05f4a799a4d": 5, + "91442ebfaa5426eef1fc20bf36677151": 5, + "0e0449c858a708f9bc169d67b194a4e2": 5, + "0c3a3c489e27f5aef79ddadd2b6c8af2": 5, + "cbe2781b41e2b989f77561398636f3fa": 1, + "376c107c426d7f07b68e5bba73821832": 5, + "095eca6b10d92b56fbef92f3e678db5e": 1, + "e53f07183a2210c820829c44f3a90d10": 5, + "79e77fab5b073167fb0883861bb6ffbb": 5, + "01875bb8c1d384bce04ffb79dcb62a53": 5, + "d1106d7117c8db64f3860c762cd634d6": 5, + "05a1c83eb8d38cbe04b5e55b5572c4ff": 5, + "5997c029fad5a4a15ebe77ed3c3ed75a": 5, + "7ce20bd0c59dfcd5b7be4fa773be14bf": 5, + "5a5751faa56a46236f5aca6d91771904": 5, + "0abcf83f77bd0390d1b21d441d8960c6": 5, + "fa9e409db76285bb153749870003c2b4": 5, + "339407b6373ab7dd7fd4e47df56184d6": 1, + "824ff6af4117c8db06690b52c7fc14a4": 5, + "da870f51f2c8ba6847f0a701890739cd": 5, + "5f728d8569f3cb0237906d9eb8ee9e09": 1, + "3ed4bb9f28e28e8d97883964e45ed223": 5, + "044a797358f8391f9201b6a15a5bccbe": 5, + "6ddc2f0d7a2a242fa7ea5f6e0e576f76": 1, + "16978694eef79ef3b2b7945cb03699dd": 5, + "05013b40a727dd55490da1295a66e24b": 5, + "393ad68df816e2e666c77804bebe1ad7": 2, + "0c17d7b146801b8be3718701db27954f": 5, + "69a72773589d29a45656523ef56aa982": 5, + "23ca49b04cf7c990b8a780025d85a12e": 5, + "7daca793cd130fa8399ea201a463bd87": 5, + "f18397b95e7089d6f4bd3ca0df41515e": 5, + "fc3e0464edc2b6e197e416074bedd9e6": 5, + "30e24d18543382eb1cc8012c117e2e48": 5, + "e4176889b8dd277d9b77aeba6bb160d8": 5, + "6a8d932d05d4324e82d4969827c3373d": 5, + "0f47fe873bb5ae77d03ecb87a6a08dba": 5, + "24f711bd76c941a8590cbf357a601a0c": 5, + "659350ae2fa2e3480590c32e645054f4": 5, + "89442eb5d75bcf6097ea60bc087e4b07": 5, + "ce279c8497297ee89e8a18f2a1f7300e": 5, + "58c825da503de62079dab977f5f47a0c": 5, + "4443b4ac2104d8cfbcf5be853cdb8148": 5, + "893c27261287c5bd1d22c4c9a353a0d1": 5, + "f552daa3b4e46b11b7733b62f0d743ab": 1, + "c98ae4a44d2237dc9aecd40e9ab8fb56": 5, + "95322a820da4a692cc3c1b6b36680254": 1, + "088feed282bb79d8557bae1dfe63103a": 5, + "0ec64a2fe6c3c68181c27af51ce1d869": 5, + "a6dd70986e282dd98f4467decc0a9634": 5, + "b724dccce3296b9361e3f8569ecb2864": 5, + "e3277f760f13939ecdceebd469d62f79": 5, + "9c878421df9b3f466c8b3a30b23fbc0c": 1, + "3240c0110500f85fda82d55d7514507d": 5, + "01809a80024979be11bc695679c72d18": 5, + "784611bc0708846df43172c9a0543e00": 5, + "2edd96dac33812c0f2878b28ed16d082": 5, + "24696bde5be477faccbea341f2d76821": 5, + "af13848deb92cfdc98a8661e2f71e0d4": 5, + "4a894fbd0e77335aa9f21f5b4ac31332": 1, + "a16cf27e27774ea99e64c52c225d3331": 5, + "a2bd74e6a757459483c9bf7ed8295dff": 5, + "8a11c571219a04fcc5d10c3c766d3a75": 5, + "90b9455a587184fa5d7ec220e89da832": 5, + "56d388cbb3ef5c6dbf4891d2a488ecfe": 5, + "32f35681c1f4b45849ef1533c6529b52": 5, + "7dfc9b082e67b179df8fc594d2ab1e8a": 5, + "d936c168a7b6f64331f26b6a6cd180d5": 5, + "5bede80feccdf41496afe3a24c83d628": 5, + "6c0a7b053162113e9d4cad360388f2f6": 5, + "3c56c3410de6137628170f49f6c52bb5": 5, + "ba01592f766151a2c7efb77a099110fa": 5, + "3a3cee57758a2d94bd5f160603e607d4": 5, + "432e551e803d65d031f040a381e64e90": 5, + "aacfa5c4e1a10e3e8cf79635a59d6caf": 5, + "604729611feb4c8c0b0e930a7bc3aad0": 5, + "e49e94f636b02276a5ed20d2788eac99": 5, + "4fa9409b332749f449555707705ba7b7": 5, + "83d05a73946a69a2a467a869809dc40a": 5, + "ca2655ff046fe474f7e49284c85ebfcf": 5, + "6536f89d712ba5f47777686f4789f1d3": 5, + "2aa5fa6d4d2a11a7405cfc49bda4fe9e": 1, + "5a8b783a93fe1adb53d7a6ac59c62cb2": 5, + "e99c13329177c3c5cb29badecd243d6f": 5, + "2b39eee9fa4d008a30c7e958a734ccc1": 5, + "07a21497f1461a2730978ab5d5ce755e": 5, + "b92f50259faf9fc05249d2761262804c": 5, + "fd098b3a369050aeda084ad803e867bb": 5, + "7bbd297e882b375040b8f128a1d6e782": 5, + "d1f7f09d84a3bf58b6d1f088e05f49ee": 5, + "35ce4d32e0983bdb49d3c1c4660cb81c": 5, + "90550d098ee1f0da5d363e84f3d3d03b": 5, + "8a1a3334d7768c78b62981d668233ce0": 5, + "641e462581d2ac6c6c3e6fd8ff04f475": 5, + "5aa092b53cd9a9f62c896adcdba20d6e": 5, + "8ca1e2d3315f24933d711fcf8b72ba98": 5, + "e2c90ff10839c5b00fb053bc1aaecfb5": 5, + "7801a856bc24d99792755a4308bba226": 2, + "cb447f13fb29a3879838b3b0c0ed38fd": 5, + "bbee028d024252aa97e1fe64c9d351db": 5, + "4680bebca85d16c27b75574fa5247950": 5, + "9110af4d5ae9b441a8efac19edcb4600": 5, + "bf56f1a20b1d9d207a42200e608ffaf3": 5, + "1b80d3d28f4715a68515e90f427a0354": 5, + "0d80afa16d94421c6f151356a9c76671": 5, + "2fee271a40ae5643710961a2b75d8ef9": 5, + "c135cf8769cb1cdcca51a8b4445b7190": 5, + "29b926cf01ad96f2b9e327755560499a": 5, + "a613eaf5ff38f53fe26df35393e2fe85": 1, + "4709edd722043e27b019c35f3ca069c7": 5, + "97a38778d3650ab906c1c9826dae2fe2": 5, + "b3b1e4b219b42d96bc21f8f8851b26aa": 5, + "fba9ce4fa57c88d8eecac5d98cdefdbf": 5, + "426c0d47441c9811047983a610ddf46b": 5, + "2100f726b4e542d12cddf0d1974c9334": 5, + "206ff2767470f2c6de34a739250f0590": 5, + "8397c02a12868544acc4d94588cc5ccb": 1, + "0d5f683a08547279a8f0c5d5e599353c": 5, + "17715c9caf5250161d4e70cdfda5317c": 1, + "f059e6b1f4d349d9ae556cb0ff832d0e": 5, + "cd91296b040030606929b501e8844539": 5, + "478b945c0dfdd0e2b43d21dd4e729658": 2, + "9a7ac6916f74929b0c2484d941c1a41b": 5, + "7ecdbc49db661b015be7cfe09c6f4c01": 5, + "9a0569fafd2ae8e5f4c2c6e512c99782": 5, + "7f25d7c7bdb3d3bec103a64ebbcec036": 5, + "d2f757f6cb2c2d779c7198da3fa78ea0": 2 + } + }, + { + "slug": "b_mindful-commit-message", + "views": 1764, + "likes": 338, + "likesByUser": { + "d4a6042f9fed9826343dbe48ffc733fb": 5, + "a85455252e82388ee95a92cd5435427a": 5, + "65fe9e79161ec641e61622ce3eafb926": 1, + "4b667b2ccc6304a50f97b3e6d5dfe502": 5, + "1d4e096bc0b934913208926f96a82dd3": 1, + "6f32bb2fbfe4a52140e20a23976134d2": 5, + "ffba5a7d3d12c3eb3f622f24fffbf8d9": 5, + "fcdf472a77c302f84c26d0754665a717": 1, + "7ed7c0f712ae25621cc274c140edd05b": 5, + "fe4ea3be0aecb87a08ef8f0fd9ac1875": 5, + "3abfef8b032e4b4238280fa335170926": 1, + "573b0af26f57c9b58606a4acbd216ef7": 5, + "3c09e4d9365932c39ac58f479193f40d": 1, + "6a10bbe2e113a7e91865f8e4adc3f0c2": 5, + "cf042a902272ed96f9fcda3fcd92ce0e": 1, + "30871c9e0772820d463574fd5bbd8625": 1, + "f61b2c2dc3efbed8389d987c2b6c9fc2": 5, + "36041a10eb5ff63e127ecf666ddd4663": 5, + "158914e74245f5d4056e304b85b0ed39": 5, + "a7f35aa60fb467ed923efc18fe391438": 5, + "e4e24f47f1dba21f9a781d5c4ad2401d": 1, + "bfaf07f60b5a3a855dc4dbdcd632fd82": 5, + "3cf8a2cfee923b4c54798fe626c2027b": 5, + "1defaf59ce425e83fe3b64271b78f051": 1, + "c274bb1f2156e3df8f9251de506d9185": 5, + "de934e2fcd63a8a728e254cb2cdfae11": 5, + "af21d064c97e71a89cece28c6e41dfce": 5, + "0a78bc49d7fa3c5f8a650d1960991627": 5, + "7457d0a9b09933d9256e1163b9faee18": 2, + "8ed622aafaccde1c6e3763b3a4f28442": 5, + "f46c7f32ed2c519002f6090f6ac978b7": 4, + "b7b9e838812661013bc414eb5edfc4e6": 5, + "aaacd62318fa782330483950f4427013": 1, + "6895cf4be083d7c7f6ed0acd4f884ae9": 5, + "4fb6fde215923f11de40771da66a4808": 5, + "6a422cfef35fa24f7ee9c5d7ddc2756c": 5, + "b2d585819becc679ae67713447babcea": 5, + "0c83f399113686f776b2a7bdb5b632ad": 5, + "5425475ea21677c8e363fd8eb3eacf4b": 1, + "102da73a700200bd500a0f49b6577207": 5, + "fa9e409db76285bb153749870003c2b4": 1, + "6c3af9d7e6586fa552da98d5384100dc": 5, + "c3af8cd505af7b940314a64ea2db531d": 5, + "e3d3a38ad9b28f1012e6473bdffb8c0a": 5, + "99fc439bb16760da2ad5bdb0b3669f80": 5, + "a0e7a5087910038d6d388d0dcb318ce4": 5, + "03e18a839eb866c91a106a13e0f312aa": 1, + "12ab5f4c398dfb60357ddb48bef8a4bd": 1, + "ae935f1e382f016d30c8dc1848edb2cb": 5, + "5dacc9eef49f81abb918c8ee1c30a4b5": 5, + "e66d59385a03cca0062c17fbaae27387": 5, + "d39641670a4995e880c060ca2509f02c": 5, + "9ef1ad1a48e8026a53b5c03433077e11": 5, + "ea946b59cc1224666a95674339d8f3eb": 5, + "34925d1788a5a81efac8a6fb34aa65da": 5, + "79aa8116b21d7afa37ab2aec2926be2c": 5, + "efa50f707e1154b75ad13d5e93b46692": 5, + "3c1a284478794502fd04f0f87d199fc7": 5, + "29e9291eaa2fedeb0f8fdd37a6f3501c": 1, + "1a9faa6d0c094062b39112d3c0fcbb76": 5, + "1e8cc78f7340f53c0c005c4f78f7be38": 1, + "ff73882215cf52fd7e7d5ab6f71798aa": 2, + "891320e9fd391b56c024e3e01fb4542a": 5, + "5f4794e0486f31b9e7645de2b126e731": 2, + "2154f8ebc319a36eb12151f455522917": 5, + "b1b9bceb689f1e581d5f35fadf27bf5f": 5, + "8b625cd8b617704586bb27366ebaedaf": 5, + "1a7c397d59021ab381e6b51b699ab19f": 5, + "983f7332a35fd1b5ea652b68635d3837": 5, + "1e42a06633e9d5e2805a4a258910edc9": 5, + "26acc9acf7615dc09ceddb242eb961a6": 5, + "4e7f83b62b9c8d843d271fa0da724eac": 5, + "8b72294da153bb3958da0162b2cefa6f": 5, + "cc3042888c9470575f1989c9000ee9e3": 5, + "b36e13fad64f19273eca6d4b581528b6": 5, + "6c69280e1719c9fb9a8eb5adc34630d9": 5, + "2fee271a40ae5643710961a2b75d8ef9": 5, + "c17e1f77348fba0fbfc9f9786538b6a9": 5, + "8f498b2f00b2fabf42467698b2b43b28": 5, + "3874fa72cf35ec5f56a2199c64361200": 1, + "db77762e7bfa8d494ca5a41b56d6d009": 5, + "b22bfd0b5cf156e40df3a957fb4e0b0b": 5, + "c731d517fba44038efcc5ee40dccf0c3": 5 + } + }, + { + "slug": "b_nextjs-fetch-usecase", + "views": 10529, + "likes": 567, + "likesByUser": { + "5db2cdb52c8748af58d9de17ca080e77": 1, + "b2d585819becc679ae67713447babcea": 5, + "f310ed495d257b9aaad64786522b71ff": 5, + "a1cb3012ac4e7cd863c1bcbd65e26e05": 5, + "cfae8028893c6807748859ca49a4b24a": 5, + "cbcd364da26140b48e367b03f6555b42": 5, + "9b43c98cba726ebf17d3c359f4264c46": 5, + "b15d1d211b3ad8bdf622fff5245f05c8": 5, + "f46c7f32ed2c519002f6090f6ac978b7": 5, + "ca3d7583b038ebf0a2a35a78c3b1244e": 1, + "80b352009c8cb4306906e846825e1c5b": 1, + "4c828b6aaa952207cbf9308fe1457d98": 5, + "8bd8472e94478daea562706b01cb2d06": 5, + "55021362e14a1092a044fa00b6ce675f": 5, + "67002c612415c164f85227e597bab36d": 5, + "40f1668155901376d4d938a79e1900aa": 5, + "136af78085d80c9bc2c637801fde9dbd": 5, + "f3d385ac44ad461f4d102976fd7011e9": 5, + "0e27c506e18b21d01b64b697f02abe97": 5, + "f075f1e23fb35f8306b288745cca43db": 5, + "c778282b22fceb0fe5aeca4aacc4938c": 1, + "4565ad65b5fb68e8fe4d8502832a1596": 5, + "2155311b47472f5d2ca53b316f0d36b7": 5, + "d50fa18ecc5a315221fb6be64bf30c1f": 5, + "b2eb7d61f8f6011f6c4cc097772ff2dd": 5, + "22ab0b368d70206c7edaca792f232b4f": 5, + "91b75f18bec9c8bf73bbf2451bb1241b": 5, + "443490630e9d5efd54b283ad4ed1fa1e": 5, + "6a422cfef35fa24f7ee9c5d7ddc2756c": 5, + "b98c90403cc6bcd4f7c4cb7ec9937946": 4, + "bc03d9c483d6202d2d8a3a7d679ce124": 5, + "0baa78305abd71efc82b334d788fa157": 2, + "d2ddad1b1f1132a9debb46ac8e7906d1": 5, + "df03252ebeca47d0eabc63f35e15b732": 5, + "0e5448f41aeb572b8fa71247a01b2129": 5, + "466ff15e62f069f842c8caa4a0ec4f25": 5, + "62dbed9be70151984631dab8fda96f8e": 5, + "af1ae072238e2bef8e13f7ff04c8e60d": 5, + "d781284d85b0c2053eec889e77f82ff8": 5, + "2c277218a72477d66003dfdd9ae052e3": 5, + "9c1fd310e54370460845347d5d0d1b25": 5, + "fb2e73f3f930d622082c93ed80edbf78": 5, + "7e5a22f75ad69a5a44aa4e1017ba0120": 5, + "13d18c6abf50efd7fd04d9f849fba1e1": 5, + "f31f49cf76434213e60f9e51e5ce27da": 2, + "50166e8373a28d9b34a0a07574620f53": 1, + "441f4ee29453f502721450e5713c8093": 5, + "5dacc9eef49f81abb918c8ee1c30a4b5": 5, + "6ce63b1c94f3c06ef25cb8e347ae8cee": 5, + "ca897c7892c53254e035ddfae0beea53": 5, + "89ba2342f53f195d018c6487b2a0e4b6": 1, + "237be6c3f20ab6970ea5c91e67241076": 5, + "c011601f11e05b7c42ff5b1f64faed01": 5, + "98424e737b2974ec7e8cfea62b411266": 5, + "91aaeaab9fda20946b707d3b49416098": 1, + "db7b163f4fd5c1076d7c30d937dae751": 5, + "ffbad3592ef6d4391eb3f7f540c12e97": 5, + "a8036ff9de67598924794db198104f44": 5, + "2fe9fa41bfb482c49712beded367073e": 5, + "e0e7a20a82ec62dae2a46e0962b124bf": 5, + "5042e734ee1320bce23f28cc1798a763": 5, + "ac05a4e7eabbfa6a55fcff3494430374": 5, + "3fb8c4476e8dd99fb96b2d2ecc72dd37": 5, + "bfccb4879bded91f5b6bdb63c84f4563": 1, + "d4f220fe2a02f13883e1911cceafe0dd": 5, + "44ec1b9b0a8118c44d6cf5b88fc05775": 2, + "a4f2e775f736ebb798f6fb86692de700": 5, + "7ff1cf2f06fc6646c632b445c4ec0d80": 2, + "39a9e8d3005b83e467f20c7379eaf5d1": 5, + "e598b4dac49184db3991bedf7ce14a91": 5, + "8b2f0fbd9c1ee87b8e325fe4c28993c4": 5, + "997ec78e9a6a780088b7d67bf810cb1a": 1, + "f52a3177223bae5c5ee7fe2d5f6a62c5": 1, + "35f8ebd44a0ccec0a7a7334d9b673b2c": 5, + "04af39c01bf57d93159f274b4d9b7988": 5, + "fa9e409db76285bb153749870003c2b4": 3, + "5a5210446e87c6c9fb2fe3760806fc6f": 5, + "9b9c49936304f312346e11d1f442c82b": 5, + "69a72773589d29a45656523ef56aa982": 5, + "659350ae2fa2e3480590c32e645054f4": 5, + "58c825da503de62079dab977f5f47a0c": 5, + "6e9db86a20128c7ddacfc0743fbe8e11": 5, + "71395877a3ea80f6766634757f97f547": 5, + "48685d53f520b6ea352f493be091b524": 5, + "aa513763fda16f07ded76db01ce699fb": 5, + "61d31bd4dbfdac23d6bca5e5d1f3618a": 5, + "b4a254fd330a541e47f22a78bc873e0e": 5, + "2f8f8a2b2df00ef91b86342dbc2cec5d": 5, + "481c9d19d0e167b36e8ddba665a963ad": 5, + "66a413b5d0b2e8346a181c6a9cc31d09": 5, + "4fb6fde215923f11de40771da66a4808": 5, + "32f35681c1f4b45849ef1533c6529b52": 5, + "7dfc9b082e67b179df8fc594d2ab1e8a": 5, + "c05902cefe93655999fd228f0d52736d": 5, + "889892652342165bd77c041fd1fba33a": 5, + "458494be333a0e8277dc5530ce5d11ed": 5, + "9615bd3d203fcd426240765bf4d5529f": 5, + "28e3b42a2d75edc9ae14f3951399bc9f": 5, + "df692dae78b5b220da0f4140ddc2ea5d": 5, + "4a69c4b0c55dee235340f003acc25293": 5, + "ca2655ff046fe474f7e49284c85ebfcf": 5, + "07a21497f1461a2730978ab5d5ce755e": 5, + "2f32dd625ae4edb0526bdb0d1556b881": 5, + "90550d098ee1f0da5d363e84f3d3d03b": 5, + "641e462581d2ac6c6c3e6fd8ff04f475": 5, + "6e7ab456cf8c80a415b9e31f6d855297": 5, + "f4c8f40ef527cf40111d32124fc86c73": 5, + "2047f848dcf3a5e0c8a3c58e7781bd0c": 5, + "1bd70faed6367b6cea2b5243c7bd7664": 5, + "1b80d3d28f4715a68515e90f427a0354": 5, + "09704d30dd68511f2d3dd486ec5f8d99": 5, + "0d80afa16d94421c6f151356a9c76671": 5, + "325c46882bdf3f63e1d532e625760464": 5, + "ad57f99f79a89eef0e6d853c1422ef58": 5, + "635b4a9e9a0564a7352e40aa58216694": 5, + "da21a340dbb034fcc3676006358fc340": 1, + "3b67ef9ea13dd6fbb561d163706083fb": 5, + "0093cc2fcb37b3e0ef5b0b9417580ecd": 5, + "cf19916095037d2f81cd0349be38a961": 5, + "9370e984ae9ab714b75d9a71581a2eb5": 5, + "e0ee0ab2c2ecce6fc89944408ed13af7": 5, + "39fb5f06f42e7fb2a3c5e23738984cec": 5, + "839f2b6c4da078f409b08d92077e155a": 5, + "7f25d7c7bdb3d3bec103a64ebbcec036": 5, + "2c6fbc08073aa68aa30399c5d64757f1": 5 + } + }, + { + "slug": "p_voting-page", + "views": 415, + "likes": 54, + "likesByUser": { + "06def7938e2266aaf97b1058481f1bcc": 5, + "7dcebfc58d22a8fdccdaed6b169d05b0": 1, + "82afa705e6dd93e3c7df08287e2c5772": 2, + "096fc9593076f15b782403fed342a386": 5, + "9c5c63abee863ca9fab6952a17cf5628": 5, + "7fef60a782bc6692264d40524e5b14f7": 5, + "ea7c1c9310c124038e95d6c1fd63a79b": 5, + "d1967a7c937bf1139c57c2a29eb34627": 5, + "5bede80feccdf41496afe3a24c83d628": 5, + "c294e112fcfe6e8a60f99bdc6f044471": 5, + "ad803ac07ef84919cef6310ef7655e24": 5, + "58b3cca6b91169b9fa087d80da1ef0e7": 5 + } + }, + { + "slug": "b_react-loading-state-pattern", + "views": 8142, + "likes": 331, + "likesByUser": { + "b2d585819becc679ae67713447babcea": 5, + "8a34d0d5b8b56af4fbad641443268d8e": 5, + "afd2ea54be2f74546fa9995975c7a119": 5, + "fa9e409db76285bb153749870003c2b4": 5, + "0b3a518b99444ab37f0e9c17d736c645": 5, + "75ab9c9dabaae4257aaee851790e33dc": 5, + "345ccc3338276fd04288dc32b8a075b9": 2, + "02d85bec0c0e28c2308e3ebb16a43987": 5, + "108b9356dd787e606cc3a19827a61d46": 5, + "dcff713b57e9574909f17677f214d456": 5, + "f6efd8f72cc05da7c27b180a9f0b64c7": 5, + "6c19ef525388d326473fc8dc6a0e9438": 5, + "21a25a19e1586bfc2728aef9d9237ead": 5, + "43212ef70dab10034430d10a416f317b": 5, + "f99bbf5c52b9f6d4ca4ee04251b162f7": 5, + "343671201147e167b332bc1cb03c698c": 5, + "7dcebfc58d22a8fdccdaed6b169d05b0": 5, + "8a8a30ef41165f17e6276032ef8f11db": 5, + "fce47993d85ffadaacdf3b0e27992618": 5, + "ab30b9681efd58bda1ceaaca2f6c82e6": 5, + "18ed610e24c8fa905f7ab353da8a9df5": 5, + "fd83bf2b129e510193626a23cc636d41": 5, + "1639cfaca6a71c12527df48e778e18b6": 5, + "bf35a011b55d2d2de37e0fce61e7a436": 1, + "81d2f592a026884e42438a6c495347f4": 5, + "f17f41fb39eace8f4ec9e36ddd479809": 5, + "71cddf58f7dc6531650519af3bf2d13c": 3, + "484a6dc03f756499c1eab8a013b29954": 5, + "5fb05b2d2263fd8b855ccb3c1286fc41": 1, + "ca897c7892c53254e035ddfae0beea53": 5, + "03e18a839eb866c91a106a13e0f312aa": 2, + "f1f5e808bab6feb6d129f1e50e2a7193": 5, + "1694e139ff3951466ca4d06dd0f729f1": 5, + "9fe3c17bec6a6306708b453211a8f5bd": 5, + "c3af8cd505af7b940314a64ea2db531d": 1, + "420bf5b26d07920b2186b90eee96a32e": 5, + "81eb6ab3aa7518819e3a25aa1c0c2ac8": 5, + "1aef148fba584d57f9c152734d6518bb": 1, + "bde080223ccc17b0fb67e12bfeff95f0": 5, + "dd52462af3ad8f007dbc0248fe2fa0e3": 5, + "a8c27182b467b9fafc0bb1e2256c4634": 5, + "790a899503cff66a02465568c7ed79f8": 5, + "c065c44f4ce10c922b88ab9e89291cc6": 5, + "cd55070bcba9f4a84d58c406a9919f5f": 1, + "0a8a0ca7f89e9ecd9e60bb7280056576": 5, + "185f899d9196cf8670fa88be2736838d": 3, + "de221dbcb4f6070388939e4a8d819a4a": 1, + "5687d1e83513845a23d137609a18897c": 1, + "77d40990b2fdae5d749727af8560c461": 5, + "f96ba99e3f302b087f01830e5493900d": 2, + "f20e173ee659b100019302b6d3d31df6": 5, + "bc5e1c7acdf04e751809b2e178ee4c10": 5, + "bfccb4879bded91f5b6bdb63c84f4563": 5, + "c638ae7b28cb8d5bba6c4fc2d70ba39b": 5, + "40584bdde3306b39c446d266ae9198f2": 5, + "761d268040d08503e19906fd5f6747cc": 5, + "dea3f32ed1b4495474c9a3038edeb228": 5, + "eff005752cdfae2d5cb39b37f24245ed": 5, + "23d31a2d44c002e8d2277904169de64c": 5, + "f480e64aa19e7a15454ded0c10cabb03": 5, + "7444f3c8da4b51e22b9d6edbc0d4157e": 5, + "b3851e37b606ceaae23873b6bbc5ab4e": 5, + "6bd0e64993afc643bf301ff66cc67fb1": 5, + "1a16969f1eee33d34b3db37a9c8998d2": 5, + "ea2df4bb6a88a9e030610f5673f42074": 5, + "6dcafda3e9cd6fda05d71d4a89f73f48": 5, + "ff1077984cf68563186bf5a733f51512": 5, + "905521ad912c0f104d129dded3509edf": 5, + "bef18c4bb719de8adc77ee573074471c": 5, + "83323f1baf0a5208f15748fb32fc799b": 5, + "04f49d54555ae241320e3b9708d64ce4": 1, + "57abba517bfcdc461b1841de856495e0": 5, + "26638eb76b61f7aa3b0ca7538c963e54": 5, + "ce244064880ee7956dce86c2fbb7c7f6": 5, + "922043d8d2921d9ebebd545f1ff8ac49": 5 + } + }, + { + "slug": "b_react-core-concept-rendering-state", + "views": 2806, + "likes": 214, + "likesByUser": { + "19addb2a8d06be76d82fd8dca1c1d869": 5, + "34d984f837c9787f7d9c2191055120e2": 5, + "9c719e0fc372ccbecc16bd662204eb61": 5, + "763cf8a2cbc3a745e450c370249710bf": 5, + "f12b0470c87e5d487dd7330788b1cf84": 1, + "a1451e0e981d8fbff3fd6429750f32d0": 5, + "096fc9593076f15b782403fed342a386": 5, + "ca897c7892c53254e035ddfae0beea53": 5, + "65634f680d1da6630b0f4619335737cb": 5, + "a41c794be7136f054c4bfc2028adc209": 5, + "9207eaaf29b7c8d31112d77d3ed0c43a": 5, + "0f969dc7a9f819b2250e7d28950001ac": 5, + "68cba654c522427616085aaef208661a": 5, + "1694e139ff3951466ca4d06dd0f729f1": 5, + "644383e0cb57c59976bed6dd7fb04dce": 5, + "4ec88db6a431e3bf6b7c410df12f25ac": 5, + "1f7c0bf99b6d08a9153e25651961cde4": 5, + "56a233fa7a3a0d1de1880086f4536938": 5, + "2f133424b914aee35b3388dfeaa551d7": 2, + "e733c8ece1423a2379beb108e7d73a47": 5, + "6610631cf09e29b7a9f44915f07def2e": 2, + "d7466c27688e427d134f6d868ec7adb0": 5, + "ed94e3edec386106bfe11fdab6854530": 5, + "ef6e54ac74597acd5ef7835e00a38522": 5, + "5b27dc1f685337158d95222167e1c46d": 5, + "16ef0247dfa8b1c2a83137bdb2f6a578": 5, + "2d61e4a60c5a9706d3b282b3975d19ec": 5, + "d628b52c9f3410fc2b6f14aef948f12b": 5, + "93b90766051d657c7000137984e8ed55": 1, + "237be6c3f20ab6970ea5c91e67241076": 5, + "ffb2693a68d22bbe9025c96cc6326b9b": 5, + "ec440a2f71d26fa05035b80ed27426ca": 5, + "673b90d112a02bcefff7e0447e4253ea": 5, + "06461f908d3c395b8b748fea9345c178": 5, + "44fc3ce9a436d613709d19b23d64b80a": 5, + "ff700e4d8b2c11ad4522e995e3fc9968": 5, + "7ae901fd5cc3ccbf1af3c5aebe17e92e": 5, + "7c4e518ad1080539866a6203dd25d361": 5, + "12a06319141f735eacf955a5afee1f76": 5, + "30c6b20edf20461c6643d5c429977a48": 1, + "01ae681c24e7a719b8ab4effd7e0e5fd": 5, + "17b0b119918591cc1db2b15b706f6860": 1, + "37591587c05f246528a49caf41aad7e2": 5, + "20537b2f0d4b870210b6245210b82a10": 1, + "74a6f8dc0ac11b269d10080118c42994": 5, + "fb29ba1751934e64736764a0a59de6c5": 1, + "b15794980df523278835f621b6b1c638": 5, + "ad3ffbbc08988e22c53b298a2c15e512": 1, + "fd7756fa7d1a749bbe3477abd83f6c9b": 2, + "fb32cb16f19054aae864c9d55b3c5d1e": 5 + } + }, + { + "slug": "p_seasforus", + "views": 1658, + "likes": 279, + "likesByUser": { + "096fc9593076f15b782403fed342a386": 5, + "102da73a700200bd500a0f49b6577207": 5, + "e7976bb43750fd75b9d42f8ebfe10c47": 5, + "8ec79534c5a2047785e23e6056e36e13": 5, + "b601732d984af69581d55ef22a7f5335": 5, + "b6cba191e24395dcb3743cfd3afb8d8f": 1, + "d6217f0c7d7de5a4206473015473f290": 5, + "41c258e7e31bd0f34a19ff6300a8705c": 5, + "392f86836e9e6338c25a06b505d1ff1f": 1, + "f37c39002cfbf04a3a2c7fdc6927bf17": 5, + "320070ccd0147d1a358efcbf4a0bf6c0": 5, + "c124bf979df9d3efaf2a275fc61f1c06": 1, + "4a5e12e14eb4b9d6e80bd9276a02926f": 3, + "140ee28a4995daaf36f021e5b2c8f502": 5, + "421bbcc77fea5ba90b236e0a873e36e3": 5, + "918282dbf88f4c665d456a7fc9bc3cc6": 2, + "4e60cb948d0d335fbade9e60b1df1191": 5, + "a9f5f7fe9d94792b6ed24dfff7d78b03": 5, + "21fb28c0d339101bddfdca41182e2318": 5, + "1703df359dc6f152208f00340e7880c3": 3, + "4d49e97b6a5e4921b41ed8d6d69edd5a": 2, + "8ba3c18531496bb1eafd0f4390f94e4f": 5, + "0b200dc5b5c0e6bf1dcb67bd5611b5ac": 5, + "dc8c0c6a09ecdf69dd2c1982607ddd30": 5, + "a9e24e55d3c26e2d7ad12f5dcf4cceda": 5, + "ef7895e97ee03ac23dbcf0ac6e254d0c": 5, + "e7a6887025f2452335ac39ad0870f482": 5, + "06a5d12e1ef1e0a1894c573d4c7b8ced": 5, + "ba4906e3ae9d4445be71aec9a9e00f24": 5, + "50ddc89ed8013158b7200d809f1964f8": 5, + "0b667e555c670daed3975dd5cfbd278a": 5, + "82682d46aa4b3338fab10e485f938b43": 5, + "c9f8f96d1da7bb0ae9d6626081a4d2a7": 5, + "891320e9fd391b56c024e3e01fb4542a": 5, + "7b3d7ab2371dbbf2a5eeae95de12dd5d": 5, + "205f30c66956fdb162102b5e6889f08a": 1, + "fbc11f7ba72b7b8be5e14558a7dd56b4": 5, + "7794b516dab80e1a63ca09511247ae38": 5, + "06d01674f7ffcca95e938d13b9d30957": 5, + "17c2d10b133f25300b9b0ceb92c177df": 5, + "ec3271cd5dcaac5371570901c8a2df6f": 5, + "c0e6f3716dfaf527d7e2158d08cd3481": 5, + "819cea97b7561a5c457e87ac71e2605f": 5, + "38fe622bc448600b1870d3fbed8d9eca": 5, + "6db9ae59d6c07e9e9ad7655f0c376003": 5, + "e37e8fcacd56fec10f19842a4491f65e": 5, + "f0cbe009c84e2795ceed48dea363952c": 5, + "663883cbaa0da4b25f59255118c35488": 5, + "983f7332a35fd1b5ea652b68635d3837": 5, + "536bd0ff8974cf7de9337aadfc4ea7a5": 5, + "5f6ac5b4722e32e9c08e33524113ca8f": 5, + "26e68e8f9597130d98620bd9a59a1c6e": 5, + "e57e450f7581c66168708cea0ba7abf3": 1, + "728f661c3a5690c26c8aecacd4f9bcc2": 5, + "2fee271a40ae5643710961a2b75d8ef9": 5, + "30de5ff5aee2360b9aa2a4b41d7fefd7": 5, + "fb160f3d6c64a5a97bac056cb9c93fd4": 1, + "fb913e6894f3702d413dddeeaf72dc0a": 5, + "be0c5c83c07e6f92c2d50001738e66a0": 5, + "dc6b154d483d1791a5e6e2033752f9a3": 5, + "21585418a7a8f15354c3bd9c61dc5e00": 5, + "734676855055927db100b1f7483de803": 5, + "f4640ecc526f4b2c07531273e4e5653c": 2 + } + }, + { + "slug": "b_nextjs-storybook-tailwind", + "views": 24177, + "likes": 664, + "likesByUser": { + "82a62a32b94d12beccbd86bcb9eec6a8": 5, + "6a422cfef35fa24f7ee9c5d7ddc2756c": 5, + "02e39543c9c22fbd0ae34d439375f975": 5, + "096fc9593076f15b782403fed342a386": 5, + "9759984dfcbfe0c82a5dffac20ff4a30": 5, + "0fc39be85534d55f9b5ab55f11b28784": 5, + "225ddf455e34a1ac93efe76d8e107302": 5, + "5c766c10c51474c56d975e5382855588": 5, + "e462964659e93e121db2b85256fa7eee": 5, + "28c302376e8fbefe907c3191006a763e": 5, + "febe407777fa37e93c59cffcc46fd1db": 5, + "118628af74bf37368c38bd12e2f6c52c": 5, + "b093d506d29b9c56ee3e36e59873e215": 2, + "b4c9b884cfac97b315fd3353b087dc9f": 5, + "dfbb124706b88ef68daf0bfc29632f48": 1, + "ae08fdb60aadc0a8492c1effa070396a": 5, + "bfe3d284569085a0c1160c45323d698c": 5, + "32a56eac7feba0d706e9c1aa91ff2b1c": 1, + "b6ae44156a65ea5e554fd3113218d0f5": 1, + "bceda9fe6026c372724c4dc90fb3c34c": 5, + "032889a16b9bdf54f620061fd781195c": 5, + "49d612d9fe1094db327302f86e23a921": 5, + "441074a04e9d7beb78b8356a3d2d2c77": 5, + "95d28afdceda394db97e48e340368244": 5, + "52cc4a37f872bf3beb7a6e5c225cb163": 1, + "5b291abe933f4723dc31eb7c2329c66c": 5, + "bc5e1c7acdf04e751809b2e178ee4c10": 5, + "88f1b91e7433430bbb0162fa5f7d4853": 1, + "9d2d7751abbb06bcb7f1242d2cf65c85": 2, + "0377718601d53c033977f51745518fe3": 1, + "28c2419f3bf796a3539c74efe808d3d3": 1, + "b554d32bcea3377a2e2328b09235adfd": 5, + "b0d0d96814464b3d40e0ea3279a12895": 2, + "ec440a2f71d26fa05035b80ed27426ca": 5, + "dbad0af971cf13cab3b5033bf5b97724": 5, + "b761b789585f14162c362c33294f3e44": 5, + "24ad6b6c9ea645a788bee39600cc1651": 5, + "8af883ae0218647662733ccbf8f8ae49": 5, + "5e8529a029781b384d638b2cbee8a205": 5, + "bb7b085e31655847adbda4e05842d12c": 5, + "2ecedc19842be7a8ef3f0b811a8c2ffe": 2, + "34fe7dd5003080ba10796ec46f9ad496": 5, + "d002b9dc48b4fa4c5e612a21afb1bcf1": 5, + "c0b73f8627dd6b87c5f7ef6d5577741c": 5, + "807e80b74c15916e266949d6c41abfc8": 5, + "9902e4cc4b55d7e3d74b452beb3aa143": 1, + "c0e0685569a8f749533def6be1f0fbfe": 5, + "957104db984fdc94ac85ec51ec79c1ca": 5, + "be5c7a145e6b898ad6105e030d83b670": 5, + "3518681099696f006fbdbfb03caf0f7c": 5, + "a34faff088d28aa04b1853a73583a935": 5, + "d5cd328e0355733fc9873ea00721f19e": 5, + "00c02682479af1d9514142afe956e624": 5, + "4b1ffe6edccdc3e97da005ce0331c8ef": 5, + "1fa759f1fb47c4e75d97d47748cf01c4": 1, + "089032180e914f626f61d3dfb30620b1": 5, + "3aa822a2c8258496c26b978ba12b1f2d": 5, + "aabeb30d30d8dade0e5cbb46b88e546c": 5, + "7ae901fd5cc3ccbf1af3c5aebe17e92e": 5, + "92d1ebd2890322a889303d1928fce211": 5, + "7444f3c8da4b51e22b9d6edbc0d4157e": 5, + "e5cb9e4155465a93159a0ec1b9a04634": 5, + "0e5ddaa310a7d6b068aabdff55d2f4ba": 5, + "c512dd1186bab26e703ab796f646a992": 5, + "ec21517f2a99d156c771478160b2b4eb": 5, + "e565940e837525ea57e5713567cbb76f": 5, + "dea3f32ed1b4495474c9a3038edeb228": 5, + "ecbbd2f1334280dc3995c0bf17139d64": 5, + "913bc1167532685632a2e0b3c86497ba": 5, + "b35f736bffd6672bd2b55d7f68606e67": 5, + "1e264401f8e18dff19344186b0575781": 5, + "e62427ecd0f3c55968381a67d4f67479": 5, + "5a33a48fe76c8473143c5c8461b63659": 5, + "e492aceff481c9686a88d5855798bac0": 2, + "a2663c89fc6f7249fb5adff939deda7f": 5, + "95b281d1e702331bfbfb13aeb850b85a": 5, + "0e7a2913eea5259b2df40022bf4731a0": 1, + "b307d39fb8082f7b54bf88c0cd0df480": 5, + "97b406ce586066e46b6e556c1e2dda08": 5, + "deaf418859696cf0d8f2cd60d795b372": 5, + "af0fc50bbd8ec051a9f52d037b9f2a5f": 5, + "db717675f4008be0a7bdb32ade886caf": 5, + "31f9a55f3a4d3c9f3a938f4343d1803c": 5, + "f8656b7d1aeca80d2901889a87dab360": 5, + "786b09660f65273b58e6f537207c049a": 5, + "f0fde077d50048a137b59920dedf31db": 5, + "5f0ceae16a9aa206431567faa69626d7": 2, + "74dcc2bb6261aae4d4788c920ef38103": 5, + "2989e80716ac9c5240a393e26d9f2d97": 5, + "3084463717cfcb441c86c7b0a30b9f00": 5, + "b8c46c33c8067b09e26a73de3de69e38": 5, + "fd3e67f217ff5f00f7a81b7f7e5d0acb": 5, + "edd58cf95f37f5912c5a2affdd31f812": 3, + "bb550ce92030989c388a6a51a283b7ec": 5, + "830743a1f54c589de9c0a7ddd7145308": 5, + "a4de7f55f7e1c9cb9c791076bf238155": 5, + "34fa0db982c664096d946259d4fe4c15": 5, + "ee1771c811ce53228d15eaa4e91a4648": 5, + "f2c2debb23df42786f52371a5fd37677": 5, + "cf4f7a2c3e0b79d44f6ad797f88d91c7": 2, + "3791cbe67714b8d42e21a53f6a3a8468": 5, + "4a3e71a2096191127f4b558983a74f16": 5, + "d035eac896f2ac8a442974d3038c9880": 5, + "e9f09f418c48dbc8fd6db2dec890bc05": 5, + "dafe022e676fb0bc4687ad3546c9373c": 5, + "686a282cc5877f8bd05cb0d0343396fe": 5, + "c9bc80dcb06105176f2e1cd7c50ac96b": 5, + "685c175a7d4a31c256ac66532b5b1546": 5, + "536bd0ff8974cf7de9337aadfc4ea7a5": 5, + "25942f567a337f54e43339456c7ac7af": 5, + "c357c0cea63b24ce54905711601904c2": 5, + "f2704ece188bedac05f34d8d7a4e8d37": 1, + "e3850b2861e1a9c7fb5894c6712a0dbe": 5, + "22f54088a942ac34ec75fcd9c7662d47": 5, + "40de5c528caed8cab47d868992332fa1": 5, + "7d112507a0d57e11b1dd98caa2b1abc7": 5, + "eae1ccd2cab367141d2130f075072a69": 5, + "ab01667452ca563732d51e82b72808d2": 5, + "657387f2df273b30acff950201a662ec": 5, + "2fee271a40ae5643710961a2b75d8ef9": 5, + "f6b918f583249415542bc14bcffff16d": 5, + "7791cfb616a17e98c02fadab7eb80d50": 5, + "dd132e14c5f75e832f776d49f0442a61": 5, + "5a6636b12a202b785733c14705be88a8": 2, + "afb9957509028d4bdcfcc3b959449f9a": 5, + "e0bd666f752c02af0999c525338c0bbb": 1, + "ebcbc1621d56beff28075988d961de26": 5, + "69e63adff423105237ce34ab53c6d1e8": 5, + "1b39918b31c11e2d1997e1a78baeaedd": 5, + "08fb647b39ed3168b13530510415963d": 5, + "eef894d010b6734cb8d0c5171b2f7aea": 5, + "467bfe00947a859f99073fc27f812e85": 5, + "8740becf3e0e6048be789e0634dc4859": 5, + "98e642c1d2c21d21b215a4f16e4fedf4": 5, + "26638eb76b61f7aa3b0ca7538c963e54": 5, + "3eeb7fc5eb90333b8ded38dacbe959c8": 5, + "21585418a7a8f15354c3bd9c61dc5e00": 5, + "a934b1c8061afc0764880d254fe6695a": 5, + "f8f3fc4ad85e86a9fd3966141b425007": 5, + "81802a3a761dfad8d38c5c55375bc606": 5, + "cba63bb0300ffca377454d092003b00e": 5, + "bf96c47518dc8ca81a3b0143e43cd4ed": 5, + "1da2549257c1c7797709f56a9009f0b2": 5, + "1d3df6d770587ff674c12e6b1051eccf": 5, + "2a3bbc01cf0e3dcfca659fb6781dd6e2": 5, + "3fced8594de41ad6d31ffac5f79dfd40": 2, + "46afd63301d3962abb8b616b44f7936c": 5, + "702b2c9222b346784b3c2bdd24227aab": 5 + } + }, + { + "slug": "b_2021-retrospective", + "views": 715, + "likes": 135, + "likesByUser": { + "096fc9593076f15b782403fed342a386": 5, + "5c7ba9ea2dde3776c98784d086e41643": 5, + "71cddf58f7dc6531650519af3bf2d13c": 5, + "746a075f9daace00ad2fd651324dd191": 5, + "3c6b1af3aeb7eda60a483f4c4274dc07": 5, + "dea4fff8b2297462884a498f6a1a28cd": 1, + "7dcebfc58d22a8fdccdaed6b169d05b0": 5, + "29d29545a1d2d1682387754c238ce1e8": 5, + "d57a5d884198f696ba97bdf23aff0993": 5, + "6b900e277bedcedabaa4a59955242f6b": 5, + "cd5b12d865ca7208a1fbd4f791965221": 5, + "9e4945e83d389201631683fd85b14dac": 3, + "352ceeb3f84c38f61560cc68f194a818": 1, + "e2ffb9bc2e5e2e04f766ad3df8b2ad53": 5, + "d398941aad4e8fcb124494f6e849dd01": 5, + "102da73a700200bd500a0f49b6577207": 5, + "1549302b15341e59a76c89efc8cc67e8": 5, + "c09bc69542b56ab5ef5eb1ae3ae62c2e": 5, + "1b56ebcf46a3a21d039acd65026f975e": 5, + "a59d8393cb965f913fe0b1488bca9d9c": 5, + "9c0bbd1cb4cf999fc3784588923a7b5b": 4, + "3aa822a2c8258496c26b978ba12b1f2d": 5, + "b125f9be5c97e9f89f36b40bd0eb51ac": 5, + "6bb884eee037671752bb73dc49b88aec": 5, + "e029e3113c5fde5686c4cefdb92bd6a2": 5, + "124d1832545c498ac00d22190dd8d2f3": 5, + "09ae744736295bcbc6fed37d3ed93c26": 2, + "85fe82e274a54e8a62e566392ac67151": 5, + "a1cf869b7be6b992bbde5e271f6e2983": 5, + "0219d778d46aa6d286c3ba67226be810": 3 + } + }, + { + "slug": "b_one-stop-starter", + "views": 6890, + "likes": 435, + "likesByUser": { + "4fb6fde215923f11de40771da66a4808": 5, + "096fc9593076f15b782403fed342a386": 5, + "5d92fea30c0ecd616474cefd42f0e8c4": 3, + "77d40990b2fdae5d749727af8560c461": 5, + "426302c87f7f9007890b91ac0b99dc62": 5, + "0dccb19d060a6aa9063ce338e8aaebe7": 5, + "dc83d44ed072a38307d281b1f3108844": 1, + "0229e1b593758fb7136f85025ec52213": 5, + "8c3478e94b9c256239be23ee161f84b2": 5, + "5a78b700d1ffac2055d60a372cb6c32f": 1, + "2ffffae4471c7f6b03fea8f181b17484": 5, + "51e451267fde2123e0c07857d872c656": 5, + "d398941aad4e8fcb124494f6e849dd01": 5, + "4caa4300523c35742a8d1285fecf256e": 5, + "17b523c0e73d168261bab243b8d7279a": 5, + "eba39b43854d12517869060917e29373": 5, + "ebb262c821e4202f7aeff26ee8fd09d5": 1, + "66fd61f774f73b890a1534e23a6e4514": 5, + "cd4f9b3f6c0ee3ed3808664a5129c76b": 5, + "62e200032794dbe080d1f4ea83cd8ecb": 2, + "f0f9949c91a4ef06838e4f8fc09229d6": 5, + "908945ecd88e90ed01cbe06bf3b2efd3": 5, + "2cfbe2cb5ff12155116a97e55e38403f": 5, + "3782ba240c2fc1dff5e6b86f6c62e1b7": 5, + "d3040648817f6e4c3ce202b4f6f43ddf": 2, + "d39641670a4995e880c060ca2509f02c": 5, + "a78fb2dd4d8626d09dfc35e86cfbe5d1": 5, + "3f12cf371f795e191b628c1c6a9ee638": 2, + "b6b5b35f5504ecead5939ae4cc3315d0": 1, + "bfaa65e584153c55470845dd3fdb2c54": 1, + "e3e39baa913e6b93c249381abb398faa": 5, + "89fd10422d62b1d30e3143d8536e2c79": 5, + "f0f8f4a67ffb19d255856d41f54fd0c7": 1, + "84bf08f117a88cee2a21c6d1daf2ef4b": 5, + "a44b7e64dd27c92f07ee3ab163baff3e": 5, + "5687d1e83513845a23d137609a18897c": 1, + "f20e173ee659b100019302b6d3d31df6": 5, + "bbb77ee68efaac1e2b2e1f15fdda07ea": 5, + "4fa742ae01b6324401c3702d7af00358": 5, + "eb424e19dde67c649b185d5ab32d29e5": 5, + "45ee3cba955634389196ad1260f3fd1e": 5, + "b1c511fcb7fd07793dcdc0fa32bfcaf9": 1, + "6733f6a139ab2256e15f50ea8179a972": 5, + "9b32eb83aa4c022a512f3482a5835b6a": 5, + "ef15470fbbda4147b3718266ff8c4285": 5, + "c0b73f8627dd6b87c5f7ef6d5577741c": 5, + "c638ae7b28cb8d5bba6c4fc2d70ba39b": 5, + "73962c234b7d57f75298c30c536e8b4b": 5, + "fa9e409db76285bb153749870003c2b4": 5, + "2e78e438d37cac690e6d0601bf45c25e": 5, + "14b1c007c02947f86e40d32d0654f3d7": 5, + "a4c3b0efba1ece0eb07da19cc1344fec": 5, + "7ae901fd5cc3ccbf1af3c5aebe17e92e": 5, + "c010048cb4cdec37cb4dd953f092cb24": 5, + "9b6f3108d4b61ff33dd9af051840665a": 2, + "a9300e7c633313e8683f997cf6c8cc30": 5, + "ec25ed12dddefdf35bc52d694faec20b": 5, + "976635157429113723ccbf2426385e6c": 5, + "7444f3c8da4b51e22b9d6edbc0d4157e": 5, + "dea3f32ed1b4495474c9a3038edeb228": 5, + "75467b3cd4c2703d91744b2b1a23fa1d": 1, + "28444d94a8402a57a3570fb3ddf9ea6f": 5, + "c588c287fd46dbc0a5a3bcfa430742f9": 5, + "567fac74d8191eff8770e596c9764349": 5, + "c12e0366a74142890195c74f7e9db423": 5, + "71f18f8beb6cc01f3dd0ff083c010116": 5, + "1e8cc78f7340f53c0c005c4f78f7be38": 5, + "5d07cc1aa2f3774885bc4655b1a8252b": 1, + "fc8fa3f303fa230e838ea8eec15a0dbc": 5, + "0970c0c541dcd9dc3d1eb3e28e324c4d": 5, + "9b21268d34634c595e7a9e8079387b7e": 5, + "f8656b7d1aeca80d2901889a87dab360": 4, + "fd753cbc885da32f189fd879c685b0d0": 1, + "fd06beeff55f0997a93d04aa6a26e81c": 5, + "784611bc0708846df43172c9a0543e00": 5, + "70fb79fd10cf2825baed0dc22d01da6c": 1, + "d7cd8661ff4e579cbdfde5135269f2f2": 5, + "b3478e5199866d6eb501e27a984130bb": 5, + "97c464153d6a1b0f3b4ed77e679abd2a": 5, + "828e0b16561f1be1a6d3fa19f23ffbf4": 5, + "2374c16f1f9dec723fe7831917296de0": 1, + "830743a1f54c589de9c0a7ddd7145308": 5, + "e50fc3c700f68997eb5b03c1cce81dd4": 5, + "8ca4f315f5e23d8ae5d5b6a3470b7031": 5, + "c90b8c0b2637ad06cf51e55109e33dfc": 5, + "dca9cebc76b3c0cb763f9ad3312b1acc": 5, + "730a24b2a26360f693914a29de70135e": 5, + "015026256a9e6f517f7bd0687b1842b8": 1, + "536b7dc559236843652b396e553a943a": 5, + "62458f826a6f278f64628d6e31ea3e50": 5, + "e96e4c6124c7c743e35644b1921e00c4": 1, + "7ed9327b3cd0012d281be231ddd7d104": 5, + "468c8c2554b14f4b7d2ce95e6b734fcd": 5, + "aa99d7f4f78108ea61ff2e0a668c79c7": 5, + "98fda26a20a7d07a6e3e90797b78c167": 4, + "26638eb76b61f7aa3b0ca7538c963e54": 5, + "3cb84590e03f4c0887b7ecc75fb1cf96": 5, + "31507b167dd0a5b8ae1839f3db025daf": 5, + "b916f5b10049beaf040ec9fe278da493": 5, + "2818b6f7c3d6c32b9a58a34cf14a23d2": 5, + "80e2530b0c6b3876a2c5033fb54afa46": 5, + "9aa849a35e3748ea4f0e20f4e720bdbb": 5 + } + }, + { + "slug": "b_swift-value-reference", + "views": 1519, + "likes": 257, + "likesByUser": { + "f2ee16829da275ae0667ecb7fac28f71": 5, + "102da73a700200bd500a0f49b6577207": 2, + "1cb28f8ed0dae54d52bf5fc6807f6582": 5, + "4bf16678f02f99c656a3f8690fd678b0": 1, + "8d75d40706a7cbbe9b5054947302e121": 5, + "e3e9a6b8713b7f42989b2b6d8a06ac44": 5, + "5c7ba9ea2dde3776c98784d086e41643": 5, + "a78dd760d5358c2ff2d7c0fa92693f08": 5, + "43632f2d6cbf2df19b3c749baeff1b38": 5, + "37591587c05f246528a49caf41aad7e2": 5, + "d24b59f8b7748bd360738345ff97009a": 5, + "b80b05c5c004439be50e9e31decde564": 5, + "ba468fbd243de3ca623a83e6e329696d": 5, + "983f7332a35fd1b5ea652b68635d3837": 2, + "978de11b49b37c22121cecf0c82d0649": 1, + "0326cbeaed24938cb3204f785000a26e": 1, + "09ae744736295bcbc6fed37d3ed93c26": 5, + "c9491d4cdcc6b12865f9c657e77d5f7a": 1, + "8a35ebe9bc78ed71406d26cc1ad05241": 5, + "a1f53ebaafc6b509e6d053c005fe4e65": 5, + "536bd0ff8974cf7de9337aadfc4ea7a5": 5, + "9990d084291b96640b08cda89e54d6a0": 5, + "6bb884eee037671752bb73dc49b88aec": 5, + "bd4ac46515c5eaad3384b6d3411491b7": 5, + "5de6b4b7e6d786b54ee9f0aa8c78454d": 5, + "5ea4e4ca66a033f5396636cfeba0a7ff": 5, + "e3f2a5f6e9c53866549829db9353cb26": 1, + "936273c0af21d504b8d9203df507e741": 5, + "6e98b3cf71910b45be98bd35579dda06": 5, + "3aaeaaf283aedcf02383e35a25d4ae16": 5, + "5f6ac5b4722e32e9c08e33524113ca8f": 1, + "98219c5fab39abe6b6a58a908d44842c": 5, + "062466936efb483a9ea84419ce3b724e": 5, + "012f854306b752eac25cfdceb2673a5b": 5, + "2fee271a40ae5643710961a2b75d8ef9": 5, + "be0c5c83c07e6f92c2d50001738e66a0": 5, + "62307dbc24d99b672d721d9727224f40": 1, + "314d720cccd61730140741d27a619335": 5, + "09c40b7b4bb814b265c9e25da411ab46": 5, + "8ff6f609123d32c8d89ecd67b73fea9d": 5, + "ef680eb908be7c508525938ae69d373f": 5, + "f54b381d343b9c86768fec35564680b7": 5, + "5787d61ac2e164e0942cf75624566d98": 5, + "98e642c1d2c21d21b215a4f16e4fedf4": 5, + "21585418a7a8f15354c3bd9c61dc5e00": 5, + "a5fb5ae75f228bf07d1e0796739b0534": 5, + "861645f81d64d1a7a5c70e2d43738763": 5, + "f8f3fc4ad85e86a9fd3966141b425007": 5, + "2d31b6e62c20134670da60836ea3b431": 5, + "f1785bea4a6e39e58b496027cca44024": 5, + "d74d549e4158d7bf2fe6ce494111e480": 5, + "67b880d5dccd4506db4807981dc7d8fd": 5, + "0219d778d46aa6d286c3ba67226be810": 5, + "297bb881e361aabdc51e4ceec33566ab": 5, + "2192acb878a5e8d9669a1097fb93452a": 5, + "bfa56edf414a1b90f9ab7eb9c9d5f3e3": 5, + "fb32cb16f19054aae864c9d55b3c5d1e": 5, + "cc3042888c9470575f1989c9000ee9e3": 5 + } + }, + { + "slug": "p_notiolink", + "views": 262, + "likes": 46, + "likesByUser": { + "9002ed2d133cf1df5c0bf7967cfd9637": 5, + "314d720cccd61730140741d27a619335": 5, + "64257ffb9cf09a4cee4ede49195e7239": 5, + "8740becf3e0e6048be789e0634dc4859": 5, + "b0a6b0a7b39b4443258ebd316bef38a3": 5, + "21585418a7a8f15354c3bd9c61dc5e00": 5, + "1352ae58bea7535a90850e7a75192fb4": 5, + "4e2ff1e56941896b7cfa3817c44d9714": 5, + "5b614b83f26a92598b79325ebd4c3989": 5 + } + } +] diff --git a/prisma/migrations/20220731131832_init/migration.sql b/prisma/migrations/20220731131832_init/migration.sql new file mode 100644 index 0000000..bc59ba4 --- /dev/null +++ b/prisma/migrations/20220731131832_init/migration.sql @@ -0,0 +1,35 @@ +-- CreateTable +CREATE TABLE "ContentMeta" ( + "id" SERIAL NOT NULL, + "slug" TEXT NOT NULL, + "createdAt" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP, + + CONSTRAINT "ContentMeta_pkey" PRIMARY KEY ("id") +); + +-- CreateTable +CREATE TABLE "Like" ( + "id" TEXT NOT NULL, + "createdAt" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP, + "contentMetaId" INTEGER, + + CONSTRAINT "Like_pkey" PRIMARY KEY ("id") +); + +-- CreateTable +CREATE TABLE "View" ( + "id" SERIAL NOT NULL, + "createdAt" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP, + "contentMetaId" INTEGER, + + CONSTRAINT "View_pkey" PRIMARY KEY ("id") +); + +-- CreateIndex +CREATE UNIQUE INDEX "ContentMeta_slug_key" ON "ContentMeta"("slug"); + +-- AddForeignKey +ALTER TABLE "Like" ADD CONSTRAINT "Like_contentMetaId_fkey" FOREIGN KEY ("contentMetaId") REFERENCES "ContentMeta"("id") ON DELETE CASCADE ON UPDATE CASCADE; + +-- AddForeignKey +ALTER TABLE "View" ADD CONSTRAINT "View_contentMetaId_fkey" FOREIGN KEY ("contentMetaId") REFERENCES "ContentMeta"("id") ON DELETE SET NULL ON UPDATE CASCADE; diff --git a/prisma/migrations/20220902063121_add_like_and_views_session_id/migration.sql b/prisma/migrations/20220902063121_add_like_and_views_session_id/migration.sql new file mode 100644 index 0000000..13c53c4 --- /dev/null +++ b/prisma/migrations/20220902063121_add_like_and_views_session_id/migration.sql @@ -0,0 +1,24 @@ +/* + Warnings: + + - The primary key for the `Like` table will be changed. If it partially fails, the table could be left without primary key constraint. + - The `id` column on the `Like` table would be dropped and recreated. This will lead to data loss if there is data in the column. + - Added the required column `sessionId` to the `Like` table without a default value. This is not possible if the table is not empty. + - Added the required column `sessionId` to the `View` table without a default value. This is not possible if the table is not empty. + +*/ +-- DropForeignKey +ALTER TABLE "View" DROP CONSTRAINT "View_contentMetaId_fkey"; + +-- AlterTable +ALTER TABLE "Like" DROP CONSTRAINT "Like_pkey", +ADD COLUMN "sessionId" TEXT NOT NULL, +DROP COLUMN "id", +ADD COLUMN "id" SERIAL NOT NULL, +ADD CONSTRAINT "Like_pkey" PRIMARY KEY ("id"); + +-- AlterTable +ALTER TABLE "View" ADD COLUMN "sessionId" TEXT NOT NULL; + +-- AddForeignKey +ALTER TABLE "View" ADD CONSTRAINT "View_contentMetaId_fkey" FOREIGN KEY ("contentMetaId") REFERENCES "ContentMeta"("id") ON DELETE CASCADE ON UPDATE CASCADE; diff --git a/prisma/migrations/migration_lock.toml b/prisma/migrations/migration_lock.toml new file mode 100644 index 0000000..fbffa92 --- /dev/null +++ b/prisma/migrations/migration_lock.toml @@ -0,0 +1,3 @@ +# Please do not edit this file manually +# It should be added in your version-control system (i.e. Git) +provider = "postgresql" \ No newline at end of file diff --git a/prisma/schema.prisma b/prisma/schema.prisma new file mode 100644 index 0000000..93cc6bd --- /dev/null +++ b/prisma/schema.prisma @@ -0,0 +1,38 @@ +// This is your Prisma schema file, +// learn more about it in the docs: https://pris.ly/d/prisma-schema + +generator client { + provider = "prisma-client-js" +} + +datasource db { + provider = "postgresql" + url = env("DATABASE_URL") + directUrl = env("DIRECT_DATABASE_URL") +} + +model ContentMeta { + id Int @id @default(autoincrement()) + slug String @unique + createdAt DateTime @default(now()) + likes Like[] + views View[] +} + +model Like { + id Int @id @default(autoincrement()) + createdAt DateTime @default(now()) + sessionId String + + contentMetaId Int? + ContentMeta ContentMeta? @relation(fields: [contentMetaId], references: [id], onDelete: Cascade) +} + +model View { + id Int @id @default(autoincrement()) + createdAt DateTime @default(now()) + sessionId String + + contentMetaId Int? + ContentMeta ContentMeta? @relation(fields: [contentMetaId], references: [id], onDelete: Cascade) +} diff --git a/prisma/seed.ts b/prisma/seed.ts new file mode 100644 index 0000000..be890eb --- /dev/null +++ b/prisma/seed.ts @@ -0,0 +1,48 @@ +import { PrismaClient } from '@prisma/client'; +const prisma = new PrismaClient(); +import faunadata from './data/fauna-backup.json'; + +async function main() { + const data = faunadata as unknown as FaunaMeta[]; + data.forEach( + async (datum) => + await prisma.contentMeta.create({ + data: { + slug: datum.slug, + views: { + createMany: { + data: new Array(datum.views) + .fill(0) + .map(() => ({ sessionId: '5db2cdb52c8748af58d9de17ca080e77' })), + }, + }, + likes: { + createMany: { + data: Object.entries(datum.likesByUser).flatMap( + ([sessionId, likes]) => + new Array(likes).fill(0).map(() => ({ sessionId })) + ), + }, + }, + }, + }) + ); +} + +main() + .then(async () => { + await prisma.$disconnect(); + }) + .catch(async (e) => { + // eslint-disable-next-line no-console + console.error(e); + await prisma.$disconnect(); + process.exit(1); + }); + +type FaunaMeta = { + slug: string; + views: number; + likes: number; + likesByUser: Record; +}; diff --git a/public/favicon/android-icon-144x144.png b/public/favicon/android-icon-144x144.png new file mode 100644 index 0000000..e4c3a38 Binary files /dev/null and b/public/favicon/android-icon-144x144.png differ diff --git a/public/favicon/android-icon-192x192.png b/public/favicon/android-icon-192x192.png new file mode 100644 index 0000000..144f0b2 Binary files /dev/null and b/public/favicon/android-icon-192x192.png differ diff --git a/public/favicon/android-icon-36x36.png b/public/favicon/android-icon-36x36.png new file mode 100644 index 0000000..1b1ab21 Binary files /dev/null and b/public/favicon/android-icon-36x36.png differ diff --git a/public/favicon/android-icon-48x48.png b/public/favicon/android-icon-48x48.png new file mode 100644 index 0000000..ccff9dc Binary files /dev/null and b/public/favicon/android-icon-48x48.png differ diff --git a/public/favicon/android-icon-72x72.png b/public/favicon/android-icon-72x72.png new file mode 100644 index 0000000..627b993 Binary files /dev/null and b/public/favicon/android-icon-72x72.png differ diff --git a/public/favicon/android-icon-96x96.png b/public/favicon/android-icon-96x96.png new file mode 100644 index 0000000..397da78 Binary files /dev/null and b/public/favicon/android-icon-96x96.png differ diff --git a/public/favicon/apple-icon-114x114.png b/public/favicon/apple-icon-114x114.png new file mode 100644 index 0000000..8f2db1e Binary files /dev/null and b/public/favicon/apple-icon-114x114.png differ diff --git a/public/favicon/apple-icon-120x120.png b/public/favicon/apple-icon-120x120.png new file mode 100644 index 0000000..6d71d97 Binary files /dev/null and b/public/favicon/apple-icon-120x120.png differ diff --git a/public/favicon/apple-icon-144x144.png b/public/favicon/apple-icon-144x144.png new file mode 100644 index 0000000..e4c3a38 Binary files /dev/null and b/public/favicon/apple-icon-144x144.png differ diff --git a/public/favicon/apple-icon-152x152.png b/public/favicon/apple-icon-152x152.png new file mode 100644 index 0000000..82d3d80 Binary files /dev/null and b/public/favicon/apple-icon-152x152.png differ diff --git a/public/favicon/apple-icon-180x180.png b/public/favicon/apple-icon-180x180.png new file mode 100644 index 0000000..6f533e9 Binary files /dev/null and b/public/favicon/apple-icon-180x180.png differ diff --git a/public/favicon/apple-icon-57x57.png b/public/favicon/apple-icon-57x57.png new file mode 100644 index 0000000..37a3f68 Binary files /dev/null and b/public/favicon/apple-icon-57x57.png differ diff --git a/public/favicon/apple-icon-60x60.png b/public/favicon/apple-icon-60x60.png new file mode 100644 index 0000000..0b25eb7 Binary files /dev/null and b/public/favicon/apple-icon-60x60.png differ diff --git a/public/favicon/apple-icon-72x72.png b/public/favicon/apple-icon-72x72.png new file mode 100644 index 0000000..627b993 Binary files /dev/null and b/public/favicon/apple-icon-72x72.png differ diff --git a/public/favicon/apple-icon-76x76.png b/public/favicon/apple-icon-76x76.png new file mode 100644 index 0000000..a537620 Binary files /dev/null and b/public/favicon/apple-icon-76x76.png differ diff --git a/public/favicon/apple-icon-precomposed.png b/public/favicon/apple-icon-precomposed.png new file mode 100644 index 0000000..c7ce3a4 Binary files /dev/null and b/public/favicon/apple-icon-precomposed.png differ diff --git a/public/favicon/apple-icon.png b/public/favicon/apple-icon.png new file mode 100644 index 0000000..c7ce3a4 Binary files /dev/null and b/public/favicon/apple-icon.png differ diff --git a/public/favicon/browserconfig.xml b/public/favicon/browserconfig.xml new file mode 100644 index 0000000..c554148 --- /dev/null +++ b/public/favicon/browserconfig.xml @@ -0,0 +1,2 @@ + +#ffffff \ No newline at end of file diff --git a/public/favicon/favicon-16x16.png b/public/favicon/favicon-16x16.png new file mode 100644 index 0000000..e92bcb5 Binary files /dev/null and b/public/favicon/favicon-16x16.png differ diff --git a/public/favicon/favicon-32x32.png b/public/favicon/favicon-32x32.png new file mode 100644 index 0000000..748f086 Binary files /dev/null and b/public/favicon/favicon-32x32.png differ diff --git a/public/favicon/favicon-96x96.png b/public/favicon/favicon-96x96.png new file mode 100644 index 0000000..397da78 Binary files /dev/null and b/public/favicon/favicon-96x96.png differ diff --git a/public/favicon/favicon.ico b/public/favicon/favicon.ico new file mode 100644 index 0000000..38d737d Binary files /dev/null and b/public/favicon/favicon.ico differ diff --git a/public/favicon/large-og.jpg b/public/favicon/large-og.jpg new file mode 100644 index 0000000..3f862f7 Binary files /dev/null and b/public/favicon/large-og.jpg differ diff --git a/public/favicon/manifest.json b/public/favicon/manifest.json new file mode 100644 index 0000000..3b557aa --- /dev/null +++ b/public/favicon/manifest.json @@ -0,0 +1,41 @@ +{ + "name": "App", + "icons": [ + { + "src": "/android-icon-36x36.png", + "sizes": "36x36", + "type": "image/png", + "density": "0.75" + }, + { + "src": "/android-icon-48x48.png", + "sizes": "48x48", + "type": "image/png", + "density": "1.0" + }, + { + "src": "/android-icon-72x72.png", + "sizes": "72x72", + "type": "image/png", + "density": "1.5" + }, + { + "src": "/android-icon-96x96.png", + "sizes": "96x96", + "type": "image/png", + "density": "2.0" + }, + { + "src": "/android-icon-144x144.png", + "sizes": "144x144", + "type": "image/png", + "density": "3.0" + }, + { + "src": "/android-icon-192x192.png", + "sizes": "192x192", + "type": "image/png", + "density": "4.0" + } + ] +} diff --git a/public/favicon/ms-icon-144x144.png b/public/favicon/ms-icon-144x144.png new file mode 100644 index 0000000..e4c3a38 Binary files /dev/null and b/public/favicon/ms-icon-144x144.png differ diff --git a/public/favicon/ms-icon-150x150.png b/public/favicon/ms-icon-150x150.png new file mode 100644 index 0000000..84d4578 Binary files /dev/null and b/public/favicon/ms-icon-150x150.png differ diff --git a/public/favicon/ms-icon-310x310.png b/public/favicon/ms-icon-310x310.png new file mode 100644 index 0000000..231fa32 Binary files /dev/null and b/public/favicon/ms-icon-310x310.png differ diff --git a/public/favicon/ms-icon-70x70.png b/public/favicon/ms-icon-70x70.png new file mode 100644 index 0000000..a7b834d Binary files /dev/null and b/public/favicon/ms-icon-70x70.png differ diff --git a/public/fonts/inter-var-latin.woff2 b/public/fonts/inter-var-latin.woff2 new file mode 100644 index 0000000..2fbab97 Binary files /dev/null and b/public/fonts/inter-var-latin.woff2 differ diff --git a/public/images/new-tab.png b/public/images/new-tab.png new file mode 100644 index 0000000..9949487 Binary files /dev/null and b/public/images/new-tab.png differ diff --git a/scripts/cross-post.js b/scripts/cross-post.js new file mode 100644 index 0000000..22e2222 --- /dev/null +++ b/scripts/cross-post.js @@ -0,0 +1,188 @@ +/* eslint-disable */ +const axios = require('axios'); +const { readFile, writeFile, mkdir, createWriteStream } = require('fs'); +const glob = require('glob'); +const matter = require('gray-matter'); +const { join } = require('path'); + +//#region //*=========== Regex Constants =========== +const dotAll = '(?:[^<]+?)'; +const quote = '["\']'; +const select = '(.*)'; + +/** + * @argument $1 publicId e.g. theodorusclarence/blogs/one-stop-starter/seo-component_xpzsab + * @argument $2 alt e.g. seo-component + */ +const CLOUDINARY_REGEXP = new RegExp( + ``, + 'g' +); + +/** + * @argument $1 user/reponame e.g. theodorusclarence/ts-nextjs-tailwind-starter + */ +const GITHUB_REGEXP = new RegExp( + ``, + 'g' +); + +/** + * @argument $1 id e.g. xawHHhqIVVo + */ +const YOUTUBE_REGEXP = new RegExp( + ``, + 'g' +); + +/** + * @argument $1 id e.g. 1475685363003768836 + */ +const TWEET_REGEXP = new RegExp( + ``, + 'g' +); +//#endregion //*======== Regex Constants =========== + +//#region //*=========== Footers =========== +const devtoFooter = ` +--- + +> Originally posted on [my personal site](https://theodorusclarence.com/?ref=devto), find more [blog posts](https://theodorusclarence.com/blog?ref=devto) and [code snippets library](https://theodorusclarence.com/library?ref=devto) I put up for easy access on my site 🚀 + +Like this post? [Subscribe to my newsletter](https://theodorusclarence.com/subscribe?ref=devto) to get notified every time a new post is out!`; + +const hashnodeFooter = ` +--- + +> Originally posted on [my personal site](https://theodorusclarence.com/?ref=hashnode), find more [blog posts](https://theodorusclarence.com/blog?ref=hashnode) and [code snippets library](https://theodorusclarence.com/library?ref=hashnode) I put up for easy access on my site 🚀 + +Like this post? [Subscribe to my newsletter](https://theodorusclarence.com/subscribe?ref=hashnode) to get notified every time a new post is out!`; +//#endregion //*======== Footers =========== + +const slug = process.argv[2]; +const fileName = [ + ...glob.sync(join(process.cwd(), 'src', 'contents', 'blog', `${slug}.mdx`)), +][0]; + +if (!fileName) { + throw new Error('File not found'); +} + +const outPath = join(process.cwd(), 'scripts', 'out', slug); +mkdir(outPath, { recursive: true }, (err) => { + if (err) { + throw new Error(err); + } +}); + +//#region //*=========== Dev.to =========== +const devto = () => { + let parsedContent = ''; + const outputFolder = join(outPath, 'devto.mdx'); + + readFile(fileName, 'utf8', (err, content) => { + if (err) reject(err); + + parsedContent = content; + parsedContent = parsedContent.replace( + CLOUDINARY_REGEXP, + '![$2](https://res.cloudinary.com/theodorusclarence/image/upload/q_auto,f_auto/$1)' + ); + parsedContent = parsedContent.replace( + GITHUB_REGEXP, + '{% github $1 no-readme %}' + ); + parsedContent = parsedContent.replace(YOUTUBE_REGEXP, '{% youtube $1 %}'); + parsedContent = parsedContent.replace(TWEET_REGEXP, '{% twitter $1 %}'); + + // append footer + parsedContent += devtoFooter; + + writeFile(outputFolder, parsedContent, (err) => { + if (err) { + throw new Error('Error while generating content', err); + } else { + console.log('✓ dev.to markdown is successfully generated'); + } + }); + }); +}; +//#endregion //*======== Dev.to =========== + +//#region //*=========== Hashnode =========== +const hashnode = () => { + let parsedContent = ''; + const outputFolder = join(outPath, 'hashnode.mdx'); + + readFile(fileName, 'utf8', (err, content) => { + if (err) reject(err); + + parsedContent = content; + + parsedContent = parsedContent.replace( + CLOUDINARY_REGEXP, + '![$2](https://res.cloudinary.com/theodorusclarence/image/upload/q_auto,f_auto/$1)' + ); + parsedContent = parsedContent.replace( + GITHUB_REGEXP, + '%[https://github.com/$1]' + ); + parsedContent = parsedContent.replace( + YOUTUBE_REGEXP, + '%[https://www.youtube.com/watch?v=$1]' + ); + parsedContent = parsedContent.replace( + TWEET_REGEXP, + '%[https://twitter.com/1475685363003768836]' + ); + // Change tsx to ts + parsedContent = parsedContent.replace(/```tsx/g, '```ts'); + + // append footer + parsedContent += hashnodeFooter; + + writeFile(outputFolder, parsedContent, (err) => { + if (err) { + throw new Error('Error while generating content', err); + } else { + console.log('✓ Hashnode markdown is successfully generated'); + } + }); + }); +}; +//#endregion //*======== Hashnode =========== + +devto(); +hashnode(); + +//#region //*=========== Download OG Image =========== +const getOgImage = () => { + readFile(fileName, 'utf8', (err, content) => { + if (err) reject(err); + + const { data: frontmatter } = matter(content); + const bannerLink = `https://res.cloudinary.com/theodorusclarence/image/upload/f_auto,c_fill,ar_4:5,w_1200/theodorusclarence/banner/${frontmatter.banner}`; + const ogLink = `https://og.clarence.link/api/blog?templateTitle=${encodeURIComponent( + frontmatter.title + )}&banner=${encodeURIComponent(bannerLink)}`; + const image_path = join(outPath, 'og_image.png'); + axios({ + url: ogLink, + responseType: 'stream', + }).then( + (response) => + new Promise((resolve, reject) => { + response.data + .pipe(createWriteStream(image_path)) + .on('finish', () => { + console.log('✓ OG Image is successfully downloaded'); + resolve(); + }) + .on('error', (e) => reject(e)); + }) + ); + }); +}; +getOgImage(); +//#endregion //*======== Download OG Image =========== diff --git a/src/components/Accent.tsx b/src/components/Accent.tsx new file mode 100644 index 0000000..1f32d7e --- /dev/null +++ b/src/components/Accent.tsx @@ -0,0 +1,19 @@ +import clsx from 'clsx'; +import * as React from 'react'; + +type AccentType = React.ComponentPropsWithoutRef<'span'>; + +export default function Accent({ children, className }: AccentType) { + return ( + + {children} + + ); +} diff --git a/src/components/CarbonAds.tsx b/src/components/CarbonAds.tsx new file mode 100644 index 0000000..8156d80 --- /dev/null +++ b/src/components/CarbonAds.tsx @@ -0,0 +1,59 @@ +import clsx from 'clsx'; +import { useRouter } from 'next/router'; +import * as React from 'react'; + +import { trackEvent } from '@/lib/analytics'; +import clsxm from '@/lib/clsxm'; + +import UnstyledLink from '@/components/links/UnstyledLink'; + +export default function CarbonAds({ className }: { className?: string }) { + const router = useRouter(); + const [showing, setShowing] = React.useState(false); + + React.useEffect(() => { + const isCarbonExist = document.querySelector('#carbonads'); + if (isCarbonExist) { + // eslint-disable-next-line @typescript-eslint/ban-ts-comment + // @ts-ignore + _carbonads.refresh(); + return; + } + + const script = document.createElement('script'); + script.src = + 'https://cdn.carbonads.com/carbon.js?serve=CWYDE23M&placement=theodorusclarencecom'; + script.id = '_carbonads_js'; + script.async = true; + + document.querySelectorAll('#carbon-container')[0].appendChild(script); + + script.addEventListener('load', () => { + setShowing(true); + }); + }, [router.asPath]); + + return ( +
+
+ {showing && ( + + This ad helps me with the server cost. You can also{' '} + trackEvent('Sponsor Click', { type: 'link' })} + href='https://github.com/sponsors/theodorusclarence' + > + sponsor + {' '} + me 😀 + + )} +
+ ); +} diff --git a/src/components/ColorSwatch.tsx b/src/components/ColorSwatch.tsx new file mode 100644 index 0000000..364032b --- /dev/null +++ b/src/components/ColorSwatch.tsx @@ -0,0 +1,34 @@ +import clsx from 'clsx'; +import * as React from 'react'; + +type ColorSwatchProps = { + title: string; + subTitle: string; + colorClassName: string; +} & React.ComponentPropsWithoutRef<'div'>; + +export default function ColorSwatch({ + className, + colorClassName, + title, + subTitle, + ...rest +}: ColorSwatchProps) { + return ( +
+
+
+

{title}

+

{subTitle}

+
+
+ ); +} diff --git a/src/components/Seo.tsx b/src/components/Seo.tsx new file mode 100644 index 0000000..84424d3 --- /dev/null +++ b/src/components/Seo.tsx @@ -0,0 +1,202 @@ +import Head from 'next/head'; +import { useRouter } from 'next/router'; + +import { openGraph } from '@/lib/helper.client'; + +const defaultMeta = { + title: 'Theodorus Clarence', + siteName: 'theodorusclarence.com', + description: + 'An online portfolio and blog by Theodorus Clarence. Showcase of my projects, and some of my thoughts about website development.', + url: 'https://theodorusclarence.com', + image: 'https://theodorusclarence.com/favicon/large-og.jpg', + type: 'website', + robots: 'follow, index', +}; + +type SeoProps = { + date?: string; + templateTitle?: string; + isBlog?: boolean; + banner?: string; + canonical?: string; + tags?: string; +} & Partial; + +export default function Seo(props: SeoProps) { + const router = useRouter(); + const meta = { + ...defaultMeta, + ...props, + }; + meta['title'] = props.templateTitle + ? `${props.templateTitle} | ${meta.siteName}` + : meta.title; + + // Use siteName if there is templateTitle + // but show full title if there is none + meta.image = openGraph({ + description: meta.description, + siteName: props.templateTitle ? meta.siteName : meta.title, + templateTitle: props.templateTitle, + banner: props.banner, + isBlog: props.isBlog, + tags: props.tags, + }); + + return ( + + {meta.title} + + + + + {/* Open Graph */} + + + + + + {/* Twitter */} + + + + + + {meta.date && ( + <> + + + + + )} + {meta.isBlog && ( + +``` + + + +**Video Alt:** + +1. When the mutate button is clicked, the console shows the count is **increasing**. However, the number on the screen **doesn't change** at all. +2. After the render button is clicked, the number on the screen **changes** to the **last count value**. + +--- + +## Looking at React + +By **bluntly** translating the JavaScript code, this is what we have now. + +```tsx +function Component() { + let count = 0; + + function mutate() { + count = count + 1; + console.log(count); + } + + return ( +
+

{count}

+ +
+ ); +} +``` + +Do you see something odd? + +
+ +found it? + +
+ +Yes, there is no **render** function. + +We can, of course, use the same render function by accessing `document`, but it's not a good practice to access them manually on React, our purpose of using React is not to manage them manually. + +### Render Function + +> What is the equivalent of render function in React then? + +It is actually the `function Component()` itself. + +Whenever we want to update the screen, React are calling `Component()` function to do that. + +By calling the function, the `count` is declared again, the `mutate` function is also re-declared, and at last, will return a new JSX. + +Here is the demo: + + + +**Video Description:** + +1. We can see that there are 2 console log in the line 13 and 15 +2. When the page is reloaded, the console logs are running. (this is normal behavior as the initial render) +3. Every time the Re-render button is clicked, the logs are called. This proves that the Component() is called every render. + +### What triggers render function? + +If we run the code with let on React, there will be no changes. That's because the **render** function **doesn't get** called. + +React will trigger render function: + +1. When the useState value changes (using setState) +2. When the parent component re-renders +3. When the props that are being passed changes + +The second and the third are basically triggered because of setState too but in the parent element. + +At this point, we know that every time the useState value changes, it will call the render function which is the Component function itself. + +--- + +## Simulating the render function + +Before we convert the `count` variable to state, I want to demonstrate by creating a render function simulation, which uses setToggle. We can trigger re-render with `render` now. + +```tsx {3-6, 20} +function Component() { + //#region //*=========== Render Fn Simulation =========== + const [toggle, setToggle] = React.useState(false); + function render() { + setToggle((t) => !t); + } + //#endregion //*======== Render Fn Simulation =========== + + let count = 0; + + const mutate = () => { + count = count + 1; + console.log(`${getTime()}| count: ${count}`); + }; + + return ( +
+

{count}

+ + +
+ ); +} +``` + +Let's see it in action + + + +**Video Alt:** + +1. Mutate button is clicked, and the count is incremented to 4 +2. Render button is clicked, but **the number on screen doesn't change**, while the console log is 4. +3. Render function is clicked again, **the number on screen is still 0,** while the console log change to 0 +4. After mutate is clicked, it increments, **but not from 4,** it increments starting from 0 again. + +### 🤯 Why is it not working? + +This is actually because we are re-declaring the count variable. + +```tsx {10} +function Component() { + //#region //*=========== Render Fn Simulation =========== + const [toggle, setToggle] = React.useState(false); + function render() { + setToggle((t) => !t); + console.log(`${getTime()} | Render function called at count: ${count}`); + } + //#endregion //*======== Render Fn Simulation =========== + + let count = 0; + + const mutate = () => { + count = count + 1; + console.log(`${getTime()}| count: ${count}`); + }; + + return ( +
+

{count}

+ + +
+ ); +} +``` + +Every time react calls the Component function, we are **re-declaring** the count to be 0. The render function **still works**, and react **updated** the screen, but it updated to the **re-declared count** which is still **0**. + +> **Now that is why we can't use a normal variable in a React component.** + +--- + +## Declaring Outside of Component + +You might also ask: + +> Why don't we move the declaration outside the Component function? + +Well, it makes sense, by moving the declaration we are avoiding the `count` being re-declared to 0. Let's try it to be sure. + +```tsx {1} +let count = 0; + +function Component() { + //#region //*=========== Render Fn Simulation =========== + const [toggle, setToggle] = React.useState(false); + function render() { + setToggle((t) => !t); + console.log(`${getTime()} | Render function called at count: ${count}`); + } + //#endregion //*======== Render Fn Simulation =========== + + const mutate = () => { + count = count + 1; + console.log(`${getTime()}| count: ${count}`); + }; + + return ( +
+

{count}

+ + +
+ ); +} +``` + + + +**Video Alt:** + +1. Mutate button is clicked 3 times, and the `count` is incremented to 3 +2. Render button is clicked, and the **number on the screen updated to 3** +3. When the mutate button is clicked again, the increment continues from 3 to 5 +4. When the render button is clicked again, it is updated to the **correct count**. + +**IT WORKS!** or is it? + +It did just work, that was not a fluke. But there is something you need to see. + + + +**Video Alt:** + +1. Current count is = 5, it is proven by clicking the render button, it's still 5. +2. Then, we move to another page +3. Back to the counter page, but the **count is still 5** +4. Clicking the mutate button will **increment from 5** + +Yes, the **variable doesn't get cleared.** + +This is not great behavior, because we have to manually clean it or it will mess up our app. + +> **Now that is why we can't use a normal variable outside a React component.** + +--- + +## Using useState + +This is the code if we are using useState + +```tsx {2,5} +function Component() { + const [count, setCount] = React.useState(0); + + const mutateAndRender = () => { + setCount((count) => count + 1); + console.log(`${getTime()} | count: ${count}`); + }; + + return ( +
+

{count}

+
+ +
+
+ ); +} +``` + +And this is the demo + + + +**Video Alt:** + +You may notice that the console.log count is **late** by 1, ignore it for now. + +1. Add button is clicked, then the count is added, and simultaneously updated on screen +2. When moving to another page and back, the count is reset back to 0. + +So in recap, useState does 4 things: + +1. **Declaration,** by declaring using this syntax + + ```tsx + const [count, setCount] = React.useState(0); + ``` + +2. **Mutate and Render,** changing the value and automatically render the changes using `setCount` +3. **Persist the data in each re-render** → when the render function is called, useState won't re-declare the count value. +4. **Reset** the value when we move to another page, or usually called: when the component unmounts. + +### Why the count is late + +```tsx +const mutateAndRender = () => { + setCount((count) => count + 1); + console.log(`${getTime()} | count: ${count}`); +}; +``` + +This is because the `setCount` function is **asynchronous**. + +After we call the function, it needs time to update the count value. So when we call the console.log immediately, it will still return the old value. + +You can move the console.log outside of the function so it will run on re-render (`Component()`) + +```tsx {5} +function Component() { + ... + + const mutateAndRender = () => { + setCount((count) => count + 1); + }; + + console.log(`${getTime()} | count: ${count}`); + + return ... +} +``` + +--- + +## 3 Actions Diagram + + + +Here is the updated diagram, now you know what useState and setState do. + +--- + +## Test your knowledge + +### Quiz 1 + +Please take a look at this snippet for the next 2 questions. + +```tsx {8 ,13} +import * as React from 'react'; + +function Component() { + let count = 0; + + const mutate = () => { + count = count + 1; + console.log(count); + }; + + return ( +
+

{count}

+ +
+ ); +} +``` + + + After clicking the Button twice, what is the value of the + console.log? + + } + answers={[ + { + option: '0', + }, + { + option: '1', + }, + { + option: '2', + correct: true, + }, + { + option: 'Error', + }, + ]} + explanation={ + <> + Yes, even though the declaration is inside the component, there is no + rerender, so the Component() won't be called. + + } +/> + +How about the value on screen within the h1 tag?} + answers={[ + { + option: '0', + correct: true, + }, + { + option: '1', + }, + { + option: '2', + }, + { + option: 'Error', + }, + ]} + explanation={ + <> + Remember that in that snippets, there are no function that triggers + rerender, so the screen will not be updated. + + } +/> + +### Quiz 2 + +Now, we use some render function simulation, you should be able to answer this one correctly 💪 + +```tsx {15,22} +import * as React from 'react'; + +function Component() { + //#region //*=========== Render Fn Simulation =========== + const [toggle, setToggle] = React.useState(false); + function render() { + setToggle((t) => !t); + } + //#endregion //*======== Render Fn Simulation =========== + + let count = 0; + + const mutate = () => { + count = count + 1; + console.log(count); + + render(); + }; + + return ( +
+

{count}

+ +
+ ); +} +``` + + + After clicking the Button twice, what is the value of the + console.log? + + } + answers={[ + { + option: '0', + }, + { + option: '1', + correct: true, + }, + { + option: '2', + }, + { + option: 'Error', + }, + ]} + explanation={ + <> + Watch out the let declaration, it is declared inside the render function, + so every rerender (which is on toggle state change) it will be called and + redeclared to 0 + + } +/> + +How about the value on screen within the h1 tag?} + answers={[ + { + option: '0', + correct: true, + }, + { + option: '1', + }, + { + option: '2', + }, + { + option: 'Error', + }, + ]} + explanation={ + <> + Because the count is redeclared to 0 every rerender, so the h1 will be + updated to 0 too everytime. + + } +/> + +--- + +## Recap + +Great job, you have finished the first React Core Concept Series. I'll definitely continue this series as there are still many hooks to cover. Please hold on to the mental model that I put in this blog post, as I'm going to reference it again soon on the next post. + +With this post, we learned that + +1. We can't use normal let because React calls the Component function itself to do the re-rendering. +2. Re-rendering will cause all of the code in the Component function to be run all over again including the variable and function declaration, as well the console logs and function calls. +3. Using the useState hook will help us update the variable, and the number on the screen while still persisting the data between re-renders. + +See you in the next blog post. Subscribe to my newsletter if you don't want to miss it. diff --git a/src/contents/blog/react-core-concept-useeffect.mdx b/src/contents/blog/react-core-concept-useeffect.mdx new file mode 100644 index 0000000..52941f9 --- /dev/null +++ b/src/contents/blog/react-core-concept-useeffect.mdx @@ -0,0 +1,285 @@ +--- +title: 'React Core Concept II: useEffect' +publishedAt: '2022-11-02' +description: 'An in-depth look at the useEffect hook in React with a mental model' +englishOnly: 'true' +banner: 'genessa-panainte-sBvK15KlpYk-unsplash_v5yhfy' +tags: 'react,core-concept' +--- + +## Introduction + +The useEffect hook is something that is quite hard to grasp for me at first, but it turns out it is not that complicated. With this post, I'm going to introduce you to a simple mental model that might help you to understand the basic concept. + +## Quick Recap + +Before you continue to read this post, **it is best to read my [first React Core Concept article](https://theodorusclarence.com/blog/react-core-concept-rendering-state) about useState because I'm going to reference some mental models used in the last post.** + +In the last post, this is something that you need to remember: + +> React does a **re-render** by calling the component function. +> +> React will trigger the render function when +> +> 1. The useState value changes (using setState) +> 2. The parent component re-renders +> 3. The props that are being passed changes + +## Looking at useEffect + +If you used useEffect before, you must've known that it would run the arrow function inside the useEffect. It is written like this. + +```jsx +React.useEffect(() => { + console.log('hello'); +}); +``` + +When we see the structure of the useEffect hook, it resembles a cloak that wraps one function. Now, we need to know what that cloak does to our function. + +## Controlling Functions with useEffect + +With useEffect, we can control when would we like to run the function. + +Let's see an example: + +```jsx +export default function Test() { + fetch('https://jsonplaceholder.typicode.com/todos/1') + .then((res) => res.json()) + .then((data) => console.log(data); + + return ( + + ) +} +``` + +Do you notice what's wrong with the example? Yes. The fetch will be run every single re-render, and we probably don't want that. + +We can fix that problem by controlling **when should the function run** using useEffect. We can control it with the `deps` parameter + +--- + +## Types of Dependencies + +Here are the usual types of dependencies that are often used with useEffect + + + +Before we break it one by one, there is **a mental model that you need to remember.** + +> The useEffect hook will always **run once** on the **initial render**. There is no exception. + +### Without Dependency + + + +Without the dependency parameter, it is practically the same as calling a function on the top level. The useEffect will run on **the initial render and every re-render** + +There is a slight difference in using useEffect, I'll cover this at the end of the article because it is insignificant for now. + +### With Dependency + + + +When we introduce the dependency parameter, the mental model becomes like this: + +> When the dependency changes, I'll run + +They will run on **the initial render and whenever specified dependencies changed.** We can specify the dependencies inside the array. + + + +Emphasize the **OR.** So when we put `foo` into the array, the useEffect will run every time the `foo` variable changes. + +### Specifying Empty Array + + + +When you specifically put an empty array to the dependency, it is like saying “When nothing changes, I'll run”, and we can paraphrase it to this mental model + +> I will never run on any changes + +However, it will always run on the initial render, so using an **empty array will cause the useEffect to run once on the initial render.** + +This is super useful when you need to fetch data from another API. You'll run it only at the initial render and show it to the user. + +### Difference between Empty Parameter and Empty Array + +This is something that you also need to note: + +> Not giving any parameter is different than specifying an empty array + + + +--- + +## How does React decide if the dependency changes? + +React is going to compare them using **shallow comparison**. Here are some cases + +### 1. Primitive dependency + +Primitive including boolean, string, numbers, etc. + +```jsx +export default function TogglePage() { + const [toggle, setToggle] = React.useState(false); + + console.log('🔥 Rerender'); + + React.useEffect(() => { + console.log('🔵 Effect'); + }, [toggle]); + + return ( +
+ +
+ ); +} +``` + +Here's a really simple example, if you follow the tutorials correctly you're now able to infer that **every time the button is clicked, it will log the Re-render and Effect log.** + + + +Easy right? The useEffect will run if it sees that the toggle value changes from `true` to `false` or vice versa. + + + +### 2. Object dependency + +Before we jump into the example, I want to clarify this first. + +```jsx +const obj = { + toggle: false, +}; + +React.useEffect(() => { + console.log('🔵 Effect'); +}, [obj.toggle]); +``` + +If you're assigning the object's property, it's going to follow that property value. So in this example, it's going to follow the **primitive dependency** mental model. + +Let's get to the real example + +```jsx +export default function ChangePage() { + const [toggle, setToggle] = React.useState(false); + const [falseToggle, setFalseToggle] = React.useState(false); + + console.log('🔥 Rerender'); + + const obj = { + toggle, + }; + + React.useEffect(() => { + console.log('🔵 Effect'); + }, [obj]); + + return ( +
+ {/* Clicking button will change falseToggle value */} + +
+ ); +} +``` + +Following the last mental model, you might conclude that the `Effect` log won't run because the **toggle value doesn't even change** right?? + +The answer is **it will run the effect function.** + +That behavior is because, in every re-render, we're creating a **new object**. React is going to treat the object as a different value even though it is identical. + + + +If you're using ESLint, they actually will warn you to fix it using `useMemo` hook + + + +```jsx +const obj = React.useMemo(() => { + return { toggle: toggle }; +}, [toggle]); +``` + +useMemo will use the existing object if the dependency doesn't change. Thus not creating a brand new object each time. + +Notice something similar in the useMemo hook? Yes! it follows the same mental model for dependency. Learn something once, and you can use it for more than one concept. + +## Conclusion + +The useEffect hooks work with 2 types of dependencies: + +- Without Dependencies +- With Dependencies + - Empty Array + - Specified Array + +When using specified dependencies it will compare them using shallow comparison with 2 mental models that you can remember which are primitive and object dependency. diff --git a/src/contents/blog/react-hydration.mdx b/src/contents/blog/react-hydration.mdx new file mode 100644 index 0000000..c504de0 --- /dev/null +++ b/src/contents/blog/react-hydration.mdx @@ -0,0 +1,215 @@ +--- +title: 'A look at React hydration and pre-rendered HTML' +publishedAt: '2023-12-06' +description: 'Learn how React hydration works and how to troubleshoot the hydration error' +englishOnly: 'true' +banner: 'kobby-mendez-xBFTjrMIC0c-unsplash' +tags: 'nextjs,react' +repost: 'https://blog.logrocket.com/react-hydration-pre-rendered-html/' +--- + +## Attribution + +This post is originally made for LogRocket, check the original post [here](https://blog.logrocket.com/react-hydration-pre-rendered-html/). + +## Introduction + +In this article, I’ll cover the underlying reason behind the `Expected server HTML to contain a matching in ` error. This error is caused by React hydration, which is a conversion process for pre-rendered HTML. React hydration is generally used to add interactivity to pre-rendered HTML generated by the server. + +This article will provide a closer look at React hydration and pre-rendered HTML. We will look at the underlying APIs and how they work, as well as a common hydration error, and how to troubleshoot it. + +## The `hydrateRoot` API + +A popular framework like Next.js uses React hydration under the hood. As such, we might not be familiar with it because it is usually pre-configured deep inside the Next.js framework. As you can see in the picture below, Next.js is using a React DOM API called `hydrateRoot` inside the rendering function: + + + +The `hydrateRoot` API can also be implemented within other frameworks, such as Gatsby and Astro. Although we probably won’t use the `hydrateRoot` API by ourselves, it is important to understand how it works so we can handle all the pitfalls and errors that come with it. + +## Understanding React hydration + +React hydration bridges the gap between server-side and client-side rendering. It adds interactivity to static HTML generated on the server, enhancing initial rendering speed and SEO compared to traditional single-page apps. + +With React hydration, visitors to your page will be served a static HTML from the server. After it loads, React will “attach” all of the event listeners, such as state, effect, etc., to their respective elements. The hydration API that is provided by React will take that HTML and find the button that you want to attach the `onClick` listener on: + + + +## Hydration with `hydrateRoot` + +To understand why hydration needs to happen, we need to understand how React sees the static HTML that needs to be hydrated. + +This is a generated static HTML using the React DOM API called `renderToString`: + +```tsx {3} +import { renderToString } from 'react-dom/server'; + +const html = renderToString(); +``` + +After running the code, we get something like this: + +```html +

Counter App

+ +``` + +When we see this piece of HTML code, it simply renders a heading with text containing `Counter App` and a button that might be a counter. But, we don’t have the JavaScript listeners for that, so clicking the button won’t change anything. + +If we compare them to the React code, we are adding functionalities such as `onClick` like so: + +```tsx +export default function App() { + const [count, setCount] = React.useState(0); + + return ( + <> +

Counter App

+ + + ); +} +``` + +Hydration will be in charge of attaching the `onClick` event listener using the JavaScript code that is fetched on the client side. It will also be responsible for the entire interactivity of the page, such as the incrementing `count`. + +That hydration happens by using the `hydrateRoot` API like this: + +```tsx {4} +import { hydrateRoot } from 'react-dom/client'; +import App from './App.js'; + +hydrateRoot(document.getElementById('root'), ); +``` + +After getting the pre-rendered HTML from the `document` file, the `hydrateRoot` API will match them with your `App` component to make sure that there is no mismatch. + +## Common hydration error in React + +Now let’s talk about why this error happens: + + + +When we are hydrating a server-rendered HTML, React expects the rendered contents to be identical to the server-rendered contents. So when you have a heading that contains `App Counter` in the `App.jsx` file, React is going to assume that you have it on your server-rendered HTML. + +React will actually treat differences as errors, but the errors won’t come out in the production. Still, you need to fix them, because they can lead to a slower app, or even worse, the event handlers might get attached to the wrong elements. + +It’s important that the server-rendered HTML of the app strictly conforms to a specific structure, like so: + +```html +
+

Counter App

+ +
+``` + +There can’t be any extra whitespace or new lines. + +### Reproducing the error + +Let’s say that we have an app that renders the current date to the exact millisecond using ISO string date function: + +```tsx +export default function App() { + return
{new Date().toISOString()}
; +} +``` + +This is the server-rendered HTML that we get from the `renderToString` API: + +```html +
2023-08-23T09:14:11.745Z
+``` + +When we hydrate the server-rendered HTML later on, there is no chance that the date is going to be the same as the server-rendered HTML. This causes the dreaded hydration +errors: + + + +Pretty simple right? Here’s a list of the most common causes leading of hydration errors from the React docs: + +- Extra whitespace (like new lines) around the React-generated HTML inside the root node +- Using checks like `typeof window !== 'undefined'` in your rendering logic +- Using browser-only APIs like `window.matchMedia` in your rendering logic +- Rendering different data on the server and the client + +## Troubleshooting the React hydration error + +### Suppressing the error + +There are two ways to fix the hydration error we saw above. The first way is by using the `supressHydrationWarning` props: + +```tsx /suppressHydrationWarning/ +export default function App() { + return
{new Date().toISOString()}
; +} +``` + +This should be used if a single element attribute or text contents will be different no matter the case, like an ISO string date. You can silence the error by setting the `supressHydrationWarning` props to `true`. + +This solves the error and is a great solution if you want to fix simple text mismatches like this date example. + +### Using the `useEffect` Hook + +If you have a more complex app that has different contents between the client and server content, you’ll need to use this second solution. The second solution is to set values inside the `useEffect` Hook instead of directly in the JSX. + +For example, you have a logic that differentiates if you want dark mode or light mode based on the hours. If the hours indicate that it is later than 12 AM, we want to show dark mode. Otherwise, we want to show light mode: + +```tsx +export default function App() { + return

{new Date().getHours() > 12 ? 'Dark Mode' : 'Light Mode'}

; +} +``` + +You can fix the error by creating a React state called `isDark` and putting the logic inside the `useEffect` function. We can then use the `isDark` state to conditionally render dark mode or light mode: + +```tsx +export default function App() { + const [isDark, setIsDark] = useState(false); + + useEffect(() => { + setIsDark(new Date().getHours() > 12); + }, []); + + return

{isDark ? 'Dark Mode' : 'Light Mode'}

; +} +``` + +By using this method, the server-rendered HTML will use the default value of `useState` first, so it matches the data from when we ran `hydrateRoot`. Then after the app mounts, it will change the contents based on the logic. + +## Conclusion + +Hydration errors are a common occurrence, especially when dealing with elements like pre-rendering an exact ISO string date. While it is possible to suppress warnings to manage these errors, it’s important not to overuse them. To handle different contents between the client and server, you can move the logic after the app is mounted using the `useEffect` Hook. diff --git a/src/contents/blog/react-loading-state-pattern.mdx b/src/contents/blog/react-loading-state-pattern.mdx new file mode 100644 index 0000000..bf8de4b --- /dev/null +++ b/src/contents/blog/react-loading-state-pattern.mdx @@ -0,0 +1,367 @@ +--- +title: 'React Loading State Pattern using Toast & SWR' +publishedAt: '2021-11-13' +description: 'Easily manage react loading state with React Hot Toast and SWR custom hooks.' +englishOnly: 'true' +banner: 'kai-pilger-1k3vsv7iIIc-unsplash_yis9ys' +tags: 'nextjs,react,pattern' +--- + +## Introduction + +Managing the react loading state can be a bit annoying, we need to set it to isLoading before fetching, then set it back to false after it is done. Then we also need to set it up to the button so we can show the loading state, or give some text as an indicator. + +Here is what it looks like with the common loading pattern: + +```tsx +const [pokemon, setPokemon] = React.useState>(); +const [isLoading, setIsLoading] = React.useState(false); + +const getData = () => { + setIsLoading(true); + + axios + .get('https://pokeapi.co/api/v2/pokemon?limit=20') + .then((res) => { + setPokemon(res.data.results); + }) + .finally(() => setIsLoading(false)); +}; + +return ; +``` + +it is annoying to do, and we didn't even cover error state yet. + +## What should we manage in a loading process? + +When we are fetching data, we need to do some things so the waiting experience can be more bearable. Here are some things that we can do: + +### Loading indicator + +Users need to know when their application is in a loading state. This is important so they are not blankly waiting, and get the mindset that they should wait for a bit. + +Loading indicator can be a spinner, normal text, some animations, or toast. + +### Success indicator + +We need to tell the user if the loading has succeeded, so they can continue with their work. + +### Error indicator + +When the data fetching goes wrong, we have to let the user know about it. + +### Blocking action + +A common example is when we are submitting a form, we don't want the user to submit twice. We can do that by disabling the button when there is a loading state going on. + +Another example is blocking the modal close button when loading, so the user doesn't accidentally close it. + +## The easy way + +I found that this pattern is the most hassle-free, and we can use custom hooks to grab the loading state. + +Here is what we are going to build: + + + +**Video Description:** + +1. getData button is clicked, then there is a loading toast showing. +2. When it is loading, the button is disabled and showing a loading spinner +3. After 2 seconds, the loading toast turns into an error toast +4. getData button is clicked again, then there is a loading toast showing +5. After 2 seconds, the loading toast turns into a success toast, then all the data loads correctly + +ps: the wait cursor is kind of weird in the recording. + +With this pattern, we get all 4 things covered, **easily**. + +1. We get the loading state using toast +2. We can show error indicator and show the error message from the API +3. We can show success indicator +4. Last, all buttons are disabled. + +We are using **React Hot Toast** for the loading, success, and error indicator. All of it are managed only using 1 wrapper function like this: + +```tsx +toast.promise( + axios + .get('https://pokeapi.co/api/v2/pokemon?limit=20') + .then((res) => { + setPokemon(res.data.results); + }), + { + loading: 'Loading...', + success: 'Data fetched successfully', + error: (err: any) => + err?.response?.data?.msg ?? 'Something is wrong, please try again', + } +); +``` + +## Configuration + +First, we need to install the react-hot-toast + +```tsx +yarn add react-hot-toast +``` + +I'm using Next.js for the demo, but the config for CRA is basically the same. Add this to the `_app.tsx` + +```tsx +import { AppProps } from 'next/app'; + +import '@/styles/globals.css'; + +import DismissableToast from '@/components/DismissableToast'; + +function MyApp({ Component, pageProps }: AppProps) { + return ( + <> + + + + ); +} + +export default MyApp; +``` + +I added a dismiss button because it doesn't have it by default, you can grab the `DismissableToast` code from [my library](https://theodorusclarence.com/library/toast#dismissabletoast). + +### Usage + +Let's say we want to fetch data on mount from an external API using Axios. + +We just need to wrap the axios call with the toast function. + +```tsx +React.useEffect(() => { + toast.promise( + axios + .get('https://pokeapi.co/api/v2/pokemon?limit=20') + .then((res) => { + setPokemon(res.data.results); + }), + { + loading: 'Loading...', + success: 'Data fetched successfully', + error: (err: any) => + err?.response?.data?.msg ?? 'Something is wrong, please try again', + } + ); +}, []); +``` + +That's it! The toast will show status when loading, and when it is a success or an error. + +### Further Reusablity + +You can compose it even more by declaring the `defaultToastMessage`, then overriding it if you need to. + +```tsx +export const defaultToastMessage = { + loading: 'Loading...', + success: 'Data fetched successfully', + // you can type this with axios error + // eslint-disable-next-line @typescript-eslint/no-explicit-any + error: (err: any) => + err?.response?.data?.msg ?? 'Something is wrong, please try again', +}; + +toast.promise(axios, { + ...defaultToastMessage, + loading: 'Override loading', +}); +``` + +### Accessing loading state + +> Now, what if we want to get that loading state to disable a button? + +We can do that with toast API that I wrapped in a custom hook. + +```tsx +import { useToasterStore } from 'react-hot-toast'; + +/** + * Hook to get information whether something is loading + * @returns true if there is a loading toast + * @example const isLoading = useLoadingToast(); + */ +export default function useLoadingToast(): boolean { + const { toasts } = useToasterStore(); + const isLoading = toasts.some((toast) => toast.type === 'loading'); + return isLoading; +} +``` + +And we can use it just like this + +```tsx +const isLoading = useLoadingToast(); + +; +``` + +With the `isLoading` state, the rest is all your creativity, you can show some skeleton, change the loading text, give loading spinners, anything you like. + +### Gotcha: 2 Axios Calls + +If you got 2 axios calls, you can chain the next axios call, and add another `then` to get the value. + +```tsx {10} +toast.promise( + axios + .post('/user/login', data) + .then((res) => { + const { jwt: token } = res.data.data; + tempToken = token; + localStorage.setItem('token', token); + + // chaining axios in 1 promise + return axios.get('/user/get-user-info'); + }) + .then((user) => { + const role = user.data.data.user_role; + dispatch('LOGIN', { ...user.data.data, token: tempToken }); + + history.replace('/'); + }), + { + ...defaultToastMessage, + } +); +``` + +## SWR Integration + +Using SWR to fetch data is even more awesome because we only need to show the loading state on the first fetch. Here is the demo: + + + +**Video Description:** + +1. First time visited, a loading toast is shown then turns into success toast. +2. When visited for the second time, there is no loading toast and the data is prefilled with cache. + +This is the syntax of SWR: + +```tsx +const { data, error } = useSWR( + 'https://pokeapi.co/api/v2/pokemon?limit=20' +); +``` + +> Hmm, this is not a promise, how do we use the toast then? + +We can use another custom hook ✨ + +I made this hook so we can wrap the `useSWR` just like the `toast.promise` function. + +### useWithToast for SWR + +```tsx +import * as React from 'react'; +import toast from 'react-hot-toast'; +import { SWRResponse } from 'swr'; + +import { defaultToastMessage } from '@/lib/helper'; + +import useLoadingToast from '@/hooks/useLoadingToast'; + +type OptionType = { + runCondition?: boolean; + loading?: string; + success?: string; + error?: string; +}; + +export default function useWithToast( + swr: SWRResponse, + { runCondition = true, ...customMessages }: OptionType = {} +) { + const { data, error } = swr; + + const toastStatus = React.useRef(data ? 'done' : 'idle'); + + const toastMessage = { + ...defaultToastMessage, + ...customMessages, + }; + + React.useEffect(() => { + if (!runCondition) return; + + // if toastStatus is done, + // then it is not the first render or the data is already cached + if (toastStatus.current === 'done') return; + + if (error) { + toast.error(toastMessage.error, { id: toastStatus.current }); + toastStatus.current = 'done'; + } else if (data) { + toast.success(toastMessage.success, { id: toastStatus.current }); + toastStatus.current = 'done'; + } else { + toastStatus.current = toast.loading(toastMessage.loading); + } + + return () => { + toast.dismiss(toastStatus.current); + }; + }, [ + data, + error, + runCondition, + toastMessage.error, + toastMessage.loading, + toastMessage.success, + ]); + + return { ...swr, isLoading: useLoadingToast() }; +} +``` + +In addition, I added the isLoading to the return so we don't need to call the `useLoadingToast` hooks anymore + +### Usage + +```tsx +const { data: pokemonData, isLoading } = useWithToast( + useSWR('https://pokeapi.co/api/v2/pokemon?limit=20') +); +``` + +Awesome, it's looking good and clean. + +You can still override the toast messages just like this + +```tsx +const { data: pokemonData, isLoading } = useWithToast( + useSWR('https://pokeapi.co/api/v2/pokemon?limit=20'), + { + loading: 'Override Loading', + } +); +``` + +## Conclusion + +I hope this can add to your pattern collection. + +You can look at the demo source code on [github](https://github.com/theodorusclarence/react-async-pattern), but keep in mind there is additional promise to delay the loading time. diff --git a/src/contents/blog/rhf.mdx b/src/contents/blog/rhf.mdx new file mode 100644 index 0000000..5c939b1 --- /dev/null +++ b/src/contents/blog/rhf.mdx @@ -0,0 +1,143 @@ +--- +title: '7 Form Components For React Hook Form I Always Use' +publishedAt: '2021-07-12' +lastUpdated: '2022-04-02' +description: 'Building forms with validation is tedious and repetitive, using reusable component will help building faster.' +englishOnly: 'true' +banner: 'nikola-johnny-mirkovic-wyM1KmMUSbA-unsplash_fzyj2q' +tags: 'react,form' +--- + +## Introduction + +Building forms with validation is tedious and repetitive. So my friend and I created a library of form input components so we can just copy the code in every code base, styled minimally with all error validation message using Tailwind CSS and react-icons. + +--- + +## Demo Link + + + +For the demo please visit [rhf.thcl.dev](https://rhf.thcl.dev) + +> I'm open for all suggestions and contributions to improve 🚀. Open a PR on the repository (available on the demo website) or email me at me@theodorusclarence.com + +## Yup Demo + +I also made a validation using Yup, you can access it on [https://rhf.thcl.dev/yup](https://rhf.thcl.dev/yup) along with the source code. + +--- + +## Setup + +### 1. Install these dependencies + +```bash +yarn add react-hook-form @tailwindcss/forms react-icons + +optional + +yarn add react-datepicker react-dropzone react-select +``` + +### 2. Configure tailwind.config.js to use [@tailwindcss/forms](https://github.com/tailwindlabs/tailwindcss-forms) + +```js +// tailwind.config.js +module.exports = { + theme: { + // ... + }, + plugins: [ + require('@tailwindcss/forms'), + // ... + ], +}; +``` + +### 3. Form Structure + +This is the default boilerplate, then you can insert the components inside the `form` + +```jsx +import { FormProvider, useForm } from 'react-hook-form'; + +export default function Page() { + const methods = useForm(); + const { handleSubmit } = methods; + + return ( + <> + +
Inputs Here
+
+ + ); +} +``` + +--- + +## Default Form Components + +### 1. TextInput + +[Link to demo](https://rhf.thcl.dev/inputs#text-input) + +Normal Text Input, with error validation + +![TextInput](https://dev-to-uploads.s3.amazonaws.com/uploads/articles/kdxmfpr423kfz00jiq2g.gif) + +### 2. PasswordInput + +[Link to demo](https://rhf.thcl.dev/inputs#password-input) + +Password input with peek functionality + +![PasswordInput](https://dev-to-uploads.s3.amazonaws.com/uploads/articles/km75jce8ne1sz7uezw36.gif) + +### 3. TextArea + +[Link to demo](https://rhf.thcl.dev/inputs#text-area) + +Normal TextArea Input + +![TextArea](https://dev-to-uploads.s3.amazonaws.com/uploads/articles/63rwadnb9yoz96fujbon.gif) + +### 4. DatePicker + +[Link to demo](https://rhf.thcl.dev/inputs#date-picker) + +Using `react-datepicker` library, provided with useful props like defaultYear, defaultMonth, locale lang + +![DatePicker](https://dev-to-uploads.s3.amazonaws.com/uploads/articles/qlayfyv6qwpgvky306zj.gif) + +### 5. Select (Native) + +[Link to demo](https://rhf.thcl.dev/inputs#select-native) + +Select Input using composition + +![SelectNative](https://dev-to-uploads.s3.amazonaws.com/uploads/articles/qtar72d0x80jxutro873.gif) + +### 6. File Upload Dropzone + +[Link to demo](https://rhf.thcl.dev/inputs#dropzone-input) + +Using `react-dropzone` library, we can specify selected file extension in the props + +![Dropzone](https://dev-to-uploads.s3.amazonaws.com/uploads/articles/afxhanaz7tahfdehrglj.gif) + +### 7. Select (react-select) + +[Link to demo](https://rhf.thcl.dev/inputs#select-react) + +Using `react-select` library, allowing us to search on the select input + +![ReactSelect](https://dev-to-uploads.s3.amazonaws.com/uploads/articles/7vye8zx94k1b8zsidxjd.gif) diff --git a/src/contents/blog/spotify-now-playing.mdx b/src/contents/blog/spotify-now-playing.mdx new file mode 100644 index 0000000..43db06a --- /dev/null +++ b/src/contents/blog/spotify-now-playing.mdx @@ -0,0 +1,358 @@ +--- +title: 'How to show Now Playing in Spotify with Next.js' +publishedAt: '2021-01-25' +lastUpdated: '2021-11-12' +description: 'Spotify API grants us access to know what is currently played on your Spotify.' +banner: 'spotify-now-playing_n37szf' +tags: 'nextjs' +--- + +## Introduction + +On this website, I use Spotify API to show what song is currently playing. Now, I will try to explain on how do I do that. + +Next.js has a built-in API in a single application, so choosing Next.js is a perfect choice so we don't expose our API keys. + + + +[Website Demo](https://spotify-playing.theodorusclarence.com) + +--- + +## 1. Create an Application on Spotify Developer + +- Go to [Spotify Developer](https://developer.spotify.com/dashboard/applications) Website. +- Click **Create An App** +- Fill in App Name, App description, then **Create** + + + +- Next, you will be provided with `Client ID` and `Client Secret` (Don't give this secret to anyone) + + + +- Open edit settings, then fill out `http://localhost:3000` on RedirectURIs + + + +The first step is done! Now, you need to do authentication to get access & refresh token + +--- + +## 2. Authenticate Your Account + +To do authentication, we need to prepare `CLIENT_ID` and put it into this link below: + +```text +https://accounts.spotify.com/authorize?client_id=CLIENT_ID_HERE&response_type=code&redirect_uri=http +%3A%2F%2Flocalhost:3000&scope=user-read-currently-playing +``` + +example: + +```text +https://accounts.spotify.com/authorize?client_id=eaccb97f6d0e405897adf1dd80b95c01&response_type=code&redirect_uri=http +%3A%2F%2Flocalhost:3000&scope=user-read-currently-playing +``` + +Open that link in a browser, then you will get redirected into a uri, copy the website link + + + +Example of the redirect link: + +```text +http://localhost:3000/?code=AQBeA9SD7QbA9hUfv_TfmatYxT51CY87msMnOZmMbhf7ZaxfbvG7oKEsATOJBxDyFap0Aq6uftY0v4Hq1QSy3MgQBfAHhmrifty-62rfDRlFnd0AzXRBOMpoOSA6SNw_uTPp7AixAE5zosgiIIf7efhzf1QOJfLh1HUYi248z8jk1x2jjKG2YLvMyJuP0rjB5tP5UHjoFGBvKbULpchkF6yiJHnS +``` + +`code` that you have is the one after (=). Don't forget to write it down. + +Next we need to get authorization client that is already encrypted with base64, use this [website](https://www.base64encode.org) to encrypt with the format of `client_id:client_secret` + +For example: + + + +Next, write down the encrypted `base64` + +After that, open up terminal/cmd, and run this command, don't forget to change the `base64` and the `code` to yours. + +```bash +curl -H "Authorization: Basic CHANGE_BASE64_HERE" +-d grant_type=authorization_code -d code=CHANGE_CODE_HERE -d redirect_uri=http%3A +%2F%2Flocalhost:3000 https://accounts.spotify.com/api/token +``` + +\*make sure the command is in one line + +Example: + +```bash +curl -H "Authorization: Basic ZWFjY2I5N2Y2ZDBlNDA1ODk3YWRmMWRkODBiOTVjMDE6YTQxOTVjMmQwYTQyNDM2MDllNjk3ZTYwMmU3MGI3NjI=" -d grant_type=authorization_code -d code=AQBeA9SD7QbA9hUfv_TfmatYxT51CY87msMnOZmMbhf7ZaxfbvG7oKEsATOJBxDyFap0Aq6uftY0v4Hq1QSy3MgQBfAHhmrifty-62rfDRlFnd0AzXRBOMpoOSA6SNw_uTPp7AixAE5zosgiIIf7efhzf1QOJfLh1HUYi248z8jk1x2jjKG2YLvMyJuP0rjB5tP5UHjoFGBvKbULpchkF6yiJHnS -d redirect_uri=http%3A%2F%2Flocalhost:3000 https://accounts.spotify.com/api/token +``` + +You will get a JSON like this: + +```json +{ + "access_token": "BQDKxO7h1I1wA3esGK9zCFWn97XORJEPjwAHAEIxCnDXcmy9GbEuPacquwWvpiM4d33gJVHVOP9KUxY8AXkpXc-_zRFZBfneHM2vEeV1Fbfr-0Mw94oimlNf77dRiyxPpm4IUVNLloUWgYcfkAO0", + "token_type": "Bearer", + "expires_in": 3600, + "refresh_token": "AQAtxXvnzRTt4c2-2_Av2WyJQKWxUW_hMVN6QNiqv2i8A2ZElVarmvdhqyc8Pf-Z5n827FTFxTpHq5E3kOsrlRWM3TuJWxjVQsW0icR0zo3BXRFLt2FB2Qfj-pFaZwY-qc8", + "scope": "user-read-currently-playing" +} +``` + +Example on the terminal: + + + +what we need to write down is the `refresh_token`. That token will last infinitely + +Now you can do the request with Next.js or another backend application + +--- + +## 3. Creating API routes in Next.js + +If you need a reference to create the app, you can [check my repository](https://github.com/theodorusclarence/now-playing-spotify). Don't forget to star it! + +You can also use my [nextjs-tailwind-starter](https://github.com/theodorusclarence/nextjs-tailwind-starter) by using: + +```bash +npx create-next-app -e https://github.com/theodorusclarence/nextjs-tailwind-starter project-name +``` + +After all app is installed, add querystring dependency + +```bash +yarn add querystring + +or + +npm i querystring +``` + +Next, make an api route in /pages/api/spotify.js + +If you want the TypeScript version, checkout the code on [GitHub](https://github.com/theodorusclarence/theodorusclarence.com/blob/main/src/pages/api/spotify.ts) + +```jsx +// /pages/api/spotify.js +import querystring from 'querystring'; + +const { + SPOTIFY_CLIENT_ID: client_id, + SPOTIFY_CLIENT_SECRET: client_secret, + SPOTIFY_REFRESH_TOKEN: refresh_token, +} = process.env; + +const basic = Buffer.from(`${client_id}:${client_secret}`).toString('base64'); +const NOW_PLAYING_ENDPOINT = `https://api.spotify.com/v1/me/player/currently-playing`; +const TOKEN_ENDPOINT = `https://accounts.spotify.com/api/token`; + +const getAccessToken = async () => { + const response = await fetch(TOKEN_ENDPOINT, { + method: 'POST', + headers: { + Authorization: `Basic ${basic}`, + 'Content-Type': 'application/x-www-form-urlencoded', + }, + body: querystring.stringify({ + grant_type: 'refresh_token', + refresh_token, + }), + }); + + return response.json(); +}; + +export const getNowPlaying = async () => { + const { access_token } = await getAccessToken(); + + return fetch(NOW_PLAYING_ENDPOINT, { + headers: { + Authorization: `Bearer ${access_token}`, + }, + }); +}; + +export default async (_, res) => { + const response = await getNowPlaying(); + + if ( + response.status === 204 || + response.status > 400 || + response.data.currently_playing_type !== 'track' + ) { + return res.status(200).json({ isPlaying: false }); + } + + const data = { + isPlaying: response.data.is_playing, + title: response.data.item.name, + album: response.data.item.album.name, + artist: response.data.item.album.artists + .map((artist) => artist.name) + .join(', '), + albumImageUrl: response.data.item.album.images[0].url, + songUrl: response.data.item.external_urls.spotify, + }; + + res.status(200).json(data); +}; +``` + +Add .env.local with authorization data that we have written (change the data below with yours) + +```text +SPOTIFY_CLIENT_ID=eaccb97f6d0e405897adf1dd80b95c01 +SPOTIFY_CLIENT_SECRET=a4195c2d0a4243609e697e602e70b7 +SPOTIFY_REFRESH_TOKEN=AQAtxXvnzRTt4c2-2_Av2WyJQKWxUW_hMVN6QNiqv2i8A2ZElVarmvdhqyc8Pf-Z5n827FTFxTpHq5E3kOsrlRWM3TuJWxjVQsW0icR0zo3BXRFLt2FB2Qfj-pFaZwY-qc8 +``` + +Your API is ready with route: `GET https://localhost:3000/api/spotify` + +--- + +## 4. Use API with Next.js + +For data fetching, we can use [SWR](https://www.google.com/url?sa=t&rct=j&q=&esrc=s&source=web&cd=&cad=rja&uact=8&ved=2ahUKEwjm6NXChrfuAhVEeX0KHZB4BjwQFjAAegQICxAC&url=https%3A%2F%2Fswr.vercel.app%2F&usg=AOvVaw0gJGo0q67gd371C_Ax1J7k). SWR is a great library that can fetch the API periodically. SWR will do refetching each time we refocus a the window. Also, install react-icons to get the spotify logo. + +```bash +yarn add swr react-icons + +or + +npm i swr react-icons +``` + +Add SWR in pages/index.jsx like this: + +[TypeScript Version](https://github.com/theodorusclarence/theodorusclarence.com/blob/main/src/components/layout/Spotify.tsx) + +```jsx +import useSWR from 'swr'; + +export default function Home() { + const fetcher = (url) => fetch(url).then((r) => r.json()); + const { data } = useSWR('/api/spotify', fetcher); + return ( + <> +
+
+ {console.log(data)} +
+
+ + ); +} +``` + +There will be 2 types of JSON data that will be sent by the Spotify API: + +1. When there is no song playing + + ```json + { + "isPlaying": false + } + ``` + +2. When there is a song playing + + ```json + { + "album": "Menari Dengan Bayangan", + "albumImageUrl": "https://i.scdn.co/image/ab67616d0000b273d623688488865906052ef96b", + "artist": "Hindia", + "isPlaying": true, + "songUrl": "https://open.spotify.com/track/08OPqLv99g8avzmxQepmiw", + "title": "Besok Mungkin Kita Sampai" + } + ``` + +So, we can conditionally render the data like this: + +```jsx + +
+ {data?.isPlaying ? ( + {data?.album} + ) : ( + + )} +
+ +
+

+ {data?.isPlaying ? data.title : 'Not Listening'} +

+

+ {data?.isPlaying ? data.artist : 'Spotify'} +

+
+
+ +
+
+``` + +You can check out the live deployment on [spotify-playing.theodorusclarence.com](https://spotify-playing.theodorusclarence.com) + +### Thanks and Goodluck! diff --git a/src/contents/blog/swift-value-reference.mdx b/src/contents/blog/swift-value-reference.mdx new file mode 100644 index 0000000..c8a4f2a --- /dev/null +++ b/src/contents/blog/swift-value-reference.mdx @@ -0,0 +1,380 @@ +--- +title: "Understanding Swift's Value and Reference Types" +publishedAt: '2022-05-10' +description: "In-depth explanation of Swift's value and reference types." +englishOnly: 'true' +banner: 'rafael-garcin-VR03NcIer2U-unsplash_lpjftc' +tags: 'swift' +--- + +## Introduction + +There are **two kinds of types** in Swift, which are Value and Reference Types. These types and their characteristics sometimes can be hard to remember and understand. Through this post, I'll try to explain it using a mental model and analogy which will help you easily master swift types. + +## Primitives + +If you use common programming languages (Java, JavaScript, etc) before, you must be familiar with **primitives and non-primitives data types**. I'm not going to jump into the details of primitives, but here are some illustrations I got from google. + + + +Usually, primitives conclude specific data types such as boolean, char, integer, and float. + +### Does Swift have primitive types? + +No, **Swift doesn't have primitive types.** In a sense. Swift **still provides 'primitive-like' data** types such as Int, Bool, Double, etc. However, they are made with **struct**. + +If you look into Swift's `Int` type definition, you can see that it is made with a `struct` + + + +Interesting right? + +--- + +## Quick Intro to Mental Model + +> A mental model is an explanation of someone's **thought process** about how something works in the real world. It is a **representation of the surrounding world**. - [Wikipedia](https://en.wikipedia.org/wiki/Mental_model) + +You might be familiar with this variable box analogy: + + + +> We think of variables as containers that hold information and allow us to access them later. We will think of this as a **box** that has a **label** on it. - [StudeApps](https://studeappsblog.medium.com/what-is-a-variable-dd7e539bf388) + +This works wonders when you are trying to understand what a variable does. + +**That is a mental model.** You create a certain type of analogy to help you understand a concept. + +The prior analogy is not a one-size-fits-all, I won't be using it to explain value & reference type. So prepare for some changes 💪 + +--- + +## Value and Reference Types + + + +There are two kinds of types in Swift which are **Value Types**, and **Reference Types.** Value types are usually defined as `struct`, `enum`, and `tuple`. Whereas the latter is usually defined as a `class` + +### Wire Analogy + +I'm going to use a new mental model for variables, which uses a wire to **point** to the value it holds. + + + +Therefore each variable can point to a single value according to its data type. + +--- + +## Value Types + + + +> A value type is a type whose value is **copied** when it's assigned to a variable or constant, or when it's passed to a function - [Swift Docs](https://docs.swift.org/swift-book/LanguageGuide/ClassesAndStructures.html) + +Remember that 'primitive' data types like Int, Double, String, etc. are made with **struct.** So they follow the value type mental model. + +### Mental Model + +Let's say we have a struct of Animal (the behavior is also the same with enum, tuple, also Int, String because they're made with struct) + +```swift +struct Animal { + var legs = 4 +} + +var sheep = Animal() +``` + + + +Then, we are assigning the `cow` variables with the value of `sheep` + +```swift +var cow = sheep +``` + +Key point: **the value will be copied**. + + + +### Effect of Copying + +After we copy, the `sheep` and `cow` variables now points to **two different struct.** Therefore if we mutate the `cow`, the `sheep` **won't get affected**, and vice versa. + +```swift {8,9,11,12} +struct Animal { + var legs = 4 +} + +var sheep = Animal() +var cow = sheep + +// mutating cow's property +cow.legs = 3 + +print(sheep.legs) // 4 +print(cow.legs) // 3 +``` + + + +## Reference Types + + + +> A reference types is where instances **share a single copy** of the data when they're assigned to a variable or constant, or when they're passed to a function. + +In the wire analogy, **it will point to the same value**. We're using a class that behaves as a reference type. + +### Mental Model + +```swift +class Animal { + var legs = 4 +} + +var sheep = Animal() +var cow = sheep +``` + +Key Point: **It will share a single copy** + + + +### Effect of Sharing A Single Copy + +I believe you already guessed correctly how it will behave. If we **mutate** one variable, **both will be affected**. + +```swift {8,9,11,12} +class Animal { + var legs = 4 +} + +var sheep = Animal() +var cow = sheep + +// mutating cow's property +cow.legs = 3 + +print(sheep.legs) // 3 +print(cow.legs) // 3 +``` + + + +### Proof + +To prove that it is sharing a single copy, we can use `===` ([identity equality](https://developer.apple.com/documentation/swift/1538988)). It will return true if two reference point to the same object instance. + +Let's throw in a new instance called `pig` + +```swift +var sheep = Animal() +var cow = sheep + +// created a new instance +var pig = Animal() +``` + +Here's the wire + + + +Then we can compare them using identity equality + +```swift +print(sheep === cow) // true +print(sheep === pig) // false +``` + +When in doubt, draw the wire analogy to help you. I'm using [excalidraw](https://excalidraw.com/) for the illustration + +## Reference Types Inside of Value Types + +Important thing to note is: If you are referencing a class inside of a struct, then **that variable will still behave like the reference type** + +```swift +class Leg { + var count = 4 +} + +struct Animal { + var name: String + var legs = Leg() +} + +var sheep = Animal(name: "Sheep") +var cow = sheep + +sheep.legs.count = 3 + +print(sheep.legs.count) // 3 +print(cow.legs.count) // 3 + +// referencing the same class +print("\(sheep.legs === sheep.legs)") // true +``` + + + +## Additional Emphasis + +I need to emphasize this in case you're coming from **a JavaScript** background. + +In Swift, **Array and Dictionary are all value types**. + + + +It is still made with struct 😬 + +## How to Choose? + +I don't have much experience with this yet, so I'll [quote an article](https://developer.apple.com/swift/blog/?id=10) instead + +Use a value type when: + +- Comparing instance data with `==` makes sense +- You want copies to have an independent state +- The data will be used in code across multiple threads + +Use a reference type (e.g. use a class) when: + +- Comparing instance identity with `===` makes sense +- You want to create a shared, mutable state + +I believe that using value type for overall use will be sufficient. We can trust that when we change one variable/property, it won't affect the others. Thus, creating **a sense of safety and reliability**. + +Keep a note that this difference only happens when you mutate. **In absence of mutation, values and references act exactly the same way.** + +## Functions & In-Out + +Function parameter follows **value types.** This means you can't mutate the parameter and change the value. + + + +**Swift won't even let you mutate them.** Because what is passed in the parameter will be converted into a `let` variable. + +You can **imitate reference types** on function parameter by using `inout` + +```swift +var numbers = [1,2,3] + +func foo(_ arr: inout Array) { + arr.removeLast() +} + +foo(&numbers) +print(numbers) // [1,2] +``` + +Notice the `&`(ampersand) which is an explicit recognition that you're aware it is being used as `inout`. + +Under the hood, the In-Out parameter **doesn't use reference types.** + +> This behavior is known as _copy-in copy-out_ or _call by value result_. For example, when a computed property or a property with observers is passed as an in-out parameter, its getter is called as part of the function call and its setter is called as part of the function return. - [Swift Docs](https://docs.swift.org/swift-book/ReferenceManual/Declarations.html#ID545) + +## Conclusion + +You now understand that: + +- Swift 'primitive-like' variables are made with a struct +- Value types will copy the value if assigned to a variable or passed into a function +- Reference types will share a single instance if assigned to a variable or passed into a function +- Mutating value types won't affect the other copy, on the other hand, mutating reference types will affect the single instance +- Function parameters follows value types, but can imitate reference types by using the in-out parameter diff --git a/src/contents/blog/tailwindcss-best-practice.mdx b/src/contents/blog/tailwindcss-best-practice.mdx new file mode 100644 index 0000000..18c7bcd --- /dev/null +++ b/src/contents/blog/tailwindcss-best-practice.mdx @@ -0,0 +1,368 @@ +--- +title: 'Styling Best Practices I Use With Tailwind CSS' +publishedAt: '2021-05-15' +lastUpdated: '2022-01-12' +description: 'Tailwind CSS helped a lot when developing a consistent design cleanly and rapidly.' +banner: 'mitchell-luo-j0r6nURLcAg-unsplash_u51v7i' +tags: 'tailwindcss' +--- + +## Introduction + +This blog is not about learning Tailwind CSS from the ground up. Tailwind Labs has a complete [playlist in their youtube channel](https://www.youtube.com/watch?v=elgqxmdVms8&list=PL5f_mz_zU5eXWYDXHUDOLBE0scnuJofO0&ab_channel=TailwindLabs). I recommend checking that out, I learned a lot from it. + +> For me, Tailwind CSS is like another form of writing CSS, and will not replace the knowledge about basic CSS and responsive design. + +## Why Tailwind CSS? + +Tailwind CSS is a utility-first framework that is currently my go-to framework for styling on my website. It provides reusable styling and components that I can even use between multiple websites. Checkout [my library](https://theodorusclarence.com/library), I have some of my components put there so I can easily find them when I need them on another website I'm building. + +Tailwind CSS is provided with a lot of CSS best practices that I also follow when writing Vanilla CSS or SCSS. It mostly suppresses all of the quirky things that most developers found in writing Vanilla CSS like box-sizing, annoying button defaults, collapsing margins, etc. Which makes many developers think that Tailwind CSS is a way to avoid writing CSS and understanding all of the quirky things in a CSS. + +But **I love writing CSS.** I'm quite comfortable in writing CSS and understand how it works. For me, learning Vanilla CSS is really crucial and you should not replace CSS with Tailwind CSS before you understand css. + +> Don't get too comfortable with frameworks that you can't make a website without Tailwind CSS or other frameworks like Bootstrap. + +Well, enough talking, let's get to the best practices I use in writing CSS and Tailwind CSS. Both applies because like I said, Tailwind CSS is just another form of writing CSS. + +## 1. Using Layout Class (or container) + +You probably won't notice sites without constraining width if you are not using a big monitor. Sometimes people forget to add this constraint when developing and causing styling issues for someone that have a larger viewport + +You can use [container class from Tailwind CSS](https://tailwindcss.com/docs/container), but I prefer my own. + +```css +.layout { + max-width: 68.75rem; // 1100px + width: 90%; + margin-left: auto; + margin-right: auto; +} +``` + +The 90% width will provide a great amount of padding for mobile view and will get constrained at 1100px when we get to a bigger viewport. You can use any value for the max-width, but I found 1100px suits a lot of cases. + +To use this class, I usually combine it with `section` tag like this: + +```html + +
+ +
+

Content

+
+
+``` + +We can put all of the background colors or background image on the `section` tag, to avoid it getting cut off by the constraint. + +Here is a demo of the layout class, you can also [check the codepen](https://codepen.io/theodorus/pen/JjWKobM) + + + +## 2. Don't use horizontal padding for layouting + +This is a **preference**, but I don't use horizontal padding for layouting, for example: + +```html +
+

Heading

+
+ +
+

Heading

+
+``` + +I avoid this because we implying a new convention to the code, and we need to remember the amount of padding. For example you have navbar, content, and footer, in all three you have to use the same padding value to make it consistent. + +I suggest to use `.layout` class instead so you don't need to maintain a convention. + +## 3. Add base style + +Tailwind CSS has a feature called [Preflight](https://tailwindcss.com/docs/preflight), which is a set of base styles for Tailwind projects that are designed to smooth over cross-browser inconsistencies and make it easier for you to work within the constraints of your design system. + +Basically, it does something to the default stylesheet agent like removing margin, padding, even font size. Also adding some base style to buttons, links, list, etc. Find more at the [Preflight Docs](https://tailwindcss.com/docs/preflight). + +It is a good thing because we didn't need to do all of the chore like removing blue color and underline from links, resetting font-family, background, border out of buttons, and many more. But, we miss a lot of things like font-size and font-weight for each heading. + +I have a preconfigured base style that I usually add in my projects, it is already added to my [starter](https://clarence.link/starters) which I use in every project. + +```css +.h0 { + @apply font-primary text-3xl font-bold md:text-5xl; +} + +h1, +.h1 { + @apply font-primary text-2xl font-bold md:text-4xl; +} + +h2, +.h2 { + @apply font-primary text-xl font-bold md:text-3xl; +} + +h3, +.h3 { + @apply font-primary text-lg font-bold md:text-2xl; +} + +h4, +.h4 { + @apply font-primary text-base font-bold md:text-lg; +} + +body, +.p { + @apply font-primary text-sm md:text-base; +} +``` + +This will add responsive font-size, and apply the font you are using. **Don't forget to configure the `font-primary` in tailwind config, or just use font-sans.** + +### Disclaimer + +This default sizes are added merely for the sake of convenience. + +However, **you shouldn't choose heading levels because of the font size**. You still have to check the content hierarchy. + +For example, if you need larger font size for a normal paragraph, you can't use `h3` because **it is not a heading**, but you can use `p` tag with the `.h3` class to get the same result. + +```tsx +// ❌ +

Not a content heading

+ +// ✅ +

Not a content heading

+``` + +## 4. Whitespace + +Still, because of preflight, default margins are removed from the base style. So we need to add the margin ourselves. I usually found `mb-2` and `mb-4` really great when adding some whitespace. + +Also, don't forget that Tailwind CSS has a built-in CSS pattern which is [Lobotomized Owl](https://alistapart.com/article/axiomatic-css-and-lobotomized-owls/) by Heydon Pickering. This usually helps a lot even in Vanilla CSS. In Tailwind CSS it is called [Space Between](https://tailwindcss.com/docs/space). It works by adding margin-top to all of the child elements except the first one. + +Here is the original one by Heydon: + +```css +.flow-content > * + * { + margin-top: 1.5em; +} +``` + +It uses relative units so it will be relative to the element's font size. Learn more about this in my [blog about rem, em, and px units](https://theodorusclarence.com/blog/btb-rem-em) + +Tailwind CSS Space Between basically does the same, but with `rem`. So we can only use it if we are sure that the elements inside all have the same spacing. For example: + +```html + +
+

Paragraph

+

Paragraph

+

Paragraph

+

Paragraph

+
+ + +
+

Paragraph

+

Paragraph

+

Paragraph

+

Paragraph

+
+``` + +### Update + +With the recent support of `gap` by [Safari](https://caniuse.com/flexbox-gap), we can safely use `gap` with `flex` now, I prefer to use gap because it is not constrained to only 1 direction. + +**IE** is still not supported, so keep that in mind. + +```html + +
+

Paragraph

+

Paragraph

+

Paragraph

+

Paragraph

+
+``` + +## 5. Use component and map function + +I'm using React, so I can easily achieve a DRY code by mapping the value and using components to reuse. A common example is a Button component + +```jsx +export default function CustomLink(props) { + return ( + + {props.children} + + ); +} +``` + +By using component, we won't repeat the same class over and over again + +For the mapping, I usually put my data in a JS file or declare an array, then map it out. + +```jsx +const links = [ + { href: '/', label: 'Home' }, + { href: '/projects', label: 'Projects' }, + { href: '/blog', label: 'Blog' }, + { href: '/library', label: 'Library' }, + { href: '/about', label: 'About' }, +]; + +export default function Nav() { + return ( + + ); +} +``` + +Notice the use of space between to reduce class too. The code example is taken from this website and [available on github](https://github.com/theodorusclarence/theodorusclarence.com). Kindly star it if it helps! + +## 6. Use clsx to merge classes + +When we abstract code into components, it will be useful if we merge the component's class with the call function. + +I usually avoid put spacing classes in the component, I prefer merging it with props. That way, we don't need to override it every now and then and we can use different margins. + +```tsx +import clsx from 'clsx'; +import * as React from 'react'; + +export default function Tag({ + children, + className, + ...rest +}: React.ComponentPropsWithoutRef<'button'>) { + return ( + + ); +} +``` + +```tsx +Tag +``` + +With clsx, we can also group the classes into its own variant. In a complex component class can be really long, and we should separate it to make it easier to read. + +### Complex example + +Here is one example with more complex use of clsx: + +```tsx + +``` + +## Install Tailwind CSS Injector Addons + +When tailwindcss is shipped to production, the classes that is shipped is only the class that we use in the site (tree shaken). Sometimes it is needed to add some class for debugging issues, or if we just want to play around with website that don't use tailwindcss. + +So, I created an addons that will inject the tailwindcss CDN on the website. + +[Install Tailwind CSS Injector](https://clarence.link/tw-inject) diff --git a/src/contents/blog/vite-cra.mdx b/src/contents/blog/vite-cra.mdx new file mode 100644 index 0000000..382e554 --- /dev/null +++ b/src/contents/blog/vite-cra.mdx @@ -0,0 +1,102 @@ +--- +title: 'Looking at Vite, A Build Tool Faster than Create React App' +publishedAt: '2021-05-02' +description: 'Create React App has always been the default for making a React Application, is there a faster way?' +banner: 'ansgar-scheffold-_fP6zNOrbZI-unsplash_ixywvw' +tags: 'vite,react' +--- + +## Introduction + +> Vite improves the developer experience by a significant level and providing minimal install time, first start up build, and quick hot reload + +For a long time, we always use Webpack for bundler in a React Application. Create React App and Next.js are currently still using Webpack. While Webpack is really great at doing its job, sometimes it can take a lot of time to spin up a dev server, sometimes up to a minute or two with a large-scale website. Hot reloading also felt really long when using Webpack on a large-scale project. + +## What is Vite? + +Vite (French word for "fast", pronounced /vit/) is a build tool that pre-bundles dependencies using esbuild. Esbuild is written in Go and pre-bundles dependencies 10-100x faster than JavaScript-based bundlers. + +Vite has 2 major features: + +- A dev server that provides [rich feature enhancements](https://vitejs.dev/guide/features.html) over [native ES modules](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules), for example extremely fast [Hot Module Replacement (HMR)](https://vitejs.dev/guide/features.html#hot-module-replacement). +- A build command that bundles your code with [Rollup](https://rollupjs.org/), pre-configured to output highly optimized static assets for production. + +Vite works exactly like a normal React application, you can use all of the features the same as Create React App, but significantly faster. + +## How fast is Vite? + +I tried to compare the installation time, and build time until the server started, and here is the result: + +### Installation Time + + + +This is the command I'm using to try both Vite and Create React App. I run the yarn command on Vite because the command only scaffold the code and we need to install the dependencies ourselves + + + +The Installation using CRA took a significant amount of time than Vite. Vite is done in only **26 seconds**, and Create React App took **1 minute and 12 seconds**. It is blazingly fast and I am blown away by this. + +### Build Time + +Now, installation only happen once when we creating the project, but build time happens every single time we want to develop the project! This is far more important and the turning point to change from CRA to Vite. + + + +Here is the result. Vite only took about **300ms**, my iTerm didn't event pick up the time because it is unreasonably fast. While Create React App took **22 seconds** only to show the first page. + +And this is a blank project, the building time will increase greatly when we are working on a larger-scale website. + +## Try it out! + +I encourage you to try it out yourself and feel the difference, to help you I created a vite-react-tailwind starter template, you can [check it out on my github.](https://github.com/theodorusclarence/vite-react-tailwind-starter) Now, open up your terminal and run this code + +```bash +npx degit https://github.com/theodorusclarence/vite-react-tailwind-starter project-name +``` + +then, install all dependencies using + +```bash +yarn +or +npm install +``` + +To start the server run the code + +```bash +yarn dev +or +npm run dev +``` + +How was that? + +Also, the hot reload is really fast too, try to mess up the Landing Page on `/pages/Home.jsx` + +## Summary + +### Use the starter as a bonus! + +Feel free to use that starter on your project. I personally made that starter to free me from setting up react-router, react-helmet, absolute imports, and tailwindcss every single time. Try it out and kindly **[give it a star](https://github.com/theodorusclarence/vite-react-tailwind-starter)!** + +With Vite and Next.js, probably I won't use Create React App ever again. I will definitely choose Vite over CRA when building an authentication gated website and use Next.js when I need to build a static site. diff --git a/src/contents/blog/youtube-list.mdx b/src/contents/blog/youtube-list.mdx new file mode 100644 index 0000000..ba4f31f --- /dev/null +++ b/src/contents/blog/youtube-list.mdx @@ -0,0 +1,80 @@ +--- +title: 'Learning Web Development from YouTube' +publishedAt: '2021-01-20' +description: 'List of youtuber channels that I watched to learn Web Development.' +banner: 'youtube-list_z18lll' +tags: 'tips' +--- + +## Introduction + +May 2020 is the first time I started learning web development. In the beginning, I learn from a [Udemy Course](https://www.udemy.com/course/the-complete-web-development-bootcamp/) by Angela Yu. In my opinion, that course is really great, but it is a very long course, about 54 hours. This course is really good if you really have no clue about Web Development because she explains it thoroughly. + +But, that only course is not enough, there are some materials that are outdated and she teach the styling with bootstrap and skipped the fundamental of CSS. I cover all of that with these youtube channels. + +## HTML CSS + +- [Kevin Powell](https://www.youtube.com/channel/UCJZv4d5rbIKd4QHMPkcABCw) → This channels cover so many fundamentals of CSS, I learned so much from this channel. I also follow his best practice in writing CSS +- [Design Course](https://www.youtube.com/channel/UCVyRiMvfUNMA1UPlDPzG5Ow) → Focuses on how to design a website +- [Web Dev Simplified](https://www.youtube.com/channel/UCFbNIlppjAuEX4znoulh0Cw) → Really good for beginners because he covers basic stuff +- [Dev Ed](https://www.youtube.com/c/DevEd/videos) → There are some video that covers common layouting in HTML and CSS +- [The Net Ninja](https://www.youtube.com/c/TheNetNinja/featured) → There is a crash course on HTML CSS +- [My Blog](/blog) → I have a blog series about html/css called Back to Basic. Be sure to check it out 🥳 + +## JavaScript + +- [Traversy Media](https://www.youtube.com/channel/UC29ju8bIPH5as8OGnQzwJyA) → There are so many stuff besides JavaScript like React +- [Florin Pop](https://www.youtube.com/channel/UCeU-1X402kT-JlLdAitxSMA) → Check out the Higher Order Function (like map, foreach, filter), also check his project with Vanilla Javascript +- [codeSTACKr](https://www.youtube.com/c/codeSTACKr/videos) → Check the [Javascript in 90 seconds](https://www.youtube.com/watch?v=bGDK1rpykOQ) series, there are also some crash courses and some fundamental stuff like this, async await, fetch api + +## TypeScript + +- [Jack Herrington](https://youtube.com/c/JackHerrington) → Awesome content for learning typescript. Check out the [No BS TS](https://youtube.com/playlist?list=PLNqp92_EXZBJYFrpEzdO2EapvU0GOJ09n) playlist + +## React.js + +- [Traversy Media](https://www.youtube.com/channel/UC29ju8bIPH5as8OGnQzwJyA) → There is a React Course that is released in early 2021 (very recommended) +- [Dev Ed](https://www.youtube.com/c/DevEd/videos) → Nice content on Advanced React like Context, Reducer +- [The Net Ninja](https://www.youtube.com/c/TheNetNinja/featured) → This Channel also has an ongoing course on React +- [James Q Quick](https://www.youtube.com/channel/UC-T8W79DN6PBnzomelvqJYw) → Some of Gatsby course if you are interested, I personally choose Next.js over Gatsby +- [Kent C. Dodds](https://kentcdodds.com/) → Not really a youtube channel, but his blog and course is really awesome + +## Next.js + +- [Lee Robinson](https://www.youtube.com/channel/UCZMli3czZnd1uoc1ShTouQw) → Great explaining on Next.js, he actually worked for Vercel he also have a course which called [React 2025](https://www.youtube.com/watch?v=JCOPVq2AYXc&list=PL6bwFJ82M6FXgctyoWXqj7H0GK8_YIeF1) using Next.js and Firestore +- [Colby Fayock](https://youtube.com/colbz) → Overall a great and unique content +- [Leigh Halleday](https://youtube.com/c/leighhalliday) → A lot of great content using Next.js +- [Ben Awad](https://www.youtube.com/channel/UC-8QAzbLcRglXeN_MY9blyw) → Great videos, but he uses some stack that is not familiar for beginners like Typescript and GraphQL + +## Animation in React + +- [Wrong Akram](https://www.youtube.com/channel/UCqrxiLP9RHz2GxDJaZuTRBw) → Many materials on GSAP, framer-motion and some other libraries +- [Sam Selikoff](https://www.youtube.com/c/SamSelikoff/videos) → Focus on Framer Motion and Tailwindcss + +## Additional Resources + +- [Austin Shelby](https://www.youtube.com/channel/UCGyjrq09z9tblkAzvsHtHtg) → explains design pattern using Tailwindcss +- [Jason Lengstorf](https://www.youtube.com/channel/UCnty0z0pNRDgnuoirYXnC5A) → Check his 90 minutes stream that covers a lot of topic. Also check out his [react-query video](https://www.youtube.com/watch?v=DocXo3gqGdI&t=3837s): it pretty similiar with SWR for data fetching and caching +- [Fireship](https://www.youtube.com/channel/UCsBjURrPoezykLs9EqgamOA) → A lot of 'quick course' in 10 or 1 minute to give you knowledge about other tech stack + +## Courses that I Have Completed + +Course is sorted based on the first one I completed: + +1. [The Complete 2020 Web Development Bootcamp](https://www.udemy.com/course/the-complete-web-development-bootcamp/) → long duration, great materials, some of them are outdated +2. [The Complete Node.js Developer](https://www.udemy.com/course/the-complete-nodejs-developer-course-2/) → Very recommended if you are interested in learning backend language with MongoDB +3. [User Experience Design Essentials - Adobe XD UI UX Design](https://www.udemy.com/course/ui-ux-web-design-using-adobe-xd/) → Course to learn how to use Adobe XD, I prefer Figma more because it's free +4. [Learn Figma - UI/UX Design Essential Training](https://www.udemy.com/course/learn-figma/) → really good, has many excercise that can make you feel comfortable on how to use figma +5. [Learn UI Design Fundamentals](https://www.google.com/url?sa=t&rct=j&q=&esrc=s&source=web&cd=&cad=rja&uact=8&ved=2ahUKEwju3-Lv1KnuAhWCX3wKHff6BmQQFjAAegQIAhAC&url=https%3A%2F%2Fscrimba.com%2Flearn%2Fdesign&usg=AOvVaw0APhC4yWLlXDOfQk0cDMAO) → FREE on scrimba, Gary Simon created this course covers the UI Design Fundamentals +6. [Complete Python Developer in 2020: Zero to Mastery](https://www.udemy.com/course/complete-python-developer-zero-to-mastery/) → Really good, teach you from the basic, then covers topic like automation using beautiful soup +7. [React Front to Back](https://www.udemy.com/course/modern-react-front-to-back/) → Great course by Brad Traversy, more like hands-on project using React Context and Redux + +## Summary + +Learning web development can be very tiring because there are so many things that need to be covered from the very basic like HTML, CSS, JS, then you need to learn Git for version control, frontend framework, styling framework, backend services, database. But, you will eventually understand it with some time. + +But, if you enjoy doing web development, watching these videos will feel like entertainment, you learn new stuff every day and keeps investing yourself with knowledge. Also, try to not only watching the video but follow along with the code and make your own project. It was the fastest way to learn for me. + +Goodluck! Contact me via email (check the footer) if you need some personal recommendation, I will be glad to help you! + +Pro Tips: change the playback speed to 1.5x speed to make your productivity 1.5x faster diff --git a/src/contents/library/auth-context.mdx b/src/contents/library/auth-context.mdx new file mode 100644 index 0000000..7d560fa --- /dev/null +++ b/src/contents/library/auth-context.mdx @@ -0,0 +1,256 @@ +--- +title: 'Authentication Context' +tags: 'nextjs,react' +description: 'Great way to structure authentication context in React apps.' +--- + +This structure of context is adapted from [Kent C Dodds Blog Post](https://kentcdodds.com/blog/how-to-use-react-context-effectively). + +## JavaScript Version + +```jsx +import axios from 'axios'; +import { createContext, useContext, useEffect, useReducer } from 'react'; + +const StateContext = createContext({ + authenticated: false, + user: null, + loading: true, +}); + +const DispatchContext = createContext(null); + +const reducer = (state, { type, payload }) => { + switch (type) { + case 'LOGIN': + return { + ...state, + authenticated: true, + user: payload, + }; + case 'LOGOUT': + localStorage.removeItem('token'); + return { + ...state, + authenticated: false, + user: null, + }; + case 'POPULATE': + return { + ...state, + user: { + ...state.user, + ...payload, + }, + }; + case 'STOP_LOADING': + return { + ...state, + loading: false, + }; + default: + throw new Error(`Unknown action type: ${type}`); + } +}; + +export const AuthProvider = ({ children }) => { + const [state, defaultDispatch] = useReducer(reducer, { + user: null, + authenticated: false, + loading: true, + }); + + const dispatch = (type, payload) => defaultDispatch({ type, payload }); + + useEffect(() => { + const loadUser = async () => { + try { + const token = localStorage.getItem('token'); + if (token === null || token === undefined) { + return; + } + const res = await axios.get('/profile', { + headers: { + 'Content-Type': 'application/json', + Authorization: `Bearer ${token}`, + }, + }); + dispatch('LOGIN', res.data.data); + } catch (err) { + console.log(err); + localStorage.removeItem('token'); + } finally { + dispatch('STOP_LOADING'); + } + }; + + loadUser(); + // eslint-disable-next-line + }, []); + + return ( + + + {children} + + + ); +}; + +export const useAuthState = () => useContext(StateContext); +export const useAuthDispatch = () => useContext(DispatchContext); +``` + +## Usage + +You can wrap your code with `` in App.jsx in React or \_app.jsx in Next.js + +Then, to use the state and dispatch, we can use these 2 hooks. + +```jsx +const { authenticated, user } = useAuthState(); +const dispatch = useAuthDispatch(); +``` + +With this context, you can also implement loading, usually in PrivateRoute component + +```jsx +// components/PrivateRoute.jsx +import { ImSpinner9 } from 'react-icons/im'; +import { Route, Redirect } from 'react-router-dom'; +import { useAuthState } from '../contexts/AuthContext'; + +const PrivateRoute = (props) => { + const { authenticated, loading } = useAuthState(); + + if (loading) { + return ( +
+ +

Loading...

+
+ ); + } + + return authenticated ? : ; +}; +export default PrivateRoute; +``` + +--- + +## TypeScript Version + +```tsx +import axios from 'axios'; +import React, { createContext, useContext, useEffect, useReducer } from 'react'; + +type User = { + email: string; + name: string; +} | null; +type AuthState = { + authenticated: boolean; + user: User; + loading: boolean; +}; +type Action = + | { type: 'LOGIN'; payload: User } + | { type: 'POPULATE'; payload: User } + | { type: 'LOGOUT' } + | { type: 'STOP_LOADING' }; +type Dispatch = React.Dispatch; + +const StateContext = createContext({ + authenticated: false, + user: null, + loading: true, +}); +const DispatchContext = createContext(null); + +const reducer = (state: AuthState, action: Action) => { + switch (action.type) { + case 'LOGIN': + return { + ...state, + authenticated: true, + user: action.payload, + }; + case 'LOGOUT': + localStorage.removeItem('token'); + return { + ...state, + authenticated: false, + user: null, + }; + case 'POPULATE': + return { + ...state, + user: { + ...state.user, + ...action.payload, + }, + }; + case 'STOP_LOADING': + return { + ...state, + loading: false, + }; + default: + throw new Error('Unknown action type'); + } +}; + +export const AuthProvider = ({ children }: { children: React.ReactNode }) => { + const [state, dispatch] = useReducer(reducer, { + user: null, + authenticated: false, + loading: true, + }); + + useEffect(() => { + const loadUser = async () => { + try { + const token = localStorage.getItem('token'); + if (token === null || token === undefined) { + return; + } + const res = await axios.get('/profile', { + headers: { + 'Content-Type': 'application/json', + Authorization: `Bearer ${token}`, + }, + }); + dispatch({ type: 'LOGIN', payload: user }); + } catch (err) { + // eslint-disable-next-line no-console + console.log(err); + localStorage.removeItem('token'); + } finally { + dispatch({ type: 'STOP_LOADING' }); + } + }; + + loadUser(); + // eslint-disable-next-line + }, []); + + return ( + + + {children} + + + ); +}; + +export const useAuthState = () => useContext(StateContext); +export const useAuthDispatch: () => Dispatch = () => + useContext(DispatchContext); +``` + +## Additional Resources + +View more authentication pattern for Next.js to avoid flashing by reading [this blog](/blog/nextjs-redirect-no-flashing). + +For Typescript, refer to this [demo site](https://ts-auth.theodorusclarence.com). diff --git a/src/contents/library/cloudinary-blur-loader.mdx b/src/contents/library/cloudinary-blur-loader.mdx new file mode 100644 index 0000000..cf02234 --- /dev/null +++ b/src/contents/library/cloudinary-blur-loader.mdx @@ -0,0 +1,163 @@ +--- +title: 'Blur Loader with Cloudinary' +tags: 'nextjs' +description: "Achieve 'Gatsby-like' Blur Loader using Cloudinary, and Next Image." +--- + +> Blur loader I used throughout this website. + +Inspired by [Colby Fayock Blog Post](https://spacejelly.dev/posts/how-to-use-cloudinary-images-in-next-js-with-blurred-placeholders/). + +## CloudinaryImg Component + +```jsx +import { buildUrl } from 'cloudinary-build-url'; +import clsx from 'clsx'; +import Image from 'next/image'; +import * as React from 'react'; +import Lightbox from 'react-image-lightbox'; + +import 'react-image-lightbox/style.css'; + +type CloudinaryImgType = { + publicId: string, + height: string | number, + width: string | number, + alt: string, + title?: string, + className?: string, + preview?: boolean, + noStyle?: boolean, + aspect?: { + width: number, + height: number, + }, + mdx?: boolean, +} & React.ComponentPropsWithoutRef<'figure'>; + +export default function CloudinaryImg({ + publicId, + height, + width, + alt, + title, + className, + preview = true, + noStyle = false, + mdx = false, + style, + aspect, + ...rest +}: CloudinaryImgType) { + const [isOpen, setIsOpen] = React.useState < boolean > false; + + const urlBlurred = buildUrl(publicId, { + cloud: { + cloudName: 'theodorusclarence', + }, + transformations: { + effect: { + name: 'blur:1000', + }, + quality: 1, + rawTransformation: aspect + ? `c_fill,ar_${aspect.width}:${aspect.height},w_${width}` + : undefined, + }, + }); + const url = buildUrl(publicId, { + cloud: { + cloudName: 'theodorusclarence', + }, + transformations: { + rawTransformation: aspect + ? `c_fill,ar_${aspect.width}:${aspect.height},w_${width}` + : undefined, + }, + }); + + const aspectRatio = aspect ? aspect.height / aspect.width : undefined; + + return ( +
+
setIsOpen(true) : undefined} + > + +
+ {alt} +
+
+ {isOpen && ( + setIsOpen(false)} /> + )} +
+ ); +} +``` + +## Usage + +### 1. For full width + +```jsx +
+ +
+``` + +### 2. For specified width and centered + +If not using jit or in mdx, width can be replaced by using inline-style + +```jsx +
+ +
+``` diff --git a/src/contents/library/conditional-link.mdx b/src/contents/library/conditional-link.mdx new file mode 100644 index 0000000..b6a715f --- /dev/null +++ b/src/contents/library/conditional-link.mdx @@ -0,0 +1,119 @@ +--- +title: 'Conditional Link' +tags: 'nextjs,react' +description: 'Component that can differentiate between internal link or new tab link' +--- + +## Usage + +This component will detect your href props, if it starts with `https://`, it will direct you to another tab. If it starts with `/` it will use Next.js / React Router Link Component. + +## Next.js Code: + +```tsx +// components/UnstyledLink.tsx +import clsx from 'clsx'; +import Link, { LinkProps } from 'next/link'; + +export type UnstyledLinkProps = { + href: string; + children: React.ReactNode; + openNewTab?: boolean; + className?: string; +} & React.ComponentPropsWithoutRef<'a'> & + LinkProps; + +export default function UnstyledLink({ + children, + href, + openNewTab, + className, + ...rest +}: UnstyledLinkProps) { + const isNewTab = + openNewTab !== undefined + ? openNewTab + : href && !href.startsWith('/') && !href.startsWith('#'); + + if (!isNewTab) { + return ( + + + {children} + + + ); + } + + return ( + + {children} + + ); +} +``` + +## Create React App Code: + +For Create React App with React Router, we need to use Link component from react router + +```jsx +// components/UnstyledLink.jsx +import { Link } from 'react-router-dom'; + +export default function UnstyledLink({ + href, + className = '', + openNewTab, + children, + ...rest +}) { + const isInternalLink = href && (href.startsWith('/') || href.startsWith('#')); + + // If is internal link, and no override specified + if (isInternalLink && openNewTab === undefined) { + return ( + + {children} + + ); + } + + // If no override then _blank + // if there is override then use the boolean + return ( + + {children} + + ); +} +``` + +## Custom Style + +To add some classes, I usually make another component such as buttons, hover links, etc. + +```jsx +import UnstyledLink from './UnstyledLink'; + +export default function CustomLink({ className = '', ...rest }) { + return ( + + ); +} +``` diff --git a/src/contents/library/conventional-commit-readme.mdx b/src/contents/library/conventional-commit-readme.mdx new file mode 100644 index 0000000..e88d082 --- /dev/null +++ b/src/contents/library/conventional-commit-readme.mdx @@ -0,0 +1,113 @@ +--- +title: 'Conventional Commits Readme' +tags: 'git' +description: 'Conventional commits documentation for README.md' +--- + +> Conventional Commits is a specification for adding human and machine readable meaning to commit messages. + +See more explanation about [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/). + +This code snippets usually added to README.md on my collaborative projects. + +## English + +```md +## Commit Message Convention + +This website follows [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/) + +Commit message will be checked using [husky and commit lint](https://theodorusclarence.com/library/husky-commitlint-prettier), you can't commit if not using the proper convention below. + +### Format + +`(optional scope): ` +Example: `feat(pre-event): add speakers section` + +### 1. Type + +Available types are: + +- feat → Changes about addition or removal of a feature. Ex: `feat: add table on landing page`, `feat: remove table from landing page` +- fix → Bug fixing, followed by the bug. Ex: `fix: illustration overflows in mobile view` +- docs → Update documentation (README.md) +- style → Updating style, and not changing any logic in the code (reorder imports, fix whitespace, remove comments) +- chore → Installing new dependencies, or bumping deps +- refactor → Changes in code, same output, but different approach +- ci → Update github workflows, husky +- test → Update testing suite, cypress files +- revert → when reverting commits +- perf → Fixing something regarding performance (deriving state, using memo, callback) +- vercel → Blank commit to trigger vercel deployment. Ex: `vercel: trigger deployment` + +### 2. Optional Scope + +Labels per page Ex: `feat(pre-event): add date label` + +\*If there is no scope needed, you don't need to write it + +### 3. Description + +Description must fully explain what is being done. + +Add BREAKING CHANGE in the description if there is a significant change. + +**If there are multiple changes, then commit one by one** + +- After colon, there are a single space Ex: `feat: add something` +- When using `fix` type, state the issue Ex: `fix: file size limiter not working` +- Use imperative, and present tense: "change" not "changed" or "changes" +- Don't use capitals in front of the sentence +- Don't add full stop (.) at the end of the sentence +``` + +## Bahasa Indonesia + +```md +## Commit Message Convention + +This website follows [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/) + +Commit message akan dicek menggunakan [husky and commit lint](https://theodorusclarence.com/library/husky-commitlint-prettier), jika convention salah, maka tidak bisa melakukan commit + +### Format + +`(optional scope): ` +Contoh: `feat(pre-event): add speakers section` + +### 1. Type + +Type yang bisa digunakan adalah: + +- feat → Jika ada penambahan/pengurangan fitur codingan. Contoh: `feat: add table on landing page`, `feat: remove table from landing page` +- fix → Jika ada bug fixing, diikuti dengan bugnya. Contoh: `fix: illustration overflows in mobile view` +- docs → Update documentation (README.md) +- style → Update style, tidak mengubah logic sama sekali (reorder import, fix whitespace, remove comment) +- chore → Jika menginstall, mengupdate dependecies +- refactor → Jika ada perubahan code, dengan end result yang sama, tetapi approach berbeda yang lebih baik. +- ci → Update github workflows, husky +- test → Update testing suite +- revert → Ketika melakukan revert commit +- perf → Fix sesuatu yang bersifat improve performance (derived state, memo) +- vercel → Jika ada commit kosong untuk trigger vercel deployment. Contoh: `vercel: trigger deployment` + +### 2. Optional Scope + +Contoh labeling per page `feat(pre-event): add date label` + +\*Jika tidak ada scope, maka tidak perlu ditulis. + +### 3. Description + +Description harus bisa mendeskripsikan apa yang dikerjakan. + +Tambahkan BREAKING CHANGE di description apabila ada perubahan yang signifikan. + +**Jika ada beberapa hal yang dikerjakan, maka lakukan commit secara bertahap.** + +- Setelah titik dua, ada spasi. Contoh: `feat: add something` +- Jika type `fix` langsung sebut issuenya. Contoh: `fix: file size limiter not working` +- Gunakan kata imperative, dan present tense: "change" bukan "changed" atau "changes" +- Jangan gunakan huruf kapital di awal kalimat description +- Jangan tambahkan titik di akhir description +``` diff --git a/src/contents/library/github/branch-rules.mdx b/src/contents/library/github/branch-rules.mdx new file mode 100644 index 0000000..aa83b44 --- /dev/null +++ b/src/contents/library/github/branch-rules.mdx @@ -0,0 +1,43 @@ +--- +title: 'Branch Rules' +tags: 'github' +description: '' +--- + +Default settings for GitHub Repository Branches + +## General Settings + +Settings > General + + + +## Branch Protection Rules + +Settings > Branches + +1. Add rule + + + +2. Check these settings + + diff --git a/src/contents/library/github/github-sync.mdx b/src/contents/library/github/github-sync.mdx new file mode 100644 index 0000000..259ed70 --- /dev/null +++ b/src/contents/library/github/github-sync.mdx @@ -0,0 +1,83 @@ +--- +title: 'GitHub Sync' +tags: 'github' +description: '' +--- + +Sync 2 repositories on push. + +## Generate Personal Access Token + +The GitHub Account must have **access to both repositories.** + +1. Visit [Token Settings](https://github.com/settings/tokens) +2. Generate a new token + + ![ + +3. Fill as below, this will be used to force push changes to the production repository + + + +4. Copy the Personal Access Token and save it. + + + +## Development Repository Setup + +1. Save this workflow as `.github/workflows/git-sync.yml` + +```yaml {9,17,19} title=".github/workflows/git-sync.yml" caption="Don't forget to change the username and repo name" +name: Git Sync +on: + push: + branches: + - main + workflow_dispatch: +jobs: + git-sync: + if: ${{ github.repository == 'username/dev-repo-name' }} + runs-on: ubuntu-latest + steps: + - name: 🛑 Cancel Previous Runs + uses: styfle/cancel-workflow-action@0.9.1 + - name: 🔗 Synchronize Repository + uses: wei/git-sync@v3 + with: + source_repo: 'https://username:${{ secrets.PAT }}@github.com/username/dev-repo-name.git' + source_branch: 'main' + destination_repo: 'https://username:${{ secrets.PAT }}@github.com/username/production-repo-name.git' + destination_branch: 'main' +``` + +2. Add PAT to the GitHub secrets + + + +## Production Repository Setup + +No setup is needed. diff --git a/src/contents/library/github/wakatime-integration.mdx b/src/contents/library/github/wakatime-integration.mdx new file mode 100644 index 0000000..7180aba --- /dev/null +++ b/src/contents/library/github/wakatime-integration.mdx @@ -0,0 +1,42 @@ +--- +title: 'Integrating WakaTime' +tags: 'github' +description: '' +--- + +1. Go to [Projects](https://wakatime.com/projects) +2. Go to repo badge settings + + + +3. Turn on the repo badge + + + +### Missing Repositories + +If your GitHub repository is missing, you need to **refresh** them + +Go to `https://wakatime.com/projects//edit/github` + + + +Then click **refresh repos** diff --git a/src/contents/library/husky-commitlint-prettier.mdx b/src/contents/library/husky-commitlint-prettier.mdx new file mode 100644 index 0000000..bf0d4b8 --- /dev/null +++ b/src/contents/library/husky-commitlint-prettier.mdx @@ -0,0 +1,103 @@ +--- +title: 'Husky, Commitlint, and Prettier Configuration' +tags: 'git,prettier' +description: 'Configuration to check commit message, and run prettier pre-commit' +--- + +In this configuration there are 2 things that will be checked + +1. Checking the commit message following the [conventional commits](https://theodorusclarence.com/library/conventional-commit-readme), it will fail to commit if the commit message is not following the rule. +2. Writing prettier changes before each commit. This is done to prevent developers that did not have prettier installed in their machine. + +## 1. Initialize Husky + +```bash +npx husky-init && yarn +``` + +It will initialize all of the needed files including a sample pre-commit hook. + +## 2. Add Commitlint + +FIrst, install the dev dependencies + +```bash +yarn add -D @commitlint/config-conventional @commitlint/cli +``` + +Then, add this to the husky hook + +```bash +npx husky add .husky/commit-msg 'npx --no-install commitlint --edit "$1"' +``` + +Create commitlint.config.js, you don't need to override the rules if you don't want to + +```js +module.exports = { + extends: ['@commitlint/config-conventional'], + rules: { + // TODO Add Scope Enum Here + // 'scope-enum': [2, 'always', ['yourscope', 'yourscope']], + 'type-enum': [ + 2, + 'always', + [ + 'feat', + 'fix', + 'docs', + 'chore', + 'style', + 'refactor', + 'ci', + 'test', + 'revert', + 'perf', + 'vercel', + ], + ], + }, +}; +``` + +Commit message will be checked before commit now. 🚀 + +## 3. Add Lint Staged & Prettier + +Install dependencies + +```bash +yarn add -D lint-staged prettier +``` + +Lint staged is used so prettier will not need to check all of the files, but only the staged files. + +Add this to package.json + +```json +{ + // ...existing code, you can split the html,css,json if you add eslint to configuration + "lint-staged": { + "**/*.{js,jsx,ts,tsx,html,css,json}": ["yarn prettier --write"] + } +} +``` + +Then add this to .husky/pre-commit + +```bash +#!/bin/sh +. "$(dirname "$0")/_/husky.sh" + +yarn lint-staged +``` + +You can also add test command here if you want to do test before each commit + +## 4. Add postmerge hook + +Use this to add hook, so husky will run `yarn` everytime we pull changes. + +```bash +npx husky add .husky/post-merge 'yarn' +``` diff --git a/src/contents/library/mac/bash-shortcuts.mdx b/src/contents/library/mac/bash-shortcuts.mdx new file mode 100644 index 0000000..5b3e54c --- /dev/null +++ b/src/contents/library/mac/bash-shortcuts.mdx @@ -0,0 +1,56 @@ +--- +title: 'Bash Workflow Shortcuts' +tags: 'mac' +description: '' +--- + +Bash scripts I use to make my life easier. + +## Vercel Deploy + +Open Vercel deploy page with the current git repo as the source. + +```bash title="vc.sh" +#!/bin/bash + +REMOTE=`git remote show -n origin | grep Push | cut -d: -f2- | rev | cut -c 5- | rev ` +LINK="https://vercel.com/new/import?s=$REMOTE" +CLEAN_LINK=`echo $LINK | sed 's/ //g'` + +# If there is remote, else echo +if [ -n "$REMOTE" ]; then + open $CLEAN_LINK +else + echo "No remote found" +fi +``` + +## Checkout Main and Delete + +Checkout to the main branch and delete the previous branch. + +```bash title="main-and-delete-branch.sh" +#!/bin/bash + +# Checkout to main branch +# Then delete the branch + +branch=$(git branch | grep \* | cut -d ' ' -f2) + +git checkout main +git pull + +if [ $branch != "main" ]; then + git branch -D $branch +fi + + +# add to zsh +# alias gcmr="bash /Users/Clarence/flow/main-and-delete-branch.sh" +``` + +## Git Emergency + +Save your current changes and push them to a remote branch. + +[Code in GitHub](https://github.com/theodorusclarence/git-emergency/blob/main/git-emergency.sh) diff --git a/src/contents/library/mac/dock-config.mdx b/src/contents/library/mac/dock-config.mdx new file mode 100644 index 0000000..672caea --- /dev/null +++ b/src/contents/library/mac/dock-config.mdx @@ -0,0 +1,13 @@ +--- +title: 'Dock Configuration' +tags: 'mac' +description: '' +--- + +Customize dock hide speed and animation + +```bash +defaults write com.apple.dock autohide-delay -float 0; +defaults write com.apple.dock autohide-time-modifier -float 0.4; +killall Dock; +``` diff --git a/src/contents/library/mac/fnm.mdx b/src/contents/library/mac/fnm.mdx new file mode 100644 index 0000000..d3c3206 --- /dev/null +++ b/src/contents/library/mac/fnm.mdx @@ -0,0 +1,38 @@ +--- +title: 'Fast Node Manager' +tags: 'mac' +description: '' +--- + +Node version manager I use. + +## Installation + +[Source](https://github.com/Schniz/fnm#using-a-script-macoslinux) + +``` +curl -fsSL https://fnm.vercel.app/install | bash +``` + +Then add to the end of your `~/.zshrc`: + +```bash title=".zshrc" +# fnm env https://github.com/Schniz/fnm +eval "$(fnm env --use-on-cd)" +``` + +## Usage + +```bash +fnm ls + +fnm install --lts + +fnm use --lts + +fnm install v18.12.1 + +fnm use v18.12.1 + +fnm current +``` diff --git a/src/contents/library/mac/iterm.mdx b/src/contents/library/mac/iterm.mdx new file mode 100644 index 0000000..21a8300 --- /dev/null +++ b/src/contents/library/mac/iterm.mdx @@ -0,0 +1,27 @@ +--- +title: 'iTerm2 Configuration' +tags: 'mac' +description: '' +--- + +## Natural Text Editing + +Allow ⌥ + ←, ⌥ + →, ⌘ + ←, ⌘ + → to move cursor in the shell. + +1. Preferences +2. Profiles +3. Keys +4. Key Mappings +5. Presets → Natural Text Editing + + + +## Dracula Theme + +Tutorial here: [Dracula Theme for iTerm2](https://draculatheme.com/iterm) diff --git a/src/contents/library/mac/zsh.mdx b/src/contents/library/mac/zsh.mdx new file mode 100644 index 0000000..aa5f744 --- /dev/null +++ b/src/contents/library/mac/zsh.mdx @@ -0,0 +1,63 @@ +--- +title: 'ZSH Configurations' +tags: 'mac' +description: '' +--- + +ZSH configurations using [oh-my-zsh](https://github.com/ohmyzsh/ohmyzsh) + +## Theme + +I use oh-my-zsh for the [installation](https://github.com/spaceship-prompt/spaceship-prompt#-installation) + +```bash title=".zshrc" +ZSH_THEME="spaceship" +``` + +## Plugins + +```bash title=".zshrc" +plugins=( + git + autojump + yarn + gh + zsh-syntax-highlighting + zsh-autosuggestions +) +``` + +## Aliases + +```bash title=".zshrc" +# VSCode Alias +alias e="code ." +alias r="code -r ." + +# Development Alias +alias s="BROWSER=none yarn start" +alias sb="BROWSER=none yarn sb" +alias b="yarn build" +alias d="yarn dev" +alias t="yarn typecheck" +alias bs="b && s" +alias gprm='git pull --rebase origin $(git_main_branch)' + +# GitHub Alias +alias gprc="gh pr create" +alias gprw="gh pr create -w --body-file .github/pull_request_template.md" +alias gprf="gh pr create -f" +alias gis="gh issue create" +alias gism="gh issue create -a 'theodorusclarence'" + +# Flow Alias +alias gcmr="bash /Users/Clarence/flow/main-and-delete-branch.sh" +alias emr="bash /Users/Clarence/flow/git-emergency.sh" +alias vc="/bin/bash '/Users/Clarence/flow/vc.sh'" +alias gv="gh repo view --web" +alias prv="gh pr view --web" + +# Captive Apple +# @see https://github.com/unixorn/tumult.plugin.zsh/blob/main/bin/unfuck-captive-portal +alias captive='exec open -a "Safari" "http://captive.apple.com/hotspot-detect.html"' +``` diff --git a/src/contents/library/nextjs/mdx-hot-reload.mdx b/src/contents/library/nextjs/mdx-hot-reload.mdx new file mode 100644 index 0000000..92c381b --- /dev/null +++ b/src/contents/library/nextjs/mdx-hot-reload.mdx @@ -0,0 +1,59 @@ +--- +title: 'MDX Hot Reload' +tags: 'nextjs' +description: '' +--- + +To make Next.js blog page hot reloads while editing the .mdx file + +## The Problem + +If you have a blog created with Next.js and MDX either using [mdx-bundler](https://www.npmjs.com/package/mdx-bundler) or [next-mdx-remote](https://www.npmjs.com/package/next-mdx-remote) (maybe there's more libs with the same issue), you must've experienced the dreaded manual refresh every time you want to see some changes. The hot reload or fast refresh doesn't work because we are not directly changing a JavaScript or TypeScript files. + +With this short article, I'll show you how to enable hot-reload for your blog page by listening to mdx file changes. + +## Install next-remote-refresh + +This [library](https://github.com/souporserious/next-remote-refresh) enables hot reload by utilizing websocket by listening to folder changes. + +```bash +yarn add next-remote-refresh +``` + +## Update next.config.js + +```tsx title="next.config.js" {4} caption="Don't forget to restart your server." +const path = require('path'); + +const withRemoteRefresh = require('next-remote-refresh')({ + // Configure your Next.js project to watch the files you want to refresh + paths: [path.resolve(__dirname, 'src', 'contents')], +}); + +/** + * @type {import('next').NextConfig} + */ +const nextConfig = { + // ... your config +}; + +module.exports = withRemoteRefresh(nextConfig); +``` + +I'm listening changes for all files inside `src/contents` folder. + +## Add the hook to \_app.tsx + +```tsx title="_app.tsx" {1,4} +import { useRemoteRefresh } from 'next-remote-refresh/hook'; + +function MyApp({ Component, pageProps }: AppProps) { + useRemoteRefresh(); + + return ; +} + +export default MyApp; +``` + +It should work now! diff --git a/src/contents/library/react/absolute-import.mdx b/src/contents/library/react/absolute-import.mdx new file mode 100644 index 0000000..adb1024 --- /dev/null +++ b/src/contents/library/react/absolute-import.mdx @@ -0,0 +1,80 @@ +--- +title: 'Absolute Import' +tags: 'react' +description: 'Setting up Absolute Imports with jsconfig' +--- + +> Absolute Import is a great way to clean up your imports + +## Example + +This is the usual way of importing with `..` operator to go back 1 folder: + +```jsx +import Nav from '../../components/Nav'; +``` + +And this is the clean import using absolute import: + +```jsx +import Nav from '@/components/Nav'; +``` + +--- + +# For Next.js + +## Add this to root with the filename of `jsconfig.json` + +```json +{ + "compilerOptions": { + "jsx": "preserve", + "baseUrl": ".", + "paths": { + "@/*": ["*"] + } + }, + "exclude": ["node_modules", ".next"] +} +``` + +Or you can just use [my Next.js & Tailwindcss starter template](https://github.com/theodorusclarence/nextjs-tailwind-starter) + +--- + +# For Create React App + +## Add this to root with the filename of `jsconfig.json` + +```json +{ + "compilerOptions": { + "baseUrl": "./src", + "jsx": "preserve", + "paths": { + "@/*": ["./src/*"], + "@/components/*": ["./components/*"], + "@/pages/*": ["./pages/*"], + "@/contexts/*": ["./contexts/*"], + "@/routes/*": ["./routes/*"] + } + }, + "exclude": ["node_modules", "build"] +} +``` + +## And in craco.config.js + +```js +const path = require('path'); + +module.exports = { + // ...existing code + webpack: { + alias: { + '@': path.resolve(__dirname, 'src'), + }, + }, +}; +``` diff --git a/src/contents/library/react/derived-state.mdx b/src/contents/library/react/derived-state.mdx new file mode 100644 index 0000000..22c7abf --- /dev/null +++ b/src/contents/library/react/derived-state.mdx @@ -0,0 +1,79 @@ +--- +title: 'Derived State' +tags: 'react' +description: '' +--- + +[Go to Twitter Post](https://x.com/th_clarence/status/1762114199579464130?s=20) + +## useState Might Be Overused + +useState sometimes is overused, there will be a case where you can just use Derived State + + + +### The wrong way + +Say that we're building this simple component + + + +Natural way is to create another state for filtered since it's a data that can change + + + +## React Re-renders + +However, react re-renders! Every time the search & data state changes, it's going to call the whole function again. + + + +## Derived State + +Every re-render, if you have a computation, it's going to be re-run again and again. So we can derive the filtered from the data & search state itself. + +This concept is called derived state. + + + +### Performance improvement + +If you're concerned with performance, you can utilize useMemo hook, so every re-render it can check the dependency array and decide if it should recompute + + diff --git a/src/contents/library/react/jsx-one-parent.mdx b/src/contents/library/react/jsx-one-parent.mdx new file mode 100644 index 0000000..ba02ace --- /dev/null +++ b/src/contents/library/react/jsx-one-parent.mdx @@ -0,0 +1,89 @@ +--- +title: 'Why JSX Can Only Have One Parent Element' +tags: 'react' +description: '' +--- + +[Go to Twitter Post](https://twitter.com/th_clarence/status/1625719727418114048?s=20&t=tpMVOc6twUSJ_JMjH2UuuA) + +## The Error + +When you try to return multiple elements from a component, you will get an error message like this: + + + +## How JSX Works + +JSX is a syntactic sugar for `React.createElement{:tsx}`, which is a function that takes three arguments: the tag, the props, and the children. + + + +### Nested Example + +If you have a nested element, the children will be an array of `React.createElement{:tsx}` + + + +## Why can't we return multiple elements? + +If you see the example, it actually makes sense + + + +As we know, we can't return 2 elements from a function, so returning 2 parent elements in a component/map function is not possible. + +## Solutions + +There are two solutions to this problem: + +### Wrap the elements in one parent element + +By wrapping the elements in one parent element, we can solve the problem. + + + +However, you are ending up with an extra element in the DOM tree. This might be your desired result, and mostly it is. Use this if you want to. + +### Use React.Fragment + +`React.Fragment` is a component that doesn't render anything in the DOM tree. + + + +If you want to return multiple elements without adding an extra element in the DOM tree, use `React.Fragment`. diff --git a/src/contents/library/react/namespace-vs-named.mdx b/src/contents/library/react/namespace-vs-named.mdx new file mode 100644 index 0000000..1b26578 --- /dev/null +++ b/src/contents/library/react/namespace-vs-named.mdx @@ -0,0 +1,83 @@ +--- +title: 'Namespace vs Named Imports' +tags: 'react' +description: '' +--- + +What’s the difference between these two imports? + +```jsx +import * as React from 'react'; +import { useState, useEffect } from 'react'; +``` + +Does it mean by using `import *`, it will import all of them, even the unused one to the production? + +Turns out, it won’t. + +## Let’s see a simpler example + +### Exported + +We have these components exported from components.js + +```jsx +// src/components.js +export const A = () => 'A Component'; +export const B = () => 'B Component'; +export const C = () => 'C Component'; +``` + +### Namespace Import + +Imports all of the exported variables from a file under one name. + +```jsx +import * as Component from './components' + + + +``` + +### Named Import + +Import specific variables from a file while using the original variable name + +```jsx +import { A, B } from './components' + + + +``` + +## Tree-Shaking + +Both can be tree-shaken, if we look at the production build, only ‘A Component’ and ‘B Component’ will be there, and ‘C Component’ will not shipped to production. + +### Namespace Import Production Build + + + +### Named Import Production Build + + + +No difference, just use the one you like! + +## Reference + +[dev.to/mapleleaf](https://dev.to/mapleleaf/es6-modules-and-default-imports-p0) + +[developer.mozilla.org](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/import#namespace_import) diff --git a/src/contents/library/react/react-imports.mdx b/src/contents/library/react/react-imports.mdx new file mode 100644 index 0000000..ebef2e5 --- /dev/null +++ b/src/contents/library/react/react-imports.mdx @@ -0,0 +1,37 @@ +--- +title: 'React Imports' +tags: 'react' +description: '' +--- + +Preferred way of importing React in a page. + +## React 17 + +Although with the [React 17 release](https://reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html) it is not mandatory to import React on every page, it is a hassle to get back on top of the file and import a `useState` every time we need to. + +With React 17, there are generally [two ways](https://twitter.com/dan_abramov/status/1308739731551858689) of doing react imports: + +```jsx {1,6} /useState/ +import * as React from 'react'; +const [count, setCount] = React.useState(0); + +// or + +import { useState } from 'react'; +const [count, setCount] = useState(0); +``` + +Well, for the second way, auto import on VSCode works great, but my machine is not that great. + +I also hate to remove imports if we decide not to use that hook anymore. + +## Preferred Way + +```jsx +import * as React from 'react'; +``` + +By using this one, we can just call the hooks without worrying about imports. + +Furthermore, if you are using TypeScript, not doing the first way can make code ugly when we need to import many types such as `React.MouseEvent`, `React.ChangeEvent`, etc. diff --git a/src/contents/library/react/react-snippets.mdx b/src/contents/library/react/react-snippets.mdx new file mode 100644 index 0000000..678c132 --- /dev/null +++ b/src/contents/library/react/react-snippets.mdx @@ -0,0 +1,71 @@ +--- +title: 'React Snippets' +tags: 'react' +description: '' +--- + +Here are some snippets I usually use for React Applications. You can copy and paste the snippets [from here](https://github.com/theodorusclarence/ts-nextjs-tailwind-starter/blob/main/.vscode/typescriptreact.code-snippets). + +### Import React + +Snippets: `ir` + +```tsx +import * as React from 'react'; +``` + +### useState Hook + +Snippets: `us` + +```tsx +const [state, setState] = React.useState(initialState); +``` + +### useEffect Hook + +Snippets: `uf` + +```tsx +React.useEffect(() => {}, []); +``` + +### useReducer Hook + +Snippets: `ur` + +```tsx +const [state, dispatch] = React.useReducer(someReducer, {}); +``` + +### useRef Hook + +Snippets: `urf` + +```tsx +const someRef = React.useRef(); +``` + +### React Functional Components + +To make a new component, I like to use `export default function`. Because when we need to rename it, we only need to do it once. + +Snippets: `rc` + +```tsx +import * as React from 'react'; +export default function Component() { + return
; +} +``` + +### Region Comment + +This is not a React-specific snippet, but it is really useful when we need to group code. It is also collapsible in VSCode + +Snippets: `reg` + +```tsx +//#region //*============== FORM SUBMIT +//#endregion //*============== FORM SUBMIT +``` diff --git a/src/contents/library/styling/margin-usage.mdx b/src/contents/library/styling/margin-usage.mdx new file mode 100644 index 0000000..40f2684 --- /dev/null +++ b/src/contents/library/styling/margin-usage.mdx @@ -0,0 +1,77 @@ +--- +title: 'Margin Usage' +tags: 'styling' +description: '' +--- + +When using margins, try to only make an effect on the element that you put the margin to. It will be so much easier to maintain. + +## The Ways + + + +Practically, there are 3 ways that you can use to add some spacing to your elements. + +## Top and Bottom + +It's not a good practice, because the margin will collapse. + + + +It's something that you don't want to have in your CSS. It will cause unexpected behavior. + +Find more about margin collapse in [Josh's Article](https://www.joshwcomeau.com/css/rules-of-margin-collapse/) + +## Top or Bottom + + + +Nice, both work. But, why prefer one over the other? + +## Margin Bottom Side Effect + +When using **margin-bottom,** this problem will appear + + + +When you remove an element, a side effect requires you to adjust the top element margins. + +It is a nightmare to maintain because you need to find that other element, even though we change the other. + +## Eliminating Side Effects + +Instead, just use **margin-top** + + + +It just works. diff --git a/src/contents/library/tailwindcss-basestyle.mdx b/src/contents/library/tailwindcss-basestyle.mdx new file mode 100644 index 0000000..13bb1b8 --- /dev/null +++ b/src/contents/library/tailwindcss-basestyle.mdx @@ -0,0 +1,161 @@ +--- +title: 'Tailwind CSS Base Style' +tags: 'tailwind-css' +description: 'Base style I usually add to headings and body after preflight.' +--- + +```css +@tailwind base; +@tailwind components; +@tailwind utilities; + +:root { + /* Customize these variable */ + /* https://github.com/adamwathan/tailwind-css-variable-text-opacity-demo */ + --tw-clr-primary-400: 0, 224, 243; + --tw-clr-primary-500: 0, 196, 253; + + --clr-primary-400: rgb(var(--tw-clr-primary-400)); /* #00e0f3 */ + --clr-primary-500: rgb(var(--tw-clr-primary-500)); /* #00c4fd */ +} + +@layer base { + /* inter var - latin */ + @font-face { + font-family: 'Inter'; + font-style: normal; + font-weight: 100 900; + font-display: optional; + src: url('/fonts/inter-var-latin.woff2') format('woff2'); + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, + U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, + U+2212, U+2215, U+FEFF, U+FFFD; + } + + .cursor-newtab { + cursor: url('/images/new-tab.png') 10 10, pointer; + } + + h1 { + @apply font-primary text-2xl font-bold md:text-4xl; + } + + h2 { + @apply font-primary text-xl font-bold md:text-3xl; + } + + h3 { + @apply font-primary text-lg font-bold md:text-2xl; + } + + h4 { + @apply font-primary text-base font-bold md:text-lg; + } + + body { + @apply font-primary text-sm md:text-base; + } + + .layout { + /* 750px */ + /* max-width: 43.75rem; */ + + /* 1100px */ + max-width: 68.75rem; + @apply mx-auto w-11/12; + } + + .bg-dark a.custom-link { + @apply border-gray-200 hover:border-gray-200/0; + } + + /* Class to adjust with sticky footer */ + .min-h-main { + @apply min-h-[calc(100vh-56px)]; + } +} + +@layer utilities { + .animated-underline { + background-image: linear-gradient(#33333300, #33333300), linear-gradient(to + right, var(--clr-primary-400), var(--clr-primary-500)); + background-size: 100% 2px, 0 2px; + background-position: 100% 100%, 0 100%; + background-repeat: no-repeat; + transition: 0.3s ease; + transition-property: background-size, color, background-color, border-color; + } + .animated-underline:hover, + .animated-underline:focus-visible { + background-size: 0 2px, 100% 2px; + } +} +``` + +For `.layout` class explanation, check out my blog post about [Tailwind CSS Best Practice](https://theodorusclarence.com/blog/tailwindcss-best-practice) + +## tailwind.config.js + +You can add types to config by adding tailwindcss types. + +```bash +yarn add -D @types/tailwindcss +``` + +Here is what I usually add for config. Please notice the `purge` key, your directory structure might be different than mine. + +```js +/* eslint-disable @typescript-eslint/no-var-requires */ +const { fontFamily } = require('tailwindcss/defaultTheme'); + +function withOpacity(variableName) { + return ({ opacityValue }) => { + if (opacityValue !== undefined) { + return `rgba(var(${variableName}), ${opacityValue})`; + } + return `rgb(var(${variableName}))`; + }; +} + +/** @type {import("@types/tailwindcss/tailwind-config").TailwindConfig } */ +module.exports = { + mode: 'jit', + purge: ['./src/**/*.{js,jsx,ts,tsx}'], + darkMode: false, // or 'media' or 'class' + theme: { + extend: { + fontFamily: { + primary: ['Inter', ...fontFamily.sans], + }, + colors: { + primary: { + // Customize it on globals.css :root + 400: withOpacity('--tw-clr-primary-400'), + 500: withOpacity('--tw-clr-primary-500'), + }, + dark: '#222222', + }, + keyframes: { + flicker: { + '0%, 19.999%, 22%, 62.999%, 64%, 64.999%, 70%, 100%': { + opacity: 0.99, + filter: + 'drop-shadow(0 0 1px rgba(252, 211, 77)) drop-shadow(0 0 15px rgba(245, 158, 11)) drop-shadow(0 0 1px rgba(252, 211, 77))', + }, + '20%, 21.999%, 63%, 63.999%, 65%, 69.999%': { + opacity: 0.4, + filter: 'none', + }, + }, + }, + animation: { + flicker: 'flicker 3s linear infinite', + }, + }, + }, + variants: { + extend: {}, + }, + plugins: [require('@tailwindcss/forms')], +}; +``` diff --git a/src/contents/library/toast.mdx b/src/contents/library/toast.mdx new file mode 100644 index 0000000..40c9773 --- /dev/null +++ b/src/contents/library/toast.mdx @@ -0,0 +1,238 @@ +--- +title: 'React Hot Toast' +tags: 'nextjs,react' +description: 'Current favorite lib for toast notifications, with some custom hook and implementation' +--- + +## React Hot Toast + +A lib for toast notifications, my current favorite. Checkout [the documentation](https://react-hot-toast.com/docs/toast) + +## Package Dependencies + +```bash +yarn add react-hot-toast +``` + +## Set up + +Add the div to `_app.ts` or `App.tsx` + +```tsx +import { AppProps } from 'next/app'; + +import '@/styles/globals.css'; + +import DismissableToast from '@/components/DismissableToast'; + +function MyApp({ Component, pageProps }: AppProps) { + return ( + <> + + + + ); +} + +export default MyApp; +``` + +### DismissableToast + +React hot toast doesn't support dismiss button by default, so I use a custom component to add it. + +```tsx +import * as React from 'react'; +import { toast, ToastBar, Toaster } from 'react-hot-toast'; +import { HiX } from 'react-icons/hi'; + +export default function DismissableToast() { + return ( +
+ + {(t) => ( + + {({ icon, message }) => ( + <> + {icon} + {message} + {t.type !== 'loading' && ( + + )} + + )} + + )} + +
+ ); +} +``` + +## Usage + +```tsx +import toast from 'react-hot-toast'; + +function addSomething() { + toast.success('message'); + toast.error('message'); +} +``` + +## Toast Promise Example + +With promise, we don't need to use `toast.success` or `toast.error`, but directly send a promise, and it will be managed. + +```tsx +toast.promise( + axios + .post('/user/login', data) + .then((res) => { + const { jwt: token } = res.data.data; + tempToken = token; + localStorage.setItem('token', token); + + // chaining axios in 1 promise + return axios.get('/user/get-user-info'); + }) + .then((user) => { + const role = user.data.data.user_role; + dispatch('LOGIN', { ...user.data.data, token: tempToken }); + + history.replace('/'); + }), + { + loading: 'Loading...', + success: 'Success', + error: (err) => err.response.data.msg, + } +); +``` + +## Default Message + +You can compose it with default message + +```tsx +export const defaultToastMessage = { + loading: 'Loading...', + success: 'Data fetched successfully', + // eslint-disable-next-line @typescript-eslint/no-explicit-any + error: (err: any) => + err?.response?.data?.msg ?? 'Something is wrong, please try again', +}; +``` + +## useLoadingToast hook + +Using a `useLoadingToast` hook we can get access if there is any loading toast showing, then use it to disable button. + +```tsx +import { useToasterStore } from 'react-hot-toast'; + +/** + * Hook to get information whether something is loading + * @returns true if there is a loading toast + * @example const isLoading = useLoadingToast(); + */ +export default function useLoadingToast(): boolean { + const { toasts } = useToasterStore(); + const isLoading = toasts.some((toast) => toast.type === 'loading'); + return isLoading; +} +``` + +## useWithToast hook + +This hook will handle loading and error state from SWR and show toast on initial fetch. Revalidating will not trigger loading toast. + +```tsx +import * as React from 'react'; +import toast from 'react-hot-toast'; +import { SWRResponse } from 'swr'; + +import { defaultToastMessage } from '@/lib/helper'; + +import useLoadingToast from '@/hooks/useLoadingToast'; + +type OptionType = { + runCondition?: boolean; + loading?: string; + success?: string; + error?: string; +}; + +export default function useWithToast( + swr: SWRResponse, + { runCondition = true, ...customMessages }: OptionType = {} +) { + const { data, error } = swr; + + const toastStatus = React.useRef(data ? 'done' : 'idle'); + + const toastMessage = { + ...defaultToastMessage, + ...customMessages, + }; + + React.useEffect(() => { + if (!runCondition) return; + + // if toastStatus is done, + // then it is not the first render or the data is already cached + if (toastStatus.current === 'done') return; + + if (error) { + toast.error(toastMessage.error, { id: toastStatus.current }); + toastStatus.current = 'done'; + } else if (data) { + toast.success(toastMessage.success, { id: toastStatus.current }); + toastStatus.current = 'done'; + } else { + toastStatus.current = toast.loading(toastMessage.loading); + } + + return () => { + toast.dismiss(toastStatus.current); + }; + }, [ + data, + error, + runCondition, + toastMessage.error, + toastMessage.loading, + toastMessage.success, + ]); + + return { ...swr, isLoading: useLoadingToast() }; +} +``` + +### Usage + +You can use it with the `useSWR` hook + +```tsx +const { data: pokemonData, isLoading } = useWithToast( + useSWR('https://pokeapi.co/api/v2/pokemon?limit=20'), + { + loading: 'Override Loading', + } +); +``` diff --git a/src/contents/library/uncategorized/cherry-pick-between-repo.mdx b/src/contents/library/uncategorized/cherry-pick-between-repo.mdx new file mode 100644 index 0000000..a45bd17 --- /dev/null +++ b/src/contents/library/uncategorized/cherry-pick-between-repo.mdx @@ -0,0 +1,136 @@ +--- +title: 'Take Commits Between Repositories' +tags: 'uncategorized' +description: '' +--- + +## Source + +Copy the commit hash + + + +For example, I want to take this commit: `eccde65` + +## Replica + +> I’ll use term **replica** for other repositories that might use the same starter/components. + +1. Add the **source** remote to the **replica** repository + + ```bash + git remote add source https://github.com/theodorusclarence/aether-design-system.git + # ^you can name it whatever you like + ``` + +2. Fetch remote + + ```bash + git fetch source + # ^or your remote name + + git fetch --all + # ^if you're feeling lazy (fetch all available repo) + ``` + +3. Cherry pick + + ```bash + git cherry-pick eccde65 + ``` + + If you have multiple commits to pick from, for example these 3: + + + + put the oldest commit first, the order matters + + ex: `git cherry-pick 8cfc164 dee8c34 eccde65` + +4. Done + + + + it works even if you have other commits that are different from the **source** + +## Common Case: Conflict + +It’s quite common, don’t panic + +For example, you have a commit in the **replica** that changed PaginatedTable + + + +And you also have a different change on the **source’s** commit `eccde65` + + + +It will create a conflict like this + + + + + +Solve them, add to staging, then continue the cherrypick + +```bash +git cherry-pick --continue +``` + +### Demo Video + +Here's a demo + +