├── .gitignore ├── admin ├── react │ ├── src │ │ ├── index.jsx │ │ ├── styles │ │ │ └── styles.css │ │ └── app.jsx │ ├── .eslintrc │ ├── package.json │ ├── scripts │ │ ├── build-dev.js │ │ └── build-prod.js │ └── yarn.lock ├── assets │ ├── bundle.css │ └── bundle.css.map └── classes │ ├── class-react-wp-api.php │ └── class-react-wp-admin-page.php ├── README.md ├── readme.txt ├── react-wp-admin.php └── LICENSE.txt /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | ./assets -------------------------------------------------------------------------------- /admin/react/src/index.jsx: -------------------------------------------------------------------------------- 1 | import ReactDOM from 'react-dom'; 2 | import App from './app'; 3 | 4 | import './styles/styles.css'; 5 | 6 | ReactDOM 7 | .createRoot(document.querySelector("#wp-admin-plugin-page-root")) 8 | .render(); -------------------------------------------------------------------------------- /admin/assets/bundle.css: -------------------------------------------------------------------------------- 1 | #wp-admin-plugin-page-root{padding:20px 20px 20px 0}.react-wp-admin *{box-sizing:border-box}.react-wp-admin{border:1px solid #ddd}.react-wp-admin:after{content:"";display:block;clear:both}.react-wp-admin>div{float:left;width:50%;text-align:center;padding:30px;height:138px}.react-wp-admin>div:first-child{border-right:1px solid #ddd}.react-wp-admin>div>div:first-child{margin-bottom:10px}.react-wp-admin>div button{margin-bottom:6px} 2 | -------------------------------------------------------------------------------- /admin/react/.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "plugins": [ 3 | "react" 4 | ], 5 | "extends": [ 6 | "eslint:recommended", 7 | "plugin:react/recommended" 8 | ], 9 | "parserOptions": { 10 | "sourceType": "module", 11 | "ecmaVersion": 2015 12 | }, 13 | "settings": { 14 | "react": { 15 | "version": "detect" 16 | } 17 | }, 18 | "rules": { 19 | "react/react-in-jsx-scope": 0, 20 | "no-unused-vars": 1 21 | }, 22 | "env": { 23 | "browser": true 24 | }, 25 | "globals": { 26 | "ajaxurl": true 27 | } 28 | } -------------------------------------------------------------------------------- /admin/react/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "react", 3 | "version": "1.0.0", 4 | "main": "index.js", 5 | "license": "MIT", 6 | "scripts": { 7 | "build": "node ./scripts/build-prod.js", 8 | "build:dev": "node ./scripts/build-dev.js", 9 | "watch": "nodemon --watch src --ext '*' --exec 'yarn build:dev'" 10 | }, 11 | "dependencies": { 12 | "react": "^18.2.0", 13 | "react-dom": "^18.2.0", 14 | "redaxios": "^0.5.1" 15 | }, 16 | "devDependencies": { 17 | "esbuild-plugin-eslint": "^0.1.1", 18 | "eslint": "^8.34.0", 19 | "eslint-plugin-react": "^7.32.2", 20 | "nodemon": "^2.0.21" 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /admin/classes/class-react-wp-api.php: -------------------------------------------------------------------------------- 1 | $user ? $user->data->display_name : 'there', 18 | 'message' => 'API call works!', 19 | ) ); 20 | 21 | exit; 22 | } 23 | 24 | } 25 | 26 | } -------------------------------------------------------------------------------- /admin/react/src/styles/styles.css: -------------------------------------------------------------------------------- 1 | #wp-admin-plugin-page-root { 2 | padding: 20px 20px 20px 0; 3 | } 4 | 5 | .react-wp-admin * { 6 | box-sizing: border-box; 7 | } 8 | .react-wp-admin { 9 | border: 1px solid #ddd; 10 | } 11 | 12 | .react-wp-admin:after { 13 | content: ''; 14 | display: block; 15 | clear: both; 16 | } 17 | 18 | .react-wp-admin > div { 19 | float: left; 20 | width: 50%; 21 | text-align: center; 22 | padding: 30px; 23 | height: 138px; 24 | } 25 | 26 | .react-wp-admin > div:first-child { 27 | border-right: 1px solid #ddd; 28 | } 29 | 30 | .react-wp-admin > div > div:first-child { 31 | margin-bottom: 10px; 32 | } 33 | 34 | .react-wp-admin > div button { 35 | margin-bottom: 6px; 36 | } -------------------------------------------------------------------------------- /admin/react/scripts/build-dev.js: -------------------------------------------------------------------------------- 1 | const path = require('path'); 2 | const fs = require('fs'); 3 | const esbuild = require('esbuild'); 4 | const eslint = require('esbuild-plugin-eslint'); 5 | 6 | (async () => { 7 | const entryFile = path.join(__dirname, '..', 'src', 'index.jsx'); 8 | const outDir = path.join(__dirname, '..', '..', 'assets'); 9 | 10 | if(!fs.existsSync(outDir)) { 11 | fs.mkdirSync(outDir, { recursive: true }); 12 | } 13 | 14 | await esbuild.build({ 15 | entryPoints: [entryFile], 16 | bundle: true, 17 | minify: true, 18 | sourcemap: true, 19 | format: 'cjs', 20 | jsx: 'automatic', 21 | outfile: path.join(outDir, 'bundle.js'), 22 | 23 | plugins: [ 24 | eslint() 25 | ] 26 | }); 27 | })(); -------------------------------------------------------------------------------- /admin/react/scripts/build-prod.js: -------------------------------------------------------------------------------- 1 | const path = require('path'); 2 | const fs = require('fs'); 3 | const esbuild = require('esbuild'); 4 | const eslint = require('esbuild-plugin-eslint'); 5 | 6 | (async () => { 7 | const entryFile = path.join(__dirname, '..', 'src', 'index.jsx'); 8 | const outDir = path.join(__dirname, '..', '..', 'assets'); 9 | 10 | if(!fs.existsSync(outDir)) { 11 | fs.mkdirSync(outDir, { recursive: true }); 12 | } 13 | 14 | await esbuild.build({ 15 | entryPoints: [entryFile], 16 | bundle: true, 17 | minify: true, 18 | sourcemap: false, 19 | format: 'cjs', 20 | jsx: 'automatic', 21 | outfile: path.join(outDir, 'bundle.js'), 22 | 23 | plugins: [ 24 | eslint() 25 | ] 26 | }); 27 | })(); -------------------------------------------------------------------------------- /admin/assets/bundle.css.map: -------------------------------------------------------------------------------- 1 | { 2 | "version": 3, 3 | "sources": ["../react/src/styles/styles.css"], 4 | "sourcesContent": ["#wp-admin-plugin-page-root {\n padding: 20px 20px 20px 0;\n}\n\n.react-wp-admin * {\n box-sizing: border-box;\n}\n.react-wp-admin {\n border: 1px solid #ddd;\n}\n\n.react-wp-admin:after {\n content: '';\n display: block;\n clear: both;\n}\n\n.react-wp-admin > div {\n float: left;\n width: 50%;\n text-align: center;\n padding: 30px;\n height: 138px;\n}\n\n.react-wp-admin > div:first-child {\n border-right: 1px solid #ddd;\n}\n\n.react-wp-admin > div > div:first-child {\n margin-bottom: 10px;\n}\n\n.react-wp-admin > div button {\n margin-bottom: 6px;\n}"], 5 | "mappings": "AAAA,oDAIA,mBACE,sBAEF,iBACE,sBAGF,uBACE,WACA,cACA,WAGF,qBACE,WACA,UACA,kBApBF,aAsBE,aAGF,iCACE,4BAGF,qCACE,mBAGF,4BACE", 6 | "names": [] 7 | } 8 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # React WP Admin 2 | 3 | React WP Admin plugin is a basic set up for building an admin facing page in React.js. ESbuild (a fast next-generation JavaScript bundler) has been used as a bundler. 4 | 5 | ## WordPress plugin link 6 | [https://wordpress.org/plugins/react-wp-admin/](https://wordpress.org/plugins/react-wp-admin/) 7 | 8 | ## Get started 9 | 10 | 1. Get a copy the of plugin, either by downloading from WordPress plugins repository or simply cloning git repository of the plugin. 11 | 12 | 2. The downloaded plugin will have `react-wp-admin` folder name. Rename it to your plugin name, also rename the file `react-wp-admin.php` to match your folder name. 13 | 14 | 3. Change the plugin information (in `react-wp-admin.php`) according to your needs. 15 | 16 | 4. Go to `admin/react` directory and install dependencies by running `yarn`. 17 | 18 | 5. Build commands 19 | - `yarn build` - Production build 20 | - `yarn build:dev` - Development build, generates sourcemaps 21 | - `yarn watch` - Automatically runs `yarn build:dev` when files change 22 | 23 | ## Note 24 | 25 | Do not modify anything outside `src` in `react` folder if you are not confident. 26 | -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- 1 | === React WP Admin === 2 | Requires at least: 5.0 3 | Tested up to: 6.1.1 4 | Stable tag: 1.0.0 5 | License: GPLv2 or later 6 | 7 | 8 | == Description == 9 | 10 | React WP Admin plugin is a basic set up for building an admin facing page in React.js. ESbuild (a fast next-generation JavaScript bundler) has been used as a bundler. 11 | 12 | 13 | ### GitHub link 14 | 15 | [https://github.com/dym5-official/react-wp-admin](https://github.com/dym5-official/react-wp-admin) 16 | 17 | ### Get started 18 | 19 | 1. Get a copy the of plugin, either by downloading from WordPress plugins repository or simply cloning git repository of the plugin. 20 | 21 | 2. The downloaded plugin will have `react-wp-admin` folder name. Rename it to your plugin name, also rename the file `react-wp-admin.php` to match your folder name. 22 | 23 | 3. Change the plugin information (in `react-wp-admin.php`) according to your needs. 24 | 25 | 4. Go to `admin/react` directory and install dependencies by running `yarn`. 26 | 27 | 5. Build commands 28 | - `yarn build` - Production build 29 | - `yarn build:dev` - Development build, generates sourcemaps 30 | - `yarn watch` - Automatically runs `yarn build:dev` when files change 31 | 32 | ### Note 33 | 34 | Do not modify anything outside `src` in `react` folder if you are not confident. 35 | 36 | == screenshots == 37 | 38 | 1. Check React.js functionality 39 | 2. Check backend call 40 | -------------------------------------------------------------------------------- /react-wp-admin.php: -------------------------------------------------------------------------------- 1 | register_autoloads(); 21 | $this->register_admin_page(); 22 | $this->register_api(); 23 | } 24 | 25 | private function register_autoloads() { 26 | spl_autoload_register(function($name){ 27 | $name = strtolower($name); 28 | $name = str_replace('_', '-', $name); 29 | $name = 'class-' . $name; 30 | $file = __DIR__ . '/admin/classes/' . $name . '.php'; 31 | 32 | if ( file_exists( $file ) ) { 33 | require_once $file; 34 | } 35 | }); 36 | } 37 | 38 | public function register_admin_page() { 39 | new React_WP_Admin_Page(); 40 | } 41 | 42 | public function register_api() { 43 | new React_WP_API(); 44 | } 45 | 46 | } 47 | 48 | new React_WP_Admin(); 49 | 50 | } -------------------------------------------------------------------------------- /admin/classes/class-react-wp-admin-page.php: -------------------------------------------------------------------------------- 1 | '; 26 | } 27 | 28 | public function enqueue_assets($hook) { 29 | if ( 'toplevel_page_react-wp-admin' !== $hook ) { 30 | return; 31 | } 32 | 33 | $script = 'admin/assets/bundle.js'; 34 | $script_file = WP_REACT_ADMIN_DIR . '/' . $script; 35 | 36 | if ( file_exists( $script_file ) ) { 37 | wp_enqueue_script( 'react-wp-admin', WP_REACT_ADMIN_URL . $script, array(), filemtime( $script_file ), true ); 38 | } 39 | 40 | $style = 'admin/assets/bundle.css'; 41 | $style_file = WP_REACT_ADMIN_DIR . '/' . $style; 42 | 43 | if ( file_exists( $style_file ) ) { 44 | wp_enqueue_style( 'react-wp-admin', WP_REACT_ADMIN_URL . $style, array(), filemtime( $style_file ) ); 45 | } 46 | } 47 | 48 | } 49 | 50 | } -------------------------------------------------------------------------------- /admin/react/src/app.jsx: -------------------------------------------------------------------------------- 1 | import axios from 'redaxios'; 2 | import { useState } from 'react'; 3 | 4 | export default function App() { 5 | const [count, setCount] = useState(0); 6 | const [loading, setLoading] = useState(false); 7 | const [message, setMessage] = useState(''); 8 | 9 | const handleAPICall = () => { 10 | setLoading(true); 11 | setMessage(''); 12 | 13 | axios.get(`${ajaxurl}?action=react-wp-admin-ajax`) 14 | .then(({ data }) => { 15 | setMessage(`Hi ${data.name}! ${data.message}`); 16 | }) 17 | .catch(() => { 18 | setMessage('Failed to call API, maybe you are disconnected!'); 19 | }) 20 | .finally(() => { 21 | setLoading(false); 22 | }); 23 | } 24 | 25 | return ( 26 |
27 |

React WP Admin

28 | 29 |
30 |
31 |
32 | Click the button below! 33 |
34 | 35 |
36 |
37 |
38 | Click the button below! 39 |
40 | 41 |
{message}
42 |
43 |
44 | 45 |
46 |                 Start editing: admin/react/app.jsx
47 |             
48 | 49 |
50 | For documentation: https://github.com/dym5-official/react-wp-admin 51 |
52 |
53 | ) 54 | } -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 2, June 1991 3 | 4 | Copyright (C) 1989, 1991 Free Software Foundation, Inc., 5 | 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 6 | Everyone is permitted to copy and distribute verbatim copies 7 | of this license document, but changing it is not allowed. 8 | 9 | Preamble 10 | 11 | The licenses for most software are designed to take away your 12 | freedom to share and change it. By contrast, the GNU General Public 13 | License is intended to guarantee your freedom to share and change free 14 | software--to make sure the software is free for all its users. This 15 | General Public License applies to most of the Free Software 16 | Foundation's software and to any other program whose authors commit to 17 | using it. (Some other Free Software Foundation software is covered by 18 | the GNU Lesser General Public License instead.) You can apply it to 19 | your programs, too. 20 | 21 | When we speak of free software, we are referring to freedom, not 22 | price. Our General Public Licenses are designed to make sure that you 23 | have the freedom to distribute copies of free software (and charge for 24 | this service if you wish), that you receive source code or can get it 25 | if you want it, that you can change the software or use pieces of it 26 | in new free programs; and that you know you can do these things. 27 | 28 | To protect your rights, we need to make restrictions that forbid 29 | anyone to deny you these rights or to ask you to surrender the rights. 30 | These restrictions translate to certain responsibilities for you if you 31 | distribute copies of the software, or if you modify it. 32 | 33 | For example, if you distribute copies of such a program, whether 34 | gratis or for a fee, you must give the recipients all the rights that 35 | you have. You must make sure that they, too, receive or can get the 36 | source code. And you must show them these terms so they know their 37 | rights. 38 | 39 | We protect your rights with two steps: (1) copyright the software, and 40 | (2) offer you this license which gives you legal permission to copy, 41 | distribute and/or modify the software. 42 | 43 | Also, for each author's protection and ours, we want to make certain 44 | that everyone understands that there is no warranty for this free 45 | software. If the software is modified by someone else and passed on, we 46 | want its recipients to know that what they have is not the original, so 47 | that any problems introduced by others will not reflect on the original 48 | authors' reputations. 49 | 50 | Finally, any free program is threatened constantly by software 51 | patents. We wish to avoid the danger that redistributors of a free 52 | program will individually obtain patent licenses, in effect making the 53 | program proprietary. To prevent this, we have made it clear that any 54 | patent must be licensed for everyone's free use or not licensed at all. 55 | 56 | The precise terms and conditions for copying, distribution and 57 | modification follow. 58 | 59 | GNU GENERAL PUBLIC LICENSE 60 | TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 61 | 62 | 0. This License applies to any program or other work which contains 63 | a notice placed by the copyright holder saying it may be distributed 64 | under the terms of this General Public License. The "Program", below, 65 | refers to any such program or work, and a "work based on the Program" 66 | means either the Program or any derivative work under copyright law: 67 | that is to say, a work containing the Program or a portion of it, 68 | either verbatim or with modifications and/or translated into another 69 | language. (Hereinafter, translation is included without limitation in 70 | the term "modification".) Each licensee is addressed as "you". 71 | 72 | Activities other than copying, distribution and modification are not 73 | covered by this License; they are outside its scope. The act of 74 | running the Program is not restricted, and the output from the Program 75 | is covered only if its contents constitute a work based on the 76 | Program (independent of having been made by running the Program). 77 | Whether that is true depends on what the Program does. 78 | 79 | 1. You may copy and distribute verbatim copies of the Program's 80 | source code as you receive it, in any medium, provided that you 81 | conspicuously and appropriately publish on each copy an appropriate 82 | copyright notice and disclaimer of warranty; keep intact all the 83 | notices that refer to this License and to the absence of any warranty; 84 | and give any other recipients of the Program a copy of this License 85 | along with the Program. 86 | 87 | You may charge a fee for the physical act of transferring a copy, and 88 | you may at your option offer warranty protection in exchange for a fee. 89 | 90 | 2. You may modify your copy or copies of the Program or any portion 91 | of it, thus forming a work based on the Program, and copy and 92 | distribute such modifications or work under the terms of Section 1 93 | above, provided that you also meet all of these conditions: 94 | 95 | a) You must cause the modified files to carry prominent notices 96 | stating that you changed the files and the date of any change. 97 | 98 | b) You must cause any work that you distribute or publish, that in 99 | whole or in part contains or is derived from the Program or any 100 | part thereof, to be licensed as a whole at no charge to all third 101 | parties under the terms of this License. 102 | 103 | c) If the modified program normally reads commands interactively 104 | when run, you must cause it, when started running for such 105 | interactive use in the most ordinary way, to print or display an 106 | announcement including an appropriate copyright notice and a 107 | notice that there is no warranty (or else, saying that you provide 108 | a warranty) and that users may redistribute the program under 109 | these conditions, and telling the user how to view a copy of this 110 | License. (Exception: if the Program itself is interactive but 111 | does not normally print such an announcement, your work based on 112 | the Program is not required to print an announcement.) 113 | 114 | These requirements apply to the modified work as a whole. If 115 | identifiable sections of that work are not derived from the Program, 116 | and can be reasonably considered independent and separate works in 117 | themselves, then this License, and its terms, do not apply to those 118 | sections when you distribute them as separate works. But when you 119 | distribute the same sections as part of a whole which is a work based 120 | on the Program, the distribution of the whole must be on the terms of 121 | this License, whose permissions for other licensees extend to the 122 | entire whole, and thus to each and every part regardless of who wrote it. 123 | 124 | Thus, it is not the intent of this section to claim rights or contest 125 | your rights to work written entirely by you; rather, the intent is to 126 | exercise the right to control the distribution of derivative or 127 | collective works based on the Program. 128 | 129 | In addition, mere aggregation of another work not based on the Program 130 | with the Program (or with a work based on the Program) on a volume of 131 | a storage or distribution medium does not bring the other work under 132 | the scope of this License. 133 | 134 | 3. You may copy and distribute the Program (or a work based on it, 135 | under Section 2) in object code or executable form under the terms of 136 | Sections 1 and 2 above provided that you also do one of the following: 137 | 138 | a) Accompany it with the complete corresponding machine-readable 139 | source code, which must be distributed under the terms of Sections 140 | 1 and 2 above on a medium customarily used for software interchange; or, 141 | 142 | b) Accompany it with a written offer, valid for at least three 143 | years, to give any third party, for a charge no more than your 144 | cost of physically performing source distribution, a complete 145 | machine-readable copy of the corresponding source code, to be 146 | distributed under the terms of Sections 1 and 2 above on a medium 147 | customarily used for software interchange; or, 148 | 149 | c) Accompany it with the information you received as to the offer 150 | to distribute corresponding source code. (This alternative is 151 | allowed only for noncommercial distribution and only if you 152 | received the program in object code or executable form with such 153 | an offer, in accord with Subsection b above.) 154 | 155 | The source code for a work means the preferred form of the work for 156 | making modifications to it. For an executable work, complete source 157 | code means all the source code for all modules it contains, plus any 158 | associated interface definition files, plus the scripts used to 159 | control compilation and installation of the executable. However, as a 160 | special exception, the source code distributed need not include 161 | anything that is normally distributed (in either source or binary 162 | form) with the major components (compiler, kernel, and so on) of the 163 | operating system on which the executable runs, unless that component 164 | itself accompanies the executable. 165 | 166 | If distribution of executable or object code is made by offering 167 | access to copy from a designated place, then offering equivalent 168 | access to copy the source code from the same place counts as 169 | distribution of the source code, even though third parties are not 170 | compelled to copy the source along with the object code. 171 | 172 | 4. You may not copy, modify, sublicense, or distribute the Program 173 | except as expressly provided under this License. Any attempt 174 | otherwise to copy, modify, sublicense or distribute the Program is 175 | void, and will automatically terminate your rights under this License. 176 | However, parties who have received copies, or rights, from you under 177 | this License will not have their licenses terminated so long as such 178 | parties remain in full compliance. 179 | 180 | 5. You are not required to accept this License, since you have not 181 | signed it. However, nothing else grants you permission to modify or 182 | distribute the Program or its derivative works. These actions are 183 | prohibited by law if you do not accept this License. Therefore, by 184 | modifying or distributing the Program (or any work based on the 185 | Program), you indicate your acceptance of this License to do so, and 186 | all its terms and conditions for copying, distributing or modifying 187 | the Program or works based on it. 188 | 189 | 6. Each time you redistribute the Program (or any work based on the 190 | Program), the recipient automatically receives a license from the 191 | original licensor to copy, distribute or modify the Program subject to 192 | these terms and conditions. You may not impose any further 193 | restrictions on the recipients' exercise of the rights granted herein. 194 | You are not responsible for enforcing compliance by third parties to 195 | this License. 196 | 197 | 7. If, as a consequence of a court judgment or allegation of patent 198 | infringement or for any other reason (not limited to patent issues), 199 | conditions are imposed on you (whether by court order, agreement or 200 | otherwise) that contradict the conditions of this License, they do not 201 | excuse you from the conditions of this License. If you cannot 202 | distribute so as to satisfy simultaneously your obligations under this 203 | License and any other pertinent obligations, then as a consequence you 204 | may not distribute the Program at all. For example, if a patent 205 | license would not permit royalty-free redistribution of the Program by 206 | all those who receive copies directly or indirectly through you, then 207 | the only way you could satisfy both it and this License would be to 208 | refrain entirely from distribution of the Program. 209 | 210 | If any portion of this section is held invalid or unenforceable under 211 | any particular circumstance, the balance of the section is intended to 212 | apply and the section as a whole is intended to apply in other 213 | circumstances. 214 | 215 | It is not the purpose of this section to induce you to infringe any 216 | patents or other property right claims or to contest validity of any 217 | such claims; this section has the sole purpose of protecting the 218 | integrity of the free software distribution system, which is 219 | implemented by public license practices. Many people have made 220 | generous contributions to the wide range of software distributed 221 | through that system in reliance on consistent application of that 222 | system; it is up to the author/donor to decide if he or she is willing 223 | to distribute software through any other system and a licensee cannot 224 | impose that choice. 225 | 226 | This section is intended to make thoroughly clear what is believed to 227 | be a consequence of the rest of this License. 228 | 229 | 8. If the distribution and/or use of the Program is restricted in 230 | certain countries either by patents or by copyrighted interfaces, the 231 | original copyright holder who places the Program under this License 232 | may add an explicit geographical distribution limitation excluding 233 | those countries, so that distribution is permitted only in or among 234 | countries not thus excluded. In such case, this License incorporates 235 | the limitation as if written in the body of this License. 236 | 237 | 9. The Free Software Foundation may publish revised and/or new versions 238 | of the General Public License from time to time. Such new versions will 239 | be similar in spirit to the present version, but may differ in detail to 240 | address new problems or concerns. 241 | 242 | Each version is given a distinguishing version number. If the Program 243 | specifies a version number of this License which applies to it and "any 244 | later version", you have the option of following the terms and conditions 245 | either of that version or of any later version published by the Free 246 | Software Foundation. If the Program does not specify a version number of 247 | this License, you may choose any version ever published by the Free Software 248 | Foundation. 249 | 250 | 10. If you wish to incorporate parts of the Program into other free 251 | programs whose distribution conditions are different, write to the author 252 | to ask for permission. For software which is copyrighted by the Free 253 | Software Foundation, write to the Free Software Foundation; we sometimes 254 | make exceptions for this. Our decision will be guided by the two goals 255 | of preserving the free status of all derivatives of our free software and 256 | of promoting the sharing and reuse of software generally. 257 | 258 | NO WARRANTY 259 | 260 | 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY 261 | FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN 262 | OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES 263 | PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED 264 | OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 265 | MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS 266 | TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE 267 | PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, 268 | REPAIR OR CORRECTION. 269 | 270 | 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 271 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR 272 | REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, 273 | INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING 274 | OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED 275 | TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY 276 | YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER 277 | PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE 278 | POSSIBILITY OF SUCH DAMAGES. 279 | 280 | END OF TERMS AND CONDITIONS 281 | 282 | How to Apply These Terms to Your New Programs 283 | 284 | If you develop a new program, and you want it to be of the greatest 285 | possible use to the public, the best way to achieve this is to make it 286 | free software which everyone can redistribute and change under these terms. 287 | 288 | To do so, attach the following notices to the program. It is safest 289 | to attach them to the start of each source file to most effectively 290 | convey the exclusion of warranty; and each file should have at least 291 | the "copyright" line and a pointer to where the full notice is found. 292 | 293 | 294 | Copyright (C) 295 | 296 | This program is free software; you can redistribute it and/or modify 297 | it under the terms of the GNU General Public License as published by 298 | the Free Software Foundation; either version 2 of the License, or 299 | (at your option) any later version. 300 | 301 | This program is distributed in the hope that it will be useful, 302 | but WITHOUT ANY WARRANTY; without even the implied warranty of 303 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 304 | GNU General Public License for more details. 305 | 306 | You should have received a copy of the GNU General Public License along 307 | with this program; if not, write to the Free Software Foundation, Inc., 308 | 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. 309 | 310 | Also add information on how to contact you by electronic and paper mail. 311 | 312 | If the program is interactive, make it output a short notice like this 313 | when it starts in an interactive mode: 314 | 315 | Gnomovision version 69, Copyright (C) year name of author 316 | Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 317 | This is free software, and you are welcome to redistribute it 318 | under certain conditions; type `show c' for details. 319 | 320 | The hypothetical commands `show w' and `show c' should show the appropriate 321 | parts of the General Public License. Of course, the commands you use may 322 | be called something other than `show w' and `show c'; they could even be 323 | mouse-clicks or menu items--whatever suits your program. 324 | 325 | You should also get your employer (if you work as a programmer) or your 326 | school, if any, to sign a "copyright disclaimer" for the program, if 327 | necessary. Here is a sample; alter the names: 328 | 329 | Yoyodyne, Inc., hereby disclaims all copyright interest in the program 330 | `Gnomovision' (which makes passes at compilers) written by James Hacker. 331 | 332 | , 1 April 1989 333 | Ty Coon, President of Vice 334 | 335 | This General Public License does not permit incorporating your program into 336 | proprietary programs. If your program is a subroutine library, you may 337 | consider it more useful to permit linking proprietary applications with the 338 | library. If this is what you want to do, use the GNU Lesser General 339 | Public License instead of this License. 340 | -------------------------------------------------------------------------------- /admin/react/yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@eslint/eslintrc@^1.4.1": 6 | version "1.4.1" 7 | resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-1.4.1.tgz#af58772019a2d271b7e2d4c23ff4ddcba3ccfb3e" 8 | integrity sha512-XXrH9Uarn0stsyldqDYq8r++mROmWRI1xKMXa640Bb//SY1+ECYX6VzT6Lcx5frD0V30XieqJ0oX9I2Xj5aoMA== 9 | dependencies: 10 | ajv "^6.12.4" 11 | debug "^4.3.2" 12 | espree "^9.4.0" 13 | globals "^13.19.0" 14 | ignore "^5.2.0" 15 | import-fresh "^3.2.1" 16 | js-yaml "^4.1.0" 17 | minimatch "^3.1.2" 18 | strip-json-comments "^3.1.1" 19 | 20 | "@humanwhocodes/config-array@^0.11.8": 21 | version "0.11.8" 22 | resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.11.8.tgz#03595ac2075a4dc0f191cc2131de14fbd7d410b9" 23 | integrity sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g== 24 | dependencies: 25 | "@humanwhocodes/object-schema" "^1.2.1" 26 | debug "^4.1.1" 27 | minimatch "^3.0.5" 28 | 29 | "@humanwhocodes/module-importer@^1.0.1": 30 | version "1.0.1" 31 | resolved "https://registry.yarnpkg.com/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz#af5b2691a22b44be847b0ca81641c5fb6ad0172c" 32 | integrity sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA== 33 | 34 | "@humanwhocodes/object-schema@^1.2.1": 35 | version "1.2.1" 36 | resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz#b520529ec21d8e5945a1851dfd1c32e94e39ff45" 37 | integrity sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA== 38 | 39 | "@nodelib/fs.scandir@2.1.5": 40 | version "2.1.5" 41 | resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5" 42 | integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== 43 | dependencies: 44 | "@nodelib/fs.stat" "2.0.5" 45 | run-parallel "^1.1.9" 46 | 47 | "@nodelib/fs.stat@2.0.5": 48 | version "2.0.5" 49 | resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b" 50 | integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== 51 | 52 | "@nodelib/fs.walk@^1.2.8": 53 | version "1.2.8" 54 | resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a" 55 | integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== 56 | dependencies: 57 | "@nodelib/fs.scandir" "2.1.5" 58 | fastq "^1.6.0" 59 | 60 | abbrev@1: 61 | version "1.1.1" 62 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" 63 | integrity sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q== 64 | 65 | acorn-jsx@^5.3.2: 66 | version "5.3.2" 67 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937" 68 | integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== 69 | 70 | acorn@^8.8.0: 71 | version "8.8.2" 72 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.8.2.tgz#1b2f25db02af965399b9776b0c2c391276d37c4a" 73 | integrity sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw== 74 | 75 | ajv@^6.10.0, ajv@^6.12.4: 76 | version "6.12.6" 77 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" 78 | integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== 79 | dependencies: 80 | fast-deep-equal "^3.1.1" 81 | fast-json-stable-stringify "^2.0.0" 82 | json-schema-traverse "^0.4.1" 83 | uri-js "^4.2.2" 84 | 85 | ansi-regex@^5.0.1: 86 | version "5.0.1" 87 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" 88 | integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== 89 | 90 | ansi-styles@^4.1.0: 91 | version "4.3.0" 92 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" 93 | integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== 94 | dependencies: 95 | color-convert "^2.0.1" 96 | 97 | anymatch@~3.1.2: 98 | version "3.1.3" 99 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.3.tgz#790c58b19ba1720a84205b57c618d5ad8524973e" 100 | integrity sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw== 101 | dependencies: 102 | normalize-path "^3.0.0" 103 | picomatch "^2.0.4" 104 | 105 | argparse@^2.0.1: 106 | version "2.0.1" 107 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" 108 | integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== 109 | 110 | array-includes@^3.1.5, array-includes@^3.1.6: 111 | version "3.1.6" 112 | resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.6.tgz#9e9e720e194f198266ba9e18c29e6a9b0e4b225f" 113 | integrity sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw== 114 | dependencies: 115 | call-bind "^1.0.2" 116 | define-properties "^1.1.4" 117 | es-abstract "^1.20.4" 118 | get-intrinsic "^1.1.3" 119 | is-string "^1.0.7" 120 | 121 | array.prototype.flatmap@^1.3.1: 122 | version "1.3.1" 123 | resolved "https://registry.yarnpkg.com/array.prototype.flatmap/-/array.prototype.flatmap-1.3.1.tgz#1aae7903c2100433cb8261cd4ed310aab5c4a183" 124 | integrity sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ== 125 | dependencies: 126 | call-bind "^1.0.2" 127 | define-properties "^1.1.4" 128 | es-abstract "^1.20.4" 129 | es-shim-unscopables "^1.0.0" 130 | 131 | array.prototype.tosorted@^1.1.1: 132 | version "1.1.1" 133 | resolved "https://registry.yarnpkg.com/array.prototype.tosorted/-/array.prototype.tosorted-1.1.1.tgz#ccf44738aa2b5ac56578ffda97c03fd3e23dd532" 134 | integrity sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ== 135 | dependencies: 136 | call-bind "^1.0.2" 137 | define-properties "^1.1.4" 138 | es-abstract "^1.20.4" 139 | es-shim-unscopables "^1.0.0" 140 | get-intrinsic "^1.1.3" 141 | 142 | available-typed-arrays@^1.0.5: 143 | version "1.0.5" 144 | resolved "https://registry.yarnpkg.com/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz#92f95616501069d07d10edb2fc37d3e1c65123b7" 145 | integrity sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw== 146 | 147 | balanced-match@^1.0.0: 148 | version "1.0.2" 149 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" 150 | integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== 151 | 152 | binary-extensions@^2.0.0: 153 | version "2.2.0" 154 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d" 155 | integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA== 156 | 157 | brace-expansion@^1.1.7: 158 | version "1.1.11" 159 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 160 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== 161 | dependencies: 162 | balanced-match "^1.0.0" 163 | concat-map "0.0.1" 164 | 165 | braces@~3.0.2: 166 | version "3.0.2" 167 | resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" 168 | integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== 169 | dependencies: 170 | fill-range "^7.0.1" 171 | 172 | call-bind@^1.0.0, call-bind@^1.0.2: 173 | version "1.0.2" 174 | resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" 175 | integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== 176 | dependencies: 177 | function-bind "^1.1.1" 178 | get-intrinsic "^1.0.2" 179 | 180 | callsites@^3.0.0: 181 | version "3.1.0" 182 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" 183 | integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== 184 | 185 | chalk@^4.0.0: 186 | version "4.1.2" 187 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" 188 | integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== 189 | dependencies: 190 | ansi-styles "^4.1.0" 191 | supports-color "^7.1.0" 192 | 193 | chokidar@^3.5.2: 194 | version "3.5.3" 195 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.3.tgz#1cf37c8707b932bd1af1ae22c0432e2acd1903bd" 196 | integrity sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw== 197 | dependencies: 198 | anymatch "~3.1.2" 199 | braces "~3.0.2" 200 | glob-parent "~5.1.2" 201 | is-binary-path "~2.1.0" 202 | is-glob "~4.0.1" 203 | normalize-path "~3.0.0" 204 | readdirp "~3.6.0" 205 | optionalDependencies: 206 | fsevents "~2.3.2" 207 | 208 | color-convert@^2.0.1: 209 | version "2.0.1" 210 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" 211 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== 212 | dependencies: 213 | color-name "~1.1.4" 214 | 215 | color-name@~1.1.4: 216 | version "1.1.4" 217 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" 218 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== 219 | 220 | concat-map@0.0.1: 221 | version "0.0.1" 222 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 223 | integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== 224 | 225 | cross-spawn@^7.0.2: 226 | version "7.0.3" 227 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" 228 | integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== 229 | dependencies: 230 | path-key "^3.1.0" 231 | shebang-command "^2.0.0" 232 | which "^2.0.1" 233 | 234 | debug@^3.2.7: 235 | version "3.2.7" 236 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz#72580b7e9145fb39b6676f9c5e5fb100b934179a" 237 | integrity sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ== 238 | dependencies: 239 | ms "^2.1.1" 240 | 241 | debug@^4.1.1, debug@^4.3.2: 242 | version "4.3.4" 243 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" 244 | integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== 245 | dependencies: 246 | ms "2.1.2" 247 | 248 | deep-is@^0.1.3: 249 | version "0.1.4" 250 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831" 251 | integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== 252 | 253 | define-properties@^1.1.3, define-properties@^1.1.4: 254 | version "1.2.0" 255 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.2.0.tgz#52988570670c9eacedd8064f4a990f2405849bd5" 256 | integrity sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA== 257 | dependencies: 258 | has-property-descriptors "^1.0.0" 259 | object-keys "^1.1.1" 260 | 261 | doctrine@^2.1.0: 262 | version "2.1.0" 263 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d" 264 | integrity sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw== 265 | dependencies: 266 | esutils "^2.0.2" 267 | 268 | doctrine@^3.0.0: 269 | version "3.0.0" 270 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961" 271 | integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w== 272 | dependencies: 273 | esutils "^2.0.2" 274 | 275 | es-abstract@^1.19.0, es-abstract@^1.20.4: 276 | version "1.21.1" 277 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.21.1.tgz#e6105a099967c08377830a0c9cb589d570dd86c6" 278 | integrity sha512-QudMsPOz86xYz/1dG1OuGBKOELjCh99IIWHLzy5znUB6j8xG2yMA7bfTV86VSqKF+Y/H08vQPR+9jyXpuC6hfg== 279 | dependencies: 280 | available-typed-arrays "^1.0.5" 281 | call-bind "^1.0.2" 282 | es-set-tostringtag "^2.0.1" 283 | es-to-primitive "^1.2.1" 284 | function-bind "^1.1.1" 285 | function.prototype.name "^1.1.5" 286 | get-intrinsic "^1.1.3" 287 | get-symbol-description "^1.0.0" 288 | globalthis "^1.0.3" 289 | gopd "^1.0.1" 290 | has "^1.0.3" 291 | has-property-descriptors "^1.0.0" 292 | has-proto "^1.0.1" 293 | has-symbols "^1.0.3" 294 | internal-slot "^1.0.4" 295 | is-array-buffer "^3.0.1" 296 | is-callable "^1.2.7" 297 | is-negative-zero "^2.0.2" 298 | is-regex "^1.1.4" 299 | is-shared-array-buffer "^1.0.2" 300 | is-string "^1.0.7" 301 | is-typed-array "^1.1.10" 302 | is-weakref "^1.0.2" 303 | object-inspect "^1.12.2" 304 | object-keys "^1.1.1" 305 | object.assign "^4.1.4" 306 | regexp.prototype.flags "^1.4.3" 307 | safe-regex-test "^1.0.0" 308 | string.prototype.trimend "^1.0.6" 309 | string.prototype.trimstart "^1.0.6" 310 | typed-array-length "^1.0.4" 311 | unbox-primitive "^1.0.2" 312 | which-typed-array "^1.1.9" 313 | 314 | es-set-tostringtag@^2.0.1: 315 | version "2.0.1" 316 | resolved "https://registry.yarnpkg.com/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz#338d502f6f674301d710b80c8592de8a15f09cd8" 317 | integrity sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg== 318 | dependencies: 319 | get-intrinsic "^1.1.3" 320 | has "^1.0.3" 321 | has-tostringtag "^1.0.0" 322 | 323 | es-shim-unscopables@^1.0.0: 324 | version "1.0.0" 325 | resolved "https://registry.yarnpkg.com/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz#702e632193201e3edf8713635d083d378e510241" 326 | integrity sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w== 327 | dependencies: 328 | has "^1.0.3" 329 | 330 | es-to-primitive@^1.2.1: 331 | version "1.2.1" 332 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a" 333 | integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== 334 | dependencies: 335 | is-callable "^1.1.4" 336 | is-date-object "^1.0.1" 337 | is-symbol "^1.0.2" 338 | 339 | esbuild-plugin-eslint@^0.1.1: 340 | version "0.1.1" 341 | resolved "https://registry.yarnpkg.com/esbuild-plugin-eslint/-/esbuild-plugin-eslint-0.1.1.tgz#cbc4f6a8d10dd70f915ca7bf41af24ca3501a705" 342 | integrity sha512-nGZ7tvJDAAiKAZv1v6604qsWFsMDzF2jY0KkHy07ysLRqUuTr6u06t7Cuhd2L/mYh8onVSiDKDUI6TWzbrcBgA== 343 | 344 | escape-string-regexp@^4.0.0: 345 | version "4.0.0" 346 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" 347 | integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== 348 | 349 | eslint-plugin-react@^7.32.2: 350 | version "7.32.2" 351 | resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.32.2.tgz#e71f21c7c265ebce01bcbc9d0955170c55571f10" 352 | integrity sha512-t2fBMa+XzonrrNkyVirzKlvn5RXzzPwRHtMvLAtVZrt8oxgnTQaYbU6SXTOO1mwQgp1y5+toMSKInnzGr0Knqg== 353 | dependencies: 354 | array-includes "^3.1.6" 355 | array.prototype.flatmap "^1.3.1" 356 | array.prototype.tosorted "^1.1.1" 357 | doctrine "^2.1.0" 358 | estraverse "^5.3.0" 359 | jsx-ast-utils "^2.4.1 || ^3.0.0" 360 | minimatch "^3.1.2" 361 | object.entries "^1.1.6" 362 | object.fromentries "^2.0.6" 363 | object.hasown "^1.1.2" 364 | object.values "^1.1.6" 365 | prop-types "^15.8.1" 366 | resolve "^2.0.0-next.4" 367 | semver "^6.3.0" 368 | string.prototype.matchall "^4.0.8" 369 | 370 | eslint-scope@^7.1.1: 371 | version "7.1.1" 372 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-7.1.1.tgz#fff34894c2f65e5226d3041ac480b4513a163642" 373 | integrity sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw== 374 | dependencies: 375 | esrecurse "^4.3.0" 376 | estraverse "^5.2.0" 377 | 378 | eslint-utils@^3.0.0: 379 | version "3.0.0" 380 | resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-3.0.0.tgz#8aebaface7345bb33559db0a1f13a1d2d48c3672" 381 | integrity sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA== 382 | dependencies: 383 | eslint-visitor-keys "^2.0.0" 384 | 385 | eslint-visitor-keys@^2.0.0: 386 | version "2.1.0" 387 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz#f65328259305927392c938ed44eb0a5c9b2bd303" 388 | integrity sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw== 389 | 390 | eslint-visitor-keys@^3.3.0: 391 | version "3.3.0" 392 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz#f6480fa6b1f30efe2d1968aa8ac745b862469826" 393 | integrity sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA== 394 | 395 | eslint@^8.34.0: 396 | version "8.34.0" 397 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.34.0.tgz#fe0ab0ef478104c1f9ebc5537e303d25a8fb22d6" 398 | integrity sha512-1Z8iFsucw+7kSqXNZVslXS8Ioa4u2KM7GPwuKtkTFAqZ/cHMcEaR+1+Br0wLlot49cNxIiZk5wp8EAbPcYZxTg== 399 | dependencies: 400 | "@eslint/eslintrc" "^1.4.1" 401 | "@humanwhocodes/config-array" "^0.11.8" 402 | "@humanwhocodes/module-importer" "^1.0.1" 403 | "@nodelib/fs.walk" "^1.2.8" 404 | ajv "^6.10.0" 405 | chalk "^4.0.0" 406 | cross-spawn "^7.0.2" 407 | debug "^4.3.2" 408 | doctrine "^3.0.0" 409 | escape-string-regexp "^4.0.0" 410 | eslint-scope "^7.1.1" 411 | eslint-utils "^3.0.0" 412 | eslint-visitor-keys "^3.3.0" 413 | espree "^9.4.0" 414 | esquery "^1.4.0" 415 | esutils "^2.0.2" 416 | fast-deep-equal "^3.1.3" 417 | file-entry-cache "^6.0.1" 418 | find-up "^5.0.0" 419 | glob-parent "^6.0.2" 420 | globals "^13.19.0" 421 | grapheme-splitter "^1.0.4" 422 | ignore "^5.2.0" 423 | import-fresh "^3.0.0" 424 | imurmurhash "^0.1.4" 425 | is-glob "^4.0.0" 426 | is-path-inside "^3.0.3" 427 | js-sdsl "^4.1.4" 428 | js-yaml "^4.1.0" 429 | json-stable-stringify-without-jsonify "^1.0.1" 430 | levn "^0.4.1" 431 | lodash.merge "^4.6.2" 432 | minimatch "^3.1.2" 433 | natural-compare "^1.4.0" 434 | optionator "^0.9.1" 435 | regexpp "^3.2.0" 436 | strip-ansi "^6.0.1" 437 | strip-json-comments "^3.1.0" 438 | text-table "^0.2.0" 439 | 440 | espree@^9.4.0: 441 | version "9.4.1" 442 | resolved "https://registry.yarnpkg.com/espree/-/espree-9.4.1.tgz#51d6092615567a2c2cff7833445e37c28c0065bd" 443 | integrity sha512-XwctdmTO6SIvCzd9810yyNzIrOrqNYV9Koizx4C/mRhf9uq0o4yHoCEU/670pOxOL/MSraektvSAji79kX90Vg== 444 | dependencies: 445 | acorn "^8.8.0" 446 | acorn-jsx "^5.3.2" 447 | eslint-visitor-keys "^3.3.0" 448 | 449 | esquery@^1.4.0: 450 | version "1.4.2" 451 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.4.2.tgz#c6d3fee05dd665808e2ad870631f221f5617b1d1" 452 | integrity sha512-JVSoLdTlTDkmjFmab7H/9SL9qGSyjElT3myyKp7krqjVFQCDLmj1QFaCLRFBszBKI0XVZaiiXvuPIX3ZwHe1Ng== 453 | dependencies: 454 | estraverse "^5.1.0" 455 | 456 | esrecurse@^4.3.0: 457 | version "4.3.0" 458 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921" 459 | integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== 460 | dependencies: 461 | estraverse "^5.2.0" 462 | 463 | estraverse@^5.1.0, estraverse@^5.2.0, estraverse@^5.3.0: 464 | version "5.3.0" 465 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123" 466 | integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== 467 | 468 | esutils@^2.0.2: 469 | version "2.0.3" 470 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" 471 | integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== 472 | 473 | fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: 474 | version "3.1.3" 475 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" 476 | integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== 477 | 478 | fast-json-stable-stringify@^2.0.0: 479 | version "2.1.0" 480 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" 481 | integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== 482 | 483 | fast-levenshtein@^2.0.6: 484 | version "2.0.6" 485 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 486 | integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw== 487 | 488 | fastq@^1.6.0: 489 | version "1.15.0" 490 | resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.15.0.tgz#d04d07c6a2a68fe4599fea8d2e103a937fae6b3a" 491 | integrity sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw== 492 | dependencies: 493 | reusify "^1.0.4" 494 | 495 | file-entry-cache@^6.0.1: 496 | version "6.0.1" 497 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027" 498 | integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg== 499 | dependencies: 500 | flat-cache "^3.0.4" 501 | 502 | fill-range@^7.0.1: 503 | version "7.0.1" 504 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" 505 | integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== 506 | dependencies: 507 | to-regex-range "^5.0.1" 508 | 509 | find-up@^5.0.0: 510 | version "5.0.0" 511 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc" 512 | integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng== 513 | dependencies: 514 | locate-path "^6.0.0" 515 | path-exists "^4.0.0" 516 | 517 | flat-cache@^3.0.4: 518 | version "3.0.4" 519 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.0.4.tgz#61b0338302b2fe9f957dcc32fc2a87f1c3048b11" 520 | integrity sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg== 521 | dependencies: 522 | flatted "^3.1.0" 523 | rimraf "^3.0.2" 524 | 525 | flatted@^3.1.0: 526 | version "3.2.7" 527 | resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.2.7.tgz#609f39207cb614b89d0765b477cb2d437fbf9787" 528 | integrity sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ== 529 | 530 | for-each@^0.3.3: 531 | version "0.3.3" 532 | resolved "https://registry.yarnpkg.com/for-each/-/for-each-0.3.3.tgz#69b447e88a0a5d32c3e7084f3f1710034b21376e" 533 | integrity sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw== 534 | dependencies: 535 | is-callable "^1.1.3" 536 | 537 | fs.realpath@^1.0.0: 538 | version "1.0.0" 539 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 540 | integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== 541 | 542 | fsevents@~2.3.2: 543 | version "2.3.2" 544 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" 545 | integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== 546 | 547 | function-bind@^1.1.1: 548 | version "1.1.1" 549 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 550 | integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== 551 | 552 | function.prototype.name@^1.1.5: 553 | version "1.1.5" 554 | resolved "https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.1.5.tgz#cce0505fe1ffb80503e6f9e46cc64e46a12a9621" 555 | integrity sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA== 556 | dependencies: 557 | call-bind "^1.0.2" 558 | define-properties "^1.1.3" 559 | es-abstract "^1.19.0" 560 | functions-have-names "^1.2.2" 561 | 562 | functions-have-names@^1.2.2: 563 | version "1.2.3" 564 | resolved "https://registry.yarnpkg.com/functions-have-names/-/functions-have-names-1.2.3.tgz#0404fe4ee2ba2f607f0e0ec3c80bae994133b834" 565 | integrity sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ== 566 | 567 | get-intrinsic@^1.0.2, get-intrinsic@^1.1.1, get-intrinsic@^1.1.3, get-intrinsic@^1.2.0: 568 | version "1.2.0" 569 | resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.0.tgz#7ad1dc0535f3a2904bba075772763e5051f6d05f" 570 | integrity sha512-L049y6nFOuom5wGyRc3/gdTLO94dySVKRACj1RmJZBQXlbTMhtNIgkWkUHq+jYmZvKf14EW1EoJnnjbmoHij0Q== 571 | dependencies: 572 | function-bind "^1.1.1" 573 | has "^1.0.3" 574 | has-symbols "^1.0.3" 575 | 576 | get-symbol-description@^1.0.0: 577 | version "1.0.0" 578 | resolved "https://registry.yarnpkg.com/get-symbol-description/-/get-symbol-description-1.0.0.tgz#7fdb81c900101fbd564dd5f1a30af5aadc1e58d6" 579 | integrity sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw== 580 | dependencies: 581 | call-bind "^1.0.2" 582 | get-intrinsic "^1.1.1" 583 | 584 | glob-parent@^6.0.2: 585 | version "6.0.2" 586 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-6.0.2.tgz#6d237d99083950c79290f24c7642a3de9a28f9e3" 587 | integrity sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A== 588 | dependencies: 589 | is-glob "^4.0.3" 590 | 591 | glob-parent@~5.1.2: 592 | version "5.1.2" 593 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" 594 | integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== 595 | dependencies: 596 | is-glob "^4.0.1" 597 | 598 | glob@^7.1.3: 599 | version "7.2.3" 600 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" 601 | integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== 602 | dependencies: 603 | fs.realpath "^1.0.0" 604 | inflight "^1.0.4" 605 | inherits "2" 606 | minimatch "^3.1.1" 607 | once "^1.3.0" 608 | path-is-absolute "^1.0.0" 609 | 610 | globals@^13.19.0: 611 | version "13.20.0" 612 | resolved "https://registry.yarnpkg.com/globals/-/globals-13.20.0.tgz#ea276a1e508ffd4f1612888f9d1bad1e2717bf82" 613 | integrity sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ== 614 | dependencies: 615 | type-fest "^0.20.2" 616 | 617 | globalthis@^1.0.3: 618 | version "1.0.3" 619 | resolved "https://registry.yarnpkg.com/globalthis/-/globalthis-1.0.3.tgz#5852882a52b80dc301b0660273e1ed082f0b6ccf" 620 | integrity sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA== 621 | dependencies: 622 | define-properties "^1.1.3" 623 | 624 | gopd@^1.0.1: 625 | version "1.0.1" 626 | resolved "https://registry.yarnpkg.com/gopd/-/gopd-1.0.1.tgz#29ff76de69dac7489b7c0918a5788e56477c332c" 627 | integrity sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA== 628 | dependencies: 629 | get-intrinsic "^1.1.3" 630 | 631 | grapheme-splitter@^1.0.4: 632 | version "1.0.4" 633 | resolved "https://registry.yarnpkg.com/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz#9cf3a665c6247479896834af35cf1dbb4400767e" 634 | integrity sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ== 635 | 636 | has-bigints@^1.0.1, has-bigints@^1.0.2: 637 | version "1.0.2" 638 | resolved "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.2.tgz#0871bd3e3d51626f6ca0966668ba35d5602d6eaa" 639 | integrity sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ== 640 | 641 | has-flag@^3.0.0: 642 | version "3.0.0" 643 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 644 | integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw== 645 | 646 | has-flag@^4.0.0: 647 | version "4.0.0" 648 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" 649 | integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== 650 | 651 | has-property-descriptors@^1.0.0: 652 | version "1.0.0" 653 | resolved "https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz#610708600606d36961ed04c196193b6a607fa861" 654 | integrity sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ== 655 | dependencies: 656 | get-intrinsic "^1.1.1" 657 | 658 | has-proto@^1.0.1: 659 | version "1.0.1" 660 | resolved "https://registry.yarnpkg.com/has-proto/-/has-proto-1.0.1.tgz#1885c1305538958aff469fef37937c22795408e0" 661 | integrity sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg== 662 | 663 | has-symbols@^1.0.2, has-symbols@^1.0.3: 664 | version "1.0.3" 665 | resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" 666 | integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== 667 | 668 | has-tostringtag@^1.0.0: 669 | version "1.0.0" 670 | resolved "https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.0.tgz#7e133818a7d394734f941e73c3d3f9291e658b25" 671 | integrity sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ== 672 | dependencies: 673 | has-symbols "^1.0.2" 674 | 675 | has@^1.0.3: 676 | version "1.0.3" 677 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" 678 | integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== 679 | dependencies: 680 | function-bind "^1.1.1" 681 | 682 | ignore-by-default@^1.0.1: 683 | version "1.0.1" 684 | resolved "https://registry.yarnpkg.com/ignore-by-default/-/ignore-by-default-1.0.1.tgz#48ca6d72f6c6a3af00a9ad4ae6876be3889e2b09" 685 | integrity sha512-Ius2VYcGNk7T90CppJqcIkS5ooHUZyIQK+ClZfMfMNFEF9VSE73Fq+906u/CWu92x4gzZMWOwfFYckPObzdEbA== 686 | 687 | ignore@^5.2.0: 688 | version "5.2.4" 689 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.4.tgz#a291c0c6178ff1b960befe47fcdec301674a6324" 690 | integrity sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ== 691 | 692 | import-fresh@^3.0.0, import-fresh@^3.2.1: 693 | version "3.3.0" 694 | resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" 695 | integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== 696 | dependencies: 697 | parent-module "^1.0.0" 698 | resolve-from "^4.0.0" 699 | 700 | imurmurhash@^0.1.4: 701 | version "0.1.4" 702 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 703 | integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA== 704 | 705 | inflight@^1.0.4: 706 | version "1.0.6" 707 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 708 | integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA== 709 | dependencies: 710 | once "^1.3.0" 711 | wrappy "1" 712 | 713 | inherits@2: 714 | version "2.0.4" 715 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 716 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 717 | 718 | internal-slot@^1.0.3, internal-slot@^1.0.4: 719 | version "1.0.5" 720 | resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.5.tgz#f2a2ee21f668f8627a4667f309dc0f4fb6674986" 721 | integrity sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ== 722 | dependencies: 723 | get-intrinsic "^1.2.0" 724 | has "^1.0.3" 725 | side-channel "^1.0.4" 726 | 727 | is-array-buffer@^3.0.1: 728 | version "3.0.1" 729 | resolved "https://registry.yarnpkg.com/is-array-buffer/-/is-array-buffer-3.0.1.tgz#deb1db4fcae48308d54ef2442706c0393997052a" 730 | integrity sha512-ASfLknmY8Xa2XtB4wmbz13Wu202baeA18cJBCeCy0wXUHZF0IPyVEXqKEcd+t2fNSLLL1vC6k7lxZEojNbISXQ== 731 | dependencies: 732 | call-bind "^1.0.2" 733 | get-intrinsic "^1.1.3" 734 | is-typed-array "^1.1.10" 735 | 736 | is-bigint@^1.0.1: 737 | version "1.0.4" 738 | resolved "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.4.tgz#08147a1875bc2b32005d41ccd8291dffc6691df3" 739 | integrity sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg== 740 | dependencies: 741 | has-bigints "^1.0.1" 742 | 743 | is-binary-path@~2.1.0: 744 | version "2.1.0" 745 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" 746 | integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== 747 | dependencies: 748 | binary-extensions "^2.0.0" 749 | 750 | is-boolean-object@^1.1.0: 751 | version "1.1.2" 752 | resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.1.2.tgz#5c6dc200246dd9321ae4b885a114bb1f75f63719" 753 | integrity sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA== 754 | dependencies: 755 | call-bind "^1.0.2" 756 | has-tostringtag "^1.0.0" 757 | 758 | is-callable@^1.1.3, is-callable@^1.1.4, is-callable@^1.2.7: 759 | version "1.2.7" 760 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.7.tgz#3bc2a85ea742d9e36205dcacdd72ca1fdc51b055" 761 | integrity sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA== 762 | 763 | is-core-module@^2.9.0: 764 | version "2.11.0" 765 | resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.11.0.tgz#ad4cb3e3863e814523c96f3f58d26cc570ff0144" 766 | integrity sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw== 767 | dependencies: 768 | has "^1.0.3" 769 | 770 | is-date-object@^1.0.1: 771 | version "1.0.5" 772 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.5.tgz#0841d5536e724c25597bf6ea62e1bd38298df31f" 773 | integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ== 774 | dependencies: 775 | has-tostringtag "^1.0.0" 776 | 777 | is-extglob@^2.1.1: 778 | version "2.1.1" 779 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 780 | integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== 781 | 782 | is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3, is-glob@~4.0.1: 783 | version "4.0.3" 784 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" 785 | integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== 786 | dependencies: 787 | is-extglob "^2.1.1" 788 | 789 | is-negative-zero@^2.0.2: 790 | version "2.0.2" 791 | resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.2.tgz#7bf6f03a28003b8b3965de3ac26f664d765f3150" 792 | integrity sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA== 793 | 794 | is-number-object@^1.0.4: 795 | version "1.0.7" 796 | resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.7.tgz#59d50ada4c45251784e9904f5246c742f07a42fc" 797 | integrity sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ== 798 | dependencies: 799 | has-tostringtag "^1.0.0" 800 | 801 | is-number@^7.0.0: 802 | version "7.0.0" 803 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" 804 | integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== 805 | 806 | is-path-inside@^3.0.3: 807 | version "3.0.3" 808 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.3.tgz#d231362e53a07ff2b0e0ea7fed049161ffd16283" 809 | integrity sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ== 810 | 811 | is-regex@^1.1.4: 812 | version "1.1.4" 813 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958" 814 | integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg== 815 | dependencies: 816 | call-bind "^1.0.2" 817 | has-tostringtag "^1.0.0" 818 | 819 | is-shared-array-buffer@^1.0.2: 820 | version "1.0.2" 821 | resolved "https://registry.yarnpkg.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz#8f259c573b60b6a32d4058a1a07430c0a7344c79" 822 | integrity sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA== 823 | dependencies: 824 | call-bind "^1.0.2" 825 | 826 | is-string@^1.0.5, is-string@^1.0.7: 827 | version "1.0.7" 828 | resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.7.tgz#0dd12bf2006f255bb58f695110eff7491eebc0fd" 829 | integrity sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg== 830 | dependencies: 831 | has-tostringtag "^1.0.0" 832 | 833 | is-symbol@^1.0.2, is-symbol@^1.0.3: 834 | version "1.0.4" 835 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.4.tgz#a6dac93b635b063ca6872236de88910a57af139c" 836 | integrity sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg== 837 | dependencies: 838 | has-symbols "^1.0.2" 839 | 840 | is-typed-array@^1.1.10, is-typed-array@^1.1.9: 841 | version "1.1.10" 842 | resolved "https://registry.yarnpkg.com/is-typed-array/-/is-typed-array-1.1.10.tgz#36a5b5cb4189b575d1a3e4b08536bfb485801e3f" 843 | integrity sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A== 844 | dependencies: 845 | available-typed-arrays "^1.0.5" 846 | call-bind "^1.0.2" 847 | for-each "^0.3.3" 848 | gopd "^1.0.1" 849 | has-tostringtag "^1.0.0" 850 | 851 | is-weakref@^1.0.2: 852 | version "1.0.2" 853 | resolved "https://registry.yarnpkg.com/is-weakref/-/is-weakref-1.0.2.tgz#9529f383a9338205e89765e0392efc2f100f06f2" 854 | integrity sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ== 855 | dependencies: 856 | call-bind "^1.0.2" 857 | 858 | isexe@^2.0.0: 859 | version "2.0.0" 860 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 861 | integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== 862 | 863 | js-sdsl@^4.1.4: 864 | version "4.3.0" 865 | resolved "https://registry.yarnpkg.com/js-sdsl/-/js-sdsl-4.3.0.tgz#aeefe32a451f7af88425b11fdb5f58c90ae1d711" 866 | integrity sha512-mifzlm2+5nZ+lEcLJMoBK0/IH/bDg8XnJfd/Wq6IP+xoCjLZsTOnV2QpxlVbX9bMnkl5PdEjNtBJ9Cj1NjifhQ== 867 | 868 | "js-tokens@^3.0.0 || ^4.0.0": 869 | version "4.0.0" 870 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" 871 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== 872 | 873 | js-yaml@^4.1.0: 874 | version "4.1.0" 875 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602" 876 | integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA== 877 | dependencies: 878 | argparse "^2.0.1" 879 | 880 | json-schema-traverse@^0.4.1: 881 | version "0.4.1" 882 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" 883 | integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== 884 | 885 | json-stable-stringify-without-jsonify@^1.0.1: 886 | version "1.0.1" 887 | resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" 888 | integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw== 889 | 890 | "jsx-ast-utils@^2.4.1 || ^3.0.0": 891 | version "3.3.3" 892 | resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-3.3.3.tgz#76b3e6e6cece5c69d49a5792c3d01bd1a0cdc7ea" 893 | integrity sha512-fYQHZTZ8jSfmWZ0iyzfwiU4WDX4HpHbMCZ3gPlWYiCl3BoeOTsqKBqnTVfH2rYT7eP5c3sVbeSPHnnJOaTrWiw== 894 | dependencies: 895 | array-includes "^3.1.5" 896 | object.assign "^4.1.3" 897 | 898 | levn@^0.4.1: 899 | version "0.4.1" 900 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade" 901 | integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ== 902 | dependencies: 903 | prelude-ls "^1.2.1" 904 | type-check "~0.4.0" 905 | 906 | locate-path@^6.0.0: 907 | version "6.0.0" 908 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286" 909 | integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw== 910 | dependencies: 911 | p-locate "^5.0.0" 912 | 913 | lodash.merge@^4.6.2: 914 | version "4.6.2" 915 | resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a" 916 | integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== 917 | 918 | loose-envify@^1.1.0, loose-envify@^1.4.0: 919 | version "1.4.0" 920 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" 921 | integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== 922 | dependencies: 923 | js-tokens "^3.0.0 || ^4.0.0" 924 | 925 | minimatch@^3.0.5, minimatch@^3.1.1, minimatch@^3.1.2: 926 | version "3.1.2" 927 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" 928 | integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== 929 | dependencies: 930 | brace-expansion "^1.1.7" 931 | 932 | ms@2.1.2: 933 | version "2.1.2" 934 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" 935 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== 936 | 937 | ms@^2.1.1: 938 | version "2.1.3" 939 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" 940 | integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== 941 | 942 | natural-compare@^1.4.0: 943 | version "1.4.0" 944 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 945 | integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw== 946 | 947 | nodemon@^2.0.21: 948 | version "2.0.21" 949 | resolved "https://registry.yarnpkg.com/nodemon/-/nodemon-2.0.21.tgz#267edff25578da91075d6aa54346ef77ecb7b302" 950 | integrity sha512-djN/n2549DUtY33S7o1djRCd7dEm0kBnj9c7S9XVXqRUbuggN1MZH/Nqa+5RFQr63Fbefq37nFXAE9VU86yL1A== 951 | dependencies: 952 | chokidar "^3.5.2" 953 | debug "^3.2.7" 954 | ignore-by-default "^1.0.1" 955 | minimatch "^3.1.2" 956 | pstree.remy "^1.1.8" 957 | semver "^5.7.1" 958 | simple-update-notifier "^1.0.7" 959 | supports-color "^5.5.0" 960 | touch "^3.1.0" 961 | undefsafe "^2.0.5" 962 | 963 | nopt@~1.0.10: 964 | version "1.0.10" 965 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-1.0.10.tgz#6ddd21bd2a31417b92727dd585f8a6f37608ebee" 966 | integrity sha512-NWmpvLSqUrgrAC9HCuxEvb+PSloHpqVu+FqcO4eeF2h5qYRhA7ev6KvelyQAKtegUbC6RypJnlEOhd8vloNKYg== 967 | dependencies: 968 | abbrev "1" 969 | 970 | normalize-path@^3.0.0, normalize-path@~3.0.0: 971 | version "3.0.0" 972 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" 973 | integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== 974 | 975 | object-assign@^4.1.1: 976 | version "4.1.1" 977 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 978 | integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg== 979 | 980 | object-inspect@^1.12.2, object-inspect@^1.9.0: 981 | version "1.12.3" 982 | resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.3.tgz#ba62dffd67ee256c8c086dfae69e016cd1f198b9" 983 | integrity sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g== 984 | 985 | object-keys@^1.1.1: 986 | version "1.1.1" 987 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" 988 | integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== 989 | 990 | object.assign@^4.1.3, object.assign@^4.1.4: 991 | version "4.1.4" 992 | resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.4.tgz#9673c7c7c351ab8c4d0b516f4343ebf4dfb7799f" 993 | integrity sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ== 994 | dependencies: 995 | call-bind "^1.0.2" 996 | define-properties "^1.1.4" 997 | has-symbols "^1.0.3" 998 | object-keys "^1.1.1" 999 | 1000 | object.entries@^1.1.6: 1001 | version "1.1.6" 1002 | resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.6.tgz#9737d0e5b8291edd340a3e3264bb8a3b00d5fa23" 1003 | integrity sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w== 1004 | dependencies: 1005 | call-bind "^1.0.2" 1006 | define-properties "^1.1.4" 1007 | es-abstract "^1.20.4" 1008 | 1009 | object.fromentries@^2.0.6: 1010 | version "2.0.6" 1011 | resolved "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.6.tgz#cdb04da08c539cffa912dcd368b886e0904bfa73" 1012 | integrity sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg== 1013 | dependencies: 1014 | call-bind "^1.0.2" 1015 | define-properties "^1.1.4" 1016 | es-abstract "^1.20.4" 1017 | 1018 | object.hasown@^1.1.2: 1019 | version "1.1.2" 1020 | resolved "https://registry.yarnpkg.com/object.hasown/-/object.hasown-1.1.2.tgz#f919e21fad4eb38a57bc6345b3afd496515c3f92" 1021 | integrity sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw== 1022 | dependencies: 1023 | define-properties "^1.1.4" 1024 | es-abstract "^1.20.4" 1025 | 1026 | object.values@^1.1.6: 1027 | version "1.1.6" 1028 | resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.6.tgz#4abbaa71eba47d63589d402856f908243eea9b1d" 1029 | integrity sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw== 1030 | dependencies: 1031 | call-bind "^1.0.2" 1032 | define-properties "^1.1.4" 1033 | es-abstract "^1.20.4" 1034 | 1035 | once@^1.3.0: 1036 | version "1.4.0" 1037 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1038 | integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== 1039 | dependencies: 1040 | wrappy "1" 1041 | 1042 | optionator@^0.9.1: 1043 | version "0.9.1" 1044 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.1.tgz#4f236a6373dae0566a6d43e1326674f50c291499" 1045 | integrity sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw== 1046 | dependencies: 1047 | deep-is "^0.1.3" 1048 | fast-levenshtein "^2.0.6" 1049 | levn "^0.4.1" 1050 | prelude-ls "^1.2.1" 1051 | type-check "^0.4.0" 1052 | word-wrap "^1.2.3" 1053 | 1054 | p-limit@^3.0.2: 1055 | version "3.1.0" 1056 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b" 1057 | integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== 1058 | dependencies: 1059 | yocto-queue "^0.1.0" 1060 | 1061 | p-locate@^5.0.0: 1062 | version "5.0.0" 1063 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-5.0.0.tgz#83c8315c6785005e3bd021839411c9e110e6d834" 1064 | integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw== 1065 | dependencies: 1066 | p-limit "^3.0.2" 1067 | 1068 | parent-module@^1.0.0: 1069 | version "1.0.1" 1070 | resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" 1071 | integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== 1072 | dependencies: 1073 | callsites "^3.0.0" 1074 | 1075 | path-exists@^4.0.0: 1076 | version "4.0.0" 1077 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" 1078 | integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== 1079 | 1080 | path-is-absolute@^1.0.0: 1081 | version "1.0.1" 1082 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1083 | integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== 1084 | 1085 | path-key@^3.1.0: 1086 | version "3.1.1" 1087 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" 1088 | integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== 1089 | 1090 | path-parse@^1.0.7: 1091 | version "1.0.7" 1092 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" 1093 | integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== 1094 | 1095 | picomatch@^2.0.4, picomatch@^2.2.1: 1096 | version "2.3.1" 1097 | resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" 1098 | integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== 1099 | 1100 | prelude-ls@^1.2.1: 1101 | version "1.2.1" 1102 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" 1103 | integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== 1104 | 1105 | prop-types@^15.8.1: 1106 | version "15.8.1" 1107 | resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.8.1.tgz#67d87bf1a694f48435cf332c24af10214a3140b5" 1108 | integrity sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg== 1109 | dependencies: 1110 | loose-envify "^1.4.0" 1111 | object-assign "^4.1.1" 1112 | react-is "^16.13.1" 1113 | 1114 | pstree.remy@^1.1.8: 1115 | version "1.1.8" 1116 | resolved "https://registry.yarnpkg.com/pstree.remy/-/pstree.remy-1.1.8.tgz#c242224f4a67c21f686839bbdb4ac282b8373d3a" 1117 | integrity sha512-77DZwxQmxKnu3aR542U+X8FypNzbfJ+C5XQDk3uWjWxn6151aIMGthWYRXTqT1E5oJvg+ljaa2OJi+VfvCOQ8w== 1118 | 1119 | punycode@^2.1.0: 1120 | version "2.3.0" 1121 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.3.0.tgz#f67fa67c94da8f4d0cfff981aee4118064199b8f" 1122 | integrity sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA== 1123 | 1124 | queue-microtask@^1.2.2: 1125 | version "1.2.3" 1126 | resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" 1127 | integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== 1128 | 1129 | react-dom@^18.2.0: 1130 | version "18.2.0" 1131 | resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-18.2.0.tgz#22aaf38708db2674ed9ada224ca4aa708d821e3d" 1132 | integrity sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g== 1133 | dependencies: 1134 | loose-envify "^1.1.0" 1135 | scheduler "^0.23.0" 1136 | 1137 | react-is@^16.13.1: 1138 | version "16.13.1" 1139 | resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4" 1140 | integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== 1141 | 1142 | react@^18.2.0: 1143 | version "18.2.0" 1144 | resolved "https://registry.yarnpkg.com/react/-/react-18.2.0.tgz#555bd98592883255fa00de14f1151a917b5d77d5" 1145 | integrity sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ== 1146 | dependencies: 1147 | loose-envify "^1.1.0" 1148 | 1149 | readdirp@~3.6.0: 1150 | version "3.6.0" 1151 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7" 1152 | integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA== 1153 | dependencies: 1154 | picomatch "^2.2.1" 1155 | 1156 | redaxios@^0.5.1: 1157 | version "0.5.1" 1158 | resolved "https://registry.yarnpkg.com/redaxios/-/redaxios-0.5.1.tgz#a2e21c9337f615c23d8ceadb7c9f0a1844762d21" 1159 | integrity sha512-FSD2AmfdbkYwl7KDExYQlVvIrFz6Yd83pGfaGjBzM9F6rpq8g652Q4Yq5QD4c+nf4g2AgeElv1y+8ajUPiOYMg== 1160 | 1161 | regexp.prototype.flags@^1.4.3: 1162 | version "1.4.3" 1163 | resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz#87cab30f80f66660181a3bb7bf5981a872b367ac" 1164 | integrity sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA== 1165 | dependencies: 1166 | call-bind "^1.0.2" 1167 | define-properties "^1.1.3" 1168 | functions-have-names "^1.2.2" 1169 | 1170 | regexpp@^3.2.0: 1171 | version "3.2.0" 1172 | resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-3.2.0.tgz#0425a2768d8f23bad70ca4b90461fa2f1213e1b2" 1173 | integrity sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg== 1174 | 1175 | resolve-from@^4.0.0: 1176 | version "4.0.0" 1177 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" 1178 | integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== 1179 | 1180 | resolve@^2.0.0-next.4: 1181 | version "2.0.0-next.4" 1182 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-2.0.0-next.4.tgz#3d37a113d6429f496ec4752d2a2e58efb1fd4660" 1183 | integrity sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ== 1184 | dependencies: 1185 | is-core-module "^2.9.0" 1186 | path-parse "^1.0.7" 1187 | supports-preserve-symlinks-flag "^1.0.0" 1188 | 1189 | reusify@^1.0.4: 1190 | version "1.0.4" 1191 | resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" 1192 | integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== 1193 | 1194 | rimraf@^3.0.2: 1195 | version "3.0.2" 1196 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" 1197 | integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== 1198 | dependencies: 1199 | glob "^7.1.3" 1200 | 1201 | run-parallel@^1.1.9: 1202 | version "1.2.0" 1203 | resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee" 1204 | integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== 1205 | dependencies: 1206 | queue-microtask "^1.2.2" 1207 | 1208 | safe-regex-test@^1.0.0: 1209 | version "1.0.0" 1210 | resolved "https://registry.yarnpkg.com/safe-regex-test/-/safe-regex-test-1.0.0.tgz#793b874d524eb3640d1873aad03596db2d4f2295" 1211 | integrity sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA== 1212 | dependencies: 1213 | call-bind "^1.0.2" 1214 | get-intrinsic "^1.1.3" 1215 | is-regex "^1.1.4" 1216 | 1217 | scheduler@^0.23.0: 1218 | version "0.23.0" 1219 | resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.23.0.tgz#ba8041afc3d30eb206a487b6b384002e4e61fdfe" 1220 | integrity sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw== 1221 | dependencies: 1222 | loose-envify "^1.1.0" 1223 | 1224 | semver@^5.7.1: 1225 | version "5.7.1" 1226 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" 1227 | integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== 1228 | 1229 | semver@^6.3.0: 1230 | version "6.3.0" 1231 | resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" 1232 | integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== 1233 | 1234 | semver@~7.0.0: 1235 | version "7.0.0" 1236 | resolved "https://registry.yarnpkg.com/semver/-/semver-7.0.0.tgz#5f3ca35761e47e05b206c6daff2cf814f0316b8e" 1237 | integrity sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A== 1238 | 1239 | shebang-command@^2.0.0: 1240 | version "2.0.0" 1241 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" 1242 | integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== 1243 | dependencies: 1244 | shebang-regex "^3.0.0" 1245 | 1246 | shebang-regex@^3.0.0: 1247 | version "3.0.0" 1248 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" 1249 | integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== 1250 | 1251 | side-channel@^1.0.4: 1252 | version "1.0.4" 1253 | resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf" 1254 | integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw== 1255 | dependencies: 1256 | call-bind "^1.0.0" 1257 | get-intrinsic "^1.0.2" 1258 | object-inspect "^1.9.0" 1259 | 1260 | simple-update-notifier@^1.0.7: 1261 | version "1.1.0" 1262 | resolved "https://registry.yarnpkg.com/simple-update-notifier/-/simple-update-notifier-1.1.0.tgz#67694c121de354af592b347cdba798463ed49c82" 1263 | integrity sha512-VpsrsJSUcJEseSbMHkrsrAVSdvVS5I96Qo1QAQ4FxQ9wXFcB+pjj7FB7/us9+GcgfW4ziHtYMc1J0PLczb55mg== 1264 | dependencies: 1265 | semver "~7.0.0" 1266 | 1267 | string.prototype.matchall@^4.0.8: 1268 | version "4.0.8" 1269 | resolved "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-4.0.8.tgz#3bf85722021816dcd1bf38bb714915887ca79fd3" 1270 | integrity sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg== 1271 | dependencies: 1272 | call-bind "^1.0.2" 1273 | define-properties "^1.1.4" 1274 | es-abstract "^1.20.4" 1275 | get-intrinsic "^1.1.3" 1276 | has-symbols "^1.0.3" 1277 | internal-slot "^1.0.3" 1278 | regexp.prototype.flags "^1.4.3" 1279 | side-channel "^1.0.4" 1280 | 1281 | string.prototype.trimend@^1.0.6: 1282 | version "1.0.6" 1283 | resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz#c4a27fa026d979d79c04f17397f250a462944533" 1284 | integrity sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ== 1285 | dependencies: 1286 | call-bind "^1.0.2" 1287 | define-properties "^1.1.4" 1288 | es-abstract "^1.20.4" 1289 | 1290 | string.prototype.trimstart@^1.0.6: 1291 | version "1.0.6" 1292 | resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz#e90ab66aa8e4007d92ef591bbf3cd422c56bdcf4" 1293 | integrity sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA== 1294 | dependencies: 1295 | call-bind "^1.0.2" 1296 | define-properties "^1.1.4" 1297 | es-abstract "^1.20.4" 1298 | 1299 | strip-ansi@^6.0.1: 1300 | version "6.0.1" 1301 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" 1302 | integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== 1303 | dependencies: 1304 | ansi-regex "^5.0.1" 1305 | 1306 | strip-json-comments@^3.1.0, strip-json-comments@^3.1.1: 1307 | version "3.1.1" 1308 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" 1309 | integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== 1310 | 1311 | supports-color@^5.5.0: 1312 | version "5.5.0" 1313 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" 1314 | integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== 1315 | dependencies: 1316 | has-flag "^3.0.0" 1317 | 1318 | supports-color@^7.1.0: 1319 | version "7.2.0" 1320 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" 1321 | integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== 1322 | dependencies: 1323 | has-flag "^4.0.0" 1324 | 1325 | supports-preserve-symlinks-flag@^1.0.0: 1326 | version "1.0.0" 1327 | resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" 1328 | integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== 1329 | 1330 | text-table@^0.2.0: 1331 | version "0.2.0" 1332 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 1333 | integrity sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw== 1334 | 1335 | to-regex-range@^5.0.1: 1336 | version "5.0.1" 1337 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" 1338 | integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== 1339 | dependencies: 1340 | is-number "^7.0.0" 1341 | 1342 | touch@^3.1.0: 1343 | version "3.1.0" 1344 | resolved "https://registry.yarnpkg.com/touch/-/touch-3.1.0.tgz#fe365f5f75ec9ed4e56825e0bb76d24ab74af83b" 1345 | integrity sha512-WBx8Uy5TLtOSRtIq+M03/sKDrXCLHxwDcquSP2c43Le03/9serjQBIztjRz6FkJez9D/hleyAXTBGLwwZUw9lA== 1346 | dependencies: 1347 | nopt "~1.0.10" 1348 | 1349 | type-check@^0.4.0, type-check@~0.4.0: 1350 | version "0.4.0" 1351 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1" 1352 | integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew== 1353 | dependencies: 1354 | prelude-ls "^1.2.1" 1355 | 1356 | type-fest@^0.20.2: 1357 | version "0.20.2" 1358 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4" 1359 | integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ== 1360 | 1361 | typed-array-length@^1.0.4: 1362 | version "1.0.4" 1363 | resolved "https://registry.yarnpkg.com/typed-array-length/-/typed-array-length-1.0.4.tgz#89d83785e5c4098bec72e08b319651f0eac9c1bb" 1364 | integrity sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng== 1365 | dependencies: 1366 | call-bind "^1.0.2" 1367 | for-each "^0.3.3" 1368 | is-typed-array "^1.1.9" 1369 | 1370 | unbox-primitive@^1.0.2: 1371 | version "1.0.2" 1372 | resolved "https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.0.2.tgz#29032021057d5e6cdbd08c5129c226dff8ed6f9e" 1373 | integrity sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw== 1374 | dependencies: 1375 | call-bind "^1.0.2" 1376 | has-bigints "^1.0.2" 1377 | has-symbols "^1.0.3" 1378 | which-boxed-primitive "^1.0.2" 1379 | 1380 | undefsafe@^2.0.5: 1381 | version "2.0.5" 1382 | resolved "https://registry.yarnpkg.com/undefsafe/-/undefsafe-2.0.5.tgz#38733b9327bdcd226db889fb723a6efd162e6e2c" 1383 | integrity sha512-WxONCrssBM8TSPRqN5EmsjVrsv4A8X12J4ArBiiayv3DyyG3ZlIg6yysuuSYdZsVz3TKcTg2fd//Ujd4CHV1iA== 1384 | 1385 | uri-js@^4.2.2: 1386 | version "4.4.1" 1387 | resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" 1388 | integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== 1389 | dependencies: 1390 | punycode "^2.1.0" 1391 | 1392 | which-boxed-primitive@^1.0.2: 1393 | version "1.0.2" 1394 | resolved "https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6" 1395 | integrity sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg== 1396 | dependencies: 1397 | is-bigint "^1.0.1" 1398 | is-boolean-object "^1.1.0" 1399 | is-number-object "^1.0.4" 1400 | is-string "^1.0.5" 1401 | is-symbol "^1.0.3" 1402 | 1403 | which-typed-array@^1.1.9: 1404 | version "1.1.9" 1405 | resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.9.tgz#307cf898025848cf995e795e8423c7f337efbde6" 1406 | integrity sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA== 1407 | dependencies: 1408 | available-typed-arrays "^1.0.5" 1409 | call-bind "^1.0.2" 1410 | for-each "^0.3.3" 1411 | gopd "^1.0.1" 1412 | has-tostringtag "^1.0.0" 1413 | is-typed-array "^1.1.10" 1414 | 1415 | which@^2.0.1: 1416 | version "2.0.2" 1417 | resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" 1418 | integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== 1419 | dependencies: 1420 | isexe "^2.0.0" 1421 | 1422 | word-wrap@^1.2.3: 1423 | version "1.2.3" 1424 | resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" 1425 | integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== 1426 | 1427 | wrappy@1: 1428 | version "1.0.2" 1429 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 1430 | integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== 1431 | 1432 | yocto-queue@^0.1.0: 1433 | version "0.1.0" 1434 | resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" 1435 | integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== 1436 | --------------------------------------------------------------------------------