├── .eslintignore ├── .eslintrc.json ├── .gitattributes ├── .gitignore ├── .husky └── pre-commit ├── .prettierignore ├── .prettierrc ├── .rspec ├── .rubocop-disabled.yml ├── .rubocop-enabled.yml ├── .rubocop.yml ├── .ruby-version ├── Gemfile ├── Gemfile.lock ├── Procfile.dev ├── README.md ├── Rakefile ├── app ├── channels │ └── application_cable │ │ ├── channel.rb │ │ └── connection.rb ├── controllers │ ├── application_controller.rb │ ├── concerns │ │ └── .keep │ └── welcome_controller.rb ├── helpers │ └── application_helper.rb ├── javascript │ ├── entrypoints │ │ └── application.js │ └── src │ │ ├── assets │ │ └── scss │ │ │ └── style.scss │ │ └── components │ │ ├── App.vue │ │ └── ButtonCounter.vue ├── jobs │ └── application_job.rb ├── mailers │ └── application_mailer.rb ├── models │ ├── application_record.rb │ └── concerns │ │ └── .keep └── views │ ├── layouts │ ├── application.html.erb │ ├── mailer.html.erb │ └── mailer.text.erb │ └── welcome │ └── index.html.erb ├── bin ├── bundle ├── dev ├── rails ├── rake ├── setup └── vite ├── config.ru ├── config ├── application.rb ├── boot.rb ├── cable.yml ├── credentials.yml.enc ├── database.yml ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── initializers │ ├── assets.rb │ ├── content_security_policy.rb │ ├── filter_parameter_logging.rb │ ├── inflections.rb │ └── permissions_policy.rb ├── locales │ └── en.yml ├── puma.rb ├── routes.rb ├── storage.yml └── vite.json ├── db └── schema.rb ├── jsconfig.json ├── lib ├── assets │ └── .keep └── tasks │ └── .keep ├── log └── .keep ├── package.json ├── public ├── 404.html ├── 422.html ├── 500.html ├── apple-touch-icon-precomposed.png ├── apple-touch-icon.png ├── favicon.ico └── robots.txt ├── spec ├── rails_helper.rb └── spec_helper.rb ├── storage └── .keep ├── test ├── application_system_test_case.rb ├── channels │ └── application_cable │ │ └── connection_test.rb ├── controllers │ └── .keep ├── fixtures │ └── files │ │ └── .keep ├── helpers │ └── .keep ├── integration │ └── .keep ├── mailers │ └── .keep ├── models │ └── .keep ├── system │ └── .keep └── test_helper.rb ├── tmp ├── .keep ├── pids │ └── .keep └── storage │ └── .keep ├── vendor └── .keep ├── vite.config.ts └── yarn.lock /.eslintignore: -------------------------------------------------------------------------------- 1 | yarn.lock 2 | node_modules/ 3 | public/vite* 4 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "env": { 3 | "browser": true, 4 | "es2021": true 5 | }, 6 | "parserOptions": { 7 | "ecmaVersion": "latest", 8 | "sourceType": "module" 9 | }, 10 | "extends": [ 11 | "plugin:vue/base", 12 | "plugin:vue/vue3-essential", 13 | "plugin:vue/vue3-strongly-recommended", 14 | "plugin:vue/vue3-recommended", 15 | "prettier" 16 | ], 17 | "plugins": ["vue", "prettier"], 18 | "rules": { 19 | "import/no-unresolved": 0, 20 | "import/order": 0, 21 | "vue/attributes-order": 2, 22 | "vue/order-in-components": 2, 23 | "vue/require-default-prop": 2 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # See https://git-scm.com/docs/gitattributes for more about git attribute files. 2 | 3 | # Mark the database schema as having been generated. 4 | db/schema.rb linguist-generated 5 | 6 | # Mark any vendored files as having been vendored. 7 | vendor/* linguist-vendored 8 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # See https://help.github.com/articles/ignoring-files for more about ignoring files. 2 | # 3 | # If you find yourself ignoring temporary files generated by your text editor 4 | # or operating system, you probably want to add a global ignore instead: 5 | # git config --global core.excludesfile '~/.gitignore_global' 6 | 7 | # Ignore bundler config. 8 | /.bundle 9 | 10 | # Ignore all logfiles and tempfiles. 11 | /log/* 12 | /tmp/* 13 | !/log/.keep 14 | !/tmp/.keep 15 | 16 | # Ignore pidfiles, but keep the directory. 17 | /tmp/pids/* 18 | !/tmp/pids/ 19 | !/tmp/pids/.keep 20 | 21 | # Ignore uploaded files in development. 22 | /storage/* 23 | !/storage/.keep 24 | /tmp/storage/* 25 | !/tmp/storage/ 26 | !/tmp/storage/.keep 27 | 28 | /public/assets 29 | 30 | # Ignore master key for decrypting credentials and more. 31 | /config/master.key 32 | 33 | /app/assets/builds/* 34 | !/app/assets/builds/.keep 35 | 36 | /node_modules 37 | .idea 38 | 39 | # Vite Ruby 40 | /public/vite* 41 | node_modules 42 | # Vite uses dotenv and suggests to ignore local-only env files. See 43 | # https://vitejs.dev/guide/env-and-mode.html#env-files 44 | *.local 45 | 46 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | . "$(dirname -- "$0")/_/husky.sh" 3 | 4 | yarn lint && yarn format 5 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | yarn.lock 2 | node_modules/ 3 | public/vite* 4 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "printWidth": 100, 3 | "tabWidth": 2, 4 | "useTabs": false, 5 | "singleQuote": true, 6 | "trailingComma": "all" 7 | } 8 | -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --require spec_helper 2 | -------------------------------------------------------------------------------- /.rubocop-disabled.yml: -------------------------------------------------------------------------------- 1 | Style/Documentation: 2 | Enabled: false 3 | 4 | Style/ClassAndModuleChildren: 5 | Enabled: false 6 | 7 | Style/MutableConstant: 8 | Enabled: false 9 | 10 | Style/Lambda: 11 | Enabled: false 12 | 13 | Metrics/AbcSize: 14 | Enabled: false 15 | 16 | Metrics/ModuleLength: 17 | Enabled: false 18 | 19 | Rails/ReflectionClassName: 20 | Enabled: false 21 | 22 | Rails/BulkChangeTable: 23 | Enabled: false 24 | 25 | Rails/SkipsModelValidations: 26 | Enabled: false 27 | 28 | Style/FrozenStringLiteralComment: 29 | Enabled: false 30 | 31 | Rails/I18nLocaleTexts: 32 | Enabled: false 33 | 34 | Rails/Output: 35 | Enabled: false 36 | -------------------------------------------------------------------------------- /.rubocop-enabled.yml: -------------------------------------------------------------------------------- 1 | Rails/ActiveRecordCallbacksOrder: 2 | Enabled: true 3 | 4 | Layout/ClassStructure: 5 | Enabled: true 6 | 7 | Layout/EmptyLineAfterMultilineCondition: 8 | Enabled: true 9 | 10 | Style/ClassMethodsDefinitions: 11 | Enabled: true 12 | EnforcedStyle: self_class 13 | 14 | Style/MethodCalledOnDoEndBlock: 15 | Enabled: true 16 | 17 | Style/OptionHash: 18 | Enabled: true 19 | 20 | Rails/PluckId: 21 | Enabled: true 22 | 23 | Rails/DefaultScope: 24 | Enabled: true 25 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- 1 | inherit_from: 2 | - .rubocop-enabled.yml 3 | - .rubocop-disabled.yml 4 | 5 | require: 6 | - rubocop-rails 7 | - rubocop-performance 8 | 9 | AllCops: 10 | NewCops: enable 11 | Exclude: 12 | - db/schema.rb 13 | - db/migrate/* 14 | - config/application.rb 15 | - config/environments/* 16 | - "**/config.ru" 17 | - bin/* 18 | - vendor/bundle/**/* 19 | TargetRubyVersion: 3.2.1 20 | 21 | Style/StringLiterals: 22 | EnforcedStyle: double_quotes 23 | SupportedStyles: 24 | - single_quotes 25 | - double_quotes 26 | 27 | Metrics/MethodLength: 28 | Max: 20 29 | 30 | Layout/LineLength: 31 | Max: 100 32 | Exclude: 33 | - config/environments/* 34 | - config/initializers/* 35 | -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 3.2.1 2 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | git_source(:github) { |repo| "https://github.com/#{repo}.git" } 3 | 4 | ruby "3.2.1" 5 | gem "bootsnap", require: false 6 | gem "cssbundling-rails" 7 | gem "jbuilder" 8 | gem "jsbundling-rails" 9 | gem "mysql2", "~> 0.5" 10 | gem "puma", "~> 5.0" 11 | gem "rails", "~> 7.0.4", ">= 7.0.4.2" 12 | gem "redis", "~> 4.0" 13 | gem "tzinfo-data", platforms: %i[mingw mswin x64_mingw jruby] 14 | gem "vite_rails" 15 | 16 | group :development, :test do 17 | # See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem 18 | gem "debug", platforms: %i[mri mingw x64_mingw] 19 | gem "rubocop" 20 | gem "rubocop-performance" 21 | gem "rubocop-rails" 22 | end 23 | 24 | group :development do 25 | gem "pry" 26 | gem "web-console" 27 | end 28 | 29 | group :test do 30 | # Rspec 31 | gem "database_cleaner-active_record" 32 | gem "factory_bot_rails" 33 | gem "rspec-rails", "~> 6.0", ">= 6.0.1" 34 | gem "shoulda-matchers" 35 | gem "simplecov" 36 | end 37 | -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- 1 | GEM 2 | remote: https://rubygems.org/ 3 | specs: 4 | actioncable (7.0.4.2) 5 | actionpack (= 7.0.4.2) 6 | activesupport (= 7.0.4.2) 7 | nio4r (~> 2.0) 8 | websocket-driver (>= 0.6.1) 9 | actionmailbox (7.0.4.2) 10 | actionpack (= 7.0.4.2) 11 | activejob (= 7.0.4.2) 12 | activerecord (= 7.0.4.2) 13 | activestorage (= 7.0.4.2) 14 | activesupport (= 7.0.4.2) 15 | mail (>= 2.7.1) 16 | net-imap 17 | net-pop 18 | net-smtp 19 | actionmailer (7.0.4.2) 20 | actionpack (= 7.0.4.2) 21 | actionview (= 7.0.4.2) 22 | activejob (= 7.0.4.2) 23 | activesupport (= 7.0.4.2) 24 | mail (~> 2.5, >= 2.5.4) 25 | net-imap 26 | net-pop 27 | net-smtp 28 | rails-dom-testing (~> 2.0) 29 | actionpack (7.0.4.2) 30 | actionview (= 7.0.4.2) 31 | activesupport (= 7.0.4.2) 32 | rack (~> 2.0, >= 2.2.0) 33 | rack-test (>= 0.6.3) 34 | rails-dom-testing (~> 2.0) 35 | rails-html-sanitizer (~> 1.0, >= 1.2.0) 36 | actiontext (7.0.4.2) 37 | actionpack (= 7.0.4.2) 38 | activerecord (= 7.0.4.2) 39 | activestorage (= 7.0.4.2) 40 | activesupport (= 7.0.4.2) 41 | globalid (>= 0.6.0) 42 | nokogiri (>= 1.8.5) 43 | actionview (7.0.4.2) 44 | activesupport (= 7.0.4.2) 45 | builder (~> 3.1) 46 | erubi (~> 1.4) 47 | rails-dom-testing (~> 2.0) 48 | rails-html-sanitizer (~> 1.1, >= 1.2.0) 49 | activejob (7.0.4.2) 50 | activesupport (= 7.0.4.2) 51 | globalid (>= 0.3.6) 52 | activemodel (7.0.4.2) 53 | activesupport (= 7.0.4.2) 54 | activerecord (7.0.4.2) 55 | activemodel (= 7.0.4.2) 56 | activesupport (= 7.0.4.2) 57 | activestorage (7.0.4.2) 58 | actionpack (= 7.0.4.2) 59 | activejob (= 7.0.4.2) 60 | activerecord (= 7.0.4.2) 61 | activesupport (= 7.0.4.2) 62 | marcel (~> 1.0) 63 | mini_mime (>= 1.1.0) 64 | activesupport (7.0.4.2) 65 | concurrent-ruby (~> 1.0, >= 1.0.2) 66 | i18n (>= 1.6, < 2) 67 | minitest (>= 5.1) 68 | tzinfo (~> 2.0) 69 | ast (2.4.2) 70 | bindex (0.8.1) 71 | bootsnap (1.16.0) 72 | msgpack (~> 1.2) 73 | builder (3.2.4) 74 | coderay (1.1.3) 75 | concurrent-ruby (1.2.2) 76 | crass (1.0.6) 77 | cssbundling-rails (1.1.2) 78 | railties (>= 6.0.0) 79 | database_cleaner-active_record (2.1.0) 80 | activerecord (>= 5.a) 81 | database_cleaner-core (~> 2.0.0) 82 | database_cleaner-core (2.0.1) 83 | date (3.3.3) 84 | debug (1.7.1) 85 | diff-lcs (1.5.0) 86 | docile (1.4.0) 87 | dry-cli (1.0.0) 88 | erubi (1.12.0) 89 | factory_bot (6.2.1) 90 | activesupport (>= 5.0.0) 91 | factory_bot_rails (6.2.0) 92 | factory_bot (~> 6.2.0) 93 | railties (>= 5.0.0) 94 | globalid (1.1.0) 95 | activesupport (>= 5.0) 96 | i18n (1.12.0) 97 | concurrent-ruby (~> 1.0) 98 | jbuilder (2.11.5) 99 | actionview (>= 5.0.0) 100 | activesupport (>= 5.0.0) 101 | jsbundling-rails (1.1.1) 102 | railties (>= 6.0.0) 103 | json (2.6.3) 104 | loofah (2.19.1) 105 | crass (~> 1.0.2) 106 | nokogiri (>= 1.5.9) 107 | mail (2.8.1) 108 | mini_mime (>= 0.1.1) 109 | net-imap 110 | net-pop 111 | net-smtp 112 | marcel (1.0.2) 113 | method_source (1.0.0) 114 | mini_mime (1.1.2) 115 | minitest (5.18.0) 116 | msgpack (1.6.1) 117 | mysql2 (0.5.5) 118 | net-imap (0.3.4) 119 | date 120 | net-protocol 121 | net-pop (0.1.2) 122 | net-protocol 123 | net-protocol (0.2.1) 124 | timeout 125 | net-smtp (0.3.3) 126 | net-protocol 127 | nio4r (2.5.8) 128 | nokogiri (1.14.2-x86_64-linux) 129 | racc (~> 1.4) 130 | parallel (1.22.1) 131 | parser (3.2.1.1) 132 | ast (~> 2.4.1) 133 | pry (0.14.2) 134 | coderay (~> 1.1) 135 | method_source (~> 1.0) 136 | puma (5.6.5) 137 | nio4r (~> 2.0) 138 | racc (1.6.2) 139 | rack (2.2.6.3) 140 | rack-proxy (0.7.6) 141 | rack 142 | rack-test (2.0.2) 143 | rack (>= 1.3) 144 | rails (7.0.4.2) 145 | actioncable (= 7.0.4.2) 146 | actionmailbox (= 7.0.4.2) 147 | actionmailer (= 7.0.4.2) 148 | actionpack (= 7.0.4.2) 149 | actiontext (= 7.0.4.2) 150 | actionview (= 7.0.4.2) 151 | activejob (= 7.0.4.2) 152 | activemodel (= 7.0.4.2) 153 | activerecord (= 7.0.4.2) 154 | activestorage (= 7.0.4.2) 155 | activesupport (= 7.0.4.2) 156 | bundler (>= 1.15.0) 157 | railties (= 7.0.4.2) 158 | rails-dom-testing (2.0.3) 159 | activesupport (>= 4.2.0) 160 | nokogiri (>= 1.6) 161 | rails-html-sanitizer (1.5.0) 162 | loofah (~> 2.19, >= 2.19.1) 163 | railties (7.0.4.2) 164 | actionpack (= 7.0.4.2) 165 | activesupport (= 7.0.4.2) 166 | method_source 167 | rake (>= 12.2) 168 | thor (~> 1.0) 169 | zeitwerk (~> 2.5) 170 | rainbow (3.1.1) 171 | rake (13.0.6) 172 | redis (4.8.1) 173 | regexp_parser (2.7.0) 174 | rexml (3.2.5) 175 | rspec-core (3.12.1) 176 | rspec-support (~> 3.12.0) 177 | rspec-expectations (3.12.2) 178 | diff-lcs (>= 1.2.0, < 2.0) 179 | rspec-support (~> 3.12.0) 180 | rspec-mocks (3.12.4) 181 | diff-lcs (>= 1.2.0, < 2.0) 182 | rspec-support (~> 3.12.0) 183 | rspec-rails (6.0.1) 184 | actionpack (>= 6.1) 185 | activesupport (>= 6.1) 186 | railties (>= 6.1) 187 | rspec-core (~> 3.11) 188 | rspec-expectations (~> 3.11) 189 | rspec-mocks (~> 3.11) 190 | rspec-support (~> 3.11) 191 | rspec-support (3.12.0) 192 | rubocop (1.48.1) 193 | json (~> 2.3) 194 | parallel (~> 1.10) 195 | parser (>= 3.2.0.0) 196 | rainbow (>= 2.2.2, < 4.0) 197 | regexp_parser (>= 1.8, < 3.0) 198 | rexml (>= 3.2.5, < 4.0) 199 | rubocop-ast (>= 1.26.0, < 2.0) 200 | ruby-progressbar (~> 1.7) 201 | unicode-display_width (>= 2.4.0, < 3.0) 202 | rubocop-ast (1.27.0) 203 | parser (>= 3.2.1.0) 204 | rubocop-performance (1.16.0) 205 | rubocop (>= 1.7.0, < 2.0) 206 | rubocop-ast (>= 0.4.0) 207 | rubocop-rails (2.18.0) 208 | activesupport (>= 4.2.0) 209 | rack (>= 1.1) 210 | rubocop (>= 1.33.0, < 2.0) 211 | ruby-progressbar (1.13.0) 212 | shoulda-matchers (5.3.0) 213 | activesupport (>= 5.2.0) 214 | simplecov (0.22.0) 215 | docile (~> 1.1) 216 | simplecov-html (~> 0.11) 217 | simplecov_json_formatter (~> 0.1) 218 | simplecov-html (0.12.3) 219 | simplecov_json_formatter (0.1.4) 220 | thor (1.2.1) 221 | timeout (0.3.2) 222 | tzinfo (2.0.6) 223 | concurrent-ruby (~> 1.0) 224 | unicode-display_width (2.4.2) 225 | vite_rails (3.0.14) 226 | railties (>= 5.1, < 8) 227 | vite_ruby (~> 3.0, >= 3.2.2) 228 | vite_ruby (3.2.15) 229 | dry-cli (>= 0.7, < 2) 230 | rack-proxy (~> 0.6, >= 0.6.1) 231 | zeitwerk (~> 2.2) 232 | web-console (4.2.0) 233 | actionview (>= 6.0.0) 234 | activemodel (>= 6.0.0) 235 | bindex (>= 0.4.0) 236 | railties (>= 6.0.0) 237 | websocket-driver (0.7.5) 238 | websocket-extensions (>= 0.1.0) 239 | websocket-extensions (0.1.5) 240 | zeitwerk (2.6.7) 241 | 242 | PLATFORMS 243 | x86_64-linux 244 | 245 | DEPENDENCIES 246 | bootsnap 247 | cssbundling-rails 248 | database_cleaner-active_record 249 | debug 250 | factory_bot_rails 251 | jbuilder 252 | jsbundling-rails 253 | mysql2 (~> 0.5) 254 | pry 255 | puma (~> 5.0) 256 | rails (~> 7.0.4, >= 7.0.4.2) 257 | redis (~> 4.0) 258 | rspec-rails (~> 6.0, >= 6.0.1) 259 | rubocop 260 | rubocop-performance 261 | rubocop-rails 262 | shoulda-matchers 263 | simplecov 264 | tzinfo-data 265 | vite_rails 266 | web-console 267 | 268 | RUBY VERSION 269 | ruby 3.2.1p31 270 | 271 | BUNDLED WITH 272 | 2.4.6 273 | -------------------------------------------------------------------------------- /Procfile.dev: -------------------------------------------------------------------------------- 1 | vite: bin/vite dev 2 | web: bin/rails s -p 3000 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # README 2 | 3 | This README would normally document whatever steps are necessary to get the 4 | application up and running. 5 | 6 | Things you may want to cover: 7 | 8 | - Ruby version 9 | 10 | - System dependencies 11 | 12 | - Configuration 13 | 14 | - Database creation 15 | 16 | - Database initialization 17 | 18 | - How to run the test suite 19 | 20 | - Services (job queues, cache servers, search engines, etc.) 21 | 22 | - Deployment instructions 23 | 24 | - ... 25 | -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- 1 | # Add your own tasks in files placed in lib/tasks ending in .rake, 2 | # for example lib/tasks/capistrano.rake, and they will automatically be available to Rake. 3 | 4 | require_relative "config/application" 5 | 6 | Rails.application.load_tasks 7 | -------------------------------------------------------------------------------- /app/channels/application_cable/channel.rb: -------------------------------------------------------------------------------- 1 | module ApplicationCable 2 | class Channel < ActionCable::Channel::Base 3 | end 4 | end 5 | -------------------------------------------------------------------------------- /app/channels/application_cable/connection.rb: -------------------------------------------------------------------------------- 1 | module ApplicationCable 2 | class Connection < ActionCable::Connection::Base 3 | end 4 | end 5 | -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- 1 | class ApplicationController < ActionController::Base 2 | end 3 | -------------------------------------------------------------------------------- /app/controllers/concerns/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yopaz-Co-Ltd/rails-vuejs-base/2cd9a5f5a70ef986335b3120d81fd33e6974067d/app/controllers/concerns/.keep -------------------------------------------------------------------------------- /app/controllers/welcome_controller.rb: -------------------------------------------------------------------------------- 1 | class WelcomeController < ApplicationController 2 | def index; end 3 | end 4 | -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/javascript/entrypoints/application.js: -------------------------------------------------------------------------------- 1 | import { createApp } from 'vue'; 2 | import App from '@/src/components/App.vue'; 3 | import '@/src/assets/scss/style.scss'; 4 | import * as bootstrap from 'bootstrap'; 5 | 6 | createApp(App).use(bootstrap).mount('#app'); 7 | -------------------------------------------------------------------------------- /app/javascript/src/assets/scss/style.scss: -------------------------------------------------------------------------------- 1 | @import '~bootstrap/scss/bootstrap'; 2 | 3 | .test { 4 | color: red; 5 | } 6 | -------------------------------------------------------------------------------- /app/javascript/src/components/App.vue: -------------------------------------------------------------------------------- 1 | 7 | 8 | 20 | -------------------------------------------------------------------------------- /app/javascript/src/components/ButtonCounter.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 14 | -------------------------------------------------------------------------------- /app/jobs/application_job.rb: -------------------------------------------------------------------------------- 1 | class ApplicationJob < ActiveJob::Base 2 | # Automatically retry jobs that encountered a deadlock 3 | # retry_on ActiveRecord::Deadlocked 4 | 5 | # Most jobs are safe to ignore if the underlying records are no longer available 6 | # discard_on ActiveJob::DeserializationError 7 | end 8 | -------------------------------------------------------------------------------- /app/mailers/application_mailer.rb: -------------------------------------------------------------------------------- 1 | class ApplicationMailer < ActionMailer::Base 2 | default from: "from@example.com" 3 | layout "mailer" 4 | end 5 | -------------------------------------------------------------------------------- /app/models/application_record.rb: -------------------------------------------------------------------------------- 1 | class ApplicationRecord < ActiveRecord::Base 2 | primary_abstract_class 3 | end 4 | -------------------------------------------------------------------------------- /app/models/concerns/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yopaz-Co-Ltd/rails-vuejs-base/2cd9a5f5a70ef986335b3120d81fd33e6974067d/app/models/concerns/.keep -------------------------------------------------------------------------------- /app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | VisionworkDev 5 | 6 | <%= csrf_meta_tags %> 7 | <%= csp_meta_tag %> 8 | 9 | <%= vite_client_tag %> 10 | <%= vite_javascript_tag 'application' %> 11 | 20 | 21 | 22 | 23 | 24 |
25 | <%= yield %> 26 | 27 | 28 | -------------------------------------------------------------------------------- /app/views/layouts/mailer.html.erb: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 8 | 9 | 10 | 11 | <%= yield %> 12 | 13 | 14 | -------------------------------------------------------------------------------- /app/views/layouts/mailer.text.erb: -------------------------------------------------------------------------------- 1 | <%= yield %> 2 | -------------------------------------------------------------------------------- /app/views/welcome/index.html.erb: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | # frozen_string_literal: true 3 | 4 | # 5 | # This file was generated by Bundler. 6 | # 7 | # The application 'bundle' is installed as part of a gem, and 8 | # this file is here to facilitate running it. 9 | # 10 | 11 | require "rubygems" 12 | 13 | m = Module.new do 14 | module_function 15 | 16 | def invoked_as_script? 17 | File.expand_path($0) == File.expand_path(__FILE__) 18 | end 19 | 20 | def env_var_version 21 | ENV["BUNDLER_VERSION"] 22 | end 23 | 24 | def cli_arg_version 25 | return unless invoked_as_script? # don't want to hijack other binstubs 26 | return unless "update".start_with?(ARGV.first || " ") # must be running `bundle update` 27 | bundler_version = nil 28 | update_index = nil 29 | ARGV.each_with_index do |a, i| 30 | if update_index && update_index.succ == i && a =~ Gem::Version::ANCHORED_VERSION_PATTERN 31 | bundler_version = a 32 | end 33 | next unless a =~ /\A--bundler(?:[= ](#{Gem::Version::VERSION_PATTERN}))?\z/ 34 | bundler_version = $1 35 | update_index = i 36 | end 37 | bundler_version 38 | end 39 | 40 | def gemfile 41 | gemfile = ENV["BUNDLE_GEMFILE"] 42 | return gemfile if gemfile && !gemfile.empty? 43 | 44 | File.expand_path("../Gemfile", __dir__) 45 | end 46 | 47 | def lockfile 48 | lockfile = 49 | case File.basename(gemfile) 50 | when "gems.rb" then gemfile.sub(/\.rb$/, gemfile) 51 | else "#{gemfile}.lock" 52 | end 53 | File.expand_path(lockfile) 54 | end 55 | 56 | def lockfile_version 57 | return unless File.file?(lockfile) 58 | lockfile_contents = File.read(lockfile) 59 | return unless lockfile_contents =~ /\n\nBUNDLED WITH\n\s{2,}(#{Gem::Version::VERSION_PATTERN})\n/ 60 | Regexp.last_match(1) 61 | end 62 | 63 | def bundler_requirement 64 | @bundler_requirement ||= 65 | env_var_version || 66 | cli_arg_version || 67 | bundler_requirement_for(lockfile_version) 68 | end 69 | 70 | def bundler_requirement_for(version) 71 | return "#{Gem::Requirement.default}.a" unless version 72 | 73 | bundler_gem_version = Gem::Version.new(version) 74 | 75 | bundler_gem_version.approximate_recommendation 76 | end 77 | 78 | def load_bundler! 79 | ENV["BUNDLE_GEMFILE"] ||= gemfile 80 | 81 | activate_bundler 82 | end 83 | 84 | def activate_bundler 85 | gem_error = activation_error_handling do 86 | gem "bundler", bundler_requirement 87 | end 88 | return if gem_error.nil? 89 | require_error = activation_error_handling do 90 | require "bundler/version" 91 | end 92 | return if require_error.nil? && Gem::Requirement.new(bundler_requirement).satisfied_by?(Gem::Version.new(Bundler::VERSION)) 93 | warn "Activating bundler (#{bundler_requirement}) failed:\n#{gem_error.message}\n\nTo install the version of bundler this project requires, run `gem install bundler -v '#{bundler_requirement}'`" 94 | exit 42 95 | end 96 | 97 | def activation_error_handling 98 | yield 99 | nil 100 | rescue StandardError, LoadError => e 101 | e 102 | end 103 | end 104 | 105 | m.load_bundler! 106 | 107 | if m.invoked_as_script? 108 | load Gem.bin_path("bundler", "bundle") 109 | end 110 | -------------------------------------------------------------------------------- /bin/dev: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | 3 | if ! gem list foreman -i --silent; then 4 | echo "Installing foreman..." 5 | gem install foreman 6 | fi 7 | 8 | exec foreman start -f Procfile.dev "$@" 9 | -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | APP_PATH = File.expand_path("../config/application", __dir__) 3 | require_relative "../config/boot" 4 | require "rails/commands" 5 | -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | require_relative "../config/boot" 3 | require "rake" 4 | Rake.application.run 5 | -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | require "fileutils" 3 | 4 | # path to your application root. 5 | APP_ROOT = File.expand_path("..", __dir__) 6 | 7 | def system!(*args) 8 | system(*args) || abort("\n== Command #{args} failed ==") 9 | end 10 | 11 | FileUtils.chdir APP_ROOT do 12 | # This script is a way to set up or update your development environment automatically. 13 | # This script is idempotent, so that you can run it at any time and get an expectable outcome. 14 | # Add necessary setup steps to this file. 15 | 16 | puts "== Installing dependencies ==" 17 | system! "gem install bundler --conservative" 18 | system("bundle check") || system!("bundle install") 19 | 20 | # puts "\n== Copying sample files ==" 21 | # unless File.exist?("config/database.yml") 22 | # FileUtils.cp "config/database.yml.sample", "config/database.yml" 23 | # end 24 | 25 | puts "\n== Preparing database ==" 26 | system! "bin/rails db:prepare" 27 | 28 | puts "\n== Removing old logs and tempfiles ==" 29 | system! "bin/rails log:clear tmp:clear" 30 | 31 | puts "\n== Restarting application server ==" 32 | system! "bin/rails restart" 33 | end 34 | -------------------------------------------------------------------------------- /bin/vite: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | # frozen_string_literal: true 3 | 4 | # 5 | # This file was generated by Bundler. 6 | # 7 | # The application 'vite' is installed as part of a gem, and 8 | # this file is here to facilitate running it. 9 | # 10 | 11 | ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../Gemfile", __dir__) 12 | 13 | bundle_binstub = File.expand_path("bundle", __dir__) 14 | 15 | if File.file?(bundle_binstub) 16 | if File.read(bundle_binstub, 300).include?("This file was generated by Bundler") 17 | load(bundle_binstub) 18 | else 19 | abort("Your `bin/bundle` was not generated by Bundler, so this binstub cannot run. 20 | Replace `bin/bundle` by running `bundle binstubs bundler --force`, then run this command again.") 21 | end 22 | end 23 | 24 | require "rubygems" 25 | require "bundler/setup" 26 | 27 | load Gem.bin_path("vite_ruby", "vite") 28 | -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- 1 | # This file is used by Rack-based servers to start the application. 2 | 3 | require_relative "config/environment" 4 | 5 | run Rails.application 6 | Rails.application.load_server 7 | -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- 1 | require_relative "boot" 2 | 3 | require "rails/all" 4 | 5 | # Require the gems listed in Gemfile, including any gems 6 | # you've limited to :test, :development, or :production. 7 | Bundler.require(*Rails.groups) 8 | 9 | module VisionworkDev 10 | class Application < Rails::Application 11 | # Initialize configuration defaults for originally generated Rails version. 12 | config.load_defaults 7.0 13 | 14 | # Configuration for the application, engines, and railties goes here. 15 | # 16 | # These settings can be overridden in specific environments using the files 17 | # in config/environments, which are processed later. 18 | # 19 | # config.time_zone = "Central Time (US & Canada)" 20 | # config.eager_load_paths << Rails.root.join("extras") 21 | end 22 | end 23 | -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- 1 | ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../Gemfile", __dir__) 2 | 3 | require "bundler/setup" # Set up gems listed in the Gemfile. 4 | require "bootsnap/setup" # Speed up boot time by caching expensive operations. 5 | -------------------------------------------------------------------------------- /config/cable.yml: -------------------------------------------------------------------------------- 1 | development: 2 | adapter: redis 3 | url: redis://localhost:6379/1 4 | 5 | test: 6 | adapter: test 7 | 8 | production: 9 | adapter: redis 10 | url: <%= ENV.fetch("REDIS_URL") { "redis://localhost:6379/1" } %> 11 | channel_prefix: visionwork_dev_production 12 | -------------------------------------------------------------------------------- /config/credentials.yml.enc: -------------------------------------------------------------------------------- 1 | LIDNMg6AEoZzoT0zu2XiQO5d2zPUMSxJmWBHAt2xJOx2MYPnE4jKcWDj+Nd9cXkccqYVsbCc/d86wr0r1U730BX/VfGkH9MwCOxGXPEYgarir2qvhlpXihkdfwQqDUVImUykY5THEBoxoD8TsmuEgoXuoM9x03EG+VXFd8RDoaMBuo99cM2U/NKxjWmNFKed8pQB4I+OxzgbULJaLkwNaWwuzd8QpuPCgvArdaOtiORCCpoIGxn5V+sM1x3tnxQcJp6rFPpoV+GqIOeqFR7sDzXYfWjzlbwkVZyhkGwe4w5cdqQIeneINwVx5ZIR3/YX5Y3d5crVuyGTRDOJf++gQR9A6qi2ZvxvAkYEOQeKl72WEjUoIc5ihbCo2q0uXfn1uapaC514XhvwSX/UL9svmW5xo2vlRQWrkbyw--V75IxoCAb9r9JUzy--gLqXuf6pbw6hnnSQK98eIQ== -------------------------------------------------------------------------------- /config/database.yml: -------------------------------------------------------------------------------- 1 | # MySQL. Versions 5.5.8 and up are supported. 2 | # 3 | # Install the MySQL driver 4 | # gem install mysql2 5 | # 6 | # Ensure the MySQL gem is defined in your Gemfile 7 | # gem "mysql2" 8 | # 9 | # And be sure to use new-style password hashing: 10 | # https://dev.mysql.com/doc/refman/5.7/en/password-hashing.html 11 | # 12 | default: &default 13 | adapter: mysql2 14 | encoding: utf8mb4 15 | pool: <%= ENV.fetch("RAILS_MAX_THREADS") { 5 } %> 16 | username: root 17 | password: 18 | socket: /var/run/mysqld/mysqld.sock 19 | 20 | development: 21 | <<: *default 22 | database: visionwork_dev_development 23 | 24 | # Warning: The database defined as "test" will be erased and 25 | # re-generated from your development database when you run "rake". 26 | # Do not set this db to the same as development or production. 27 | test: 28 | <<: *default 29 | database: visionwork_dev_test 30 | 31 | # As with config/credentials.yml, you never want to store sensitive information, 32 | # like your database password, in your source code. If your source code is 33 | # ever seen by anyone, they now have access to your database. 34 | # 35 | # Instead, provide the password or a full connection URL as an environment 36 | # variable when you boot the app. For example: 37 | # 38 | # DATABASE_URL="mysql2://myuser:mypass@localhost/somedatabase" 39 | # 40 | # If the connection URL is provided in the special DATABASE_URL environment 41 | # variable, Rails will automatically merge its configuration values on top of 42 | # the values provided in this file. Alternatively, you can specify a connection 43 | # URL environment variable explicitly: 44 | # 45 | # production: 46 | # url: <%= ENV["MY_APP_DATABASE_URL"] %> 47 | # 48 | # Read https://guides.rubyonrails.org/configuring.html#configuring-a-database 49 | # for a full overview on how database connection configuration can be specified. 50 | # 51 | production: 52 | <<: *default 53 | database: visionwork_dev_production 54 | username: visionwork_dev 55 | password: <%= ENV["VISIONWORK_DEV_DATABASE_PASSWORD"] %> 56 | -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- 1 | # Load the Rails application. 2 | require_relative "application" 3 | 4 | # Initialize the Rails application. 5 | Rails.application.initialize! 6 | -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- 1 | require "active_support/core_ext/integer/time" 2 | 3 | Rails.application.configure do 4 | # Settings specified here will take precedence over those in config/application.rb. 5 | 6 | # In the development environment your application's code is reloaded any time 7 | # it changes. This slows down response time but is perfect for development 8 | # since you don't have to restart the web server when you make code changes. 9 | config.cache_classes = false 10 | 11 | # Do not eager load code on boot. 12 | config.eager_load = false 13 | 14 | # Show full error reports. 15 | config.consider_all_requests_local = true 16 | 17 | # Enable server timing 18 | config.server_timing = true 19 | 20 | # Enable/disable caching. By default caching is disabled. 21 | # Run rails dev:cache to toggle caching. 22 | if Rails.root.join("tmp/caching-dev.txt").exist? 23 | config.action_controller.perform_caching = true 24 | config.action_controller.enable_fragment_cache_logging = true 25 | 26 | config.cache_store = :memory_store 27 | config.public_file_server.headers = { 28 | "Cache-Control" => "public, max-age=#{2.days.to_i}" 29 | } 30 | else 31 | config.action_controller.perform_caching = false 32 | 33 | config.cache_store = :null_store 34 | end 35 | 36 | # Store uploaded files on the local file system (see config/storage.yml for options). 37 | config.active_storage.service = :local 38 | 39 | # Don't care if the mailer can't send. 40 | config.action_mailer.raise_delivery_errors = false 41 | 42 | config.action_mailer.perform_caching = false 43 | 44 | # Print deprecation notices to the Rails logger. 45 | config.active_support.deprecation = :log 46 | 47 | # Raise exceptions for disallowed deprecations. 48 | config.active_support.disallowed_deprecation = :raise 49 | 50 | # Tell Active Support which deprecation messages to disallow. 51 | config.active_support.disallowed_deprecation_warnings = [] 52 | 53 | # Raise an error on page load if there are pending migrations. 54 | config.active_record.migration_error = :page_load 55 | 56 | # Highlight code that triggered database queries in logs. 57 | config.active_record.verbose_query_logs = true 58 | 59 | # Suppress logger output for asset requests. 60 | # config.assets.quiet = true 61 | 62 | # Raises error for missing translations. 63 | # config.i18n.raise_on_missing_translations = true 64 | 65 | # Annotate rendered view with file names. 66 | # config.action_view.annotate_rendered_view_with_filenames = true 67 | 68 | # Uncomment if you wish to allow Action Cable access from any origin. 69 | # config.action_cable.disable_request_forgery_protection = true 70 | end 71 | -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- 1 | require "active_support/core_ext/integer/time" 2 | 3 | Rails.application.configure do 4 | # Settings specified here will take precedence over those in config/application.rb. 5 | 6 | # Code is not reloaded between requests. 7 | config.cache_classes = true 8 | 9 | # Eager load code on boot. This eager loads most of Rails and 10 | # your application in memory, allowing both threaded web servers 11 | # and those relying on copy on write to perform better. 12 | # Rake tasks automatically ignore this option for performance. 13 | config.eager_load = true 14 | 15 | # Full error reports are disabled and caching is turned on. 16 | config.consider_all_requests_local = false 17 | config.action_controller.perform_caching = true 18 | 19 | # Ensures that a master key has been made available in either ENV["RAILS_MASTER_KEY"] 20 | # or in config/master.key. This key is used to decrypt credentials (and other encrypted files). 21 | # config.require_master_key = true 22 | 23 | # Disable serving static files from the `/public` folder by default since 24 | # Apache or NGINX already handles this. 25 | config.public_file_server.enabled = ENV["RAILS_SERVE_STATIC_FILES"].present? 26 | 27 | # Compress CSS using a preprocessor. 28 | # config.assets.css_compressor = :sass 29 | 30 | # Do not fallback to assets pipeline if a precompiled asset is missed. 31 | # config.assets.compile = false 32 | 33 | # Enable serving of images, stylesheets, and JavaScripts from an asset server. 34 | # config.asset_host = "http://assets.example.com" 35 | 36 | # Specifies the header that your server uses for sending files. 37 | # config.action_dispatch.x_sendfile_header = "X-Sendfile" # for Apache 38 | # config.action_dispatch.x_sendfile_header = "X-Accel-Redirect" # for NGINX 39 | 40 | # Store uploaded files on the local file system (see config/storage.yml for options). 41 | config.active_storage.service = :local 42 | 43 | # Mount Action Cable outside main process or domain. 44 | # config.action_cable.mount_path = nil 45 | # config.action_cable.url = "wss://example.com/cable" 46 | # config.action_cable.allowed_request_origins = [ "http://example.com", /http:\/\/example.*/ ] 47 | 48 | # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies. 49 | # config.force_ssl = true 50 | 51 | # Include generic and useful information about system operation, but avoid logging too much 52 | # information to avoid inadvertent exposure of personally identifiable information (PII). 53 | config.log_level = :info 54 | 55 | # Prepend all log lines with the following tags. 56 | config.log_tags = [ :request_id ] 57 | 58 | # Use a different cache store in production. 59 | # config.cache_store = :mem_cache_store 60 | 61 | # Use a real queuing backend for Active Job (and separate queues per environment). 62 | # config.active_job.queue_adapter = :resque 63 | # config.active_job.queue_name_prefix = "visionwork_dev_production" 64 | 65 | config.action_mailer.perform_caching = false 66 | 67 | # Ignore bad email addresses and do not raise email delivery errors. 68 | # Set this to true and configure the email server for immediate delivery to raise delivery errors. 69 | # config.action_mailer.raise_delivery_errors = false 70 | 71 | # Enable locale fallbacks for I18n (makes lookups for any locale fall back to 72 | # the I18n.default_locale when a translation cannot be found). 73 | config.i18n.fallbacks = true 74 | 75 | # Don't log any deprecations. 76 | config.active_support.report_deprecations = false 77 | 78 | # Use default logging formatter so that PID and timestamp are not suppressed. 79 | config.log_formatter = ::Logger::Formatter.new 80 | 81 | # Use a different logger for distributed setups. 82 | # require "syslog/logger" 83 | # config.logger = ActiveSupport::TaggedLogging.new(Syslog::Logger.new "app-name") 84 | 85 | if ENV["RAILS_LOG_TO_STDOUT"].present? 86 | logger = ActiveSupport::Logger.new(STDOUT) 87 | logger.formatter = config.log_formatter 88 | config.logger = ActiveSupport::TaggedLogging.new(logger) 89 | end 90 | 91 | # Do not dump schema after migrations. 92 | config.active_record.dump_schema_after_migration = false 93 | end 94 | -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- 1 | require "active_support/core_ext/integer/time" 2 | 3 | # The test environment is used exclusively to run your application's 4 | # test suite. You never need to work with it otherwise. Remember that 5 | # your test database is "scratch space" for the test suite and is wiped 6 | # and recreated between test runs. Don't rely on the data there! 7 | 8 | Rails.application.configure do 9 | # Settings specified here will take precedence over those in config/application.rb. 10 | 11 | # Turn false under Spring and add config.action_view.cache_template_loading = true. 12 | config.cache_classes = true 13 | 14 | # Eager loading loads your whole application. When running a single test locally, 15 | # this probably isn't necessary. It's a good idea to do in a continuous integration 16 | # system, or in some way before deploying your code. 17 | config.eager_load = ENV["CI"].present? 18 | 19 | # Configure public file server for tests with Cache-Control for performance. 20 | config.public_file_server.enabled = true 21 | config.public_file_server.headers = { 22 | "Cache-Control" => "public, max-age=#{1.hour.to_i}" 23 | } 24 | 25 | # Show full error reports and disable caching. 26 | config.consider_all_requests_local = true 27 | config.action_controller.perform_caching = false 28 | config.cache_store = :null_store 29 | 30 | # Raise exceptions instead of rendering exception templates. 31 | config.action_dispatch.show_exceptions = false 32 | 33 | # Disable request forgery protection in test environment. 34 | config.action_controller.allow_forgery_protection = false 35 | 36 | # Store uploaded files on the local file system in a temporary directory. 37 | config.active_storage.service = :test 38 | 39 | config.action_mailer.perform_caching = false 40 | 41 | # Tell Action Mailer not to deliver emails to the real world. 42 | # The :test delivery method accumulates sent emails in the 43 | # ActionMailer::Base.deliveries array. 44 | config.action_mailer.delivery_method = :test 45 | 46 | # Print deprecation notices to the stderr. 47 | config.active_support.deprecation = :stderr 48 | 49 | # Raise exceptions for disallowed deprecations. 50 | config.active_support.disallowed_deprecation = :raise 51 | 52 | # Tell Active Support which deprecation messages to disallow. 53 | config.active_support.disallowed_deprecation_warnings = [] 54 | 55 | # Raises error for missing translations. 56 | # config.i18n.raise_on_missing_translations = true 57 | 58 | # Annotate rendered view with file names. 59 | # config.action_view.annotate_rendered_view_with_filenames = true 60 | end 61 | -------------------------------------------------------------------------------- /config/initializers/assets.rb: -------------------------------------------------------------------------------- 1 | # Be sure to restart your server when you modify this file. 2 | 3 | # Version of your assets, change this if you want to expire all your assets. 4 | # Rails.application.config.assets.version = "1.0" 5 | 6 | # Add additional assets to the asset load path. 7 | # Rails.application.config.assets.paths << Emoji.images_path 8 | 9 | # Precompile additional assets. 10 | # application.js, application.css, and all non-JS/CSS in the app/assets 11 | # folder are already added. 12 | # Rails.application.config.assets.precompile += %w( admin.js admin.css ) 13 | -------------------------------------------------------------------------------- /config/initializers/content_security_policy.rb: -------------------------------------------------------------------------------- 1 | # Be sure to restart your server when you modify this file. 2 | 3 | # Define an application-wide content security policy. 4 | # See the Securing Rails Applications Guide for more information: 5 | # https://guides.rubyonrails.org/security.html#content-security-policy-header 6 | 7 | # Rails.application.configure do 8 | # config.content_security_policy do |policy| 9 | # policy.default_src :self, :https 10 | # policy.font_src :self, :https, :data 11 | # policy.img_src :self, :https, :data 12 | # policy.object_src :none 13 | # policy.script_src :self, :https 14 | # Allow @vite/client to hot reload javascript changes in development 15 | # policy.script_src *policy.script_src, :unsafe_eval, "http://#{ ViteRuby.config.host_with_port }" if Rails.env.development? 16 | 17 | # You may need to enable this in production as well depending on your setup. 18 | # policy.script_src *policy.script_src, :blob if Rails.env.test? 19 | 20 | # policy.style_src :self, :https 21 | # Allow @vite/client to hot reload style changes in development 22 | # policy.style_src *policy.style_src, :unsafe_inline if Rails.env.development? 23 | 24 | # # Specify URI for violation reports 25 | # # policy.report_uri "/csp-violation-report-endpoint" 26 | # end 27 | # 28 | # # Generate session nonces for permitted importmap and inline scripts 29 | # config.content_security_policy_nonce_generator = ->(request) { request.session.id.to_s } 30 | # config.content_security_policy_nonce_directives = %w(script-src) 31 | # 32 | # # Report violations without enforcing the policy. 33 | # # config.content_security_policy_report_only = true 34 | # end 35 | -------------------------------------------------------------------------------- /config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- 1 | # Be sure to restart your server when you modify this file. 2 | 3 | # Configure parameters to be filtered from the log file. Use this to limit dissemination of 4 | # sensitive information. See the ActiveSupport::ParameterFilter documentation for supported 5 | # notations and behaviors. 6 | Rails.application.config.filter_parameters += %i[ 7 | passw secret token _key crypt salt certificate otp ssn 8 | ] 9 | -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- 1 | # Be sure to restart your server when you modify this file. 2 | 3 | # Add new inflection rules using the following format. Inflections 4 | # are locale specific, and you may define rules for as many different 5 | # locales as you wish. All of these examples are active by default: 6 | # ActiveSupport::Inflector.inflections(:en) do |inflect| 7 | # inflect.plural /^(ox)$/i, "\\1en" 8 | # inflect.singular /^(ox)en/i, "\\1" 9 | # inflect.irregular "person", "people" 10 | # inflect.uncountable %w( fish sheep ) 11 | # end 12 | 13 | # These inflection rules are supported but not enabled by default: 14 | # ActiveSupport::Inflector.inflections(:en) do |inflect| 15 | # inflect.acronym "RESTful" 16 | # end 17 | -------------------------------------------------------------------------------- /config/initializers/permissions_policy.rb: -------------------------------------------------------------------------------- 1 | # Define an application-wide HTTP permissions policy. For further 2 | # information see https://developers.google.com/web/updates/2018/06/feature-policy 3 | # 4 | # Rails.application.config.permissions_policy do |f| 5 | # f.camera :none 6 | # f.gyroscope :none 7 | # f.microphone :none 8 | # f.usb :none 9 | # f.fullscreen :self 10 | # f.payment :self, "https://secure.example.com" 11 | # end 12 | -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- 1 | # Files in the config/locales directory are used for internationalization 2 | # and are automatically loaded by Rails. If you want to use locales other 3 | # than English, add the necessary files in this directory. 4 | # 5 | # To use the locales, use `I18n.t`: 6 | # 7 | # I18n.t "hello" 8 | # 9 | # In views, this is aliased to just `t`: 10 | # 11 | # <%= t("hello") %> 12 | # 13 | # To use a different locale, set it with `I18n.locale`: 14 | # 15 | # I18n.locale = :es 16 | # 17 | # This would use the information in config/locales/es.yml. 18 | # 19 | # The following keys must be escaped otherwise they will not be retrieved by 20 | # the default I18n backend: 21 | # 22 | # true, false, on, off, yes, no 23 | # 24 | # Instead, surround them with single quotes. 25 | # 26 | # en: 27 | # "true": "foo" 28 | # 29 | # To learn more, please read the Rails Internationalization guide 30 | # available at https://guides.rubyonrails.org/i18n.html. 31 | 32 | en: 33 | hello: "Hello world" 34 | -------------------------------------------------------------------------------- /config/puma.rb: -------------------------------------------------------------------------------- 1 | # Puma can serve each request in a thread from an internal thread pool. 2 | # The `threads` method setting takes two numbers: a minimum and maximum. 3 | # Any libraries that use thread pools should be configured to match 4 | # the maximum value specified for Puma. Default is set to 5 threads for minimum 5 | # and maximum; this matches the default thread size of Active Record. 6 | # 7 | max_threads_count = ENV.fetch("RAILS_MAX_THREADS", 5) 8 | min_threads_count = ENV.fetch("RAILS_MIN_THREADS") { max_threads_count } 9 | threads min_threads_count, max_threads_count 10 | 11 | # Specifies the `worker_timeout` threshold that Puma will use to wait before 12 | # terminating a worker in development environments. 13 | # 14 | worker_timeout 3600 if ENV.fetch("RAILS_ENV", "development") == "development" 15 | 16 | # Specifies the `port` that Puma will listen on to receive requests; default is 3000. 17 | # 18 | port ENV.fetch("PORT", 3000) 19 | 20 | # Specifies the `environment` that Puma will run in. 21 | # 22 | environment ENV.fetch("RAILS_ENV") { "development" } 23 | 24 | # Specifies the `pidfile` that Puma will use. 25 | pidfile ENV.fetch("PIDFILE") { "tmp/pids/server.pid" } 26 | 27 | # Specifies the number of `workers` to boot in clustered mode. 28 | # Workers are forked web server processes. If using threads and workers together 29 | # the concurrency of the application would be max `threads` * `workers`. 30 | # Workers do not work on JRuby or Windows (both of which do not support 31 | # processes). 32 | # 33 | # workers ENV.fetch("WEB_CONCURRENCY") { 2 } 34 | 35 | # Use the `preload_app!` method when specifying a `workers` number. 36 | # This directive tells Puma to first boot the application and load code 37 | # before forking the application. This takes advantage of Copy On Write 38 | # process behavior so workers use less memory. 39 | # 40 | # preload_app! 41 | 42 | # Allow puma to be restarted by `bin/rails restart` command. 43 | plugin :tmp_restart 44 | -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- 1 | Rails.application.routes.draw do 2 | get "welcome/index" 3 | root "welcome#index" 4 | end 5 | -------------------------------------------------------------------------------- /config/storage.yml: -------------------------------------------------------------------------------- 1 | test: 2 | service: Disk 3 | root: <%= Rails.root.join("tmp/storage") %> 4 | 5 | local: 6 | service: Disk 7 | root: <%= Rails.root.join("storage") %> 8 | 9 | # Use bin/rails credentials:edit to set the AWS secrets (as aws:access_key_id|secret_access_key) 10 | # amazon: 11 | # service: S3 12 | # access_key_id: <%= Rails.application.credentials.dig(:aws, :access_key_id) %> 13 | # secret_access_key: <%= Rails.application.credentials.dig(:aws, :secret_access_key) %> 14 | # region: us-east-1 15 | # bucket: your_own_bucket-<%= Rails.env %> 16 | 17 | # Remember not to checkin your GCS keyfile to a repository 18 | # google: 19 | # service: GCS 20 | # project: your_project 21 | # credentials: <%= Rails.root.join("path/to/gcs.keyfile") %> 22 | # bucket: your_own_bucket-<%= Rails.env %> 23 | 24 | # Use bin/rails credentials:edit to set the Azure Storage secret (as azure_storage:storage_access_key) 25 | # microsoft: 26 | # service: AzureStorage 27 | # storage_account_name: your_account_name 28 | # storage_access_key: <%= Rails.application.credentials.dig(:azure_storage, :storage_access_key) %> 29 | # container: your_container_name-<%= Rails.env %> 30 | 31 | # mirror: 32 | # service: Mirror 33 | # primary: local 34 | # mirrors: [ amazon, google, microsoft ] 35 | -------------------------------------------------------------------------------- /config/vite.json: -------------------------------------------------------------------------------- 1 | { 2 | "all": { 3 | "sourceCodeDir": "app/javascript", 4 | "watchAdditionalPaths": [] 5 | }, 6 | "development": { 7 | "autoBuild": true, 8 | "publicOutputDir": "vite-dev", 9 | "port": 3036 10 | }, 11 | "test": { 12 | "autoBuild": true, 13 | "publicOutputDir": "vite-test", 14 | "port": 3037 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- 1 | # This file is auto-generated from the current state of the database. Instead 2 | # of editing this file, please use the migrations feature of Active Record to 3 | # incrementally modify your database, and then regenerate this schema definition. 4 | # 5 | # This file is the source Rails uses to define your schema when running `bin/rails 6 | # db:schema:load`. When creating a new database, `bin/rails db:schema:load` tends to 7 | # be faster and is potentially less error prone than running all of your 8 | # migrations from scratch. Old migrations may fail to apply correctly if those 9 | # migrations use external dependencies or application code. 10 | # 11 | # It's strongly recommended that you check this file into your version control system. 12 | 13 | ActiveRecord::Schema[7.0].define(version: 0) do 14 | end 15 | -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "baseUrl": ".", 4 | "paths": { 5 | "@/*": ["app/javascript/*"] 6 | } 7 | }, 8 | "include": ["./app/javascript/**/*"], 9 | "exclude": ["node_modules"] 10 | } 11 | -------------------------------------------------------------------------------- /lib/assets/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yopaz-Co-Ltd/rails-vuejs-base/2cd9a5f5a70ef986335b3120d81fd33e6974067d/lib/assets/.keep -------------------------------------------------------------------------------- /lib/tasks/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yopaz-Co-Ltd/rails-vuejs-base/2cd9a5f5a70ef986335b3120d81fd33e6974067d/lib/tasks/.keep -------------------------------------------------------------------------------- /log/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yopaz-Co-Ltd/rails-vuejs-base/2cd9a5f5a70ef986335b3120d81fd33e6974067d/log/.keep -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "app", 3 | "private": "true", 4 | "dependencies": { 5 | "@hotwired/stimulus": "^3.2.1", 6 | "@hotwired/turbo-rails": "^7.3.0", 7 | "@popperjs/core": "^2.11.6", 8 | "@vitejs/plugin-vue": "^4.0.0", 9 | "bootstrap": "^5.2.3", 10 | "bootstrap-icons": "^1.10.3", 11 | "esbuild": "^0.17.11", 12 | "sass": "^1.59.2", 13 | "vue": "^3.2.47" 14 | }, 15 | "devDependencies": { 16 | "eslint": "^8.36.0", 17 | "eslint-config-prettier": "^8.7.0", 18 | "eslint-plugin-import": "^2.27.5", 19 | "eslint-plugin-prettier": "^4.2.1", 20 | "eslint-plugin-vue": "^9.9.0", 21 | "husky": "^8.0.3", 22 | "prettier": "2.8.4", 23 | "vite": "^4.0.0", 24 | "vite-plugin-full-reload": "^1.0.5", 25 | "vite-plugin-ruby": "^3.1.2" 26 | }, 27 | "scripts": { 28 | "lint": "eslint 'app/javascript/**/*.{js,vue}' --fix", 29 | "format": "prettier ./**/*.{js,css,scss,md,vue,json} --write", 30 | "prepare": "husky install" 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | The page you were looking for doesn't exist (404) 5 | 6 | 55 | 56 | 57 | 58 | 59 |
60 |
61 |

The page you were looking for doesn't exist.

62 |

You may have mistyped the address or the page may have moved.

63 |
64 |

If you are the application owner check the logs for more information.

65 |
66 | 67 | 68 | -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | The change you wanted was rejected (422) 5 | 6 | 55 | 56 | 57 | 58 | 59 |
60 |
61 |

The change you wanted was rejected.

62 |

Maybe you tried to change something you didn't have access to.

63 |
64 |

If you are the application owner check the logs for more information.

65 |
66 | 67 | 68 | -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | We're sorry, but something went wrong (500) 5 | 6 | 55 | 56 | 57 | 58 | 59 |
60 |
61 |

We're sorry, but something went wrong.

62 |
63 |

If you are the application owner check the logs for more information.

64 |
65 | 66 | 67 | -------------------------------------------------------------------------------- /public/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yopaz-Co-Ltd/rails-vuejs-base/2cd9a5f5a70ef986335b3120d81fd33e6974067d/public/apple-touch-icon-precomposed.png -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yopaz-Co-Ltd/rails-vuejs-base/2cd9a5f5a70ef986335b3120d81fd33e6974067d/public/apple-touch-icon.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yopaz-Co-Ltd/rails-vuejs-base/2cd9a5f5a70ef986335b3120d81fd33e6974067d/public/favicon.ico -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | # See https://www.robotstxt.org/robotstxt.html for documentation on how to use the robots.txt file 2 | -------------------------------------------------------------------------------- /spec/rails_helper.rb: -------------------------------------------------------------------------------- 1 | require "spec_helper" 2 | ENV["RAILS_ENV"] ||= "test" 3 | require_relative "../config/environment" 4 | abort("The Rails environment is running in production mode!") if Rails.env.production? 5 | require "rspec/rails" 6 | require "database_cleaner/active_record" 7 | 8 | begin 9 | ActiveRecord::Migration.maintain_test_schema! 10 | rescue ActiveRecord::PendingMigrationError => e 11 | abort e.to_s.strip 12 | end 13 | RSpec.configure do |config| 14 | config.fixture_path = Rails.root.join("spec/fixtures") 15 | config.use_transactional_fixtures = true 16 | config.infer_spec_type_from_file_location! 17 | config.filter_rails_from_backtrace! 18 | 19 | config.before(:suite) do 20 | DatabaseCleaner.clean_with(:truncation) 21 | DatabaseCleaner.strategy = :transaction 22 | end 23 | 24 | config.around(:each) do |example| 25 | DatabaseCleaner.cleaning do 26 | example.run 27 | end 28 | end 29 | end 30 | 31 | Shoulda::Matchers.configure do |config| 32 | config.integrate do |with| 33 | with.test_framework :rspec 34 | with.library :rails 35 | end 36 | end 37 | -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- 1 | require "simplecov" 2 | 3 | SimpleCov.minimum_coverage 80 4 | SimpleCov.start "rails" do 5 | add_group "Models", "app/models" 6 | add_group "Helpers", "app/helpers" 7 | end 8 | 9 | RSpec.configure do |config| 10 | config.expect_with :rspec do |expectations| 11 | expectations.include_chain_clauses_in_custom_matcher_descriptions = true 12 | end 13 | config.mock_with :rspec do |mocks| 14 | mocks.verify_partial_doubles = true 15 | end 16 | config.shared_context_metadata_behavior = :apply_to_host_groups 17 | end 18 | -------------------------------------------------------------------------------- /storage/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yopaz-Co-Ltd/rails-vuejs-base/2cd9a5f5a70ef986335b3120d81fd33e6974067d/storage/.keep -------------------------------------------------------------------------------- /test/application_system_test_case.rb: -------------------------------------------------------------------------------- 1 | require "test_helper" 2 | 3 | class ApplicationSystemTestCase < ActionDispatch::SystemTestCase 4 | driven_by :selenium, using: :chrome, screen_size: [1400, 1400] 5 | end 6 | -------------------------------------------------------------------------------- /test/channels/application_cable/connection_test.rb: -------------------------------------------------------------------------------- 1 | require "test_helper" 2 | 3 | class ApplicationCable::ConnectionTest < ActionCable::Connection::TestCase 4 | # test "connects with cookies" do 5 | # cookies.signed[:user_id] = 42 6 | # 7 | # connect 8 | # 9 | # assert_equal connection.user_id, "42" 10 | # end 11 | end 12 | -------------------------------------------------------------------------------- /test/controllers/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yopaz-Co-Ltd/rails-vuejs-base/2cd9a5f5a70ef986335b3120d81fd33e6974067d/test/controllers/.keep -------------------------------------------------------------------------------- /test/fixtures/files/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yopaz-Co-Ltd/rails-vuejs-base/2cd9a5f5a70ef986335b3120d81fd33e6974067d/test/fixtures/files/.keep -------------------------------------------------------------------------------- /test/helpers/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yopaz-Co-Ltd/rails-vuejs-base/2cd9a5f5a70ef986335b3120d81fd33e6974067d/test/helpers/.keep -------------------------------------------------------------------------------- /test/integration/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yopaz-Co-Ltd/rails-vuejs-base/2cd9a5f5a70ef986335b3120d81fd33e6974067d/test/integration/.keep -------------------------------------------------------------------------------- /test/mailers/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yopaz-Co-Ltd/rails-vuejs-base/2cd9a5f5a70ef986335b3120d81fd33e6974067d/test/mailers/.keep -------------------------------------------------------------------------------- /test/models/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yopaz-Co-Ltd/rails-vuejs-base/2cd9a5f5a70ef986335b3120d81fd33e6974067d/test/models/.keep -------------------------------------------------------------------------------- /test/system/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yopaz-Co-Ltd/rails-vuejs-base/2cd9a5f5a70ef986335b3120d81fd33e6974067d/test/system/.keep -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- 1 | ENV["RAILS_ENV"] ||= "test" 2 | require_relative "../config/environment" 3 | require "rails/test_help" 4 | 5 | class ActiveSupport::TestCase 6 | # Run tests in parallel with specified workers 7 | parallelize(workers: :number_of_processors) 8 | 9 | # Setup all fixtures in test/fixtures/*.yml for all tests in alphabetical order. 10 | fixtures :all 11 | 12 | # Add more helper methods to be used by all tests here... 13 | end 14 | -------------------------------------------------------------------------------- /tmp/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yopaz-Co-Ltd/rails-vuejs-base/2cd9a5f5a70ef986335b3120d81fd33e6974067d/tmp/.keep -------------------------------------------------------------------------------- /tmp/pids/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yopaz-Co-Ltd/rails-vuejs-base/2cd9a5f5a70ef986335b3120d81fd33e6974067d/tmp/pids/.keep -------------------------------------------------------------------------------- /tmp/storage/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yopaz-Co-Ltd/rails-vuejs-base/2cd9a5f5a70ef986335b3120d81fd33e6974067d/tmp/storage/.keep -------------------------------------------------------------------------------- /vendor/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yopaz-Co-Ltd/rails-vuejs-base/2cd9a5f5a70ef986335b3120d81fd33e6974067d/vendor/.keep -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite' 2 | import RubyPlugin from 'vite-plugin-ruby' 3 | import FullReload from 'vite-plugin-full-reload' 4 | import vue from '@vitejs/plugin-vue' 5 | import path from 'path'; 6 | 7 | export default defineConfig({ 8 | resolve: { 9 | alias: { 10 | '~bootstrap': path.resolve(__dirname, 'node_modules/bootstrap'), 11 | } 12 | }, 13 | plugins: [ 14 | RubyPlugin(), 15 | FullReload(['config/routes.rb', 'app/views/**/*'], { delay: 200 }), 16 | vue() 17 | ], 18 | }) 19 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@babel/parser@^7.16.4": 6 | version "7.21.2" 7 | resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.21.2.tgz#dacafadfc6d7654c3051a66d6fe55b6cb2f2a0b3" 8 | integrity sha512-URpaIJQwEkEC2T9Kn+Ai6Xe/02iNaVCuT/PtoRz3GPVJVDpPd7mLo+VddTbhCRU9TXqW5mSrQfXZyi8kDKOVpQ== 9 | 10 | "@esbuild/android-arm64@0.16.17": 11 | version "0.16.17" 12 | resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.16.17.tgz#cf91e86df127aa3d141744edafcba0abdc577d23" 13 | integrity sha512-MIGl6p5sc3RDTLLkYL1MyL8BMRN4tLMRCn+yRJJmEDvYZ2M7tmAf80hx1kbNEUX2KJ50RRtxZ4JHLvCfuB6kBg== 14 | 15 | "@esbuild/android-arm64@0.17.11": 16 | version "0.17.11" 17 | resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.17.11.tgz#52c3e6cabc19c5e4c1c0c01cb58f0442338e1c14" 18 | integrity sha512-QnK4d/zhVTuV4/pRM4HUjcsbl43POALU2zvBynmrrqZt9LPcLA3x1fTZPBg2RRguBQnJcnU059yKr+bydkntjg== 19 | 20 | "@esbuild/android-arm@0.16.17": 21 | version "0.16.17" 22 | resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.16.17.tgz#025b6246d3f68b7bbaa97069144fb5fb70f2fff2" 23 | integrity sha512-N9x1CMXVhtWEAMS7pNNONyA14f71VPQN9Cnavj1XQh6T7bskqiLLrSca4O0Vr8Wdcga943eThxnVp3JLnBMYtw== 24 | 25 | "@esbuild/android-arm@0.17.11": 26 | version "0.17.11" 27 | resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.17.11.tgz#f3fc768235aecbeb840d0049fdf13cd28592105f" 28 | integrity sha512-CdyX6sRVh1NzFCsf5vw3kULwlAhfy9wVt8SZlrhQ7eL2qBjGbFhRBWkkAzuZm9IIEOCKJw4DXA6R85g+qc8RDw== 29 | 30 | "@esbuild/android-x64@0.16.17": 31 | version "0.16.17" 32 | resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.16.17.tgz#c820e0fef982f99a85c4b8bfdd582835f04cd96e" 33 | integrity sha512-a3kTv3m0Ghh4z1DaFEuEDfz3OLONKuFvI4Xqczqx4BqLyuFaFkuaG4j2MtA6fuWEFeC5x9IvqnX7drmRq/fyAQ== 34 | 35 | "@esbuild/android-x64@0.17.11": 36 | version "0.17.11" 37 | resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.17.11.tgz#443ed47771a7e917e4282469ba350d117473550c" 38 | integrity sha512-3PL3HKtsDIXGQcSCKtWD/dy+mgc4p2Tvo2qKgKHj9Yf+eniwFnuoQ0OUhlSfAEpKAFzF9N21Nwgnap6zy3L3MQ== 39 | 40 | "@esbuild/darwin-arm64@0.16.17": 41 | version "0.16.17" 42 | resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.16.17.tgz#edef4487af6b21afabba7be5132c26d22379b220" 43 | integrity sha512-/2agbUEfmxWHi9ARTX6OQ/KgXnOWfsNlTeLcoV7HSuSTv63E4DqtAc+2XqGw1KHxKMHGZgbVCZge7HXWX9Vn+w== 44 | 45 | "@esbuild/darwin-arm64@0.17.11": 46 | version "0.17.11" 47 | resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.17.11.tgz#0e8c78d94d5759a48521dbfd83189d2ed3499a16" 48 | integrity sha512-pJ950bNKgzhkGNO3Z9TeHzIFtEyC2GDQL3wxkMApDEghYx5Qers84UTNc1bAxWbRkuJOgmOha5V0WUeh8G+YGw== 49 | 50 | "@esbuild/darwin-x64@0.16.17": 51 | version "0.16.17" 52 | resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.16.17.tgz#42829168730071c41ef0d028d8319eea0e2904b4" 53 | integrity sha512-2By45OBHulkd9Svy5IOCZt376Aa2oOkiE9QWUK9fe6Tb+WDr8hXL3dpqi+DeLiMed8tVXspzsTAvd0jUl96wmg== 54 | 55 | "@esbuild/darwin-x64@0.17.11": 56 | version "0.17.11" 57 | resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.17.11.tgz#2405cfdf70eb961c7cf973463ca7263dc2004c88" 58 | integrity sha512-iB0dQkIHXyczK3BZtzw1tqegf0F0Ab5texX2TvMQjiJIWXAfM4FQl7D909YfXWnB92OQz4ivBYQ2RlxBJrMJOw== 59 | 60 | "@esbuild/freebsd-arm64@0.16.17": 61 | version "0.16.17" 62 | resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.16.17.tgz#1f4af488bfc7e9ced04207034d398e793b570a27" 63 | integrity sha512-mt+cxZe1tVx489VTb4mBAOo2aKSnJ33L9fr25JXpqQqzbUIw/yzIzi+NHwAXK2qYV1lEFp4OoVeThGjUbmWmdw== 64 | 65 | "@esbuild/freebsd-arm64@0.17.11": 66 | version "0.17.11" 67 | resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.17.11.tgz#d5138e873e15f87bd4564c024dfa00ef37e623fd" 68 | integrity sha512-7EFzUADmI1jCHeDRGKgbnF5sDIceZsQGapoO6dmw7r/ZBEKX7CCDnIz8m9yEclzr7mFsd+DyasHzpjfJnmBB1Q== 69 | 70 | "@esbuild/freebsd-x64@0.16.17": 71 | version "0.16.17" 72 | resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.16.17.tgz#636306f19e9bc981e06aa1d777302dad8fddaf72" 73 | integrity sha512-8ScTdNJl5idAKjH8zGAsN7RuWcyHG3BAvMNpKOBaqqR7EbUhhVHOqXRdL7oZvz8WNHL2pr5+eIT5c65kA6NHug== 74 | 75 | "@esbuild/freebsd-x64@0.17.11": 76 | version "0.17.11" 77 | resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.17.11.tgz#e850b58b8fabf8e9ef0e125af3c25229ad2d6c38" 78 | integrity sha512-iPgenptC8i8pdvkHQvXJFzc1eVMR7W2lBPrTE6GbhR54sLcF42mk3zBOjKPOodezzuAz/KSu8CPyFSjcBMkE9g== 79 | 80 | "@esbuild/linux-arm64@0.16.17": 81 | version "0.16.17" 82 | resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.16.17.tgz#a003f7ff237c501e095d4f3a09e58fc7b25a4aca" 83 | integrity sha512-7S8gJnSlqKGVJunnMCrXHU9Q8Q/tQIxk/xL8BqAP64wchPCTzuM6W3Ra8cIa1HIflAvDnNOt2jaL17vaW+1V0g== 84 | 85 | "@esbuild/linux-arm64@0.17.11": 86 | version "0.17.11" 87 | resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.17.11.tgz#2bfb93d0809ec2357c12ebb27736b750c9ae0aa5" 88 | integrity sha512-Qxth3gsWWGKz2/qG2d5DsW/57SeA2AmpSMhdg9TSB5Svn2KDob3qxfQSkdnWjSd42kqoxIPy3EJFs+6w1+6Qjg== 89 | 90 | "@esbuild/linux-arm@0.16.17": 91 | version "0.16.17" 92 | resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.16.17.tgz#b591e6a59d9c4fe0eeadd4874b157ab78cf5f196" 93 | integrity sha512-iihzrWbD4gIT7j3caMzKb/RsFFHCwqqbrbH9SqUSRrdXkXaygSZCZg1FybsZz57Ju7N/SHEgPyaR0LZ8Zbe9gQ== 94 | 95 | "@esbuild/linux-arm@0.17.11": 96 | version "0.17.11" 97 | resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.17.11.tgz#e56fb3b76828317a704f4a167c5bd790fe5314e7" 98 | integrity sha512-M9iK/d4lgZH0U5M1R2p2gqhPV/7JPJcRz+8O8GBKVgqndTzydQ7B2XGDbxtbvFkvIs53uXTobOhv+RyaqhUiMg== 99 | 100 | "@esbuild/linux-ia32@0.16.17": 101 | version "0.16.17" 102 | resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.16.17.tgz#24333a11027ef46a18f57019450a5188918e2a54" 103 | integrity sha512-kiX69+wcPAdgl3Lonh1VI7MBr16nktEvOfViszBSxygRQqSpzv7BffMKRPMFwzeJGPxcio0pdD3kYQGpqQ2SSg== 104 | 105 | "@esbuild/linux-ia32@0.17.11": 106 | version "0.17.11" 107 | resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.17.11.tgz#59fa1c49b271793d14eb5effc757e8c0d0cb2cab" 108 | integrity sha512-dB1nGaVWtUlb/rRDHmuDQhfqazWE0LMro/AIbT2lWM3CDMHJNpLckH+gCddQyhhcLac2OYw69ikUMO34JLt3wA== 109 | 110 | "@esbuild/linux-loong64@0.16.17": 111 | version "0.16.17" 112 | resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.16.17.tgz#d5ad459d41ed42bbd4d005256b31882ec52227d8" 113 | integrity sha512-dTzNnQwembNDhd654cA4QhbS9uDdXC3TKqMJjgOWsC0yNCbpzfWoXdZvp0mY7HU6nzk5E0zpRGGx3qoQg8T2DQ== 114 | 115 | "@esbuild/linux-loong64@0.17.11": 116 | version "0.17.11" 117 | resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.17.11.tgz#89575bc189099c03a36daa54f3f481780c7fd502" 118 | integrity sha512-aCWlq70Q7Nc9WDnormntGS1ar6ZFvUpqr8gXtO+HRejRYPweAFQN615PcgaSJkZjhHp61+MNLhzyVALSF2/Q0g== 119 | 120 | "@esbuild/linux-mips64el@0.16.17": 121 | version "0.16.17" 122 | resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.16.17.tgz#4e5967a665c38360b0a8205594377d4dcf9c3726" 123 | integrity sha512-ezbDkp2nDl0PfIUn0CsQ30kxfcLTlcx4Foz2kYv8qdC6ia2oX5Q3E/8m6lq84Dj/6b0FrkgD582fJMIfHhJfSw== 124 | 125 | "@esbuild/linux-mips64el@0.17.11": 126 | version "0.17.11" 127 | resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.17.11.tgz#0e18ca039dc7e4645efd8edc1b10952933eb6b1b" 128 | integrity sha512-cGeGNdQxqY8qJwlYH1BP6rjIIiEcrM05H7k3tR7WxOLmD1ZxRMd6/QIOWMb8mD2s2YJFNRuNQ+wjMhgEL2oCEw== 129 | 130 | "@esbuild/linux-ppc64@0.16.17": 131 | version "0.16.17" 132 | resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.16.17.tgz#206443a02eb568f9fdf0b438fbd47d26e735afc8" 133 | integrity sha512-dzS678gYD1lJsW73zrFhDApLVdM3cUF2MvAa1D8K8KtcSKdLBPP4zZSLy6LFZ0jYqQdQ29bjAHJDgz0rVbLB3g== 134 | 135 | "@esbuild/linux-ppc64@0.17.11": 136 | version "0.17.11" 137 | resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.17.11.tgz#2d152cb3a253afb8c100a165ad132dc96f36cb11" 138 | integrity sha512-BdlziJQPW/bNe0E8eYsHB40mYOluS+jULPCjlWiHzDgr+ZBRXPtgMV1nkLEGdpjrwgmtkZHEGEPaKdS/8faLDA== 139 | 140 | "@esbuild/linux-riscv64@0.16.17": 141 | version "0.16.17" 142 | resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.16.17.tgz#c351e433d009bf256e798ad048152c8d76da2fc9" 143 | integrity sha512-ylNlVsxuFjZK8DQtNUwiMskh6nT0vI7kYl/4fZgV1llP5d6+HIeL/vmmm3jpuoo8+NuXjQVZxmKuhDApK0/cKw== 144 | 145 | "@esbuild/linux-riscv64@0.17.11": 146 | version "0.17.11" 147 | resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.17.11.tgz#c6ac494a81221d53d65b33e665c7df1747952d3c" 148 | integrity sha512-MDLwQbtF+83oJCI1Cixn68Et/ME6gelmhssPebC40RdJaect+IM+l7o/CuG0ZlDs6tZTEIoxUe53H3GmMn8oMA== 149 | 150 | "@esbuild/linux-s390x@0.16.17": 151 | version "0.16.17" 152 | resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.16.17.tgz#661f271e5d59615b84b6801d1c2123ad13d9bd87" 153 | integrity sha512-gzy7nUTO4UA4oZ2wAMXPNBGTzZFP7mss3aKR2hH+/4UUkCOyqmjXiKpzGrY2TlEUhbbejzXVKKGazYcQTZWA/w== 154 | 155 | "@esbuild/linux-s390x@0.17.11": 156 | version "0.17.11" 157 | resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.17.11.tgz#4bad33894bc7415cea4be8fa90fe456226a424ad" 158 | integrity sha512-4N5EMESvws0Ozr2J94VoUD8HIRi7X0uvUv4c0wpTHZyZY9qpaaN7THjosdiW56irQ4qnJ6Lsc+i+5zGWnyqWqQ== 159 | 160 | "@esbuild/linux-x64@0.16.17": 161 | version "0.16.17" 162 | resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.16.17.tgz#e4ba18e8b149a89c982351443a377c723762b85f" 163 | integrity sha512-mdPjPxfnmoqhgpiEArqi4egmBAMYvaObgn4poorpUaqmvzzbvqbowRllQ+ZgzGVMGKaPkqUmPDOOFQRUFDmeUw== 164 | 165 | "@esbuild/linux-x64@0.17.11": 166 | version "0.17.11" 167 | resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.17.11.tgz#903fda743459f530a16a6c6ee8d2c0f6c1a12fc7" 168 | integrity sha512-rM/v8UlluxpytFSmVdbCe1yyKQd/e+FmIJE2oPJvbBo+D0XVWi1y/NQ4iTNx+436WmDHQBjVLrbnAQLQ6U7wlw== 169 | 170 | "@esbuild/netbsd-x64@0.16.17": 171 | version "0.16.17" 172 | resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.16.17.tgz#7d4f4041e30c5c07dd24ffa295c73f06038ec775" 173 | integrity sha512-/PzmzD/zyAeTUsduZa32bn0ORug+Jd1EGGAUJvqfeixoEISYpGnAezN6lnJoskauoai0Jrs+XSyvDhppCPoKOA== 174 | 175 | "@esbuild/netbsd-x64@0.17.11": 176 | version "0.17.11" 177 | resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.17.11.tgz#b589239fe7d9b16ee03c5e191f3f5b640f1518a1" 178 | integrity sha512-4WaAhuz5f91h3/g43VBGdto1Q+X7VEZfpcWGtOFXnggEuLvjV+cP6DyLRU15IjiU9fKLLk41OoJfBFN5DhPvag== 179 | 180 | "@esbuild/openbsd-x64@0.16.17": 181 | version "0.16.17" 182 | resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.16.17.tgz#970fa7f8470681f3e6b1db0cc421a4af8060ec35" 183 | integrity sha512-2yaWJhvxGEz2RiftSk0UObqJa/b+rIAjnODJgv2GbGGpRwAfpgzyrg1WLK8rqA24mfZa9GvpjLcBBg8JHkoodg== 184 | 185 | "@esbuild/openbsd-x64@0.17.11": 186 | version "0.17.11" 187 | resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.17.11.tgz#b355019754116bef39ec688f8fd2fe6471b9779b" 188 | integrity sha512-UBj135Nx4FpnvtE+C8TWGp98oUgBcmNmdYgl5ToKc0mBHxVVqVE7FUS5/ELMImOp205qDAittL6Ezhasc2Ev/w== 189 | 190 | "@esbuild/sunos-x64@0.16.17": 191 | version "0.16.17" 192 | resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.16.17.tgz#abc60e7c4abf8b89fb7a4fe69a1484132238022c" 193 | integrity sha512-xtVUiev38tN0R3g8VhRfN7Zl42YCJvyBhRKw1RJjwE1d2emWTVToPLNEQj/5Qxc6lVFATDiy6LjVHYhIPrLxzw== 194 | 195 | "@esbuild/sunos-x64@0.17.11": 196 | version "0.17.11" 197 | resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.17.11.tgz#2ea47fb592e68406e5025a7696dc714fc6a115dc" 198 | integrity sha512-1/gxTifDC9aXbV2xOfCbOceh5AlIidUrPsMpivgzo8P8zUtczlq1ncFpeN1ZyQJ9lVs2hILy1PG5KPp+w8QPPg== 199 | 200 | "@esbuild/win32-arm64@0.16.17": 201 | version "0.16.17" 202 | resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.16.17.tgz#7b0ff9e8c3265537a7a7b1fd9a24e7bd39fcd87a" 203 | integrity sha512-ga8+JqBDHY4b6fQAmOgtJJue36scANy4l/rL97W+0wYmijhxKetzZdKOJI7olaBaMhWt8Pac2McJdZLxXWUEQw== 204 | 205 | "@esbuild/win32-arm64@0.17.11": 206 | version "0.17.11" 207 | resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.17.11.tgz#47e6fdab17c4c52e6e0d606dd9cb843b29826325" 208 | integrity sha512-vtSfyx5yRdpiOW9yp6Ax0zyNOv9HjOAw8WaZg3dF5djEHKKm3UnoohftVvIJtRh0Ec7Hso0RIdTqZvPXJ7FdvQ== 209 | 210 | "@esbuild/win32-ia32@0.16.17": 211 | version "0.16.17" 212 | resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.16.17.tgz#e90fe5267d71a7b7567afdc403dfd198c292eb09" 213 | integrity sha512-WnsKaf46uSSF/sZhwnqE4L/F89AYNMiD4YtEcYekBt9Q7nj0DiId2XH2Ng2PHM54qi5oPrQ8luuzGszqi/veig== 214 | 215 | "@esbuild/win32-ia32@0.17.11": 216 | version "0.17.11" 217 | resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.17.11.tgz#a97273aa3164c8d8f501899f55cc75a4a79599a3" 218 | integrity sha512-GFPSLEGQr4wHFTiIUJQrnJKZhZjjq4Sphf+mM76nQR6WkQn73vm7IsacmBRPkALfpOCHsopSvLgqdd4iUW2mYw== 219 | 220 | "@esbuild/win32-x64@0.16.17": 221 | version "0.16.17" 222 | resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.16.17.tgz#c5a1a4bfe1b57f0c3e61b29883525c6da3e5c091" 223 | integrity sha512-y+EHuSchhL7FjHgvQL/0fnnFmO4T1bhvWANX6gcnqTjtnKWbTvUMCpGnv2+t+31d7RzyEAYAd4u2fnIhHL6N/Q== 224 | 225 | "@esbuild/win32-x64@0.17.11": 226 | version "0.17.11" 227 | resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.17.11.tgz#9be796d93ae27b636da32d960899a4912bca27a1" 228 | integrity sha512-N9vXqLP3eRL8BqSy8yn4Y98cZI2pZ8fyuHx6lKjiG2WABpT2l01TXdzq5Ma2ZUBzfB7tx5dXVhge8X9u0S70ZQ== 229 | 230 | "@eslint-community/eslint-utils@^4.2.0": 231 | version "4.2.0" 232 | resolved "https://registry.yarnpkg.com/@eslint-community/eslint-utils/-/eslint-utils-4.2.0.tgz#a831e6e468b4b2b5ae42bf658bea015bf10bc518" 233 | integrity sha512-gB8T4H4DEfX2IV9zGDJPOBgP1e/DbfCPDTtEqUMckpvzS1OYtva8JdFYBqMwYk7xAQ429WGF/UPqn8uQ//h2vQ== 234 | dependencies: 235 | eslint-visitor-keys "^3.3.0" 236 | 237 | "@eslint-community/regexpp@^4.4.0": 238 | version "4.4.0" 239 | resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.4.0.tgz#3e61c564fcd6b921cb789838631c5ee44df09403" 240 | integrity sha512-A9983Q0LnDGdLPjxyXQ00sbV+K+O+ko2Dr+CZigbHWtX9pNfxlaBkMR8X1CztI73zuEyEBXTVjx7CE+/VSwDiQ== 241 | 242 | "@eslint/eslintrc@^2.0.1": 243 | version "2.0.1" 244 | resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-2.0.1.tgz#7888fe7ec8f21bc26d646dbd2c11cd776e21192d" 245 | integrity sha512-eFRmABvW2E5Ho6f5fHLqgena46rOj7r7OKHYfLElqcBfGFHHpjBhivyi5+jOEQuSpdc/1phIZJlbC2te+tZNIw== 246 | dependencies: 247 | ajv "^6.12.4" 248 | debug "^4.3.2" 249 | espree "^9.5.0" 250 | globals "^13.19.0" 251 | ignore "^5.2.0" 252 | import-fresh "^3.2.1" 253 | js-yaml "^4.1.0" 254 | minimatch "^3.1.2" 255 | strip-json-comments "^3.1.1" 256 | 257 | "@eslint/js@8.36.0": 258 | version "8.36.0" 259 | resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.36.0.tgz#9837f768c03a1e4a30bd304a64fb8844f0e72efe" 260 | integrity sha512-lxJ9R5ygVm8ZWgYdUweoq5ownDlJ4upvoWmO4eLxBYHdMo+vZ/Rx0EN6MbKWDJOSUGrqJy2Gt+Dyv/VKml0fjg== 261 | 262 | "@hotwired/stimulus@^3.2.1": 263 | version "3.2.1" 264 | resolved "https://registry.yarnpkg.com/@hotwired/stimulus/-/stimulus-3.2.1.tgz#e3de23623b0c52c247aba4cd5d530d257008676b" 265 | integrity sha512-HGlzDcf9vv/EQrMJ5ZG6VWNs8Z/xMN+1o2OhV1gKiSG6CqZt5MCBB1gRg5ILiN3U0jEAxuDTNPRfBcnZBDmupQ== 266 | 267 | "@hotwired/turbo-rails@^7.3.0": 268 | version "7.3.0" 269 | resolved "https://registry.yarnpkg.com/@hotwired/turbo-rails/-/turbo-rails-7.3.0.tgz#422c21752509f3edcd6c7b2725bbe9e157815f51" 270 | integrity sha512-fvhO64vp/a2UVQ3jue9WTc2JisMv9XilIC7ViZmXAREVwiQ2S4UC7Go8f9A1j4Xu7DBI6SbFdqILk5ImqVoqyA== 271 | dependencies: 272 | "@hotwired/turbo" "^7.3.0" 273 | "@rails/actioncable" "^7.0" 274 | 275 | "@hotwired/turbo@^7.3.0": 276 | version "7.3.0" 277 | resolved "https://registry.yarnpkg.com/@hotwired/turbo/-/turbo-7.3.0.tgz#2226000fff1aabda9fd9587474565c9929dbf15d" 278 | integrity sha512-Dcu+NaSvHLT7EjrDrkEmH4qET2ZJZ5IcCWmNXxNQTBwlnE5tBZfN6WxZ842n5cHV52DH/AKNirbPBtcEXDLW4g== 279 | 280 | "@humanwhocodes/config-array@^0.11.8": 281 | version "0.11.8" 282 | resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.11.8.tgz#03595ac2075a4dc0f191cc2131de14fbd7d410b9" 283 | integrity sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g== 284 | dependencies: 285 | "@humanwhocodes/object-schema" "^1.2.1" 286 | debug "^4.1.1" 287 | minimatch "^3.0.5" 288 | 289 | "@humanwhocodes/module-importer@^1.0.1": 290 | version "1.0.1" 291 | resolved "https://registry.yarnpkg.com/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz#af5b2691a22b44be847b0ca81641c5fb6ad0172c" 292 | integrity sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA== 293 | 294 | "@humanwhocodes/object-schema@^1.2.1": 295 | version "1.2.1" 296 | resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz#b520529ec21d8e5945a1851dfd1c32e94e39ff45" 297 | integrity sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA== 298 | 299 | "@nodelib/fs.scandir@2.1.5": 300 | version "2.1.5" 301 | resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5" 302 | integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== 303 | dependencies: 304 | "@nodelib/fs.stat" "2.0.5" 305 | run-parallel "^1.1.9" 306 | 307 | "@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2": 308 | version "2.0.5" 309 | resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b" 310 | integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== 311 | 312 | "@nodelib/fs.walk@^1.2.3", "@nodelib/fs.walk@^1.2.8": 313 | version "1.2.8" 314 | resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a" 315 | integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== 316 | dependencies: 317 | "@nodelib/fs.scandir" "2.1.5" 318 | fastq "^1.6.0" 319 | 320 | "@popperjs/core@^2.11.6": 321 | version "2.11.6" 322 | resolved "https://registry.yarnpkg.com/@popperjs/core/-/core-2.11.6.tgz#cee20bd55e68a1720bdab363ecf0c821ded4cd45" 323 | integrity sha512-50/17A98tWUfQ176raKiOGXuYpLyyVMkxxG6oylzL3BPOlA6ADGdK7EYunSa4I064xerltq9TGXs8HmOk5E+vw== 324 | 325 | "@rails/actioncable@^7.0": 326 | version "7.0.4" 327 | resolved "https://registry.yarnpkg.com/@rails/actioncable/-/actioncable-7.0.4.tgz#70a3ca56809f7aaabb80af2f9c01ae51e1a8ed41" 328 | integrity sha512-tz4oM+Zn9CYsvtyicsa/AwzKZKL+ITHWkhiu7x+xF77clh2b4Rm+s6xnOgY/sGDWoFWZmtKsE95hxBPkgQQNnQ== 329 | 330 | "@types/json5@^0.0.29": 331 | version "0.0.29" 332 | resolved "https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee" 333 | integrity sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ== 334 | 335 | "@vitejs/plugin-vue@^4.0.0": 336 | version "4.0.0" 337 | resolved "https://registry.yarnpkg.com/@vitejs/plugin-vue/-/plugin-vue-4.0.0.tgz#93815beffd23db46288c787352a8ea31a0c03e5e" 338 | integrity sha512-e0X4jErIxAB5oLtDqbHvHpJe/uWNkdpYV83AOG2xo2tEVSzCzewgJMtREZM30wXnM5ls90hxiOtAuVU6H5JgbA== 339 | 340 | "@vue/compiler-core@3.2.47": 341 | version "3.2.47" 342 | resolved "https://registry.yarnpkg.com/@vue/compiler-core/-/compiler-core-3.2.47.tgz#3e07c684d74897ac9aa5922c520741f3029267f8" 343 | integrity sha512-p4D7FDnQb7+YJmO2iPEv0SQNeNzcbHdGByJDsT4lynf63AFkOTFN07HsiRSvjGo0QrxR/o3d0hUyNCUnBU2Tig== 344 | dependencies: 345 | "@babel/parser" "^7.16.4" 346 | "@vue/shared" "3.2.47" 347 | estree-walker "^2.0.2" 348 | source-map "^0.6.1" 349 | 350 | "@vue/compiler-dom@3.2.47": 351 | version "3.2.47" 352 | resolved "https://registry.yarnpkg.com/@vue/compiler-dom/-/compiler-dom-3.2.47.tgz#a0b06caf7ef7056939e563dcaa9cbde30794f305" 353 | integrity sha512-dBBnEHEPoftUiS03a4ggEig74J2YBZ2UIeyfpcRM2tavgMWo4bsEfgCGsu+uJIL/vax9S+JztH8NmQerUo7shQ== 354 | dependencies: 355 | "@vue/compiler-core" "3.2.47" 356 | "@vue/shared" "3.2.47" 357 | 358 | "@vue/compiler-sfc@3.2.47": 359 | version "3.2.47" 360 | resolved "https://registry.yarnpkg.com/@vue/compiler-sfc/-/compiler-sfc-3.2.47.tgz#1bdc36f6cdc1643f72e2c397eb1a398f5004ad3d" 361 | integrity sha512-rog05W+2IFfxjMcFw10tM9+f7i/+FFpZJJ5XHX72NP9eC2uRD+42M3pYcQqDXVYoj74kHMSEdQ/WmCjt8JFksQ== 362 | dependencies: 363 | "@babel/parser" "^7.16.4" 364 | "@vue/compiler-core" "3.2.47" 365 | "@vue/compiler-dom" "3.2.47" 366 | "@vue/compiler-ssr" "3.2.47" 367 | "@vue/reactivity-transform" "3.2.47" 368 | "@vue/shared" "3.2.47" 369 | estree-walker "^2.0.2" 370 | magic-string "^0.25.7" 371 | postcss "^8.1.10" 372 | source-map "^0.6.1" 373 | 374 | "@vue/compiler-ssr@3.2.47": 375 | version "3.2.47" 376 | resolved "https://registry.yarnpkg.com/@vue/compiler-ssr/-/compiler-ssr-3.2.47.tgz#35872c01a273aac4d6070ab9d8da918ab13057ee" 377 | integrity sha512-wVXC+gszhulcMD8wpxMsqSOpvDZ6xKXSVWkf50Guf/S+28hTAXPDYRTbLQ3EDkOP5Xz/+SY37YiwDquKbJOgZw== 378 | dependencies: 379 | "@vue/compiler-dom" "3.2.47" 380 | "@vue/shared" "3.2.47" 381 | 382 | "@vue/reactivity-transform@3.2.47": 383 | version "3.2.47" 384 | resolved "https://registry.yarnpkg.com/@vue/reactivity-transform/-/reactivity-transform-3.2.47.tgz#e45df4d06370f8abf29081a16afd25cffba6d84e" 385 | integrity sha512-m8lGXw8rdnPVVIdIFhf0LeQ/ixyHkH5plYuS83yop5n7ggVJU+z5v0zecwEnX7fa7HNLBhh2qngJJkxpwEEmYA== 386 | dependencies: 387 | "@babel/parser" "^7.16.4" 388 | "@vue/compiler-core" "3.2.47" 389 | "@vue/shared" "3.2.47" 390 | estree-walker "^2.0.2" 391 | magic-string "^0.25.7" 392 | 393 | "@vue/reactivity@3.2.47": 394 | version "3.2.47" 395 | resolved "https://registry.yarnpkg.com/@vue/reactivity/-/reactivity-3.2.47.tgz#1d6399074eadfc3ed35c727e2fd707d6881140b6" 396 | integrity sha512-7khqQ/75oyyg+N/e+iwV6lpy1f5wq759NdlS1fpAhFXa8VeAIKGgk2E/C4VF59lx5b+Ezs5fpp/5WsRYXQiKxQ== 397 | dependencies: 398 | "@vue/shared" "3.2.47" 399 | 400 | "@vue/runtime-core@3.2.47": 401 | version "3.2.47" 402 | resolved "https://registry.yarnpkg.com/@vue/runtime-core/-/runtime-core-3.2.47.tgz#406ebade3d5551c00fc6409bbc1eeb10f32e121d" 403 | integrity sha512-RZxbLQIRB/K0ev0K9FXhNbBzT32H9iRtYbaXb0ZIz2usLms/D55dJR2t6cIEUn6vyhS3ALNvNthI+Q95C+NOpA== 404 | dependencies: 405 | "@vue/reactivity" "3.2.47" 406 | "@vue/shared" "3.2.47" 407 | 408 | "@vue/runtime-dom@3.2.47": 409 | version "3.2.47" 410 | resolved "https://registry.yarnpkg.com/@vue/runtime-dom/-/runtime-dom-3.2.47.tgz#93e760eeaeab84dedfb7c3eaf3ed58d776299382" 411 | integrity sha512-ArXrFTjS6TsDei4qwNvgrdmHtD930KgSKGhS5M+j8QxXrDJYLqYw4RRcDy1bz1m1wMmb6j+zGLifdVHtkXA7gA== 412 | dependencies: 413 | "@vue/runtime-core" "3.2.47" 414 | "@vue/shared" "3.2.47" 415 | csstype "^2.6.8" 416 | 417 | "@vue/server-renderer@3.2.47": 418 | version "3.2.47" 419 | resolved "https://registry.yarnpkg.com/@vue/server-renderer/-/server-renderer-3.2.47.tgz#8aa1d1871fc4eb5a7851aa7f741f8f700e6de3c0" 420 | integrity sha512-dN9gc1i8EvmP9RCzvneONXsKfBRgqFeFZLurmHOveL7oH6HiFXJw5OGu294n1nHc/HMgTy6LulU/tv5/A7f/LA== 421 | dependencies: 422 | "@vue/compiler-ssr" "3.2.47" 423 | "@vue/shared" "3.2.47" 424 | 425 | "@vue/shared@3.2.47": 426 | version "3.2.47" 427 | resolved "https://registry.yarnpkg.com/@vue/shared/-/shared-3.2.47.tgz#e597ef75086c6e896ff5478a6bfc0a7aa4bbd14c" 428 | integrity sha512-BHGyyGN3Q97EZx0taMQ+OLNuZcW3d37ZEVmEAyeoA9ERdGvm9Irc/0Fua8SNyOtV1w6BS4q25wbMzJujO9HIfQ== 429 | 430 | acorn-jsx@^5.3.2: 431 | version "5.3.2" 432 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937" 433 | integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== 434 | 435 | acorn@^8.8.0: 436 | version "8.8.2" 437 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.8.2.tgz#1b2f25db02af965399b9776b0c2c391276d37c4a" 438 | integrity sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw== 439 | 440 | ajv@^6.10.0, ajv@^6.12.4: 441 | version "6.12.6" 442 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" 443 | integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== 444 | dependencies: 445 | fast-deep-equal "^3.1.1" 446 | fast-json-stable-stringify "^2.0.0" 447 | json-schema-traverse "^0.4.1" 448 | uri-js "^4.2.2" 449 | 450 | ansi-regex@^5.0.1: 451 | version "5.0.1" 452 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" 453 | integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== 454 | 455 | ansi-styles@^4.1.0: 456 | version "4.3.0" 457 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" 458 | integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== 459 | dependencies: 460 | color-convert "^2.0.1" 461 | 462 | anymatch@~3.1.2: 463 | version "3.1.3" 464 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.3.tgz#790c58b19ba1720a84205b57c618d5ad8524973e" 465 | integrity sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw== 466 | dependencies: 467 | normalize-path "^3.0.0" 468 | picomatch "^2.0.4" 469 | 470 | argparse@^2.0.1: 471 | version "2.0.1" 472 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" 473 | integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== 474 | 475 | array-buffer-byte-length@^1.0.0: 476 | version "1.0.0" 477 | resolved "https://registry.yarnpkg.com/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz#fabe8bc193fea865f317fe7807085ee0dee5aead" 478 | integrity sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A== 479 | dependencies: 480 | call-bind "^1.0.2" 481 | is-array-buffer "^3.0.1" 482 | 483 | array-includes@^3.1.6: 484 | version "3.1.6" 485 | resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.6.tgz#9e9e720e194f198266ba9e18c29e6a9b0e4b225f" 486 | integrity sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw== 487 | dependencies: 488 | call-bind "^1.0.2" 489 | define-properties "^1.1.4" 490 | es-abstract "^1.20.4" 491 | get-intrinsic "^1.1.3" 492 | is-string "^1.0.7" 493 | 494 | array.prototype.flat@^1.3.1: 495 | version "1.3.1" 496 | resolved "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.3.1.tgz#ffc6576a7ca3efc2f46a143b9d1dda9b4b3cf5e2" 497 | integrity sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA== 498 | dependencies: 499 | call-bind "^1.0.2" 500 | define-properties "^1.1.4" 501 | es-abstract "^1.20.4" 502 | es-shim-unscopables "^1.0.0" 503 | 504 | array.prototype.flatmap@^1.3.1: 505 | version "1.3.1" 506 | resolved "https://registry.yarnpkg.com/array.prototype.flatmap/-/array.prototype.flatmap-1.3.1.tgz#1aae7903c2100433cb8261cd4ed310aab5c4a183" 507 | integrity sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ== 508 | dependencies: 509 | call-bind "^1.0.2" 510 | define-properties "^1.1.4" 511 | es-abstract "^1.20.4" 512 | es-shim-unscopables "^1.0.0" 513 | 514 | available-typed-arrays@^1.0.5: 515 | version "1.0.5" 516 | resolved "https://registry.yarnpkg.com/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz#92f95616501069d07d10edb2fc37d3e1c65123b7" 517 | integrity sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw== 518 | 519 | balanced-match@^1.0.0: 520 | version "1.0.2" 521 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" 522 | integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== 523 | 524 | binary-extensions@^2.0.0: 525 | version "2.2.0" 526 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d" 527 | integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA== 528 | 529 | boolbase@^1.0.0: 530 | version "1.0.0" 531 | resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" 532 | integrity sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww== 533 | 534 | bootstrap-icons@^1.10.3: 535 | version "1.10.3" 536 | resolved "https://registry.yarnpkg.com/bootstrap-icons/-/bootstrap-icons-1.10.3.tgz#c587b078ca6743bef4653fe90434b4aebfba53b2" 537 | integrity sha512-7Qvj0j0idEm/DdX9Q0CpxAnJYqBCFCiUI6qzSPYfERMcokVuV9Mdm/AJiVZI8+Gawe4h/l6zFcOzvV7oXCZArw== 538 | 539 | bootstrap@^5.2.3: 540 | version "5.2.3" 541 | resolved "https://registry.yarnpkg.com/bootstrap/-/bootstrap-5.2.3.tgz#54739f4414de121b9785c5da3c87b37ff008322b" 542 | integrity sha512-cEKPM+fwb3cT8NzQZYEu4HilJ3anCrWqh3CHAok1p9jXqMPsPTBhU25fBckEJHJ/p+tTxTFTsFQGM+gaHpi3QQ== 543 | 544 | brace-expansion@^1.1.7: 545 | version "1.1.11" 546 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 547 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== 548 | dependencies: 549 | balanced-match "^1.0.0" 550 | concat-map "0.0.1" 551 | 552 | braces@^3.0.2, braces@~3.0.2: 553 | version "3.0.2" 554 | resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" 555 | integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== 556 | dependencies: 557 | fill-range "^7.0.1" 558 | 559 | call-bind@^1.0.0, call-bind@^1.0.2: 560 | version "1.0.2" 561 | resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" 562 | integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== 563 | dependencies: 564 | function-bind "^1.1.1" 565 | get-intrinsic "^1.0.2" 566 | 567 | callsites@^3.0.0: 568 | version "3.1.0" 569 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" 570 | integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== 571 | 572 | chalk@^4.0.0: 573 | version "4.1.2" 574 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" 575 | integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== 576 | dependencies: 577 | ansi-styles "^4.1.0" 578 | supports-color "^7.1.0" 579 | 580 | "chokidar@>=3.0.0 <4.0.0": 581 | version "3.5.3" 582 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.3.tgz#1cf37c8707b932bd1af1ae22c0432e2acd1903bd" 583 | integrity sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw== 584 | dependencies: 585 | anymatch "~3.1.2" 586 | braces "~3.0.2" 587 | glob-parent "~5.1.2" 588 | is-binary-path "~2.1.0" 589 | is-glob "~4.0.1" 590 | normalize-path "~3.0.0" 591 | readdirp "~3.6.0" 592 | optionalDependencies: 593 | fsevents "~2.3.2" 594 | 595 | color-convert@^2.0.1: 596 | version "2.0.1" 597 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" 598 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== 599 | dependencies: 600 | color-name "~1.1.4" 601 | 602 | color-name@~1.1.4: 603 | version "1.1.4" 604 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" 605 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== 606 | 607 | concat-map@0.0.1: 608 | version "0.0.1" 609 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 610 | integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== 611 | 612 | cross-spawn@^7.0.2: 613 | version "7.0.3" 614 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" 615 | integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== 616 | dependencies: 617 | path-key "^3.1.0" 618 | shebang-command "^2.0.0" 619 | which "^2.0.1" 620 | 621 | cssesc@^3.0.0: 622 | version "3.0.0" 623 | resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee" 624 | integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg== 625 | 626 | csstype@^2.6.8: 627 | version "2.6.21" 628 | resolved "https://registry.yarnpkg.com/csstype/-/csstype-2.6.21.tgz#2efb85b7cc55c80017c66a5ad7cbd931fda3a90e" 629 | integrity sha512-Z1PhmomIfypOpoMjRQB70jfvy/wxT50qW08YXO5lMIJkrdq4yOTR+AW7FqutScmB9NkLwxo+jU+kZLbofZZq/w== 630 | 631 | debug@^3.2.7: 632 | version "3.2.7" 633 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz#72580b7e9145fb39b6676f9c5e5fb100b934179a" 634 | integrity sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ== 635 | dependencies: 636 | ms "^2.1.1" 637 | 638 | debug@^4.1.1, debug@^4.3.2, debug@^4.3.4: 639 | version "4.3.4" 640 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" 641 | integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== 642 | dependencies: 643 | ms "2.1.2" 644 | 645 | deep-is@^0.1.3: 646 | version "0.1.4" 647 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831" 648 | integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== 649 | 650 | define-properties@^1.1.3, define-properties@^1.1.4: 651 | version "1.2.0" 652 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.2.0.tgz#52988570670c9eacedd8064f4a990f2405849bd5" 653 | integrity sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA== 654 | dependencies: 655 | has-property-descriptors "^1.0.0" 656 | object-keys "^1.1.1" 657 | 658 | doctrine@^2.1.0: 659 | version "2.1.0" 660 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d" 661 | integrity sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw== 662 | dependencies: 663 | esutils "^2.0.2" 664 | 665 | doctrine@^3.0.0: 666 | version "3.0.0" 667 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961" 668 | integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w== 669 | dependencies: 670 | esutils "^2.0.2" 671 | 672 | es-abstract@^1.19.0, es-abstract@^1.20.4: 673 | version "1.21.2" 674 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.21.2.tgz#a56b9695322c8a185dc25975aa3b8ec31d0e7eff" 675 | integrity sha512-y/B5POM2iBnIxCiernH1G7rC9qQoM77lLIMQLuob0zhp8C56Po81+2Nj0WFKnd0pNReDTnkYryc+zhOzpEIROg== 676 | dependencies: 677 | array-buffer-byte-length "^1.0.0" 678 | available-typed-arrays "^1.0.5" 679 | call-bind "^1.0.2" 680 | es-set-tostringtag "^2.0.1" 681 | es-to-primitive "^1.2.1" 682 | function.prototype.name "^1.1.5" 683 | get-intrinsic "^1.2.0" 684 | get-symbol-description "^1.0.0" 685 | globalthis "^1.0.3" 686 | gopd "^1.0.1" 687 | has "^1.0.3" 688 | has-property-descriptors "^1.0.0" 689 | has-proto "^1.0.1" 690 | has-symbols "^1.0.3" 691 | internal-slot "^1.0.5" 692 | is-array-buffer "^3.0.2" 693 | is-callable "^1.2.7" 694 | is-negative-zero "^2.0.2" 695 | is-regex "^1.1.4" 696 | is-shared-array-buffer "^1.0.2" 697 | is-string "^1.0.7" 698 | is-typed-array "^1.1.10" 699 | is-weakref "^1.0.2" 700 | object-inspect "^1.12.3" 701 | object-keys "^1.1.1" 702 | object.assign "^4.1.4" 703 | regexp.prototype.flags "^1.4.3" 704 | safe-regex-test "^1.0.0" 705 | string.prototype.trim "^1.2.7" 706 | string.prototype.trimend "^1.0.6" 707 | string.prototype.trimstart "^1.0.6" 708 | typed-array-length "^1.0.4" 709 | unbox-primitive "^1.0.2" 710 | which-typed-array "^1.1.9" 711 | 712 | es-set-tostringtag@^2.0.1: 713 | version "2.0.1" 714 | resolved "https://registry.yarnpkg.com/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz#338d502f6f674301d710b80c8592de8a15f09cd8" 715 | integrity sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg== 716 | dependencies: 717 | get-intrinsic "^1.1.3" 718 | has "^1.0.3" 719 | has-tostringtag "^1.0.0" 720 | 721 | es-shim-unscopables@^1.0.0: 722 | version "1.0.0" 723 | resolved "https://registry.yarnpkg.com/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz#702e632193201e3edf8713635d083d378e510241" 724 | integrity sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w== 725 | dependencies: 726 | has "^1.0.3" 727 | 728 | es-to-primitive@^1.2.1: 729 | version "1.2.1" 730 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a" 731 | integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== 732 | dependencies: 733 | is-callable "^1.1.4" 734 | is-date-object "^1.0.1" 735 | is-symbol "^1.0.2" 736 | 737 | esbuild@^0.16.14: 738 | version "0.16.17" 739 | resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.16.17.tgz#fc2c3914c57ee750635fee71b89f615f25065259" 740 | integrity sha512-G8LEkV0XzDMNwXKgM0Jwu3nY3lSTwSGY6XbxM9cr9+s0T/qSV1q1JVPBGzm3dcjhCic9+emZDmMffkwgPeOeLg== 741 | optionalDependencies: 742 | "@esbuild/android-arm" "0.16.17" 743 | "@esbuild/android-arm64" "0.16.17" 744 | "@esbuild/android-x64" "0.16.17" 745 | "@esbuild/darwin-arm64" "0.16.17" 746 | "@esbuild/darwin-x64" "0.16.17" 747 | "@esbuild/freebsd-arm64" "0.16.17" 748 | "@esbuild/freebsd-x64" "0.16.17" 749 | "@esbuild/linux-arm" "0.16.17" 750 | "@esbuild/linux-arm64" "0.16.17" 751 | "@esbuild/linux-ia32" "0.16.17" 752 | "@esbuild/linux-loong64" "0.16.17" 753 | "@esbuild/linux-mips64el" "0.16.17" 754 | "@esbuild/linux-ppc64" "0.16.17" 755 | "@esbuild/linux-riscv64" "0.16.17" 756 | "@esbuild/linux-s390x" "0.16.17" 757 | "@esbuild/linux-x64" "0.16.17" 758 | "@esbuild/netbsd-x64" "0.16.17" 759 | "@esbuild/openbsd-x64" "0.16.17" 760 | "@esbuild/sunos-x64" "0.16.17" 761 | "@esbuild/win32-arm64" "0.16.17" 762 | "@esbuild/win32-ia32" "0.16.17" 763 | "@esbuild/win32-x64" "0.16.17" 764 | 765 | esbuild@^0.17.11: 766 | version "0.17.11" 767 | resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.17.11.tgz#9f3122643b21d7e7731e42f18576c10bfa28152b" 768 | integrity sha512-pAMImyokbWDtnA/ufPxjQg0fYo2DDuzAlqwnDvbXqHLphe+m80eF++perYKVm8LeTuj2zUuFXC+xgSVxyoHUdg== 769 | optionalDependencies: 770 | "@esbuild/android-arm" "0.17.11" 771 | "@esbuild/android-arm64" "0.17.11" 772 | "@esbuild/android-x64" "0.17.11" 773 | "@esbuild/darwin-arm64" "0.17.11" 774 | "@esbuild/darwin-x64" "0.17.11" 775 | "@esbuild/freebsd-arm64" "0.17.11" 776 | "@esbuild/freebsd-x64" "0.17.11" 777 | "@esbuild/linux-arm" "0.17.11" 778 | "@esbuild/linux-arm64" "0.17.11" 779 | "@esbuild/linux-ia32" "0.17.11" 780 | "@esbuild/linux-loong64" "0.17.11" 781 | "@esbuild/linux-mips64el" "0.17.11" 782 | "@esbuild/linux-ppc64" "0.17.11" 783 | "@esbuild/linux-riscv64" "0.17.11" 784 | "@esbuild/linux-s390x" "0.17.11" 785 | "@esbuild/linux-x64" "0.17.11" 786 | "@esbuild/netbsd-x64" "0.17.11" 787 | "@esbuild/openbsd-x64" "0.17.11" 788 | "@esbuild/sunos-x64" "0.17.11" 789 | "@esbuild/win32-arm64" "0.17.11" 790 | "@esbuild/win32-ia32" "0.17.11" 791 | "@esbuild/win32-x64" "0.17.11" 792 | 793 | escape-string-regexp@^4.0.0: 794 | version "4.0.0" 795 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" 796 | integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== 797 | 798 | eslint-config-prettier@^8.7.0: 799 | version "8.7.0" 800 | resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-8.7.0.tgz#f1cc58a8afebc50980bd53475451df146c13182d" 801 | integrity sha512-HHVXLSlVUhMSmyW4ZzEuvjpwqamgmlfkutD53cYXLikh4pt/modINRcCIApJ84czDxM4GZInwUrromsDdTImTA== 802 | 803 | eslint-import-resolver-node@^0.3.7: 804 | version "0.3.7" 805 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.7.tgz#83b375187d412324a1963d84fa664377a23eb4d7" 806 | integrity sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA== 807 | dependencies: 808 | debug "^3.2.7" 809 | is-core-module "^2.11.0" 810 | resolve "^1.22.1" 811 | 812 | eslint-module-utils@^2.7.4: 813 | version "2.7.4" 814 | resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.7.4.tgz#4f3e41116aaf13a20792261e61d3a2e7e0583974" 815 | integrity sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA== 816 | dependencies: 817 | debug "^3.2.7" 818 | 819 | eslint-plugin-import@^2.27.5: 820 | version "2.27.5" 821 | resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.27.5.tgz#876a6d03f52608a3e5bb439c2550588e51dd6c65" 822 | integrity sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow== 823 | dependencies: 824 | array-includes "^3.1.6" 825 | array.prototype.flat "^1.3.1" 826 | array.prototype.flatmap "^1.3.1" 827 | debug "^3.2.7" 828 | doctrine "^2.1.0" 829 | eslint-import-resolver-node "^0.3.7" 830 | eslint-module-utils "^2.7.4" 831 | has "^1.0.3" 832 | is-core-module "^2.11.0" 833 | is-glob "^4.0.3" 834 | minimatch "^3.1.2" 835 | object.values "^1.1.6" 836 | resolve "^1.22.1" 837 | semver "^6.3.0" 838 | tsconfig-paths "^3.14.1" 839 | 840 | eslint-plugin-prettier@^4.2.1: 841 | version "4.2.1" 842 | resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-4.2.1.tgz#651cbb88b1dab98bfd42f017a12fa6b2d993f94b" 843 | integrity sha512-f/0rXLXUt0oFYs8ra4w49wYZBG5GKZpAYsJSm6rnYL5uVDjd+zowwMwVZHnAjf4edNrKpCDYfXDgmRE/Ak7QyQ== 844 | dependencies: 845 | prettier-linter-helpers "^1.0.0" 846 | 847 | eslint-plugin-vue@^9.9.0: 848 | version "9.9.0" 849 | resolved "https://registry.yarnpkg.com/eslint-plugin-vue/-/eslint-plugin-vue-9.9.0.tgz#ac788ebccd2eb94d846a507df55da50693b80c91" 850 | integrity sha512-YbubS7eK0J7DCf0U2LxvVP7LMfs6rC6UltihIgval3azO3gyDwEGVgsCMe1TmDiEkl6GdMKfRpaME6QxIYtzDQ== 851 | dependencies: 852 | eslint-utils "^3.0.0" 853 | natural-compare "^1.4.0" 854 | nth-check "^2.0.1" 855 | postcss-selector-parser "^6.0.9" 856 | semver "^7.3.5" 857 | vue-eslint-parser "^9.0.1" 858 | xml-name-validator "^4.0.0" 859 | 860 | eslint-scope@^7.1.1: 861 | version "7.1.1" 862 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-7.1.1.tgz#fff34894c2f65e5226d3041ac480b4513a163642" 863 | integrity sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw== 864 | dependencies: 865 | esrecurse "^4.3.0" 866 | estraverse "^5.2.0" 867 | 868 | eslint-utils@^3.0.0: 869 | version "3.0.0" 870 | resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-3.0.0.tgz#8aebaface7345bb33559db0a1f13a1d2d48c3672" 871 | integrity sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA== 872 | dependencies: 873 | eslint-visitor-keys "^2.0.0" 874 | 875 | eslint-visitor-keys@^2.0.0: 876 | version "2.1.0" 877 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz#f65328259305927392c938ed44eb0a5c9b2bd303" 878 | integrity sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw== 879 | 880 | eslint-visitor-keys@^3.3.0: 881 | version "3.3.0" 882 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz#f6480fa6b1f30efe2d1968aa8ac745b862469826" 883 | integrity sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA== 884 | 885 | eslint@^8.36.0: 886 | version "8.36.0" 887 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.36.0.tgz#1bd72202200a5492f91803b113fb8a83b11285cf" 888 | integrity sha512-Y956lmS7vDqomxlaaQAHVmeb4tNMp2FWIvU/RnU5BD3IKMD/MJPr76xdyr68P8tV1iNMvN2mRK0yy3c+UjL+bw== 889 | dependencies: 890 | "@eslint-community/eslint-utils" "^4.2.0" 891 | "@eslint-community/regexpp" "^4.4.0" 892 | "@eslint/eslintrc" "^2.0.1" 893 | "@eslint/js" "8.36.0" 894 | "@humanwhocodes/config-array" "^0.11.8" 895 | "@humanwhocodes/module-importer" "^1.0.1" 896 | "@nodelib/fs.walk" "^1.2.8" 897 | ajv "^6.10.0" 898 | chalk "^4.0.0" 899 | cross-spawn "^7.0.2" 900 | debug "^4.3.2" 901 | doctrine "^3.0.0" 902 | escape-string-regexp "^4.0.0" 903 | eslint-scope "^7.1.1" 904 | eslint-visitor-keys "^3.3.0" 905 | espree "^9.5.0" 906 | esquery "^1.4.2" 907 | esutils "^2.0.2" 908 | fast-deep-equal "^3.1.3" 909 | file-entry-cache "^6.0.1" 910 | find-up "^5.0.0" 911 | glob-parent "^6.0.2" 912 | globals "^13.19.0" 913 | grapheme-splitter "^1.0.4" 914 | ignore "^5.2.0" 915 | import-fresh "^3.0.0" 916 | imurmurhash "^0.1.4" 917 | is-glob "^4.0.0" 918 | is-path-inside "^3.0.3" 919 | js-sdsl "^4.1.4" 920 | js-yaml "^4.1.0" 921 | json-stable-stringify-without-jsonify "^1.0.1" 922 | levn "^0.4.1" 923 | lodash.merge "^4.6.2" 924 | minimatch "^3.1.2" 925 | natural-compare "^1.4.0" 926 | optionator "^0.9.1" 927 | strip-ansi "^6.0.1" 928 | strip-json-comments "^3.1.0" 929 | text-table "^0.2.0" 930 | 931 | espree@^9.3.1, espree@^9.5.0: 932 | version "9.5.0" 933 | resolved "https://registry.yarnpkg.com/espree/-/espree-9.5.0.tgz#3646d4e3f58907464edba852fa047e6a27bdf113" 934 | integrity sha512-JPbJGhKc47++oo4JkEoTe2wjy4fmMwvFpgJT9cQzmfXKp22Dr6Hf1tdCteLz1h0P3t+mGvWZ+4Uankvh8+c6zw== 935 | dependencies: 936 | acorn "^8.8.0" 937 | acorn-jsx "^5.3.2" 938 | eslint-visitor-keys "^3.3.0" 939 | 940 | esquery@^1.4.0, esquery@^1.4.2: 941 | version "1.5.0" 942 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.5.0.tgz#6ce17738de8577694edd7361c57182ac8cb0db0b" 943 | integrity sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg== 944 | dependencies: 945 | estraverse "^5.1.0" 946 | 947 | esrecurse@^4.3.0: 948 | version "4.3.0" 949 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921" 950 | integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== 951 | dependencies: 952 | estraverse "^5.2.0" 953 | 954 | estraverse@^5.1.0, estraverse@^5.2.0: 955 | version "5.3.0" 956 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123" 957 | integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== 958 | 959 | estree-walker@^2.0.2: 960 | version "2.0.2" 961 | resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-2.0.2.tgz#52f010178c2a4c117a7757cfe942adb7d2da4cac" 962 | integrity sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w== 963 | 964 | esutils@^2.0.2: 965 | version "2.0.3" 966 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" 967 | integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== 968 | 969 | fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: 970 | version "3.1.3" 971 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" 972 | integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== 973 | 974 | fast-diff@^1.1.2: 975 | version "1.2.0" 976 | resolved "https://registry.yarnpkg.com/fast-diff/-/fast-diff-1.2.0.tgz#73ee11982d86caaf7959828d519cfe927fac5f03" 977 | integrity sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w== 978 | 979 | fast-glob@^3.2.11: 980 | version "3.2.12" 981 | resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.12.tgz#7f39ec99c2e6ab030337142da9e0c18f37afae80" 982 | integrity sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w== 983 | dependencies: 984 | "@nodelib/fs.stat" "^2.0.2" 985 | "@nodelib/fs.walk" "^1.2.3" 986 | glob-parent "^5.1.2" 987 | merge2 "^1.3.0" 988 | micromatch "^4.0.4" 989 | 990 | fast-json-stable-stringify@^2.0.0: 991 | version "2.1.0" 992 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" 993 | integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== 994 | 995 | fast-levenshtein@^2.0.6: 996 | version "2.0.6" 997 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 998 | integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw== 999 | 1000 | fastq@^1.6.0: 1001 | version "1.15.0" 1002 | resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.15.0.tgz#d04d07c6a2a68fe4599fea8d2e103a937fae6b3a" 1003 | integrity sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw== 1004 | dependencies: 1005 | reusify "^1.0.4" 1006 | 1007 | file-entry-cache@^6.0.1: 1008 | version "6.0.1" 1009 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027" 1010 | integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg== 1011 | dependencies: 1012 | flat-cache "^3.0.4" 1013 | 1014 | fill-range@^7.0.1: 1015 | version "7.0.1" 1016 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" 1017 | integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== 1018 | dependencies: 1019 | to-regex-range "^5.0.1" 1020 | 1021 | find-up@^5.0.0: 1022 | version "5.0.0" 1023 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc" 1024 | integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng== 1025 | dependencies: 1026 | locate-path "^6.0.0" 1027 | path-exists "^4.0.0" 1028 | 1029 | flat-cache@^3.0.4: 1030 | version "3.0.4" 1031 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.0.4.tgz#61b0338302b2fe9f957dcc32fc2a87f1c3048b11" 1032 | integrity sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg== 1033 | dependencies: 1034 | flatted "^3.1.0" 1035 | rimraf "^3.0.2" 1036 | 1037 | flatted@^3.1.0: 1038 | version "3.2.7" 1039 | resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.2.7.tgz#609f39207cb614b89d0765b477cb2d437fbf9787" 1040 | integrity sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ== 1041 | 1042 | for-each@^0.3.3: 1043 | version "0.3.3" 1044 | resolved "https://registry.yarnpkg.com/for-each/-/for-each-0.3.3.tgz#69b447e88a0a5d32c3e7084f3f1710034b21376e" 1045 | integrity sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw== 1046 | dependencies: 1047 | is-callable "^1.1.3" 1048 | 1049 | fs.realpath@^1.0.0: 1050 | version "1.0.0" 1051 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1052 | integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== 1053 | 1054 | fsevents@~2.3.2: 1055 | version "2.3.2" 1056 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" 1057 | integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== 1058 | 1059 | function-bind@^1.1.1: 1060 | version "1.1.1" 1061 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 1062 | integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== 1063 | 1064 | function.prototype.name@^1.1.5: 1065 | version "1.1.5" 1066 | resolved "https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.1.5.tgz#cce0505fe1ffb80503e6f9e46cc64e46a12a9621" 1067 | integrity sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA== 1068 | dependencies: 1069 | call-bind "^1.0.2" 1070 | define-properties "^1.1.3" 1071 | es-abstract "^1.19.0" 1072 | functions-have-names "^1.2.2" 1073 | 1074 | functions-have-names@^1.2.2: 1075 | version "1.2.3" 1076 | resolved "https://registry.yarnpkg.com/functions-have-names/-/functions-have-names-1.2.3.tgz#0404fe4ee2ba2f607f0e0ec3c80bae994133b834" 1077 | integrity sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ== 1078 | 1079 | get-intrinsic@^1.0.2, get-intrinsic@^1.1.1, get-intrinsic@^1.1.3, get-intrinsic@^1.2.0: 1080 | version "1.2.0" 1081 | resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.0.tgz#7ad1dc0535f3a2904bba075772763e5051f6d05f" 1082 | integrity sha512-L049y6nFOuom5wGyRc3/gdTLO94dySVKRACj1RmJZBQXlbTMhtNIgkWkUHq+jYmZvKf14EW1EoJnnjbmoHij0Q== 1083 | dependencies: 1084 | function-bind "^1.1.1" 1085 | has "^1.0.3" 1086 | has-symbols "^1.0.3" 1087 | 1088 | get-symbol-description@^1.0.0: 1089 | version "1.0.0" 1090 | resolved "https://registry.yarnpkg.com/get-symbol-description/-/get-symbol-description-1.0.0.tgz#7fdb81c900101fbd564dd5f1a30af5aadc1e58d6" 1091 | integrity sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw== 1092 | dependencies: 1093 | call-bind "^1.0.2" 1094 | get-intrinsic "^1.1.1" 1095 | 1096 | glob-parent@^5.1.2, glob-parent@~5.1.2: 1097 | version "5.1.2" 1098 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" 1099 | integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== 1100 | dependencies: 1101 | is-glob "^4.0.1" 1102 | 1103 | glob-parent@^6.0.2: 1104 | version "6.0.2" 1105 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-6.0.2.tgz#6d237d99083950c79290f24c7642a3de9a28f9e3" 1106 | integrity sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A== 1107 | dependencies: 1108 | is-glob "^4.0.3" 1109 | 1110 | glob@^7.1.3: 1111 | version "7.2.3" 1112 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" 1113 | integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== 1114 | dependencies: 1115 | fs.realpath "^1.0.0" 1116 | inflight "^1.0.4" 1117 | inherits "2" 1118 | minimatch "^3.1.1" 1119 | once "^1.3.0" 1120 | path-is-absolute "^1.0.0" 1121 | 1122 | globals@^13.19.0: 1123 | version "13.20.0" 1124 | resolved "https://registry.yarnpkg.com/globals/-/globals-13.20.0.tgz#ea276a1e508ffd4f1612888f9d1bad1e2717bf82" 1125 | integrity sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ== 1126 | dependencies: 1127 | type-fest "^0.20.2" 1128 | 1129 | globalthis@^1.0.3: 1130 | version "1.0.3" 1131 | resolved "https://registry.yarnpkg.com/globalthis/-/globalthis-1.0.3.tgz#5852882a52b80dc301b0660273e1ed082f0b6ccf" 1132 | integrity sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA== 1133 | dependencies: 1134 | define-properties "^1.1.3" 1135 | 1136 | gopd@^1.0.1: 1137 | version "1.0.1" 1138 | resolved "https://registry.yarnpkg.com/gopd/-/gopd-1.0.1.tgz#29ff76de69dac7489b7c0918a5788e56477c332c" 1139 | integrity sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA== 1140 | dependencies: 1141 | get-intrinsic "^1.1.3" 1142 | 1143 | grapheme-splitter@^1.0.4: 1144 | version "1.0.4" 1145 | resolved "https://registry.yarnpkg.com/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz#9cf3a665c6247479896834af35cf1dbb4400767e" 1146 | integrity sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ== 1147 | 1148 | has-bigints@^1.0.1, has-bigints@^1.0.2: 1149 | version "1.0.2" 1150 | resolved "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.2.tgz#0871bd3e3d51626f6ca0966668ba35d5602d6eaa" 1151 | integrity sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ== 1152 | 1153 | has-flag@^4.0.0: 1154 | version "4.0.0" 1155 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" 1156 | integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== 1157 | 1158 | has-property-descriptors@^1.0.0: 1159 | version "1.0.0" 1160 | resolved "https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz#610708600606d36961ed04c196193b6a607fa861" 1161 | integrity sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ== 1162 | dependencies: 1163 | get-intrinsic "^1.1.1" 1164 | 1165 | has-proto@^1.0.1: 1166 | version "1.0.1" 1167 | resolved "https://registry.yarnpkg.com/has-proto/-/has-proto-1.0.1.tgz#1885c1305538958aff469fef37937c22795408e0" 1168 | integrity sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg== 1169 | 1170 | has-symbols@^1.0.2, has-symbols@^1.0.3: 1171 | version "1.0.3" 1172 | resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" 1173 | integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== 1174 | 1175 | has-tostringtag@^1.0.0: 1176 | version "1.0.0" 1177 | resolved "https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.0.tgz#7e133818a7d394734f941e73c3d3f9291e658b25" 1178 | integrity sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ== 1179 | dependencies: 1180 | has-symbols "^1.0.2" 1181 | 1182 | has@^1.0.3: 1183 | version "1.0.3" 1184 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" 1185 | integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== 1186 | dependencies: 1187 | function-bind "^1.1.1" 1188 | 1189 | husky@^8.0.3: 1190 | version "8.0.3" 1191 | resolved "https://registry.yarnpkg.com/husky/-/husky-8.0.3.tgz#4936d7212e46d1dea28fef29bb3a108872cd9184" 1192 | integrity sha512-+dQSyqPh4x1hlO1swXBiNb2HzTDN1I2IGLQx1GrBuiqFJfoMrnZWwVmatvSiO+Iz8fBUnf+lekwNo4c2LlXItg== 1193 | 1194 | ignore@^5.2.0: 1195 | version "5.2.4" 1196 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.4.tgz#a291c0c6178ff1b960befe47fcdec301674a6324" 1197 | integrity sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ== 1198 | 1199 | immutable@^4.0.0: 1200 | version "4.3.0" 1201 | resolved "https://registry.yarnpkg.com/immutable/-/immutable-4.3.0.tgz#eb1738f14ffb39fd068b1dbe1296117484dd34be" 1202 | integrity sha512-0AOCmOip+xgJwEVTQj1EfiDDOkPmuyllDuTuEX+DDXUgapLAsBIfkg3sxCYyCEA8mQqZrrxPUGjcOQ2JS3WLkg== 1203 | 1204 | import-fresh@^3.0.0, import-fresh@^3.2.1: 1205 | version "3.3.0" 1206 | resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" 1207 | integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== 1208 | dependencies: 1209 | parent-module "^1.0.0" 1210 | resolve-from "^4.0.0" 1211 | 1212 | imurmurhash@^0.1.4: 1213 | version "0.1.4" 1214 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1215 | integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA== 1216 | 1217 | inflight@^1.0.4: 1218 | version "1.0.6" 1219 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1220 | integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA== 1221 | dependencies: 1222 | once "^1.3.0" 1223 | wrappy "1" 1224 | 1225 | inherits@2: 1226 | version "2.0.4" 1227 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 1228 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 1229 | 1230 | internal-slot@^1.0.5: 1231 | version "1.0.5" 1232 | resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.5.tgz#f2a2ee21f668f8627a4667f309dc0f4fb6674986" 1233 | integrity sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ== 1234 | dependencies: 1235 | get-intrinsic "^1.2.0" 1236 | has "^1.0.3" 1237 | side-channel "^1.0.4" 1238 | 1239 | is-array-buffer@^3.0.1, is-array-buffer@^3.0.2: 1240 | version "3.0.2" 1241 | resolved "https://registry.yarnpkg.com/is-array-buffer/-/is-array-buffer-3.0.2.tgz#f2653ced8412081638ecb0ebbd0c41c6e0aecbbe" 1242 | integrity sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w== 1243 | dependencies: 1244 | call-bind "^1.0.2" 1245 | get-intrinsic "^1.2.0" 1246 | is-typed-array "^1.1.10" 1247 | 1248 | is-bigint@^1.0.1: 1249 | version "1.0.4" 1250 | resolved "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.4.tgz#08147a1875bc2b32005d41ccd8291dffc6691df3" 1251 | integrity sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg== 1252 | dependencies: 1253 | has-bigints "^1.0.1" 1254 | 1255 | is-binary-path@~2.1.0: 1256 | version "2.1.0" 1257 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" 1258 | integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== 1259 | dependencies: 1260 | binary-extensions "^2.0.0" 1261 | 1262 | is-boolean-object@^1.1.0: 1263 | version "1.1.2" 1264 | resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.1.2.tgz#5c6dc200246dd9321ae4b885a114bb1f75f63719" 1265 | integrity sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA== 1266 | dependencies: 1267 | call-bind "^1.0.2" 1268 | has-tostringtag "^1.0.0" 1269 | 1270 | is-callable@^1.1.3, is-callable@^1.1.4, is-callable@^1.2.7: 1271 | version "1.2.7" 1272 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.7.tgz#3bc2a85ea742d9e36205dcacdd72ca1fdc51b055" 1273 | integrity sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA== 1274 | 1275 | is-core-module@^2.11.0, is-core-module@^2.9.0: 1276 | version "2.11.0" 1277 | resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.11.0.tgz#ad4cb3e3863e814523c96f3f58d26cc570ff0144" 1278 | integrity sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw== 1279 | dependencies: 1280 | has "^1.0.3" 1281 | 1282 | is-date-object@^1.0.1: 1283 | version "1.0.5" 1284 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.5.tgz#0841d5536e724c25597bf6ea62e1bd38298df31f" 1285 | integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ== 1286 | dependencies: 1287 | has-tostringtag "^1.0.0" 1288 | 1289 | is-extglob@^2.1.1: 1290 | version "2.1.1" 1291 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 1292 | integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== 1293 | 1294 | is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3, is-glob@~4.0.1: 1295 | version "4.0.3" 1296 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" 1297 | integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== 1298 | dependencies: 1299 | is-extglob "^2.1.1" 1300 | 1301 | is-negative-zero@^2.0.2: 1302 | version "2.0.2" 1303 | resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.2.tgz#7bf6f03a28003b8b3965de3ac26f664d765f3150" 1304 | integrity sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA== 1305 | 1306 | is-number-object@^1.0.4: 1307 | version "1.0.7" 1308 | resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.7.tgz#59d50ada4c45251784e9904f5246c742f07a42fc" 1309 | integrity sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ== 1310 | dependencies: 1311 | has-tostringtag "^1.0.0" 1312 | 1313 | is-number@^7.0.0: 1314 | version "7.0.0" 1315 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" 1316 | integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== 1317 | 1318 | is-path-inside@^3.0.3: 1319 | version "3.0.3" 1320 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.3.tgz#d231362e53a07ff2b0e0ea7fed049161ffd16283" 1321 | integrity sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ== 1322 | 1323 | is-regex@^1.1.4: 1324 | version "1.1.4" 1325 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958" 1326 | integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg== 1327 | dependencies: 1328 | call-bind "^1.0.2" 1329 | has-tostringtag "^1.0.0" 1330 | 1331 | is-shared-array-buffer@^1.0.2: 1332 | version "1.0.2" 1333 | resolved "https://registry.yarnpkg.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz#8f259c573b60b6a32d4058a1a07430c0a7344c79" 1334 | integrity sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA== 1335 | dependencies: 1336 | call-bind "^1.0.2" 1337 | 1338 | is-string@^1.0.5, is-string@^1.0.7: 1339 | version "1.0.7" 1340 | resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.7.tgz#0dd12bf2006f255bb58f695110eff7491eebc0fd" 1341 | integrity sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg== 1342 | dependencies: 1343 | has-tostringtag "^1.0.0" 1344 | 1345 | is-symbol@^1.0.2, is-symbol@^1.0.3: 1346 | version "1.0.4" 1347 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.4.tgz#a6dac93b635b063ca6872236de88910a57af139c" 1348 | integrity sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg== 1349 | dependencies: 1350 | has-symbols "^1.0.2" 1351 | 1352 | is-typed-array@^1.1.10, is-typed-array@^1.1.9: 1353 | version "1.1.10" 1354 | resolved "https://registry.yarnpkg.com/is-typed-array/-/is-typed-array-1.1.10.tgz#36a5b5cb4189b575d1a3e4b08536bfb485801e3f" 1355 | integrity sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A== 1356 | dependencies: 1357 | available-typed-arrays "^1.0.5" 1358 | call-bind "^1.0.2" 1359 | for-each "^0.3.3" 1360 | gopd "^1.0.1" 1361 | has-tostringtag "^1.0.0" 1362 | 1363 | is-weakref@^1.0.2: 1364 | version "1.0.2" 1365 | resolved "https://registry.yarnpkg.com/is-weakref/-/is-weakref-1.0.2.tgz#9529f383a9338205e89765e0392efc2f100f06f2" 1366 | integrity sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ== 1367 | dependencies: 1368 | call-bind "^1.0.2" 1369 | 1370 | isexe@^2.0.0: 1371 | version "2.0.0" 1372 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1373 | integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== 1374 | 1375 | js-sdsl@^4.1.4: 1376 | version "4.3.0" 1377 | resolved "https://registry.yarnpkg.com/js-sdsl/-/js-sdsl-4.3.0.tgz#aeefe32a451f7af88425b11fdb5f58c90ae1d711" 1378 | integrity sha512-mifzlm2+5nZ+lEcLJMoBK0/IH/bDg8XnJfd/Wq6IP+xoCjLZsTOnV2QpxlVbX9bMnkl5PdEjNtBJ9Cj1NjifhQ== 1379 | 1380 | js-yaml@^4.1.0: 1381 | version "4.1.0" 1382 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602" 1383 | integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA== 1384 | dependencies: 1385 | argparse "^2.0.1" 1386 | 1387 | json-schema-traverse@^0.4.1: 1388 | version "0.4.1" 1389 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" 1390 | integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== 1391 | 1392 | json-stable-stringify-without-jsonify@^1.0.1: 1393 | version "1.0.1" 1394 | resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" 1395 | integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw== 1396 | 1397 | json5@^1.0.2: 1398 | version "1.0.2" 1399 | resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.2.tgz#63d98d60f21b313b77c4d6da18bfa69d80e1d593" 1400 | integrity sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA== 1401 | dependencies: 1402 | minimist "^1.2.0" 1403 | 1404 | levn@^0.4.1: 1405 | version "0.4.1" 1406 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade" 1407 | integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ== 1408 | dependencies: 1409 | prelude-ls "^1.2.1" 1410 | type-check "~0.4.0" 1411 | 1412 | locate-path@^6.0.0: 1413 | version "6.0.0" 1414 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286" 1415 | integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw== 1416 | dependencies: 1417 | p-locate "^5.0.0" 1418 | 1419 | lodash.merge@^4.6.2: 1420 | version "4.6.2" 1421 | resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a" 1422 | integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== 1423 | 1424 | lodash@^4.17.21: 1425 | version "4.17.21" 1426 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" 1427 | integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== 1428 | 1429 | lru-cache@^6.0.0: 1430 | version "6.0.0" 1431 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" 1432 | integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== 1433 | dependencies: 1434 | yallist "^4.0.0" 1435 | 1436 | magic-string@^0.25.7: 1437 | version "0.25.9" 1438 | resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.25.9.tgz#de7f9faf91ef8a1c91d02c2e5314c8277dbcdd1c" 1439 | integrity sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ== 1440 | dependencies: 1441 | sourcemap-codec "^1.4.8" 1442 | 1443 | merge2@^1.3.0: 1444 | version "1.4.1" 1445 | resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" 1446 | integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== 1447 | 1448 | micromatch@^4.0.4: 1449 | version "4.0.5" 1450 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.5.tgz#bc8999a7cbbf77cdc89f132f6e467051b49090c6" 1451 | integrity sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA== 1452 | dependencies: 1453 | braces "^3.0.2" 1454 | picomatch "^2.3.1" 1455 | 1456 | minimatch@^3.0.5, minimatch@^3.1.1, minimatch@^3.1.2: 1457 | version "3.1.2" 1458 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" 1459 | integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== 1460 | dependencies: 1461 | brace-expansion "^1.1.7" 1462 | 1463 | minimist@^1.2.0, minimist@^1.2.6: 1464 | version "1.2.8" 1465 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c" 1466 | integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA== 1467 | 1468 | ms@2.1.2: 1469 | version "2.1.2" 1470 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" 1471 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== 1472 | 1473 | ms@^2.1.1: 1474 | version "2.1.3" 1475 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" 1476 | integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== 1477 | 1478 | nanoid@^3.3.4: 1479 | version "3.3.4" 1480 | resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.4.tgz#730b67e3cd09e2deacf03c027c81c9d9dbc5e8ab" 1481 | integrity sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw== 1482 | 1483 | natural-compare@^1.4.0: 1484 | version "1.4.0" 1485 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 1486 | integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw== 1487 | 1488 | normalize-path@^3.0.0, normalize-path@~3.0.0: 1489 | version "3.0.0" 1490 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" 1491 | integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== 1492 | 1493 | nth-check@^2.0.1: 1494 | version "2.1.1" 1495 | resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-2.1.1.tgz#c9eab428effce36cd6b92c924bdb000ef1f1ed1d" 1496 | integrity sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w== 1497 | dependencies: 1498 | boolbase "^1.0.0" 1499 | 1500 | object-inspect@^1.12.3, object-inspect@^1.9.0: 1501 | version "1.12.3" 1502 | resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.3.tgz#ba62dffd67ee256c8c086dfae69e016cd1f198b9" 1503 | integrity sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g== 1504 | 1505 | object-keys@^1.1.1: 1506 | version "1.1.1" 1507 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" 1508 | integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== 1509 | 1510 | object.assign@^4.1.4: 1511 | version "4.1.4" 1512 | resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.4.tgz#9673c7c7c351ab8c4d0b516f4343ebf4dfb7799f" 1513 | integrity sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ== 1514 | dependencies: 1515 | call-bind "^1.0.2" 1516 | define-properties "^1.1.4" 1517 | has-symbols "^1.0.3" 1518 | object-keys "^1.1.1" 1519 | 1520 | object.values@^1.1.6: 1521 | version "1.1.6" 1522 | resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.6.tgz#4abbaa71eba47d63589d402856f908243eea9b1d" 1523 | integrity sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw== 1524 | dependencies: 1525 | call-bind "^1.0.2" 1526 | define-properties "^1.1.4" 1527 | es-abstract "^1.20.4" 1528 | 1529 | once@^1.3.0: 1530 | version "1.4.0" 1531 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1532 | integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== 1533 | dependencies: 1534 | wrappy "1" 1535 | 1536 | optionator@^0.9.1: 1537 | version "0.9.1" 1538 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.1.tgz#4f236a6373dae0566a6d43e1326674f50c291499" 1539 | integrity sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw== 1540 | dependencies: 1541 | deep-is "^0.1.3" 1542 | fast-levenshtein "^2.0.6" 1543 | levn "^0.4.1" 1544 | prelude-ls "^1.2.1" 1545 | type-check "^0.4.0" 1546 | word-wrap "^1.2.3" 1547 | 1548 | p-limit@^3.0.2: 1549 | version "3.1.0" 1550 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b" 1551 | integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== 1552 | dependencies: 1553 | yocto-queue "^0.1.0" 1554 | 1555 | p-locate@^5.0.0: 1556 | version "5.0.0" 1557 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-5.0.0.tgz#83c8315c6785005e3bd021839411c9e110e6d834" 1558 | integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw== 1559 | dependencies: 1560 | p-limit "^3.0.2" 1561 | 1562 | parent-module@^1.0.0: 1563 | version "1.0.1" 1564 | resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" 1565 | integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== 1566 | dependencies: 1567 | callsites "^3.0.0" 1568 | 1569 | path-exists@^4.0.0: 1570 | version "4.0.0" 1571 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" 1572 | integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== 1573 | 1574 | path-is-absolute@^1.0.0: 1575 | version "1.0.1" 1576 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1577 | integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== 1578 | 1579 | path-key@^3.1.0: 1580 | version "3.1.1" 1581 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" 1582 | integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== 1583 | 1584 | path-parse@^1.0.7: 1585 | version "1.0.7" 1586 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" 1587 | integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== 1588 | 1589 | picocolors@^1.0.0: 1590 | version "1.0.0" 1591 | resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" 1592 | integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== 1593 | 1594 | picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.3.1: 1595 | version "2.3.1" 1596 | resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" 1597 | integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== 1598 | 1599 | postcss-selector-parser@^6.0.9: 1600 | version "6.0.11" 1601 | resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.11.tgz#2e41dc39b7ad74046e1615185185cd0b17d0c8dc" 1602 | integrity sha512-zbARubNdogI9j7WY4nQJBiNqQf3sLS3wCP4WfOidu+p28LofJqDH1tcXypGrcmMHhDk2t9wGhCsYe/+szLTy1g== 1603 | dependencies: 1604 | cssesc "^3.0.0" 1605 | util-deprecate "^1.0.2" 1606 | 1607 | postcss@^8.1.10, postcss@^8.4.21: 1608 | version "8.4.21" 1609 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.21.tgz#c639b719a57efc3187b13a1d765675485f4134f4" 1610 | integrity sha512-tP7u/Sn/dVxK2NnruI4H9BG+x+Wxz6oeZ1cJ8P6G/PZY0IKk4k/63TDsQf2kQq3+qoJeLm2kIBUNlZe3zgb4Zg== 1611 | dependencies: 1612 | nanoid "^3.3.4" 1613 | picocolors "^1.0.0" 1614 | source-map-js "^1.0.2" 1615 | 1616 | prelude-ls@^1.2.1: 1617 | version "1.2.1" 1618 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" 1619 | integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== 1620 | 1621 | prettier-linter-helpers@^1.0.0: 1622 | version "1.0.0" 1623 | resolved "https://registry.yarnpkg.com/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz#d23d41fe1375646de2d0104d3454a3008802cf7b" 1624 | integrity sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w== 1625 | dependencies: 1626 | fast-diff "^1.1.2" 1627 | 1628 | prettier@2.8.4: 1629 | version "2.8.4" 1630 | resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.8.4.tgz#34dd2595629bfbb79d344ac4a91ff948694463c3" 1631 | integrity sha512-vIS4Rlc2FNh0BySk3Wkd6xmwxB0FpOndW5fisM5H8hsZSxU2VWVB5CWIkIjWvrHjIhxk2g3bfMKM87zNTrZddw== 1632 | 1633 | punycode@^2.1.0: 1634 | version "2.3.0" 1635 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.3.0.tgz#f67fa67c94da8f4d0cfff981aee4118064199b8f" 1636 | integrity sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA== 1637 | 1638 | queue-microtask@^1.2.2: 1639 | version "1.2.3" 1640 | resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" 1641 | integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== 1642 | 1643 | readdirp@~3.6.0: 1644 | version "3.6.0" 1645 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7" 1646 | integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA== 1647 | dependencies: 1648 | picomatch "^2.2.1" 1649 | 1650 | regexp.prototype.flags@^1.4.3: 1651 | version "1.4.3" 1652 | resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz#87cab30f80f66660181a3bb7bf5981a872b367ac" 1653 | integrity sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA== 1654 | dependencies: 1655 | call-bind "^1.0.2" 1656 | define-properties "^1.1.3" 1657 | functions-have-names "^1.2.2" 1658 | 1659 | resolve-from@^4.0.0: 1660 | version "4.0.0" 1661 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" 1662 | integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== 1663 | 1664 | resolve@^1.22.1: 1665 | version "1.22.1" 1666 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.1.tgz#27cb2ebb53f91abb49470a928bba7558066ac177" 1667 | integrity sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw== 1668 | dependencies: 1669 | is-core-module "^2.9.0" 1670 | path-parse "^1.0.7" 1671 | supports-preserve-symlinks-flag "^1.0.0" 1672 | 1673 | reusify@^1.0.4: 1674 | version "1.0.4" 1675 | resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" 1676 | integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== 1677 | 1678 | rimraf@^3.0.2: 1679 | version "3.0.2" 1680 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" 1681 | integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== 1682 | dependencies: 1683 | glob "^7.1.3" 1684 | 1685 | rollup@^3.10.0: 1686 | version "3.19.1" 1687 | resolved "https://registry.yarnpkg.com/rollup/-/rollup-3.19.1.tgz#2b3a31ac1ff9f3afab2e523fa687fef5b0ee20fc" 1688 | integrity sha512-lAbrdN7neYCg/8WaoWn/ckzCtz+jr70GFfYdlf50OF7387HTg+wiuiqJRFYawwSPpqfqDNYqK7smY/ks2iAudg== 1689 | optionalDependencies: 1690 | fsevents "~2.3.2" 1691 | 1692 | run-parallel@^1.1.9: 1693 | version "1.2.0" 1694 | resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee" 1695 | integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== 1696 | dependencies: 1697 | queue-microtask "^1.2.2" 1698 | 1699 | safe-regex-test@^1.0.0: 1700 | version "1.0.0" 1701 | resolved "https://registry.yarnpkg.com/safe-regex-test/-/safe-regex-test-1.0.0.tgz#793b874d524eb3640d1873aad03596db2d4f2295" 1702 | integrity sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA== 1703 | dependencies: 1704 | call-bind "^1.0.2" 1705 | get-intrinsic "^1.1.3" 1706 | is-regex "^1.1.4" 1707 | 1708 | sass@^1.59.2: 1709 | version "1.59.2" 1710 | resolved "https://registry.yarnpkg.com/sass/-/sass-1.59.2.tgz#537f6d11614d4f20f97696f23ad358ee398b1937" 1711 | integrity sha512-jJyO6SmbzkJexF8MUorHx5tAilcgabioYxT/BHbY4+OvoqmbHxsYlrjZ8Adhqcgl6Zqwie0TgMXLCAmPFxXOuw== 1712 | dependencies: 1713 | chokidar ">=3.0.0 <4.0.0" 1714 | immutable "^4.0.0" 1715 | source-map-js ">=0.6.2 <2.0.0" 1716 | 1717 | semver@^6.3.0: 1718 | version "6.3.0" 1719 | resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" 1720 | integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== 1721 | 1722 | semver@^7.3.5, semver@^7.3.6: 1723 | version "7.3.8" 1724 | resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.8.tgz#07a78feafb3f7b32347d725e33de7e2a2df67798" 1725 | integrity sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A== 1726 | dependencies: 1727 | lru-cache "^6.0.0" 1728 | 1729 | shebang-command@^2.0.0: 1730 | version "2.0.0" 1731 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" 1732 | integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== 1733 | dependencies: 1734 | shebang-regex "^3.0.0" 1735 | 1736 | shebang-regex@^3.0.0: 1737 | version "3.0.0" 1738 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" 1739 | integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== 1740 | 1741 | side-channel@^1.0.4: 1742 | version "1.0.4" 1743 | resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf" 1744 | integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw== 1745 | dependencies: 1746 | call-bind "^1.0.0" 1747 | get-intrinsic "^1.0.2" 1748 | object-inspect "^1.9.0" 1749 | 1750 | "source-map-js@>=0.6.2 <2.0.0", source-map-js@^1.0.2: 1751 | version "1.0.2" 1752 | resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.0.2.tgz#adbc361d9c62df380125e7f161f71c826f1e490c" 1753 | integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw== 1754 | 1755 | source-map@^0.6.1: 1756 | version "0.6.1" 1757 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 1758 | integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== 1759 | 1760 | sourcemap-codec@^1.4.8: 1761 | version "1.4.8" 1762 | resolved "https://registry.yarnpkg.com/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz#ea804bd94857402e6992d05a38ef1ae35a9ab4c4" 1763 | integrity sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA== 1764 | 1765 | string.prototype.trim@^1.2.7: 1766 | version "1.2.7" 1767 | resolved "https://registry.yarnpkg.com/string.prototype.trim/-/string.prototype.trim-1.2.7.tgz#a68352740859f6893f14ce3ef1bb3037f7a90533" 1768 | integrity sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg== 1769 | dependencies: 1770 | call-bind "^1.0.2" 1771 | define-properties "^1.1.4" 1772 | es-abstract "^1.20.4" 1773 | 1774 | string.prototype.trimend@^1.0.6: 1775 | version "1.0.6" 1776 | resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz#c4a27fa026d979d79c04f17397f250a462944533" 1777 | integrity sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ== 1778 | dependencies: 1779 | call-bind "^1.0.2" 1780 | define-properties "^1.1.4" 1781 | es-abstract "^1.20.4" 1782 | 1783 | string.prototype.trimstart@^1.0.6: 1784 | version "1.0.6" 1785 | resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz#e90ab66aa8e4007d92ef591bbf3cd422c56bdcf4" 1786 | integrity sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA== 1787 | dependencies: 1788 | call-bind "^1.0.2" 1789 | define-properties "^1.1.4" 1790 | es-abstract "^1.20.4" 1791 | 1792 | strip-ansi@^6.0.1: 1793 | version "6.0.1" 1794 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" 1795 | integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== 1796 | dependencies: 1797 | ansi-regex "^5.0.1" 1798 | 1799 | strip-bom@^3.0.0: 1800 | version "3.0.0" 1801 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 1802 | integrity sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA== 1803 | 1804 | strip-json-comments@^3.1.0, strip-json-comments@^3.1.1: 1805 | version "3.1.1" 1806 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" 1807 | integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== 1808 | 1809 | supports-color@^7.1.0: 1810 | version "7.2.0" 1811 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" 1812 | integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== 1813 | dependencies: 1814 | has-flag "^4.0.0" 1815 | 1816 | supports-preserve-symlinks-flag@^1.0.0: 1817 | version "1.0.0" 1818 | resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" 1819 | integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== 1820 | 1821 | text-table@^0.2.0: 1822 | version "0.2.0" 1823 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 1824 | integrity sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw== 1825 | 1826 | to-regex-range@^5.0.1: 1827 | version "5.0.1" 1828 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" 1829 | integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== 1830 | dependencies: 1831 | is-number "^7.0.0" 1832 | 1833 | tsconfig-paths@^3.14.1: 1834 | version "3.14.2" 1835 | resolved "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.14.2.tgz#6e32f1f79412decd261f92d633a9dc1cfa99f088" 1836 | integrity sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g== 1837 | dependencies: 1838 | "@types/json5" "^0.0.29" 1839 | json5 "^1.0.2" 1840 | minimist "^1.2.6" 1841 | strip-bom "^3.0.0" 1842 | 1843 | type-check@^0.4.0, type-check@~0.4.0: 1844 | version "0.4.0" 1845 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1" 1846 | integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew== 1847 | dependencies: 1848 | prelude-ls "^1.2.1" 1849 | 1850 | type-fest@^0.20.2: 1851 | version "0.20.2" 1852 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4" 1853 | integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ== 1854 | 1855 | typed-array-length@^1.0.4: 1856 | version "1.0.4" 1857 | resolved "https://registry.yarnpkg.com/typed-array-length/-/typed-array-length-1.0.4.tgz#89d83785e5c4098bec72e08b319651f0eac9c1bb" 1858 | integrity sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng== 1859 | dependencies: 1860 | call-bind "^1.0.2" 1861 | for-each "^0.3.3" 1862 | is-typed-array "^1.1.9" 1863 | 1864 | unbox-primitive@^1.0.2: 1865 | version "1.0.2" 1866 | resolved "https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.0.2.tgz#29032021057d5e6cdbd08c5129c226dff8ed6f9e" 1867 | integrity sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw== 1868 | dependencies: 1869 | call-bind "^1.0.2" 1870 | has-bigints "^1.0.2" 1871 | has-symbols "^1.0.3" 1872 | which-boxed-primitive "^1.0.2" 1873 | 1874 | uri-js@^4.2.2: 1875 | version "4.4.1" 1876 | resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" 1877 | integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== 1878 | dependencies: 1879 | punycode "^2.1.0" 1880 | 1881 | util-deprecate@^1.0.2: 1882 | version "1.0.2" 1883 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 1884 | integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw== 1885 | 1886 | vite-plugin-full-reload@^1.0.5: 1887 | version "1.0.5" 1888 | resolved "https://registry.yarnpkg.com/vite-plugin-full-reload/-/vite-plugin-full-reload-1.0.5.tgz#6cddfa94e51909843bc7156ab728dbac972b8560" 1889 | integrity sha512-kVZFDFWr0DxiHn6MuDVTQf7gnWIdETGlZh0hvTiMXzRN80vgF4PKbONSq8U1d0WtHsKaFODTQgJeakLacoPZEQ== 1890 | dependencies: 1891 | picocolors "^1.0.0" 1892 | picomatch "^2.3.1" 1893 | 1894 | vite-plugin-ruby@^3.1.2: 1895 | version "3.1.3" 1896 | resolved "https://registry.yarnpkg.com/vite-plugin-ruby/-/vite-plugin-ruby-3.1.3.tgz#893ee7dc3b25daf5611c16c3dc0ca3420e6a801c" 1897 | integrity sha512-Y7j0lL8xNMSN1c2/sKBlaLkp0nFtxNFU9/kUReX/GMTOAk8fBylrR9ZdC3fej6EnYzbO3VDtfDDyWzYaoCW3hA== 1898 | dependencies: 1899 | debug "^4.3.4" 1900 | fast-glob "^3.2.11" 1901 | 1902 | vite@^4.0.0: 1903 | version "4.1.4" 1904 | resolved "https://registry.yarnpkg.com/vite/-/vite-4.1.4.tgz#170d93bcff97e0ebc09764c053eebe130bfe6ca0" 1905 | integrity sha512-3knk/HsbSTKEin43zHu7jTwYWv81f8kgAL99G5NWBcA1LKvtvcVAC4JjBH1arBunO9kQka+1oGbrMKOjk4ZrBg== 1906 | dependencies: 1907 | esbuild "^0.16.14" 1908 | postcss "^8.4.21" 1909 | resolve "^1.22.1" 1910 | rollup "^3.10.0" 1911 | optionalDependencies: 1912 | fsevents "~2.3.2" 1913 | 1914 | vue-eslint-parser@^9.0.1: 1915 | version "9.1.0" 1916 | resolved "https://registry.yarnpkg.com/vue-eslint-parser/-/vue-eslint-parser-9.1.0.tgz#0e121d1bb29bd10763c83e3cc583ee03434a9dd5" 1917 | integrity sha512-NGn/iQy8/Wb7RrRa4aRkokyCZfOUWk19OP5HP6JEozQFX5AoS/t+Z0ZN7FY4LlmWc4FNI922V7cvX28zctN8dQ== 1918 | dependencies: 1919 | debug "^4.3.4" 1920 | eslint-scope "^7.1.1" 1921 | eslint-visitor-keys "^3.3.0" 1922 | espree "^9.3.1" 1923 | esquery "^1.4.0" 1924 | lodash "^4.17.21" 1925 | semver "^7.3.6" 1926 | 1927 | vue@^3.2.47: 1928 | version "3.2.47" 1929 | resolved "https://registry.yarnpkg.com/vue/-/vue-3.2.47.tgz#3eb736cbc606fc87038dbba6a154707c8a34cff0" 1930 | integrity sha512-60188y/9Dc9WVrAZeUVSDxRQOZ+z+y5nO2ts9jWXSTkMvayiWxCWOWtBQoYjLeccfXkiiPZWAHcV+WTPhkqJHQ== 1931 | dependencies: 1932 | "@vue/compiler-dom" "3.2.47" 1933 | "@vue/compiler-sfc" "3.2.47" 1934 | "@vue/runtime-dom" "3.2.47" 1935 | "@vue/server-renderer" "3.2.47" 1936 | "@vue/shared" "3.2.47" 1937 | 1938 | which-boxed-primitive@^1.0.2: 1939 | version "1.0.2" 1940 | resolved "https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6" 1941 | integrity sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg== 1942 | dependencies: 1943 | is-bigint "^1.0.1" 1944 | is-boolean-object "^1.1.0" 1945 | is-number-object "^1.0.4" 1946 | is-string "^1.0.5" 1947 | is-symbol "^1.0.3" 1948 | 1949 | which-typed-array@^1.1.9: 1950 | version "1.1.9" 1951 | resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.9.tgz#307cf898025848cf995e795e8423c7f337efbde6" 1952 | integrity sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA== 1953 | dependencies: 1954 | available-typed-arrays "^1.0.5" 1955 | call-bind "^1.0.2" 1956 | for-each "^0.3.3" 1957 | gopd "^1.0.1" 1958 | has-tostringtag "^1.0.0" 1959 | is-typed-array "^1.1.10" 1960 | 1961 | which@^2.0.1: 1962 | version "2.0.2" 1963 | resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" 1964 | integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== 1965 | dependencies: 1966 | isexe "^2.0.0" 1967 | 1968 | word-wrap@^1.2.3: 1969 | version "1.2.3" 1970 | resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" 1971 | integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== 1972 | 1973 | wrappy@1: 1974 | version "1.0.2" 1975 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 1976 | integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== 1977 | 1978 | xml-name-validator@^4.0.0: 1979 | version "4.0.0" 1980 | resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-4.0.0.tgz#79a006e2e63149a8600f15430f0a4725d1524835" 1981 | integrity sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw== 1982 | 1983 | yallist@^4.0.0: 1984 | version "4.0.0" 1985 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" 1986 | integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== 1987 | 1988 | yocto-queue@^0.1.0: 1989 | version "0.1.0" 1990 | resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" 1991 | integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== 1992 | --------------------------------------------------------------------------------