├── .example.env ├── .github ├── ISSUE_TEMPLATE │ ├── add-competitor.yml │ └── config.yml └── workflows │ └── request.yml ├── .gitignore ├── .node-version ├── .npmrc ├── LICENSE ├── README.md ├── assets └── tweet.png ├── docs ├── CHECKLIST.md ├── REGULATION.md └── SCORING.md ├── package.json ├── pnpm-lock.yaml └── tsconfig.json /.example.env: -------------------------------------------------------------------------------- 1 | WSH_SCORING_TARGET_PATHS='["/"]' 2 | WSH_SCORING_DEBUG=true 3 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/add-competitor.yml: -------------------------------------------------------------------------------- 1 | name: 参加登録 2 | description: Web Speed Hackathon 2023 の参加登録フォームです 3 | title: '[参加登録]' 4 | labels: 5 | - registration 6 | body: 7 | - type: markdown 8 | attributes: 9 | value: | 10 | # ようこそ Web Speed Hackathon 2023 へ! 11 | 12 | - 開催期間 | **2023/03/04 10:30 JST - 2023/03/05 17:30 JST** 13 | 14 | **参加する前に、レギュレーションを確認してください** 15 | 16 | - [注意事項](https://github.com/CyberAgentHack/web-speed-hackathon-2023/blob/main/README.md#注意事項) 17 | - [レギュレーション](https://github.com/CyberAgentHack/web-speed-hackathon-2023-scoring-tool/blob/main/docs/REGULATION.md) 18 | - type: dropdown 19 | id: regulation 20 | attributes: 21 | label: '注意事項・レギュレーション {{regulation}}' 22 | options: 23 | - 注意事項・レギュレーションを確認して、同意しました 24 | validations: 25 | required: true 26 | - type: markdown 27 | attributes: 28 | value: | 29 | ## 計測対象の URL 30 | 31 | [課題のソースコード](https://github.com/CyberAgentHack/web-speed-hackathon-2023) から、アプリケーションをデプロイして、URL を提出してください 32 | - type: input 33 | id: target-url 34 | attributes: 35 | label: '計測対象の URL {{url}}' 36 | placeholder: e.g.) https://web-speed-hackathon-2023.example.com/ 37 | validations: 38 | required: true 39 | - type: dropdown 40 | id: kind 41 | attributes: 42 | label: '登録区分 {{kind}}' 43 | options: 44 | - 学生 45 | - 一般 46 | validations: 47 | required: true 48 | - type: markdown 49 | attributes: 50 | value: | 51 | ## 準備が整いました 52 | 53 | 投稿すると、GitHub Actions によって自動計測が始まります! 54 | 55 | - :information_source: もし、1分以上何も反応がない場合は、issue を作り直してみてください 56 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /.github/workflows/request.yml: -------------------------------------------------------------------------------- 1 | name: Request 2 | on: 3 | issues: 4 | types: 5 | - opened 6 | issue_comment: 7 | types: 8 | - created 9 | env: 10 | TZ: 'Asia/Tokyo' 11 | jobs: 12 | register: 13 | runs-on: ubuntu-22.04 14 | timeout-minutes: 30 15 | if: | 16 | contains(github.event.issue.labels.*.name, 'registration') && ( 17 | (github.event_name == 'issues') || ( 18 | github.event_name == 'issue_comment' && 19 | !github.event.issue.pull_request && 20 | contains(github.event.comment.body, '/retry') && 21 | (github.actor == github.event.issue.user.login || github.actor == '3846masa') 22 | ) 23 | ) 24 | steps: 25 | - uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # renovate: tag=v3.3.0 26 | with: 27 | repository: CyberAgentHack/web-speed-hackathon-2023-scoring-tool-workspace 28 | ssh-key: ${{ secrets.CHECKOUT_WORKSPACE }} 29 | - uses: pnpm/action-setup@c3b53f6a16e57305370b4ae5a540c2077a1d50dd # renovate: tag=v2.2.4 30 | with: 31 | version: 7.25.0 32 | - uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # renovate: tag=v3.6.0 33 | with: 34 | node-version-file: '.node-version' 35 | cache: "pnpm" 36 | - run: pnpm install --frozen-lockfile 37 | - run: pnpm start 38 | env: 39 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 40 | SCORE_SERVER_AUTH_TOKEN: ${{ secrets.SCORE_SERVER_AUTH_TOKEN }} 41 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | # Created by https://www.toptal.com/developers/gitignore/api/node,windows,macos,linux 3 | # Edit at https://www.toptal.com/developers/gitignore?templates=node,windows,macos,linux 4 | 5 | ### Linux ### 6 | *~ 7 | 8 | # temporary files which can be created if a process still has a handle open of a deleted file 9 | .fuse_hidden* 10 | 11 | # KDE directory preferences 12 | .directory 13 | 14 | # Linux trash folder which might appear on any partition or disk 15 | .Trash-* 16 | 17 | # .nfs files are created when an open file is removed but is still being accessed 18 | .nfs* 19 | 20 | ### macOS ### 21 | # General 22 | .DS_Store 23 | .AppleDouble 24 | .LSOverride 25 | 26 | # Icon must end with two \r 27 | Icon 28 | 29 | 30 | # Thumbnails 31 | ._* 32 | 33 | # Files that might appear in the root of a volume 34 | .DocumentRevisions-V100 35 | .fseventsd 36 | .Spotlight-V100 37 | .TemporaryItems 38 | .Trashes 39 | .VolumeIcon.icns 40 | .com.apple.timemachine.donotpresent 41 | 42 | # Directories potentially created on remote AFP share 43 | .AppleDB 44 | .AppleDesktop 45 | Network Trash Folder 46 | Temporary Items 47 | .apdisk 48 | 49 | ### Node ### 50 | # Logs 51 | logs 52 | *.log 53 | npm-debug.log* 54 | yarn-debug.log* 55 | yarn-error.log* 56 | lerna-debug.log* 57 | .pnpm-debug.log* 58 | 59 | # Diagnostic reports (https://nodejs.org/api/report.html) 60 | report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json 61 | 62 | # Runtime data 63 | pids 64 | *.pid 65 | *.seed 66 | *.pid.lock 67 | 68 | # Directory for instrumented libs generated by jscoverage/JSCover 69 | lib-cov 70 | 71 | # Coverage directory used by tools like istanbul 72 | coverage 73 | *.lcov 74 | 75 | # nyc test coverage 76 | .nyc_output 77 | 78 | # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) 79 | .grunt 80 | 81 | # Bower dependency directory (https://bower.io/) 82 | bower_components 83 | 84 | # node-waf configuration 85 | .lock-wscript 86 | 87 | # Compiled binary addons (https://nodejs.org/api/addons.html) 88 | build/Release 89 | 90 | # Dependency directories 91 | node_modules/ 92 | jspm_packages/ 93 | 94 | # Snowpack dependency directory (https://snowpack.dev/) 95 | web_modules/ 96 | 97 | # TypeScript cache 98 | *.tsbuildinfo 99 | 100 | # Optional npm cache directory 101 | .npm 102 | 103 | # Optional eslint cache 104 | .eslintcache 105 | 106 | # Microbundle cache 107 | .rpt2_cache/ 108 | .rts2_cache_cjs/ 109 | .rts2_cache_es/ 110 | .rts2_cache_umd/ 111 | 112 | # Optional REPL history 113 | .node_repl_history 114 | 115 | # Output of 'npm pack' 116 | *.tgz 117 | 118 | # Yarn Integrity file 119 | .yarn-integrity 120 | 121 | # dotenv environment variables file 122 | .env 123 | .env.test 124 | .env.production 125 | 126 | # parcel-bundler cache (https://parceljs.org/) 127 | .cache 128 | .parcel-cache 129 | 130 | # Next.js build output 131 | .next 132 | out 133 | 134 | # Nuxt.js build / generate output 135 | .nuxt 136 | dist 137 | 138 | # Gatsby files 139 | .cache/ 140 | # Comment in the public line in if your project uses Gatsby and not Next.js 141 | # https://nextjs.org/blog/next-9-1#public-directory-support 142 | # public 143 | 144 | # vuepress build output 145 | .vuepress/dist 146 | 147 | # Serverless directories 148 | .serverless/ 149 | 150 | # FuseBox cache 151 | .fusebox/ 152 | 153 | # DynamoDB Local files 154 | .dynamodb/ 155 | 156 | # TernJS port file 157 | .tern-port 158 | 159 | # Stores VSCode versions used for testing VSCode extensions 160 | .vscode-test 161 | 162 | # yarn v2 163 | .yarn/cache 164 | .yarn/unplugged 165 | .yarn/build-state.yml 166 | .yarn/install-state.gz 167 | .pnp.* 168 | 169 | ### Node Patch ### 170 | # Serverless Webpack directories 171 | .webpack/ 172 | 173 | # Optional stylelint cache 174 | .stylelintcache 175 | 176 | # SvelteKit build / generate output 177 | .svelte-kit 178 | 179 | ### Windows ### 180 | # Windows thumbnail cache files 181 | Thumbs.db 182 | Thumbs.db:encryptable 183 | ehthumbs.db 184 | ehthumbs_vista.db 185 | 186 | # Dump file 187 | *.stackdump 188 | 189 | # Folder config file 190 | [Dd]esktop.ini 191 | 192 | # Recycle Bin used on file shares 193 | $RECYCLE.BIN/ 194 | 195 | # Windows Installer files 196 | *.cab 197 | *.msi 198 | *.msix 199 | *.msm 200 | *.msp 201 | 202 | # Windows shortcuts 203 | *.lnk 204 | 205 | # End of https://www.toptal.com/developers/gitignore/api/node,windows,macos,linux 206 | 207 | tmp 208 | -------------------------------------------------------------------------------- /.node-version: -------------------------------------------------------------------------------- 1 | 18.13.0 2 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | save-exact=true 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Mozilla Public License Version 2.0 2 | ================================== 3 | 4 | 1. Definitions 5 | -------------- 6 | 7 | 1.1. "Contributor" 8 | means each individual or legal entity that creates, contributes to 9 | the creation of, or owns Covered Software. 10 | 11 | 1.2. "Contributor Version" 12 | means the combination of the Contributions of others (if any) used 13 | by a Contributor and that particular Contributor's Contribution. 14 | 15 | 1.3. "Contribution" 16 | means Covered Software of a particular Contributor. 17 | 18 | 1.4. "Covered Software" 19 | means Source Code Form to which the initial Contributor has attached 20 | the notice in Exhibit A, the Executable Form of such Source Code 21 | Form, and Modifications of such Source Code Form, in each case 22 | including portions thereof. 23 | 24 | 1.5. "Incompatible With Secondary Licenses" 25 | means 26 | 27 | (a) that the initial Contributor has attached the notice described 28 | in Exhibit B to the Covered Software; or 29 | 30 | (b) that the Covered Software was made available under the terms of 31 | version 1.1 or earlier of the License, but not also under the 32 | terms of a Secondary License. 33 | 34 | 1.6. "Executable Form" 35 | means any form of the work other than Source Code Form. 36 | 37 | 1.7. "Larger Work" 38 | means a work that combines Covered Software with other material, in 39 | a separate file or files, that is not Covered Software. 40 | 41 | 1.8. "License" 42 | means this document. 43 | 44 | 1.9. "Licensable" 45 | means having the right to grant, to the maximum extent possible, 46 | whether at the time of the initial grant or subsequently, any and 47 | all of the rights conveyed by this License. 48 | 49 | 1.10. "Modifications" 50 | means any of the following: 51 | 52 | (a) any file in Source Code Form that results from an addition to, 53 | deletion from, or modification of the contents of Covered 54 | Software; or 55 | 56 | (b) any new file in Source Code Form that contains any Covered 57 | Software. 58 | 59 | 1.11. "Patent Claims" of a Contributor 60 | means any patent claim(s), including without limitation, method, 61 | process, and apparatus claims, in any patent Licensable by such 62 | Contributor that would be infringed, but for the grant of the 63 | License, by the making, using, selling, offering for sale, having 64 | made, import, or transfer of either its Contributions or its 65 | Contributor Version. 66 | 67 | 1.12. "Secondary License" 68 | means either the GNU General Public License, Version 2.0, the GNU 69 | Lesser General Public License, Version 2.1, the GNU Affero General 70 | Public License, Version 3.0, or any later versions of those 71 | licenses. 72 | 73 | 1.13. "Source Code Form" 74 | means the form of the work preferred for making modifications. 75 | 76 | 1.14. "You" (or "Your") 77 | means an individual or a legal entity exercising rights under this 78 | License. For legal entities, "You" includes any entity that 79 | controls, is controlled by, or is under common control with You. For 80 | purposes of this definition, "control" means (a) the power, direct 81 | or indirect, to cause the direction or management of such entity, 82 | whether by contract or otherwise, or (b) ownership of more than 83 | fifty percent (50%) of the outstanding shares or beneficial 84 | ownership of such entity. 85 | 86 | 2. License Grants and Conditions 87 | -------------------------------- 88 | 89 | 2.1. Grants 90 | 91 | Each Contributor hereby grants You a world-wide, royalty-free, 92 | non-exclusive license: 93 | 94 | (a) under intellectual property rights (other than patent or trademark) 95 | Licensable by such Contributor to use, reproduce, make available, 96 | modify, display, perform, distribute, and otherwise exploit its 97 | Contributions, either on an unmodified basis, with Modifications, or 98 | as part of a Larger Work; and 99 | 100 | (b) under Patent Claims of such Contributor to make, use, sell, offer 101 | for sale, have made, import, and otherwise transfer either its 102 | Contributions or its Contributor Version. 103 | 104 | 2.2. Effective Date 105 | 106 | The licenses granted in Section 2.1 with respect to any Contribution 107 | become effective for each Contribution on the date the Contributor first 108 | distributes such Contribution. 109 | 110 | 2.3. Limitations on Grant Scope 111 | 112 | The licenses granted in this Section 2 are the only rights granted under 113 | this License. No additional rights or licenses will be implied from the 114 | distribution or licensing of Covered Software under this License. 115 | Notwithstanding Section 2.1(b) above, no patent license is granted by a 116 | Contributor: 117 | 118 | (a) for any code that a Contributor has removed from Covered Software; 119 | or 120 | 121 | (b) for infringements caused by: (i) Your and any other third party's 122 | modifications of Covered Software, or (ii) the combination of its 123 | Contributions with other software (except as part of its Contributor 124 | Version); or 125 | 126 | (c) under Patent Claims infringed by Covered Software in the absence of 127 | its Contributions. 128 | 129 | This License does not grant any rights in the trademarks, service marks, 130 | or logos of any Contributor (except as may be necessary to comply with 131 | the notice requirements in Section 3.4). 132 | 133 | 2.4. Subsequent Licenses 134 | 135 | No Contributor makes additional grants as a result of Your choice to 136 | distribute the Covered Software under a subsequent version of this 137 | License (see Section 10.2) or under the terms of a Secondary License (if 138 | permitted under the terms of Section 3.3). 139 | 140 | 2.5. Representation 141 | 142 | Each Contributor represents that the Contributor believes its 143 | Contributions are its original creation(s) or it has sufficient rights 144 | to grant the rights to its Contributions conveyed by this License. 145 | 146 | 2.6. Fair Use 147 | 148 | This License is not intended to limit any rights You have under 149 | applicable copyright doctrines of fair use, fair dealing, or other 150 | equivalents. 151 | 152 | 2.7. Conditions 153 | 154 | Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted 155 | in Section 2.1. 156 | 157 | 3. Responsibilities 158 | ------------------- 159 | 160 | 3.1. Distribution of Source Form 161 | 162 | All distribution of Covered Software in Source Code Form, including any 163 | Modifications that You create or to which You contribute, must be under 164 | the terms of this License. You must inform recipients that the Source 165 | Code Form of the Covered Software is governed by the terms of this 166 | License, and how they can obtain a copy of this License. You may not 167 | attempt to alter or restrict the recipients' rights in the Source Code 168 | Form. 169 | 170 | 3.2. Distribution of Executable Form 171 | 172 | If You distribute Covered Software in Executable Form then: 173 | 174 | (a) such Covered Software must also be made available in Source Code 175 | Form, as described in Section 3.1, and You must inform recipients of 176 | the Executable Form how they can obtain a copy of such Source Code 177 | Form by reasonable means in a timely manner, at a charge no more 178 | than the cost of distribution to the recipient; and 179 | 180 | (b) You may distribute such Executable Form under the terms of this 181 | License, or sublicense it under different terms, provided that the 182 | license for the Executable Form does not attempt to limit or alter 183 | the recipients' rights in the Source Code Form under this License. 184 | 185 | 3.3. Distribution of a Larger Work 186 | 187 | You may create and distribute a Larger Work under terms of Your choice, 188 | provided that You also comply with the requirements of this License for 189 | the Covered Software. If the Larger Work is a combination of Covered 190 | Software with a work governed by one or more Secondary Licenses, and the 191 | Covered Software is not Incompatible With Secondary Licenses, this 192 | License permits You to additionally distribute such Covered Software 193 | under the terms of such Secondary License(s), so that the recipient of 194 | the Larger Work may, at their option, further distribute the Covered 195 | Software under the terms of either this License or such Secondary 196 | License(s). 197 | 198 | 3.4. Notices 199 | 200 | You may not remove or alter the substance of any license notices 201 | (including copyright notices, patent notices, disclaimers of warranty, 202 | or limitations of liability) contained within the Source Code Form of 203 | the Covered Software, except that You may alter any license notices to 204 | the extent required to remedy known factual inaccuracies. 205 | 206 | 3.5. Application of Additional Terms 207 | 208 | You may choose to offer, and to charge a fee for, warranty, support, 209 | indemnity or liability obligations to one or more recipients of Covered 210 | Software. However, You may do so only on Your own behalf, and not on 211 | behalf of any Contributor. You must make it absolutely clear that any 212 | such warranty, support, indemnity, or liability obligation is offered by 213 | You alone, and You hereby agree to indemnify every Contributor for any 214 | liability incurred by such Contributor as a result of warranty, support, 215 | indemnity or liability terms You offer. You may include additional 216 | disclaimers of warranty and limitations of liability specific to any 217 | jurisdiction. 218 | 219 | 4. Inability to Comply Due to Statute or Regulation 220 | --------------------------------------------------- 221 | 222 | If it is impossible for You to comply with any of the terms of this 223 | License with respect to some or all of the Covered Software due to 224 | statute, judicial order, or regulation then You must: (a) comply with 225 | the terms of this License to the maximum extent possible; and (b) 226 | describe the limitations and the code they affect. Such description must 227 | be placed in a text file included with all distributions of the Covered 228 | Software under this License. Except to the extent prohibited by statute 229 | or regulation, such description must be sufficiently detailed for a 230 | recipient of ordinary skill to be able to understand it. 231 | 232 | 5. Termination 233 | -------------- 234 | 235 | 5.1. The rights granted under this License will terminate automatically 236 | if You fail to comply with any of its terms. However, if You become 237 | compliant, then the rights granted under this License from a particular 238 | Contributor are reinstated (a) provisionally, unless and until such 239 | Contributor explicitly and finally terminates Your grants, and (b) on an 240 | ongoing basis, if such Contributor fails to notify You of the 241 | non-compliance by some reasonable means prior to 60 days after You have 242 | come back into compliance. Moreover, Your grants from a particular 243 | Contributor are reinstated on an ongoing basis if such Contributor 244 | notifies You of the non-compliance by some reasonable means, this is the 245 | first time You have received notice of non-compliance with this License 246 | from such Contributor, and You become compliant prior to 30 days after 247 | Your receipt of the notice. 248 | 249 | 5.2. If You initiate litigation against any entity by asserting a patent 250 | infringement claim (excluding declaratory judgment actions, 251 | counter-claims, and cross-claims) alleging that a Contributor Version 252 | directly or indirectly infringes any patent, then the rights granted to 253 | You by any and all Contributors for the Covered Software under Section 254 | 2.1 of this License shall terminate. 255 | 256 | 5.3. In the event of termination under Sections 5.1 or 5.2 above, all 257 | end user license agreements (excluding distributors and resellers) which 258 | have been validly granted by You or Your distributors under this License 259 | prior to termination shall survive termination. 260 | 261 | ************************************************************************ 262 | * * 263 | * 6. Disclaimer of Warranty * 264 | * ------------------------- * 265 | * * 266 | * Covered Software is provided under this License on an "as is" * 267 | * basis, without warranty of any kind, either expressed, implied, or * 268 | * statutory, including, without limitation, warranties that the * 269 | * Covered Software is free of defects, merchantable, fit for a * 270 | * particular purpose or non-infringing. The entire risk as to the * 271 | * quality and performance of the Covered Software is with You. * 272 | * Should any Covered Software prove defective in any respect, You * 273 | * (not any Contributor) assume the cost of any necessary servicing, * 274 | * repair, or correction. This disclaimer of warranty constitutes an * 275 | * essential part of this License. No use of any Covered Software is * 276 | * authorized under this License except under this disclaimer. * 277 | * * 278 | ************************************************************************ 279 | 280 | ************************************************************************ 281 | * * 282 | * 7. Limitation of Liability * 283 | * -------------------------- * 284 | * * 285 | * Under no circumstances and under no legal theory, whether tort * 286 | * (including negligence), contract, or otherwise, shall any * 287 | * Contributor, or anyone who distributes Covered Software as * 288 | * permitted above, be liable to You for any direct, indirect, * 289 | * special, incidental, or consequential damages of any character * 290 | * including, without limitation, damages for lost profits, loss of * 291 | * goodwill, work stoppage, computer failure or malfunction, or any * 292 | * and all other commercial damages or losses, even if such party * 293 | * shall have been informed of the possibility of such damages. This * 294 | * limitation of liability shall not apply to liability for death or * 295 | * personal injury resulting from such party's negligence to the * 296 | * extent applicable law prohibits such limitation. Some * 297 | * jurisdictions do not allow the exclusion or limitation of * 298 | * incidental or consequential damages, so this exclusion and * 299 | * limitation may not apply to You. * 300 | * * 301 | ************************************************************************ 302 | 303 | 8. Litigation 304 | ------------- 305 | 306 | Any litigation relating to this License may be brought only in the 307 | courts of a jurisdiction where the defendant maintains its principal 308 | place of business and such litigation shall be governed by laws of that 309 | jurisdiction, without reference to its conflict-of-law provisions. 310 | Nothing in this Section shall prevent a party's ability to bring 311 | cross-claims or counter-claims. 312 | 313 | 9. Miscellaneous 314 | ---------------- 315 | 316 | This License represents the complete agreement concerning the subject 317 | matter hereof. If any provision of this License is held to be 318 | unenforceable, such provision shall be reformed only to the extent 319 | necessary to make it enforceable. Any law or regulation which provides 320 | that the language of a contract shall be construed against the drafter 321 | shall not be used to construe this License against a Contributor. 322 | 323 | 10. Versions of the License 324 | --------------------------- 325 | 326 | 10.1. New Versions 327 | 328 | Mozilla Foundation is the license steward. Except as provided in Section 329 | 10.3, no one other than the license steward has the right to modify or 330 | publish new versions of this License. Each version will be given a 331 | distinguishing version number. 332 | 333 | 10.2. Effect of New Versions 334 | 335 | You may distribute the Covered Software under the terms of the version 336 | of the License under which You originally received the Covered Software, 337 | or under the terms of any subsequent version published by the license 338 | steward. 339 | 340 | 10.3. Modified Versions 341 | 342 | If you create software not governed by this License, and you want to 343 | create a new license for such software, you may create and use a 344 | modified version of this License if you rename the license and remove 345 | any references to the name of the license steward (except to note that 346 | such modified license differs from this License). 347 | 348 | 10.4. Distributing Source Code Form that is Incompatible With Secondary 349 | Licenses 350 | 351 | If You choose to distribute Source Code Form that is Incompatible With 352 | Secondary Licenses under the terms of this version of the License, the 353 | notice described in Exhibit B of this License must be attached. 354 | 355 | Exhibit A - Source Code Form License Notice 356 | ------------------------------------------- 357 | 358 | This Source Code Form is subject to the terms of the Mozilla Public 359 | License, v. 2.0. If a copy of the MPL was not distributed with this 360 | file, You can obtain one at http://mozilla.org/MPL/2.0/. 361 | 362 | If it is not possible or desirable to put the notice in a particular 363 | file, then You may include the notice in a location (such as a LICENSE 364 | file in a relevant directory) where a recipient would be likely to look 365 | for such a notice. 366 | 367 | You may add additional accurate notices of copyright ownership. 368 | 369 | Exhibit B - "Incompatible With Secondary Licenses" Notice 370 | --------------------------------------------------------- 371 | 372 | This Source Code Form is "Incompatible With Secondary Licenses", as 373 | defined by the Mozilla Public License, v. 2.0. 374 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Web Speed Hackathon 2023 Leaderboard 2 | 3 | **"Web Speed Hackathon 2023" は、非常に重たい Web アプリをチューニングして、いかに高速にするかを競う競技です。** 4 | 5 | 今回のテーマは、架空のショッピングサイト「買えるオーガニック」です。 6 | 「買えるオーガニック」のパフォーマンスを改善してください。 7 | 8 | - 課題レポジトリ: https://github.com/CyberAgentHack/web-speed-hackathon-2023 9 | - リーダーボード: https://web-speed-hackathon-scoring-server-2023.fly.dev 10 | 11 | ## 開催期間 12 | 13 | 2023/03/04 10:00 JST - 2023/03/05 17:30 JST 14 | 15 | ## 参加登録 16 | 17 | - アプリケーションをデプロイして URL を用意します 18 | - このレポジトリの issue から参加登録します 19 | - もう一度計測する場合は、issue に `/retry` とコメントします 20 | 21 | 22 | (c) CyberAgent 23 | -------------------------------------------------------------------------------- /assets/tweet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberAgentHack/web-speed-hackathon-2023-scoring-tool/bd65d5f49f3f59e15c471f31033d664326c38952/assets/tweet.png -------------------------------------------------------------------------------- /docs/CHECKLIST.md: -------------------------------------------------------------------------------- 1 | ## チェックリスト 2 | 3 | ランキング上位のアプリケーションで、次の項目を検査する場合があります 4 | 5 | ### 全体 6 | 7 | - [ ] SP端末幅・PC端末幅において明らかな表示誤りに起因する差分がないこと(商品情報、画像、スタイルなど) 8 | 9 | ### ヘッダー 10 | 11 | - [ ] 未ログイン状態時に、ユーザーアイコンをクリックし、ログインモーダルが表示されること 12 | - [ ] ログイン状態時に、カートアイコンをクリックし、購入手続きページへ遷移すること 13 | - [ ] 「買えるオーガニック」ロゴをクリックし、トップページへ遷移すること 14 | 15 | ### フッター 16 | 17 | - [ ] 「買えるオーガニック」ロゴをクリックし、トップページへ遷移すること 18 | 19 | ### ログインモーダル 20 | 21 | - [ ] フォームUIの外をクリックした時に、そのモーダルが閉じること 22 | - [ ] 会員登録ボタンをクリックした時に、ログインモーダルが閉じ、会員登録モーダルが開くこと 23 | - [ ] 各inputに入力できる内容・機能に差分がないこと 24 | - [ ] 各inputに誤った内容を入力時、エラーが表示されること 25 | - [ ] 存在するユーザー情報を入力、ログインボタンをクリックした時に、ログインに成功すること 26 | - [ ] 存在しないユーザー情報を入力、ログインボタンをクリックした時に、エラーが表示されること 27 | - [ ] ログインに成功時に、ログインモーダルが閉じること 28 | 29 | ### 会員登録モーダル 30 | 31 | - [ ] フォームUIの外をクリックした時に、そのモーダルが閉じること 32 | - [ ] ログインボタンをクリックした時に、会員登録モーダルが閉じ、ログインモーダルが開くこと 33 | - [ ] 各inputに入力できる内容・機能に差分がないこと 34 | - [ ] 各inputに誤った内容を入力時、エラーが表示されること 35 | - [ ] 存在しないユーザー情報を入力、登録ボタンをクリックした時に、会員登録に成功すること 36 | - [ ] 存在するユーザー情報を入力、登録ボタンをクリックした時に、エラーが表示されること 37 | - [ ] 会員登録に成功時に、会員登録モーダルが閉じること 38 | 39 | ### トップページ(今週のオススメ) 40 | 41 | - [ ] オススメ商品ホバー時にアニメーションが発生すること 42 | - [ ] オススメ商品クリック時にその商品詳細ページへ遷移すること 43 | 44 | ### トップページ(カルーセル/リスト) 45 | 46 | - [ ] 時間に応じてタイムセールを示すラベルがリストアイテムに表示されていること 47 | - [ ] 各セクションのアイテムクリック時にその商品詳細ページへ遷移すること 48 | - [ ] カルーセルUIの左右のボタンを押した時にリストアイテムが更新されること 49 | - [ ] カルーセルUIの左右のボタンが表示する商品がない場合にdisableになること 50 | - [ ] windowサイズを変更時に、その幅に応じてリストアイテムや左右のボタンのUIも更新されること 51 | - [ ] window幅1024px以上の時にカルーセルUIが表示されること 52 | - [ ] window幅1024px未満の時にリストUIが表示されること 53 | 54 | ### 商品詳細ページ(商品詳細) 55 | 56 | - [ ] 各メディアボタンをクリックした時に、表示される内容が変更されること 57 | - [ ] 動画ボタンをクリック時に、動画が自動で再生されること 58 | - [ ] 動画の内容に著しい差分がないこと 59 | - [ ] タイムセール時に、タイムセールの金額・ラベルが表示されていること 60 | - [ ] 未ログイン時に、ログインボタンが表示されていること 61 | - [ ] ログインボタンをクリックした時に、ログインモーダルが表示されること 62 | - [ ] ログイン時に、「カートに追加ボタン」が表示されていること 63 | - [ ] 「カートに追加ボタン」を押した時にカートの個数が1つ増えること 64 | - [ ] カートに既に同じ商品を追加している場合、追加済みの個数が表示されること 65 | - [ ] カートに既に同じ商品を追加している場合、購入手続きへボタンが表示されること 66 | - [ ] 購入手続きへのボタンをクリック時に、購入手続きページへ遷移すること 67 | - [ ] 存在しない商品IDのページへ遷移時、エラー画面が表示されること 68 | 69 | ### 商品詳細ページ(レビュー) 70 | 71 | - [ ] 非ログイン時に、レビューフォームが表示されないこと 72 | - [ ] ログイン時に、レビューフォームが表示されていること 73 | - [ ] レビューを送信時に、レビュー一覧が更新されること 74 | - [ ] レビューを送信時に、レビューフォームがリセットされること 75 | - [ ] 特定の文字数を超えた時に、エラーが表示されること 76 | - [ ] 特定の文字数を超えた時に、レビューが送信できないこと 77 | - [ ] 何も入力していない場合にレビューが送信できないこと 78 | - [ ] レビューフォームがリサイズできること 79 | 80 | ### 購入手続きページ(カート) 81 | 82 | - [ ] カートに何も追加していない場合、エラー文言が表示されること 83 | - [ ] カートに追加した商品・個数が表示されていること 84 | - [ ] カートアイテムをクリック時に、その商品詳細ページへ遷移すること 85 | - [ ] 時間に応じて「タイムセール」ラベルとその価格が表示されていること 86 | - [ ] 商品の個数を変更、その上でフォーカスを失わせた時に、個数が 1 ~ 999の範囲でバリデーションされること 87 | - [ ] 商品の個数を変更、その上でフォーカスを失わせた時に、合計金額が更新されること 88 | - [ ] 削除ボタンを押した時に、その商品がカートから削除されること 89 | 90 | ### 購入手続きページ(お届け先) 91 | 92 | - [ ] ログイン状態、かつ、カートの中身がある場合にのみお届け先セクションが表示されていること 93 | - [ ] 郵便番号を入力時、その値に応じた住所が都道府県・市区町村inputに自動で入力されること 94 | - [ ] 各inputに入力できる内容・機能に差分がないこと 95 | - [ ] 購入ボタンをクリック時に、商品を購入した後に購入完了ページに遷移すること 96 | 97 | ### 購入完了ページ 98 | 99 | - [ ] 架空のサイトである旨を示す文言がNoto Serif Japaneseフォントで表示されていること 100 | - [ ] オススメ商品ホバー時にアニメーションが発生すること 101 | - [ ] オススメ商品クリック時にその商品詳細ページへ遷移すること 102 | - [ ] 購入ボタンをクリック時に、商品を購入した上で、購入完了ページに遷移すること 103 | - [ ] トップへ戻るボタンをクリック時、トップページへ遷移すること 104 | 105 | ### 404ページ 106 | 107 | - [ ] 存在しないURLにアクセス時、ページが存在しないことを示すUIが表示されること 108 | - [ ] ページが見つからない旨を示す文言がNoto Serif Japaneseフォントで表示されていること 109 | -------------------------------------------------------------------------------- /docs/REGULATION.md: -------------------------------------------------------------------------------- 1 | ## レギュレーション 2 | 3 | - **課題のレポジトリにあるコード・その他ファイルは、すべて変更してよい** 4 | - API が返却する内容に新しい項目を追加してよい 5 | - **外部のサービス(SaaS など)を無料の範囲で自由に利用してよい** 6 | - 無料で使えるサービスは https://free-for.dev/ などで調べられます 7 | - 有料のサービスを使った場合の経費などは、自己負担となります 8 | - **Google Chrome 最新版において、著しい機能落ちやデザイン差異を発生させてはならない** 9 | - **競技開催中は、アプリケーションにアクセスできる状態であること** 10 | - 任意のタイミングで、レギュレーションチェックをする場合があります 11 | - レギュレーションチェックのとき、アプリケーションにアクセスできない場合は、順位対象外になる可能性があります 12 | 13 | ## チェック項目 14 | 15 | - API `POST /initialize` にリクエストを送ると、データベースの内容が初期値にリセットされること 16 | - ユーザーフローの検査で利用する`data-testid`属性が適切に付与されていること 17 | - 全てのページにおいて著しい表示差分がないこと 18 | - 著しい機能落ちがないこと 19 | - 具体的な確認項目は [チェックリスト](./CHECKLIST.md) を確認すること 20 | -------------------------------------------------------------------------------- /docs/SCORING.md: -------------------------------------------------------------------------------- 1 | # 採点方法 2 | 3 | 1. [Lighthouse](https://github.com/GoogleChrome/lighthouse) を用いて、次の2つを検査します 4 | - ページランディング 5 | - ユーザーフロー 6 | 1. 検査したそれぞれのスコアを合算し、得点とします 7 | 1. レギュレーションに違反している場合、順位対象外とします 8 | 9 | ## ページランディング 10 | 1. [Lighthouse](https://github.com/GoogleChrome/lighthouse) を用いて、次の計4つのページを検査します 11 | - ホームページ 12 | - 商品詳細ページ 13 | - 購入手続きページ 14 | - 404ページ 15 | 1. 各ページごと [Lighthouse v10 Performance Scoring](https://web.dev/performance-scoring/#lighthouse-10) に基づき、次の総和をページのスコアとします 16 | - First Contentful Paint のスコア × 10 (0-10 点) 17 | - Speed Index のスコア × 10 (0-10 点) 18 | - Largest Contentful Paint のスコア × 25 (0-25 点) 19 | - Total Blocking Time のスコア × 30 (0-30 点) 20 | - Cumulative Layout Shift のスコア × 25 (0-25 点) 21 | 22 | ※重み付けが同じなので、ページのスコアは Lighthouse が出すスコアと一致します。ただし、Lighthouse のスコアは整数に丸められているのに対し、本競技のスコアは丸める前の値をそのまま使用しています。 23 | 24 | ## ユーザーフロー 25 | 1. [Lighthouse](https://github.com/GoogleChrome/lighthouse) を用いて、次の計4つのユーザーフローを検査します 26 | - ログインする 27 | - レビューを書く 28 | - 注文する 29 | - 初めてのユーザーが商品を買うまで 30 | 31 | 1. 各ユーザーフローごと 、次の総和をユーザーフローのスコアとします 32 | - Total Blocking Time のスコア × 25 (0-25 点) 33 | - Interaction to Next Paint のスコア × 25 (0-25 点) 34 | 35 | ### 「ログインする」について 36 | 以下の様に検査します 37 | 38 | 1. ホームページに遷移します 39 | 1. 特定のユーザーでログインを行います 40 | 41 | ### 「レビューを書く」について 42 | 以下の様に検査します 43 | 44 | 1. 特定の商品詳細ページに遷移します 45 | 1. 特定のユーザーでログインを行います 46 | 1. レビューフォームを利用してレビューを書き込み送信を行います 47 | 48 | ### 「注文する」について 49 | 以下の様に検査します 50 | 51 | 1. ホームページに遷移します 52 | 1. 既にカートに商品を追加済みのユーザーでログインを行います 53 | 1. 購入手続きページへ遷移します 54 | 1. 購入手続きを行います 55 | 56 | ### 「初めてのユーザーが商品を買うまで」について 57 | 以下の様に検査します 58 | 59 | 1. 特定の商品詳細ページに遷移します 60 | 1. 会員登録を行います 61 | 1. 商品をカートに追加します 62 | 1. 購入手続きページへ遷移します 63 | 1. 購入手続きを行います 64 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "private": true, 3 | "license": "MPL-2.0", 4 | "type": "module", 5 | "scripts": { 6 | "start": "tsx ./src/index.mts" 7 | }, 8 | "dependencies": { 9 | "@actions/github": "5.1.1", 10 | "common-tags": "1.8.2", 11 | "lighthouse": "10.0.1", 12 | "p-all": "4.0.0", 13 | "pptr-testing-library": "0.7.0", 14 | "puppeteer": "npm:puppeteer-core@19.7.2", 15 | "storycrawler": "4.0.0", 16 | "tsx": "3.12.3", 17 | "typescript": "4.9.5" 18 | }, 19 | "devDependencies": { 20 | "@tsconfig/node-lts-strictest-esm": "18.12.1", 21 | "@types/common-tags": "1.8.1" 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- 1 | lockfileVersion: 5.4 2 | 3 | specifiers: 4 | '@actions/github': 5.1.1 5 | '@tsconfig/node-lts-strictest-esm': 18.12.1 6 | '@types/common-tags': 1.8.1 7 | common-tags: 1.8.2 8 | lighthouse: 10.0.1 9 | p-all: 4.0.0 10 | pptr-testing-library: 0.7.0 11 | puppeteer: npm:puppeteer-core@19.7.2 12 | storycrawler: 4.0.0 13 | tsx: 3.12.3 14 | typescript: 4.9.5 15 | 16 | dependencies: 17 | '@actions/github': 5.1.1 18 | common-tags: 1.8.2 19 | lighthouse: 10.0.1_typescript@4.9.5 20 | p-all: 4.0.0 21 | pptr-testing-library: 0.7.0_puppeteer-core@19.7.2 22 | puppeteer: /puppeteer-core/19.7.2_typescript@4.9.5 23 | storycrawler: 4.0.0 24 | tsx: 3.12.3 25 | typescript: 4.9.5 26 | 27 | devDependencies: 28 | '@tsconfig/node-lts-strictest-esm': 18.12.1 29 | '@types/common-tags': 1.8.1 30 | 31 | packages: 32 | 33 | /@actions/github/5.1.1: 34 | resolution: {integrity: sha512-Nk59rMDoJaV+mHCOJPXuvB1zIbomlKS0dmSIqPGxd0enAXBnOfn4VWF+CGtRCwXZG9Epa54tZA7VIRlJDS8A6g==} 35 | dependencies: 36 | '@actions/http-client': 2.0.1 37 | '@octokit/core': 3.6.0 38 | '@octokit/plugin-paginate-rest': 2.21.3_@octokit+core@3.6.0 39 | '@octokit/plugin-rest-endpoint-methods': 5.16.2_@octokit+core@3.6.0 40 | transitivePeerDependencies: 41 | - encoding 42 | dev: false 43 | 44 | /@actions/http-client/2.0.1: 45 | resolution: {integrity: sha512-PIXiMVtz6VvyaRsGY268qvj57hXQEpsYogYOu2nrQhlf+XCGmZstmuZBbAybUl1nQGnvS1k1eEsQ69ZoD7xlSw==} 46 | dependencies: 47 | tunnel: 0.0.6 48 | dev: false 49 | 50 | /@babel/code-frame/7.18.6: 51 | resolution: {integrity: sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==} 52 | engines: {node: '>=6.9.0'} 53 | dependencies: 54 | '@babel/highlight': 7.18.6 55 | dev: false 56 | 57 | /@babel/helper-validator-identifier/7.19.1: 58 | resolution: {integrity: sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==} 59 | engines: {node: '>=6.9.0'} 60 | dev: false 61 | 62 | /@babel/highlight/7.18.6: 63 | resolution: {integrity: sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==} 64 | engines: {node: '>=6.9.0'} 65 | dependencies: 66 | '@babel/helper-validator-identifier': 7.19.1 67 | chalk: 2.4.2 68 | js-tokens: 4.0.0 69 | dev: false 70 | 71 | /@babel/runtime-corejs3/7.21.0: 72 | resolution: {integrity: sha512-TDD4UJzos3JJtM+tHX+w2Uc+KWj7GV+VKKFdMVd2Rx8sdA19hcc3P3AHFYd5LVOw+pYuSd5lICC3gm52B6Rwxw==} 73 | engines: {node: '>=6.9.0'} 74 | dependencies: 75 | core-js-pure: 3.29.0 76 | regenerator-runtime: 0.13.11 77 | dev: false 78 | 79 | /@babel/runtime/7.21.0: 80 | resolution: {integrity: sha512-xwII0//EObnq89Ji5AKYQaRYiW/nZ3llSv29d49IuxPhKbtJoLP+9QUUZ4nVragQVtaVGeZrpB+ZtG/Pdy/POw==} 81 | engines: {node: '>=6.9.0'} 82 | dependencies: 83 | regenerator-runtime: 0.13.11 84 | dev: false 85 | 86 | /@esbuild-kit/cjs-loader/2.4.2: 87 | resolution: {integrity: sha512-BDXFbYOJzT/NBEtp71cvsrGPwGAMGRB/349rwKuoxNSiKjPraNNnlK6MIIabViCjqZugu6j+xeMDlEkWdHHJSg==} 88 | dependencies: 89 | '@esbuild-kit/core-utils': 3.1.0 90 | get-tsconfig: 4.4.0 91 | dev: false 92 | 93 | /@esbuild-kit/core-utils/3.1.0: 94 | resolution: {integrity: sha512-Uuk8RpCg/7fdHSceR1M6XbSZFSuMrxcePFuGgyvsBn+u339dk5OeL4jv2EojwTN2st/unJGsVm4qHWjWNmJ/tw==} 95 | dependencies: 96 | esbuild: 0.17.10 97 | source-map-support: 0.5.21 98 | dev: false 99 | 100 | /@esbuild-kit/esm-loader/2.5.5: 101 | resolution: {integrity: sha512-Qwfvj/qoPbClxCRNuac1Du01r9gvNOT+pMYtJDapfB1eoGN1YlJ1BixLyL9WVENRx5RXgNLdfYdx/CuswlGhMw==} 102 | dependencies: 103 | '@esbuild-kit/core-utils': 3.1.0 104 | get-tsconfig: 4.4.0 105 | dev: false 106 | 107 | /@esbuild/android-arm/0.17.10: 108 | resolution: {integrity: sha512-7YEBfZ5lSem9Tqpsz+tjbdsEshlO9j/REJrfv4DXgKTt1+/MHqGwbtlyxQuaSlMeUZLxUKBaX8wdzlTfHkmnLw==} 109 | engines: {node: '>=12'} 110 | cpu: [arm] 111 | os: [android] 112 | requiresBuild: true 113 | dev: false 114 | optional: true 115 | 116 | /@esbuild/android-arm64/0.17.10: 117 | resolution: {integrity: sha512-ht1P9CmvrPF5yKDtyC+z43RczVs4rrHpRqrmIuoSvSdn44Fs1n6DGlpZKdK6rM83pFLbVaSUwle8IN+TPmkv7g==} 118 | engines: {node: '>=12'} 119 | cpu: [arm64] 120 | os: [android] 121 | requiresBuild: true 122 | dev: false 123 | optional: true 124 | 125 | /@esbuild/android-x64/0.17.10: 126 | resolution: {integrity: sha512-CYzrm+hTiY5QICji64aJ/xKdN70IK8XZ6iiyq0tZkd3tfnwwSWTYH1t3m6zyaaBxkuj40kxgMyj1km/NqdjQZA==} 127 | engines: {node: '>=12'} 128 | cpu: [x64] 129 | os: [android] 130 | requiresBuild: true 131 | dev: false 132 | optional: true 133 | 134 | /@esbuild/darwin-arm64/0.17.10: 135 | resolution: {integrity: sha512-3HaGIowI+nMZlopqyW6+jxYr01KvNaLB5znXfbyyjuo4lE0VZfvFGcguIJapQeQMS4cX/NEispwOekJt3gr5Dg==} 136 | engines: {node: '>=12'} 137 | cpu: [arm64] 138 | os: [darwin] 139 | requiresBuild: true 140 | dev: false 141 | optional: true 142 | 143 | /@esbuild/darwin-x64/0.17.10: 144 | resolution: {integrity: sha512-J4MJzGchuCRG5n+B4EHpAMoJmBeAE1L3wGYDIN5oWNqX0tEr7VKOzw0ymSwpoeSpdCa030lagGUfnfhS7OvzrQ==} 145 | engines: {node: '>=12'} 146 | cpu: [x64] 147 | os: [darwin] 148 | requiresBuild: true 149 | dev: false 150 | optional: true 151 | 152 | /@esbuild/freebsd-arm64/0.17.10: 153 | resolution: {integrity: sha512-ZkX40Z7qCbugeK4U5/gbzna/UQkM9d9LNV+Fro8r7HA7sRof5Rwxc46SsqeMvB5ZaR0b1/ITQ/8Y1NmV2F0fXQ==} 154 | engines: {node: '>=12'} 155 | cpu: [arm64] 156 | os: [freebsd] 157 | requiresBuild: true 158 | dev: false 159 | optional: true 160 | 161 | /@esbuild/freebsd-x64/0.17.10: 162 | resolution: {integrity: sha512-0m0YX1IWSLG9hWh7tZa3kdAugFbZFFx9XrvfpaCMMvrswSTvUZypp0NFKriUurHpBA3xsHVE9Qb/0u2Bbi/otg==} 163 | engines: {node: '>=12'} 164 | cpu: [x64] 165 | os: [freebsd] 166 | requiresBuild: true 167 | dev: false 168 | optional: true 169 | 170 | /@esbuild/linux-arm/0.17.10: 171 | resolution: {integrity: sha512-whRdrrl0X+9D6o5f0sTZtDM9s86Xt4wk1bf7ltx6iQqrIIOH+sre1yjpcCdrVXntQPCNw/G+XqsD4HuxeS+2QA==} 172 | engines: {node: '>=12'} 173 | cpu: [arm] 174 | os: [linux] 175 | requiresBuild: true 176 | dev: false 177 | optional: true 178 | 179 | /@esbuild/linux-arm64/0.17.10: 180 | resolution: {integrity: sha512-g1EZJR1/c+MmCgVwpdZdKi4QAJ8DCLP5uTgLWSAVd9wlqk9GMscaNMEViG3aE1wS+cNMzXXgdWiW/VX4J+5nTA==} 181 | engines: {node: '>=12'} 182 | cpu: [arm64] 183 | os: [linux] 184 | requiresBuild: true 185 | dev: false 186 | optional: true 187 | 188 | /@esbuild/linux-ia32/0.17.10: 189 | resolution: {integrity: sha512-1vKYCjfv/bEwxngHERp7huYfJ4jJzldfxyfaF7hc3216xiDA62xbXJfRlradiMhGZbdNLj2WA1YwYFzs9IWNPw==} 190 | engines: {node: '>=12'} 191 | cpu: [ia32] 192 | os: [linux] 193 | requiresBuild: true 194 | dev: false 195 | optional: true 196 | 197 | /@esbuild/linux-loong64/0.17.10: 198 | resolution: {integrity: sha512-mvwAr75q3Fgc/qz3K6sya3gBmJIYZCgcJ0s7XshpoqIAIBszzfXsqhpRrRdVFAyV1G9VUjj7VopL2HnAS8aHFA==} 199 | engines: {node: '>=12'} 200 | cpu: [loong64] 201 | os: [linux] 202 | requiresBuild: true 203 | dev: false 204 | optional: true 205 | 206 | /@esbuild/linux-mips64el/0.17.10: 207 | resolution: {integrity: sha512-XilKPgM2u1zR1YuvCsFQWl9Fc35BqSqktooumOY2zj7CSn5czJn279j9TE1JEqSqz88izJo7yE4x3LSf7oxHzg==} 208 | engines: {node: '>=12'} 209 | cpu: [mips64el] 210 | os: [linux] 211 | requiresBuild: true 212 | dev: false 213 | optional: true 214 | 215 | /@esbuild/linux-ppc64/0.17.10: 216 | resolution: {integrity: sha512-kM4Rmh9l670SwjlGkIe7pYWezk8uxKHX4Lnn5jBZYBNlWpKMBCVfpAgAJqp5doLobhzF3l64VZVrmGeZ8+uKmQ==} 217 | engines: {node: '>=12'} 218 | cpu: [ppc64] 219 | os: [linux] 220 | requiresBuild: true 221 | dev: false 222 | optional: true 223 | 224 | /@esbuild/linux-riscv64/0.17.10: 225 | resolution: {integrity: sha512-r1m9ZMNJBtOvYYGQVXKy+WvWd0BPvSxMsVq8Hp4GzdMBQvfZRvRr5TtX/1RdN6Va8JMVQGpxqde3O+e8+khNJQ==} 226 | engines: {node: '>=12'} 227 | cpu: [riscv64] 228 | os: [linux] 229 | requiresBuild: true 230 | dev: false 231 | optional: true 232 | 233 | /@esbuild/linux-s390x/0.17.10: 234 | resolution: {integrity: sha512-LsY7QvOLPw9WRJ+fU5pNB3qrSfA00u32ND5JVDrn/xG5hIQo3kvTxSlWFRP0NJ0+n6HmhPGG0Q4jtQsb6PFoyg==} 235 | engines: {node: '>=12'} 236 | cpu: [s390x] 237 | os: [linux] 238 | requiresBuild: true 239 | dev: false 240 | optional: true 241 | 242 | /@esbuild/linux-x64/0.17.10: 243 | resolution: {integrity: sha512-zJUfJLebCYzBdIz/Z9vqwFjIA7iSlLCFvVi7glMgnu2MK7XYigwsonXshy9wP9S7szF+nmwrelNaP3WGanstEg==} 244 | engines: {node: '>=12'} 245 | cpu: [x64] 246 | os: [linux] 247 | requiresBuild: true 248 | dev: false 249 | optional: true 250 | 251 | /@esbuild/netbsd-x64/0.17.10: 252 | resolution: {integrity: sha512-lOMkailn4Ok9Vbp/q7uJfgicpDTbZFlXlnKT2DqC8uBijmm5oGtXAJy2ZZVo5hX7IOVXikV9LpCMj2U8cTguWA==} 253 | engines: {node: '>=12'} 254 | cpu: [x64] 255 | os: [netbsd] 256 | requiresBuild: true 257 | dev: false 258 | optional: true 259 | 260 | /@esbuild/openbsd-x64/0.17.10: 261 | resolution: {integrity: sha512-/VE0Kx6y7eekqZ+ZLU4AjMlB80ov9tEz4H067Y0STwnGOYL8CsNg4J+cCmBznk1tMpxMoUOf0AbWlb1d2Pkbig==} 262 | engines: {node: '>=12'} 263 | cpu: [x64] 264 | os: [openbsd] 265 | requiresBuild: true 266 | dev: false 267 | optional: true 268 | 269 | /@esbuild/sunos-x64/0.17.10: 270 | resolution: {integrity: sha512-ERNO0838OUm8HfUjjsEs71cLjLMu/xt6bhOlxcJ0/1MG3hNqCmbWaS+w/8nFLa0DDjbwZQuGKVtCUJliLmbVgg==} 271 | engines: {node: '>=12'} 272 | cpu: [x64] 273 | os: [sunos] 274 | requiresBuild: true 275 | dev: false 276 | optional: true 277 | 278 | /@esbuild/win32-arm64/0.17.10: 279 | resolution: {integrity: sha512-fXv+L+Bw2AeK+XJHwDAQ9m3NRlNemG6Z6ijLwJAAVdu4cyoFbBWbEtyZzDeL+rpG2lWI51cXeMt70HA8g2MqIg==} 280 | engines: {node: '>=12'} 281 | cpu: [arm64] 282 | os: [win32] 283 | requiresBuild: true 284 | dev: false 285 | optional: true 286 | 287 | /@esbuild/win32-ia32/0.17.10: 288 | resolution: {integrity: sha512-3s+HADrOdCdGOi5lnh5DMQEzgbsFsd4w57L/eLKKjMnN0CN4AIEP0DCP3F3N14xnxh3ruNc32A0Na9zYe1Z/AQ==} 289 | engines: {node: '>=12'} 290 | cpu: [ia32] 291 | os: [win32] 292 | requiresBuild: true 293 | dev: false 294 | optional: true 295 | 296 | /@esbuild/win32-x64/0.17.10: 297 | resolution: {integrity: sha512-oP+zFUjYNaMNmjTwlFtWep85hvwUu19cZklB3QsBOcZSs6y7hmH4LNCJ7075bsqzYaNvZFXJlAVaQ2ApITDXtw==} 298 | engines: {node: '>=12'} 299 | cpu: [x64] 300 | os: [win32] 301 | requiresBuild: true 302 | dev: false 303 | optional: true 304 | 305 | /@hapi/hoek/9.3.0: 306 | resolution: {integrity: sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==} 307 | dev: false 308 | 309 | /@hapi/topo/5.1.0: 310 | resolution: {integrity: sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==} 311 | dependencies: 312 | '@hapi/hoek': 9.3.0 313 | dev: false 314 | 315 | /@jest/types/26.6.2: 316 | resolution: {integrity: sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==} 317 | engines: {node: '>= 10.14.2'} 318 | dependencies: 319 | '@types/istanbul-lib-coverage': 2.0.4 320 | '@types/istanbul-reports': 3.0.1 321 | '@types/node': 18.14.2 322 | '@types/yargs': 15.0.15 323 | chalk: 4.1.2 324 | dev: false 325 | 326 | /@octokit/auth-token/2.5.0: 327 | resolution: {integrity: sha512-r5FVUJCOLl19AxiuZD2VRZ/ORjp/4IN98Of6YJoJOkY75CIBuYfmiNHGrDwXr+aLGG55igl9QrxX3hbiXlLb+g==} 328 | dependencies: 329 | '@octokit/types': 6.41.0 330 | dev: false 331 | 332 | /@octokit/core/3.6.0: 333 | resolution: {integrity: sha512-7RKRKuA4xTjMhY+eG3jthb3hlZCsOwg3rztWh75Xc+ShDWOfDDATWbeZpAHBNRpm4Tv9WgBMOy1zEJYXG6NJ7Q==} 334 | dependencies: 335 | '@octokit/auth-token': 2.5.0 336 | '@octokit/graphql': 4.8.0 337 | '@octokit/request': 5.6.3 338 | '@octokit/request-error': 2.1.0 339 | '@octokit/types': 6.41.0 340 | before-after-hook: 2.2.3 341 | universal-user-agent: 6.0.0 342 | transitivePeerDependencies: 343 | - encoding 344 | dev: false 345 | 346 | /@octokit/endpoint/6.0.12: 347 | resolution: {integrity: sha512-lF3puPwkQWGfkMClXb4k/eUT/nZKQfxinRWJrdZaJO85Dqwo/G0yOC434Jr2ojwafWJMYqFGFa5ms4jJUgujdA==} 348 | dependencies: 349 | '@octokit/types': 6.41.0 350 | is-plain-object: 5.0.0 351 | universal-user-agent: 6.0.0 352 | dev: false 353 | 354 | /@octokit/graphql/4.8.0: 355 | resolution: {integrity: sha512-0gv+qLSBLKF0z8TKaSKTsS39scVKF9dbMxJpj3U0vC7wjNWFuIpL/z76Qe2fiuCbDRcJSavkXsVtMS6/dtQQsg==} 356 | dependencies: 357 | '@octokit/request': 5.6.3 358 | '@octokit/types': 6.41.0 359 | universal-user-agent: 6.0.0 360 | transitivePeerDependencies: 361 | - encoding 362 | dev: false 363 | 364 | /@octokit/openapi-types/12.11.0: 365 | resolution: {integrity: sha512-VsXyi8peyRq9PqIz/tpqiL2w3w80OgVMwBHltTml3LmVvXiphgeqmY9mvBw9Wu7e0QWk/fqD37ux8yP5uVekyQ==} 366 | dev: false 367 | 368 | /@octokit/plugin-paginate-rest/2.21.3_@octokit+core@3.6.0: 369 | resolution: {integrity: sha512-aCZTEf0y2h3OLbrgKkrfFdjRL6eSOo8komneVQJnYecAxIej7Bafor2xhuDJOIFau4pk0i/P28/XgtbyPF0ZHw==} 370 | peerDependencies: 371 | '@octokit/core': '>=2' 372 | dependencies: 373 | '@octokit/core': 3.6.0 374 | '@octokit/types': 6.41.0 375 | dev: false 376 | 377 | /@octokit/plugin-rest-endpoint-methods/5.16.2_@octokit+core@3.6.0: 378 | resolution: {integrity: sha512-8QFz29Fg5jDuTPXVtey05BLm7OB+M8fnvE64RNegzX7U+5NUXcOcnpTIK0YfSHBg8gYd0oxIq3IZTe9SfPZiRw==} 379 | peerDependencies: 380 | '@octokit/core': '>=3' 381 | dependencies: 382 | '@octokit/core': 3.6.0 383 | '@octokit/types': 6.41.0 384 | deprecation: 2.3.1 385 | dev: false 386 | 387 | /@octokit/request-error/2.1.0: 388 | resolution: {integrity: sha512-1VIvgXxs9WHSjicsRwq8PlR2LR2x6DwsJAaFgzdi0JfJoGSO8mYI/cHJQ+9FbN21aa+DrgNLnwObmyeSC8Rmpg==} 389 | dependencies: 390 | '@octokit/types': 6.41.0 391 | deprecation: 2.3.1 392 | once: 1.4.0 393 | dev: false 394 | 395 | /@octokit/request/5.6.3: 396 | resolution: {integrity: sha512-bFJl0I1KVc9jYTe9tdGGpAMPy32dLBXXo1dS/YwSCTL/2nd9XeHsY616RE3HPXDVk+a+dBuzyz5YdlXwcDTr2A==} 397 | dependencies: 398 | '@octokit/endpoint': 6.0.12 399 | '@octokit/request-error': 2.1.0 400 | '@octokit/types': 6.41.0 401 | is-plain-object: 5.0.0 402 | node-fetch: 2.6.9 403 | universal-user-agent: 6.0.0 404 | transitivePeerDependencies: 405 | - encoding 406 | dev: false 407 | 408 | /@octokit/types/6.41.0: 409 | resolution: {integrity: sha512-eJ2jbzjdijiL3B4PrSQaSjuF2sPEQPVCPzBvTHJD9Nz+9dw2SGH4K4xeQJ77YfTq5bRQ+bD8wT11JbeDPmxmGg==} 410 | dependencies: 411 | '@octokit/openapi-types': 12.11.0 412 | dev: false 413 | 414 | /@sentry/core/6.19.7: 415 | resolution: {integrity: sha512-tOfZ/umqB2AcHPGbIrsFLcvApdTm9ggpi/kQZFkej7kMphjT+SGBiQfYtjyg9jcRW+ilAR4JXC9BGKsdEQ+8Vw==} 416 | engines: {node: '>=6'} 417 | dependencies: 418 | '@sentry/hub': 6.19.7 419 | '@sentry/minimal': 6.19.7 420 | '@sentry/types': 6.19.7 421 | '@sentry/utils': 6.19.7 422 | tslib: 1.14.1 423 | dev: false 424 | 425 | /@sentry/hub/6.19.7: 426 | resolution: {integrity: sha512-y3OtbYFAqKHCWezF0EGGr5lcyI2KbaXW2Ik7Xp8Mu9TxbSTuwTe4rTntwg8ngPjUQU3SUHzgjqVB8qjiGqFXCA==} 427 | engines: {node: '>=6'} 428 | dependencies: 429 | '@sentry/types': 6.19.7 430 | '@sentry/utils': 6.19.7 431 | tslib: 1.14.1 432 | dev: false 433 | 434 | /@sentry/minimal/6.19.7: 435 | resolution: {integrity: sha512-wcYmSJOdvk6VAPx8IcmZgN08XTXRwRtB1aOLZm+MVHjIZIhHoBGZJYTVQS/BWjldsamj2cX3YGbGXNunaCfYJQ==} 436 | engines: {node: '>=6'} 437 | dependencies: 438 | '@sentry/hub': 6.19.7 439 | '@sentry/types': 6.19.7 440 | tslib: 1.14.1 441 | dev: false 442 | 443 | /@sentry/node/6.19.7: 444 | resolution: {integrity: sha512-gtmRC4dAXKODMpHXKfrkfvyBL3cI8y64vEi3fDD046uqYcrWdgoQsffuBbxMAizc6Ez1ia+f0Flue6p15Qaltg==} 445 | engines: {node: '>=6'} 446 | dependencies: 447 | '@sentry/core': 6.19.7 448 | '@sentry/hub': 6.19.7 449 | '@sentry/types': 6.19.7 450 | '@sentry/utils': 6.19.7 451 | cookie: 0.4.2 452 | https-proxy-agent: 5.0.1 453 | lru_map: 0.3.3 454 | tslib: 1.14.1 455 | transitivePeerDependencies: 456 | - supports-color 457 | dev: false 458 | 459 | /@sentry/types/6.19.7: 460 | resolution: {integrity: sha512-jH84pDYE+hHIbVnab3Hr+ZXr1v8QABfhx39KknxqKWr2l0oEItzepV0URvbEhB446lk/S/59230dlUUIBGsXbg==} 461 | engines: {node: '>=6'} 462 | dev: false 463 | 464 | /@sentry/utils/6.19.7: 465 | resolution: {integrity: sha512-z95ECmE3i9pbWoXQrD/7PgkBAzJYR+iXtPuTkpBjDKs86O3mT+PXOT3BAn79w2wkn7/i3vOGD2xVr1uiMl26dA==} 466 | engines: {node: '>=6'} 467 | dependencies: 468 | '@sentry/types': 6.19.7 469 | tslib: 1.14.1 470 | dev: false 471 | 472 | /@sideway/address/4.1.4: 473 | resolution: {integrity: sha512-7vwq+rOHVWjyXxVlR76Agnvhy8I9rpzjosTESvmhNeXOXdZZB15Fl+TI9x1SiHZH5Jv2wTGduSxFDIaq0m3DUw==} 474 | dependencies: 475 | '@hapi/hoek': 9.3.0 476 | dev: false 477 | 478 | /@sideway/formula/3.0.1: 479 | resolution: {integrity: sha512-/poHZJJVjx3L+zVD6g9KgHfYnb443oi7wLu/XKojDviHy6HOEOA6z1Trk5aR1dGcmPenJEgb2sK2I80LeS3MIg==} 480 | dev: false 481 | 482 | /@sideway/pinpoint/2.0.0: 483 | resolution: {integrity: sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==} 484 | dev: false 485 | 486 | /@testing-library/dom/7.31.2: 487 | resolution: {integrity: sha512-3UqjCpey6HiTZT92vODYLPxTBWlM8ZOOjr3LX5F37/VRipW2M1kX6I/Cm4VXzteZqfGfagg8yXywpcOgQBlNsQ==} 488 | engines: {node: '>=10'} 489 | dependencies: 490 | '@babel/code-frame': 7.18.6 491 | '@babel/runtime': 7.21.0 492 | '@types/aria-query': 4.2.2 493 | aria-query: 4.2.2 494 | chalk: 4.1.2 495 | dom-accessibility-api: 0.5.16 496 | lz-string: 1.4.4 497 | pretty-format: 26.6.2 498 | dev: false 499 | 500 | /@tsconfig/node-lts-strictest-esm/18.12.1: 501 | resolution: {integrity: sha512-LvBLmaC6Q/txTddLc11OeMHF9XjJFzlilkETJuvBlUvHy9pPiMsoH3nxWZM1FMSO53zp4mJP6gzOzxKEq0me7Q==} 502 | dev: true 503 | 504 | /@types/aria-query/4.2.2: 505 | resolution: {integrity: sha512-HnYpAE1Y6kRyKM/XkEuiRQhTHvkzMBurTHnpFLYLBGPIylZNPs9jJcuOOYWxPLJCSEtmZT0Y8rHDokKN7rRTig==} 506 | dev: false 507 | 508 | /@types/common-tags/1.8.1: 509 | resolution: {integrity: sha512-20R/mDpKSPWdJs5TOpz3e7zqbeCNuMCPhV7Yndk9KU2Rbij2r5W4RzwDPkzC+2lzUqXYu9rFzTktCBnDjHuNQg==} 510 | dev: true 511 | 512 | /@types/istanbul-lib-coverage/2.0.4: 513 | resolution: {integrity: sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==} 514 | dev: false 515 | 516 | /@types/istanbul-lib-report/3.0.0: 517 | resolution: {integrity: sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==} 518 | dependencies: 519 | '@types/istanbul-lib-coverage': 2.0.4 520 | dev: false 521 | 522 | /@types/istanbul-reports/3.0.1: 523 | resolution: {integrity: sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==} 524 | dependencies: 525 | '@types/istanbul-lib-report': 3.0.0 526 | dev: false 527 | 528 | /@types/node/16.18.13: 529 | resolution: {integrity: sha512-l0/3XZ153UTlNOnZK8xSNoJlQda9/WnYgiTdcKKPJSZjdjI9MU+A9oMXOesAWLSnqAaaJhj3qfQsU07Dr8OUwg==} 530 | dev: false 531 | 532 | /@types/node/18.14.2: 533 | resolution: {integrity: sha512-1uEQxww3DaghA0RxqHx0O0ppVlo43pJhepY51OxuQIKHpjbnYLA7vcdwioNPzIqmC2u3I/dmylcqjlh0e7AyUA==} 534 | dev: false 535 | 536 | /@types/wait-on/5.3.1: 537 | resolution: {integrity: sha512-2FFOKCF/YydrMUaqg+fkk49qf0e5rDgwt6aQsMzFQzbS419h2gNOXyiwp/o2yYy27bi/C1z+HgfncryjGzlvgQ==} 538 | dependencies: 539 | '@types/node': 18.14.2 540 | dev: false 541 | 542 | /@types/yargs-parser/21.0.0: 543 | resolution: {integrity: sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==} 544 | dev: false 545 | 546 | /@types/yargs/15.0.15: 547 | resolution: {integrity: sha512-IziEYMU9XoVj8hWg7k+UJrXALkGFjWJhn5QFEv9q4p+v40oZhSuC135M38st8XPjICL7Ey4TV64ferBGUoJhBg==} 548 | dependencies: 549 | '@types/yargs-parser': 21.0.0 550 | dev: false 551 | 552 | /@types/yauzl/2.10.0: 553 | resolution: {integrity: sha512-Cn6WYCm0tXv8p6k+A8PvbDG763EDpBoTzHdA+Q/MF6H3sapGjCm9NzoaJncJS9tUKSuCoDs9XHxYYsQDgxR6kw==} 554 | requiresBuild: true 555 | dependencies: 556 | '@types/node': 18.14.2 557 | dev: false 558 | optional: true 559 | 560 | /agent-base/6.0.2: 561 | resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==} 562 | engines: {node: '>= 6.0.0'} 563 | dependencies: 564 | debug: 4.3.4 565 | transitivePeerDependencies: 566 | - supports-color 567 | dev: false 568 | 569 | /aggregate-error/4.0.1: 570 | resolution: {integrity: sha512-0poP0T7el6Vq3rstR8Mn4V/IQrpBLO6POkUSrN7RhyY+GF/InCFShQzsQ39T25gkHhLgSLByyAz+Kjb+c2L98w==} 571 | engines: {node: '>=12'} 572 | dependencies: 573 | clean-stack: 4.2.0 574 | indent-string: 5.0.0 575 | dev: false 576 | 577 | /ansi-colors/4.1.3: 578 | resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==} 579 | engines: {node: '>=6'} 580 | dev: false 581 | 582 | /ansi-regex/5.0.1: 583 | resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} 584 | engines: {node: '>=8'} 585 | dev: false 586 | 587 | /ansi-styles/3.2.1: 588 | resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} 589 | engines: {node: '>=4'} 590 | dependencies: 591 | color-convert: 1.9.3 592 | dev: false 593 | 594 | /ansi-styles/4.3.0: 595 | resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} 596 | engines: {node: '>=8'} 597 | dependencies: 598 | color-convert: 2.0.1 599 | dev: false 600 | 601 | /aria-query/4.2.2: 602 | resolution: {integrity: sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==} 603 | engines: {node: '>=6.0'} 604 | dependencies: 605 | '@babel/runtime': 7.21.0 606 | '@babel/runtime-corejs3': 7.21.0 607 | dev: false 608 | 609 | /axe-core/4.6.3: 610 | resolution: {integrity: sha512-/BQzOX780JhsxDnPpH4ZiyrJAzcd8AfzFPkv+89veFSr1rcMjuq2JDCwypKaPeB6ljHp9KjXhPpjgCvQlWYuqg==} 611 | engines: {node: '>=4'} 612 | dev: false 613 | 614 | /axios/0.25.0: 615 | resolution: {integrity: sha512-cD8FOb0tRH3uuEe6+evtAbgJtfxr7ly3fQjYcMcuPlgkwVS9xboaVIpcDV+cYQe+yGykgwZCs1pzjntcGa6l5g==} 616 | dependencies: 617 | follow-redirects: 1.15.2 618 | transitivePeerDependencies: 619 | - debug 620 | dev: false 621 | 622 | /balanced-match/1.0.2: 623 | resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} 624 | dev: false 625 | 626 | /base64-js/1.5.1: 627 | resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} 628 | dev: false 629 | 630 | /before-after-hook/2.2.3: 631 | resolution: {integrity: sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ==} 632 | dev: false 633 | 634 | /bl/4.1.0: 635 | resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==} 636 | dependencies: 637 | buffer: 5.7.1 638 | inherits: 2.0.4 639 | readable-stream: 3.6.1 640 | dev: false 641 | 642 | /brace-expansion/1.1.11: 643 | resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} 644 | dependencies: 645 | balanced-match: 1.0.2 646 | concat-map: 0.0.1 647 | dev: false 648 | 649 | /buffer-crc32/0.2.13: 650 | resolution: {integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==} 651 | dev: false 652 | 653 | /buffer-from/1.1.2: 654 | resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==} 655 | dev: false 656 | 657 | /buffer/5.7.1: 658 | resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==} 659 | dependencies: 660 | base64-js: 1.5.1 661 | ieee754: 1.2.1 662 | dev: false 663 | 664 | /chalk/2.4.2: 665 | resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} 666 | engines: {node: '>=4'} 667 | dependencies: 668 | ansi-styles: 3.2.1 669 | escape-string-regexp: 1.0.5 670 | supports-color: 5.5.0 671 | dev: false 672 | 673 | /chalk/4.1.2: 674 | resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} 675 | engines: {node: '>=10'} 676 | dependencies: 677 | ansi-styles: 4.3.0 678 | supports-color: 7.2.0 679 | dev: false 680 | 681 | /chownr/1.1.4: 682 | resolution: {integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==} 683 | dev: false 684 | 685 | /chrome-launcher/0.15.1: 686 | resolution: {integrity: sha512-UugC8u59/w2AyX5sHLZUHoxBAiSiunUhZa3zZwMH6zPVis0C3dDKiRWyUGIo14tTbZHGVviWxv3PQWZ7taZ4fg==} 687 | engines: {node: '>=12.13.0'} 688 | hasBin: true 689 | dependencies: 690 | '@types/node': 18.14.2 691 | escape-string-regexp: 4.0.0 692 | is-wsl: 2.2.0 693 | lighthouse-logger: 1.3.0 694 | transitivePeerDependencies: 695 | - supports-color 696 | dev: false 697 | 698 | /chromium-bidi/0.4.4_6o5gdkn34s2j2m26x63ssheuqa: 699 | resolution: {integrity: sha512-4BX5cSaponuvVT1+SbLYTOAgDoVtX/Khoc9UsbFJ/AsPVUeFAM3RiIDFI6XFhLYMi9WmVJqh1ZH+dRpNKkKwiQ==} 700 | peerDependencies: 701 | devtools-protocol: '*' 702 | dependencies: 703 | devtools-protocol: 0.0.1094867 704 | mitt: 3.0.0 705 | dev: false 706 | 707 | /clean-stack/4.2.0: 708 | resolution: {integrity: sha512-LYv6XPxoyODi36Dp976riBtSY27VmFo+MKqEU9QCCWyTrdEPDog+RWA7xQWHi6Vbp61j5c4cdzzX1NidnwtUWg==} 709 | engines: {node: '>=12'} 710 | dependencies: 711 | escape-string-regexp: 5.0.0 712 | dev: false 713 | 714 | /cliui/8.0.1: 715 | resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==} 716 | engines: {node: '>=12'} 717 | dependencies: 718 | string-width: 4.2.3 719 | strip-ansi: 6.0.1 720 | wrap-ansi: 7.0.0 721 | dev: false 722 | 723 | /color-convert/1.9.3: 724 | resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} 725 | dependencies: 726 | color-name: 1.1.3 727 | dev: false 728 | 729 | /color-convert/2.0.1: 730 | resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} 731 | engines: {node: '>=7.0.0'} 732 | dependencies: 733 | color-name: 1.1.4 734 | dev: false 735 | 736 | /color-name/1.1.3: 737 | resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==} 738 | dev: false 739 | 740 | /color-name/1.1.4: 741 | resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} 742 | dev: false 743 | 744 | /common-tags/1.8.2: 745 | resolution: {integrity: sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==} 746 | engines: {node: '>=4.0.0'} 747 | dev: false 748 | 749 | /concat-map/0.0.1: 750 | resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} 751 | dev: false 752 | 753 | /configstore/5.0.1: 754 | resolution: {integrity: sha512-aMKprgk5YhBNyH25hj8wGt2+D52Sw1DRRIzqBwLp2Ya9mFmY8KPvvtvmna8SxVR9JMZ4kzMD68N22vlaRpkeFA==} 755 | engines: {node: '>=8'} 756 | dependencies: 757 | dot-prop: 5.3.0 758 | graceful-fs: 4.2.10 759 | make-dir: 3.1.0 760 | unique-string: 2.0.0 761 | write-file-atomic: 3.0.3 762 | xdg-basedir: 4.0.0 763 | dev: false 764 | 765 | /cookie/0.4.2: 766 | resolution: {integrity: sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==} 767 | engines: {node: '>= 0.6'} 768 | dev: false 769 | 770 | /core-js-pure/3.29.0: 771 | resolution: {integrity: sha512-v94gUjN5UTe1n0yN/opTihJ8QBWD2O8i19RfTZR7foONPWArnjB96QA/wk5ozu1mm6ja3udQCzOzwQXTxi3xOQ==} 772 | requiresBuild: true 773 | dev: false 774 | 775 | /cross-fetch/3.1.5: 776 | resolution: {integrity: sha512-lvb1SBsI0Z7GDwmuid+mU3kWVBwTVUbe7S0H52yaaAdQOXq2YktTCZdlAcNKFzE6QtRz0snpw9bNiPeOIkkQvw==} 777 | dependencies: 778 | node-fetch: 2.6.7 779 | transitivePeerDependencies: 780 | - encoding 781 | dev: false 782 | 783 | /crypto-random-string/2.0.0: 784 | resolution: {integrity: sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==} 785 | engines: {node: '>=8'} 786 | dev: false 787 | 788 | /csp_evaluator/1.1.1: 789 | resolution: {integrity: sha512-N3ASg0C4kNPUaNxt1XAvzHIVuzdtr8KLgfk1O8WDyimp1GisPAHESupArO2ieHk9QWbrJ/WkQODyh21Ps/xhxw==} 790 | dev: false 791 | 792 | /debug/2.6.9: 793 | resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==} 794 | peerDependencies: 795 | supports-color: '*' 796 | peerDependenciesMeta: 797 | supports-color: 798 | optional: true 799 | dependencies: 800 | ms: 2.0.0 801 | dev: false 802 | 803 | /debug/4.3.4: 804 | resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} 805 | engines: {node: '>=6.0'} 806 | peerDependencies: 807 | supports-color: '*' 808 | peerDependenciesMeta: 809 | supports-color: 810 | optional: true 811 | dependencies: 812 | ms: 2.1.2 813 | dev: false 814 | 815 | /define-lazy-prop/2.0.0: 816 | resolution: {integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==} 817 | engines: {node: '>=8'} 818 | dev: false 819 | 820 | /deprecation/2.3.1: 821 | resolution: {integrity: sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==} 822 | dev: false 823 | 824 | /devtools-protocol/0.0.1094867: 825 | resolution: {integrity: sha512-pmMDBKiRVjh0uKK6CT1WqZmM3hBVSgD+N2MrgyV1uNizAZMw4tx6i/RTc+/uCsKSCmg0xXx7arCP/OFcIwTsiQ==} 826 | dev: false 827 | 828 | /devtools-protocol/0.0.869402: 829 | resolution: {integrity: sha512-VvlVYY+VDJe639yHs5PHISzdWTLL3Aw8rO4cvUtwvoxFd6FHbE4OpHHcde52M6096uYYazAmd4l0o5VuFRO2WA==} 830 | dev: false 831 | 832 | /dom-accessibility-api/0.5.16: 833 | resolution: {integrity: sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg==} 834 | dev: false 835 | 836 | /dot-prop/5.3.0: 837 | resolution: {integrity: sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==} 838 | engines: {node: '>=8'} 839 | dependencies: 840 | is-obj: 2.0.0 841 | dev: false 842 | 843 | /emoji-regex/8.0.0: 844 | resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} 845 | dev: false 846 | 847 | /end-of-stream/1.4.4: 848 | resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==} 849 | dependencies: 850 | once: 1.4.0 851 | dev: false 852 | 853 | /enquirer/2.3.6: 854 | resolution: {integrity: sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==} 855 | engines: {node: '>=8.6'} 856 | dependencies: 857 | ansi-colors: 4.1.3 858 | dev: false 859 | 860 | /esbuild/0.17.10: 861 | resolution: {integrity: sha512-n7V3v29IuZy5qgxx25TKJrEm0FHghAlS6QweUcyIgh/U0zYmQcvogWROitrTyZId1mHSkuhhuyEXtI9OXioq7A==} 862 | engines: {node: '>=12'} 863 | hasBin: true 864 | requiresBuild: true 865 | optionalDependencies: 866 | '@esbuild/android-arm': 0.17.10 867 | '@esbuild/android-arm64': 0.17.10 868 | '@esbuild/android-x64': 0.17.10 869 | '@esbuild/darwin-arm64': 0.17.10 870 | '@esbuild/darwin-x64': 0.17.10 871 | '@esbuild/freebsd-arm64': 0.17.10 872 | '@esbuild/freebsd-x64': 0.17.10 873 | '@esbuild/linux-arm': 0.17.10 874 | '@esbuild/linux-arm64': 0.17.10 875 | '@esbuild/linux-ia32': 0.17.10 876 | '@esbuild/linux-loong64': 0.17.10 877 | '@esbuild/linux-mips64el': 0.17.10 878 | '@esbuild/linux-ppc64': 0.17.10 879 | '@esbuild/linux-riscv64': 0.17.10 880 | '@esbuild/linux-s390x': 0.17.10 881 | '@esbuild/linux-x64': 0.17.10 882 | '@esbuild/netbsd-x64': 0.17.10 883 | '@esbuild/openbsd-x64': 0.17.10 884 | '@esbuild/sunos-x64': 0.17.10 885 | '@esbuild/win32-arm64': 0.17.10 886 | '@esbuild/win32-ia32': 0.17.10 887 | '@esbuild/win32-x64': 0.17.10 888 | dev: false 889 | 890 | /escalade/3.1.1: 891 | resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==} 892 | engines: {node: '>=6'} 893 | dev: false 894 | 895 | /escape-string-regexp/1.0.5: 896 | resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} 897 | engines: {node: '>=0.8.0'} 898 | dev: false 899 | 900 | /escape-string-regexp/4.0.0: 901 | resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} 902 | engines: {node: '>=10'} 903 | dev: false 904 | 905 | /escape-string-regexp/5.0.0: 906 | resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==} 907 | engines: {node: '>=12'} 908 | dev: false 909 | 910 | /extract-zip/2.0.1: 911 | resolution: {integrity: sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==} 912 | engines: {node: '>= 10.17.0'} 913 | hasBin: true 914 | dependencies: 915 | debug: 4.3.4 916 | get-stream: 5.2.0 917 | yauzl: 2.10.0 918 | optionalDependencies: 919 | '@types/yauzl': 2.10.0 920 | transitivePeerDependencies: 921 | - supports-color 922 | dev: false 923 | 924 | /fd-slicer/1.1.0: 925 | resolution: {integrity: sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==} 926 | dependencies: 927 | pend: 1.2.0 928 | dev: false 929 | 930 | /find-up/4.1.0: 931 | resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==} 932 | engines: {node: '>=8'} 933 | dependencies: 934 | locate-path: 5.0.0 935 | path-exists: 4.0.0 936 | dev: false 937 | 938 | /follow-redirects/1.15.2: 939 | resolution: {integrity: sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==} 940 | engines: {node: '>=4.0'} 941 | peerDependencies: 942 | debug: '*' 943 | peerDependenciesMeta: 944 | debug: 945 | optional: true 946 | dev: false 947 | 948 | /fs-constants/1.0.0: 949 | resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==} 950 | dev: false 951 | 952 | /fs.realpath/1.0.0: 953 | resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} 954 | dev: false 955 | 956 | /fsevents/2.3.2: 957 | resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==} 958 | engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} 959 | os: [darwin] 960 | requiresBuild: true 961 | dev: false 962 | optional: true 963 | 964 | /get-caller-file/2.0.5: 965 | resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} 966 | engines: {node: 6.* || 8.* || >= 10.*} 967 | dev: false 968 | 969 | /get-stream/5.2.0: 970 | resolution: {integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==} 971 | engines: {node: '>=8'} 972 | dependencies: 973 | pump: 3.0.0 974 | dev: false 975 | 976 | /get-tsconfig/4.4.0: 977 | resolution: {integrity: sha512-0Gdjo/9+FzsYhXCEFueo2aY1z1tpXrxWZzP7k8ul9qt1U5o8rYJwTJYmaeHdrVosYIVYkOy2iwCJ9FdpocJhPQ==} 978 | dev: false 979 | 980 | /glob/7.2.3: 981 | resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} 982 | dependencies: 983 | fs.realpath: 1.0.0 984 | inflight: 1.0.6 985 | inherits: 2.0.4 986 | minimatch: 3.1.2 987 | once: 1.4.0 988 | path-is-absolute: 1.0.1 989 | dev: false 990 | 991 | /graceful-fs/4.2.10: 992 | resolution: {integrity: sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==} 993 | dev: false 994 | 995 | /has-flag/3.0.0: 996 | resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} 997 | engines: {node: '>=4'} 998 | dev: false 999 | 1000 | /has-flag/4.0.0: 1001 | resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} 1002 | engines: {node: '>=8'} 1003 | dev: false 1004 | 1005 | /http-link-header/0.8.0: 1006 | resolution: {integrity: sha512-qsh/wKe1Mk1vtYEFr+LpQBFWTO1gxZQBdii2D0Umj+IUQ23r5sT088Rhpq4XzpSyIpaX7vwjB8Rrtx8u9JTg+Q==} 1007 | dev: false 1008 | 1009 | /https-proxy-agent/5.0.1: 1010 | resolution: {integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==} 1011 | engines: {node: '>= 6'} 1012 | dependencies: 1013 | agent-base: 6.0.2 1014 | debug: 4.3.4 1015 | transitivePeerDependencies: 1016 | - supports-color 1017 | dev: false 1018 | 1019 | /ieee754/1.2.1: 1020 | resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} 1021 | dev: false 1022 | 1023 | /image-ssim/0.2.0: 1024 | resolution: {integrity: sha512-W7+sO6/yhxy83L0G7xR8YAc5Z5QFtYEXXRV6EaE8tuYBZJnA3gVgp3q7X7muhLZVodeb9UfvjSbwt9VJwjIYAg==} 1025 | dev: false 1026 | 1027 | /imurmurhash/0.1.4: 1028 | resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} 1029 | engines: {node: '>=0.8.19'} 1030 | dev: false 1031 | 1032 | /indent-string/5.0.0: 1033 | resolution: {integrity: sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==} 1034 | engines: {node: '>=12'} 1035 | dev: false 1036 | 1037 | /inflight/1.0.6: 1038 | resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} 1039 | dependencies: 1040 | once: 1.4.0 1041 | wrappy: 1.0.2 1042 | dev: false 1043 | 1044 | /inherits/2.0.4: 1045 | resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} 1046 | dev: false 1047 | 1048 | /intl-messageformat-parser/1.8.1: 1049 | resolution: {integrity: sha512-IMSCKVf0USrM/959vj3xac7s8f87sc+80Y/ipBzdKy4ifBv5Gsj2tZ41EAaURVg01QU71fYr77uA8Meh6kELbg==} 1050 | deprecated: We've written a new parser that's 6x faster and is backwards compatible. Please use @formatjs/icu-messageformat-parser 1051 | dev: false 1052 | 1053 | /intl-messageformat/4.4.0: 1054 | resolution: {integrity: sha512-z+Bj2rS3LZSYU4+sNitdHrwnBhr0wO80ZJSW8EzKDBowwUe3Q/UsvgCGjrwa+HPzoGCLEb9HAjfJgo4j2Sac8w==} 1055 | dependencies: 1056 | intl-messageformat-parser: 1.8.1 1057 | dev: false 1058 | 1059 | /is-docker/2.2.1: 1060 | resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==} 1061 | engines: {node: '>=8'} 1062 | hasBin: true 1063 | dev: false 1064 | 1065 | /is-fullwidth-code-point/3.0.0: 1066 | resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} 1067 | engines: {node: '>=8'} 1068 | dev: false 1069 | 1070 | /is-obj/2.0.0: 1071 | resolution: {integrity: sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==} 1072 | engines: {node: '>=8'} 1073 | dev: false 1074 | 1075 | /is-plain-object/5.0.0: 1076 | resolution: {integrity: sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==} 1077 | engines: {node: '>=0.10.0'} 1078 | dev: false 1079 | 1080 | /is-typedarray/1.0.0: 1081 | resolution: {integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==} 1082 | dev: false 1083 | 1084 | /is-wsl/2.2.0: 1085 | resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==} 1086 | engines: {node: '>=8'} 1087 | dependencies: 1088 | is-docker: 2.2.1 1089 | dev: false 1090 | 1091 | /joi/17.8.3: 1092 | resolution: {integrity: sha512-q5Fn6Tj/jR8PfrLrx4fpGH4v9qM6o+vDUfD4/3vxxyg34OmKcNqYZ1qn2mpLza96S8tL0p0rIw2gOZX+/cTg9w==} 1093 | dependencies: 1094 | '@hapi/hoek': 9.3.0 1095 | '@hapi/topo': 5.1.0 1096 | '@sideway/address': 4.1.4 1097 | '@sideway/formula': 3.0.1 1098 | '@sideway/pinpoint': 2.0.0 1099 | dev: false 1100 | 1101 | /jpeg-js/0.4.4: 1102 | resolution: {integrity: sha512-WZzeDOEtTOBK4Mdsar0IqEU5sMr3vSV2RqkAIzUEV2BHnUfKGyswWFPFwK5EeDo93K3FohSHbLAjj0s1Wzd+dg==} 1103 | dev: false 1104 | 1105 | /js-library-detector/6.6.0: 1106 | resolution: {integrity: sha512-z8OkDmXALZ22bIzBtIW8cpJ39MV93/Zu1rWrFdhsNw+sity2rOLaGT2kfWWQ6mnRTWs4ddONY5kiroA8e98Gvg==} 1107 | engines: {node: '>=12'} 1108 | dev: false 1109 | 1110 | /js-tokens/4.0.0: 1111 | resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} 1112 | dev: false 1113 | 1114 | /lighthouse-logger/1.3.0: 1115 | resolution: {integrity: sha512-BbqAKApLb9ywUli+0a+PcV04SyJ/N1q/8qgCNe6U97KbPCS1BTksEuHFLYdvc8DltuhfxIUBqDZsC0bBGtl3lA==} 1116 | dependencies: 1117 | debug: 2.6.9 1118 | marky: 1.2.5 1119 | transitivePeerDependencies: 1120 | - supports-color 1121 | dev: false 1122 | 1123 | /lighthouse-stack-packs/1.9.1: 1124 | resolution: {integrity: sha512-9prq6oMkVHz3GeCkphq4FHXXdj3M/WPiFWUvJAczLYV8j/oTxsgiHSPMqh1KVV11CP0VTxD40hFC0pDfXF+khQ==} 1125 | dev: false 1126 | 1127 | /lighthouse/10.0.1_typescript@4.9.5: 1128 | resolution: {integrity: sha512-vxHggvQPAx5ousLosVzWHTPJ+MpVYee+ojiP0r0ewq8cWAvnzLb6M2EieeBfjjm87shRaj0BB2puC8gFztwXXw==} 1129 | engines: {node: '>=16.16'} 1130 | hasBin: true 1131 | dependencies: 1132 | '@sentry/node': 6.19.7 1133 | axe-core: 4.6.3 1134 | chrome-launcher: 0.15.1 1135 | configstore: 5.0.1 1136 | csp_evaluator: 1.1.1 1137 | enquirer: 2.3.6 1138 | http-link-header: 0.8.0 1139 | intl-messageformat: 4.4.0 1140 | jpeg-js: 0.4.4 1141 | js-library-detector: 6.6.0 1142 | lighthouse-logger: 1.3.0 1143 | lighthouse-stack-packs: 1.9.1 1144 | lodash: 4.17.21 1145 | lookup-closest-locale: 6.2.0 1146 | metaviewport-parser: 0.3.0 1147 | open: 8.4.2 1148 | parse-cache-control: 1.0.1 1149 | ps-list: 8.1.1 1150 | puppeteer-core: 19.7.2_typescript@4.9.5 1151 | robots-parser: 3.0.1 1152 | semver: 5.7.1 1153 | speedline-core: 1.4.3 1154 | third-party-web: 0.20.2 1155 | ws: 7.5.9 1156 | yargs: 17.7.1 1157 | yargs-parser: 21.1.1 1158 | transitivePeerDependencies: 1159 | - bufferutil 1160 | - encoding 1161 | - supports-color 1162 | - typescript 1163 | - utf-8-validate 1164 | dev: false 1165 | 1166 | /locate-path/5.0.0: 1167 | resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==} 1168 | engines: {node: '>=8'} 1169 | dependencies: 1170 | p-locate: 4.1.0 1171 | dev: false 1172 | 1173 | /lodash/4.17.21: 1174 | resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} 1175 | dev: false 1176 | 1177 | /lookup-closest-locale/6.2.0: 1178 | resolution: {integrity: sha512-/c2kL+Vnp1jnV6K6RpDTHK3dgg0Tu2VVp+elEiJpjfS1UyY7AjOYHohRug6wT0OpoX2qFgNORndE9RqesfVxWQ==} 1179 | dev: false 1180 | 1181 | /lru_map/0.3.3: 1182 | resolution: {integrity: sha512-Pn9cox5CsMYngeDbmChANltQl+5pi6XmTrraMSzhPmMBbmgcxmqWry0U3PGapCU1yB4/LqCcom7qhHZiF/jGfQ==} 1183 | dev: false 1184 | 1185 | /lz-string/1.4.4: 1186 | resolution: {integrity: sha512-0ckx7ZHRPqb0oUm8zNr+90mtf9DQB60H1wMCjBtfi62Kl3a7JbHob6gA2bC+xRvZoOL+1hzUK8jeuEIQE8svEQ==} 1187 | hasBin: true 1188 | dev: false 1189 | 1190 | /make-dir/3.1.0: 1191 | resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==} 1192 | engines: {node: '>=8'} 1193 | dependencies: 1194 | semver: 6.3.0 1195 | dev: false 1196 | 1197 | /marky/1.2.5: 1198 | resolution: {integrity: sha512-q9JtQJKjpsVxCRVgQ+WapguSbKC3SQ5HEzFGPAJMStgh3QjCawp00UKv3MTTAArTmGmmPUvllHZoNbZ3gs0I+Q==} 1199 | dev: false 1200 | 1201 | /metaviewport-parser/0.3.0: 1202 | resolution: {integrity: sha512-EoYJ8xfjQ6kpe9VbVHvZTZHiOl4HL1Z18CrZ+qahvLXT7ZO4YTC2JMyt5FaUp9JJp6J4Ybb/z7IsCXZt86/QkQ==} 1203 | dev: false 1204 | 1205 | /minimatch/3.1.2: 1206 | resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} 1207 | dependencies: 1208 | brace-expansion: 1.1.11 1209 | dev: false 1210 | 1211 | /minimist/1.2.8: 1212 | resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} 1213 | dev: false 1214 | 1215 | /mitt/3.0.0: 1216 | resolution: {integrity: sha512-7dX2/10ITVyqh4aOSVI9gdape+t9l2/8QxHrFmUXu4EEUpdlxl6RudZUPZoc+zuY2hk1j7XxVroIVIan/pD/SQ==} 1217 | dev: false 1218 | 1219 | /mkdirp-classic/0.5.3: 1220 | resolution: {integrity: sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==} 1221 | dev: false 1222 | 1223 | /ms/2.0.0: 1224 | resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==} 1225 | dev: false 1226 | 1227 | /ms/2.1.2: 1228 | resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} 1229 | dev: false 1230 | 1231 | /node-fetch/2.6.7: 1232 | resolution: {integrity: sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==} 1233 | engines: {node: 4.x || >=6.0.0} 1234 | peerDependencies: 1235 | encoding: ^0.1.0 1236 | peerDependenciesMeta: 1237 | encoding: 1238 | optional: true 1239 | dependencies: 1240 | whatwg-url: 5.0.0 1241 | dev: false 1242 | 1243 | /node-fetch/2.6.9: 1244 | resolution: {integrity: sha512-DJm/CJkZkRjKKj4Zi4BsKVZh3ValV5IR5s7LVZnW+6YMh0W1BfNA8XSs6DLMGYlId5F3KnA70uu2qepcR08Qqg==} 1245 | engines: {node: 4.x || >=6.0.0} 1246 | peerDependencies: 1247 | encoding: ^0.1.0 1248 | peerDependenciesMeta: 1249 | encoding: 1250 | optional: true 1251 | dependencies: 1252 | whatwg-url: 5.0.0 1253 | dev: false 1254 | 1255 | /once/1.4.0: 1256 | resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} 1257 | dependencies: 1258 | wrappy: 1.0.2 1259 | dev: false 1260 | 1261 | /open/8.4.2: 1262 | resolution: {integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==} 1263 | engines: {node: '>=12'} 1264 | dependencies: 1265 | define-lazy-prop: 2.0.0 1266 | is-docker: 2.2.1 1267 | is-wsl: 2.2.0 1268 | dev: false 1269 | 1270 | /p-all/4.0.0: 1271 | resolution: {integrity: sha512-QXqMc8PpYu0gmNM6VcKP0uYqeI+dtvSNeaDb8ktnNjposr+nftHHCSYbj/S/oUceF6R868jw1XOxkJKUSiHgEQ==} 1272 | engines: {node: '>=12.20'} 1273 | dependencies: 1274 | p-map: 5.5.0 1275 | dev: false 1276 | 1277 | /p-limit/2.3.0: 1278 | resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==} 1279 | engines: {node: '>=6'} 1280 | dependencies: 1281 | p-try: 2.2.0 1282 | dev: false 1283 | 1284 | /p-locate/4.1.0: 1285 | resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==} 1286 | engines: {node: '>=8'} 1287 | dependencies: 1288 | p-limit: 2.3.0 1289 | dev: false 1290 | 1291 | /p-map/5.5.0: 1292 | resolution: {integrity: sha512-VFqfGDHlx87K66yZrNdI4YGtD70IRyd+zSvgks6mzHPRNkoKy+9EKP4SFC77/vTTQYmRmti7dvqC+m5jBrBAcg==} 1293 | engines: {node: '>=12'} 1294 | dependencies: 1295 | aggregate-error: 4.0.1 1296 | dev: false 1297 | 1298 | /p-try/2.2.0: 1299 | resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} 1300 | engines: {node: '>=6'} 1301 | dev: false 1302 | 1303 | /parse-cache-control/1.0.1: 1304 | resolution: {integrity: sha512-60zvsJReQPX5/QP0Kzfd/VrpjScIQ7SHBW6bFCYfEP+fp0Eppr1SHhIO5nd1PjZtvclzSzES9D/p5nFJurwfWg==} 1305 | dev: false 1306 | 1307 | /path-exists/4.0.0: 1308 | resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} 1309 | engines: {node: '>=8'} 1310 | dev: false 1311 | 1312 | /path-is-absolute/1.0.1: 1313 | resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} 1314 | engines: {node: '>=0.10.0'} 1315 | dev: false 1316 | 1317 | /pend/1.2.0: 1318 | resolution: {integrity: sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==} 1319 | dev: false 1320 | 1321 | /pkg-dir/4.2.0: 1322 | resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==} 1323 | engines: {node: '>=8'} 1324 | dependencies: 1325 | find-up: 4.1.0 1326 | dev: false 1327 | 1328 | /pptr-testing-library/0.7.0_puppeteer-core@19.7.2: 1329 | resolution: {integrity: sha512-NYt6XQzAoWCC/WKkBWW40Uth+MBRKmdYr+3NdrF4gTgBeK31zNQN6gFvmTubjZY5mUVdHmPns60jTs7PZuwg2A==} 1330 | engines: {node: '>=12'} 1331 | peerDependencies: 1332 | puppeteer: '*' 1333 | dependencies: 1334 | '@testing-library/dom': 7.31.2 1335 | puppeteer: /puppeteer-core/19.7.2_typescript@4.9.5 1336 | wait-for-expect: 3.0.2 1337 | dev: false 1338 | 1339 | /pretty-format/26.6.2: 1340 | resolution: {integrity: sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==} 1341 | engines: {node: '>= 10'} 1342 | dependencies: 1343 | '@jest/types': 26.6.2 1344 | ansi-regex: 5.0.1 1345 | ansi-styles: 4.3.0 1346 | react-is: 17.0.2 1347 | dev: false 1348 | 1349 | /progress/2.0.3: 1350 | resolution: {integrity: sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==} 1351 | engines: {node: '>=0.4.0'} 1352 | dev: false 1353 | 1354 | /proxy-from-env/1.1.0: 1355 | resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==} 1356 | dev: false 1357 | 1358 | /ps-list/8.1.1: 1359 | resolution: {integrity: sha512-OPS9kEJYVmiO48u/B9qneqhkMvgCxT+Tm28VCEJpheTpl8cJ0ffZRRNgS5mrQRTrX5yRTpaJ+hRDeefXYmmorQ==} 1360 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 1361 | dev: false 1362 | 1363 | /pump/3.0.0: 1364 | resolution: {integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==} 1365 | dependencies: 1366 | end-of-stream: 1.4.4 1367 | once: 1.4.0 1368 | dev: false 1369 | 1370 | /puppeteer-core/19.7.2_typescript@4.9.5: 1371 | resolution: {integrity: sha512-PvI+fXqgP0uGJxkyZcX51bnzjFA73MODZOAv0fSD35yR7tvbqwtMV3/Y+hxQ0AMMwzxkEebP6c7po/muqxJvmQ==} 1372 | engines: {node: '>=14.1.0'} 1373 | peerDependencies: 1374 | typescript: '>= 4.7.4' 1375 | peerDependenciesMeta: 1376 | typescript: 1377 | optional: true 1378 | dependencies: 1379 | chromium-bidi: 0.4.4_6o5gdkn34s2j2m26x63ssheuqa 1380 | cross-fetch: 3.1.5 1381 | debug: 4.3.4 1382 | devtools-protocol: 0.0.1094867 1383 | extract-zip: 2.0.1 1384 | https-proxy-agent: 5.0.1 1385 | proxy-from-env: 1.1.0 1386 | rimraf: 3.0.2 1387 | tar-fs: 2.1.1 1388 | typescript: 4.9.5 1389 | unbzip2-stream: 1.4.3 1390 | ws: 8.11.0 1391 | transitivePeerDependencies: 1392 | - bufferutil 1393 | - encoding 1394 | - supports-color 1395 | - utf-8-validate 1396 | dev: false 1397 | 1398 | /puppeteer-core/9.1.1: 1399 | resolution: {integrity: sha512-zbedbitVIGhmgz0nt7eIdLsnaoVZSlNJfBivqm2w67T8LR2bU1dvnruDZ8nQO0zn++Iet7zHbAOdnuS5+H2E7A==} 1400 | engines: {node: '>=10.18.1'} 1401 | dependencies: 1402 | debug: 4.3.4 1403 | devtools-protocol: 0.0.869402 1404 | extract-zip: 2.0.1 1405 | https-proxy-agent: 5.0.1 1406 | node-fetch: 2.6.9 1407 | pkg-dir: 4.2.0 1408 | progress: 2.0.3 1409 | proxy-from-env: 1.1.0 1410 | rimraf: 3.0.2 1411 | tar-fs: 2.1.1 1412 | unbzip2-stream: 1.4.3 1413 | ws: 7.5.9 1414 | transitivePeerDependencies: 1415 | - bufferutil 1416 | - encoding 1417 | - supports-color 1418 | - utf-8-validate 1419 | dev: false 1420 | 1421 | /react-is/17.0.2: 1422 | resolution: {integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==} 1423 | dev: false 1424 | 1425 | /readable-stream/3.6.1: 1426 | resolution: {integrity: sha512-+rQmrWMYGA90yenhTYsLWAsLsqVC8osOw6PKE1HDYiO0gdPeKe/xDHNzIAIn4C91YQ6oenEhfYqqc1883qHbjQ==} 1427 | engines: {node: '>= 6'} 1428 | dependencies: 1429 | inherits: 2.0.4 1430 | string_decoder: 1.3.0 1431 | util-deprecate: 1.0.2 1432 | dev: false 1433 | 1434 | /regenerator-runtime/0.13.11: 1435 | resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==} 1436 | dev: false 1437 | 1438 | /require-directory/2.1.1: 1439 | resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} 1440 | engines: {node: '>=0.10.0'} 1441 | dev: false 1442 | 1443 | /rimraf/3.0.2: 1444 | resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} 1445 | hasBin: true 1446 | dependencies: 1447 | glob: 7.2.3 1448 | dev: false 1449 | 1450 | /robots-parser/3.0.1: 1451 | resolution: {integrity: sha512-s+pyvQeIKIZ0dx5iJiQk1tPLJAWln39+MI5jtM8wnyws+G5azk+dMnMX0qfbqNetKKNgcWWOdi0sfm+FbQbgdQ==} 1452 | engines: {node: '>=10.0.0'} 1453 | dev: false 1454 | 1455 | /rxjs/7.8.0: 1456 | resolution: {integrity: sha512-F2+gxDshqmIub1KdvZkaEfGDwLNpPvk9Fs6LD/MyQxNgMds/WH9OdDDXOmxUZpME+iSK3rQCctkL0DYyytUqMg==} 1457 | dependencies: 1458 | tslib: 2.5.0 1459 | dev: false 1460 | 1461 | /safe-buffer/5.2.1: 1462 | resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} 1463 | dev: false 1464 | 1465 | /semver/5.7.1: 1466 | resolution: {integrity: sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==} 1467 | hasBin: true 1468 | dev: false 1469 | 1470 | /semver/6.3.0: 1471 | resolution: {integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==} 1472 | hasBin: true 1473 | dev: false 1474 | 1475 | /signal-exit/3.0.7: 1476 | resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} 1477 | dev: false 1478 | 1479 | /source-map-support/0.5.21: 1480 | resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==} 1481 | dependencies: 1482 | buffer-from: 1.1.2 1483 | source-map: 0.6.1 1484 | dev: false 1485 | 1486 | /source-map/0.6.1: 1487 | resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==} 1488 | engines: {node: '>=0.10.0'} 1489 | dev: false 1490 | 1491 | /speedline-core/1.4.3: 1492 | resolution: {integrity: sha512-DI7/OuAUD+GMpR6dmu8lliO2Wg5zfeh+/xsdyJZCzd8o5JgFUjCeLsBDuZjIQJdwXS3J0L/uZYrELKYqx+PXog==} 1493 | engines: {node: '>=8.0'} 1494 | dependencies: 1495 | '@types/node': 18.14.2 1496 | image-ssim: 0.2.0 1497 | jpeg-js: 0.4.4 1498 | dev: false 1499 | 1500 | /storycrawler/4.0.0: 1501 | resolution: {integrity: sha512-oxYe6X6rxGzxzfhDE4Fnq7a5Q+Og5OvSjUGOmFKRRCF4sKYJ9q5YrK/5qkj8XWHDb7dkQMuvJMSf565Ax8g80g==} 1502 | engines: {node: '>=14.13'} 1503 | dependencies: 1504 | '@types/node': 16.18.13 1505 | '@types/wait-on': 5.3.1 1506 | chalk: 2.4.2 1507 | puppeteer-core: 9.1.1 1508 | wait-on: 6.0.1 1509 | transitivePeerDependencies: 1510 | - bufferutil 1511 | - debug 1512 | - encoding 1513 | - supports-color 1514 | - utf-8-validate 1515 | dev: false 1516 | 1517 | /string-width/4.2.3: 1518 | resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} 1519 | engines: {node: '>=8'} 1520 | dependencies: 1521 | emoji-regex: 8.0.0 1522 | is-fullwidth-code-point: 3.0.0 1523 | strip-ansi: 6.0.1 1524 | dev: false 1525 | 1526 | /string_decoder/1.3.0: 1527 | resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==} 1528 | dependencies: 1529 | safe-buffer: 5.2.1 1530 | dev: false 1531 | 1532 | /strip-ansi/6.0.1: 1533 | resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} 1534 | engines: {node: '>=8'} 1535 | dependencies: 1536 | ansi-regex: 5.0.1 1537 | dev: false 1538 | 1539 | /supports-color/5.5.0: 1540 | resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} 1541 | engines: {node: '>=4'} 1542 | dependencies: 1543 | has-flag: 3.0.0 1544 | dev: false 1545 | 1546 | /supports-color/7.2.0: 1547 | resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} 1548 | engines: {node: '>=8'} 1549 | dependencies: 1550 | has-flag: 4.0.0 1551 | dev: false 1552 | 1553 | /tar-fs/2.1.1: 1554 | resolution: {integrity: sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==} 1555 | dependencies: 1556 | chownr: 1.1.4 1557 | mkdirp-classic: 0.5.3 1558 | pump: 3.0.0 1559 | tar-stream: 2.2.0 1560 | dev: false 1561 | 1562 | /tar-stream/2.2.0: 1563 | resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==} 1564 | engines: {node: '>=6'} 1565 | dependencies: 1566 | bl: 4.1.0 1567 | end-of-stream: 1.4.4 1568 | fs-constants: 1.0.0 1569 | inherits: 2.0.4 1570 | readable-stream: 3.6.1 1571 | dev: false 1572 | 1573 | /third-party-web/0.20.2: 1574 | resolution: {integrity: sha512-KFaFBDto+gH2DZW6ooFCGYrR8CGV6b/Ibsc2RTUkKhTPbxOWZuKs0NTftdAMoz0Aivf4bAHgW+kAGKciSQpqFg==} 1575 | dev: false 1576 | 1577 | /through/2.3.8: 1578 | resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==} 1579 | dev: false 1580 | 1581 | /tr46/0.0.3: 1582 | resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==} 1583 | dev: false 1584 | 1585 | /tslib/1.14.1: 1586 | resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==} 1587 | dev: false 1588 | 1589 | /tslib/2.5.0: 1590 | resolution: {integrity: sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==} 1591 | dev: false 1592 | 1593 | /tsx/3.12.3: 1594 | resolution: {integrity: sha512-Wc5BFH1xccYTXaQob+lEcimkcb/Pq+0en2s+ruiX0VEIC80nV7/0s7XRahx8NnsoCnpCVUPz8wrqVSPi760LkA==} 1595 | hasBin: true 1596 | dependencies: 1597 | '@esbuild-kit/cjs-loader': 2.4.2 1598 | '@esbuild-kit/core-utils': 3.1.0 1599 | '@esbuild-kit/esm-loader': 2.5.5 1600 | optionalDependencies: 1601 | fsevents: 2.3.2 1602 | dev: false 1603 | 1604 | /tunnel/0.0.6: 1605 | resolution: {integrity: sha512-1h/Lnq9yajKY2PEbBadPXj3VxsDDu844OnaAo52UVmIzIvwwtBPIuNvkjuzBlTWpfJyUbG3ez0KSBibQkj4ojg==} 1606 | engines: {node: '>=0.6.11 <=0.7.0 || >=0.7.3'} 1607 | dev: false 1608 | 1609 | /typedarray-to-buffer/3.1.5: 1610 | resolution: {integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==} 1611 | dependencies: 1612 | is-typedarray: 1.0.0 1613 | dev: false 1614 | 1615 | /typescript/4.9.5: 1616 | resolution: {integrity: sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==} 1617 | engines: {node: '>=4.2.0'} 1618 | hasBin: true 1619 | dev: false 1620 | 1621 | /unbzip2-stream/1.4.3: 1622 | resolution: {integrity: sha512-mlExGW4w71ebDJviH16lQLtZS32VKqsSfk80GCfUlwT/4/hNRFsoscrF/c++9xinkMzECL1uL9DDwXqFWkruPg==} 1623 | dependencies: 1624 | buffer: 5.7.1 1625 | through: 2.3.8 1626 | dev: false 1627 | 1628 | /unique-string/2.0.0: 1629 | resolution: {integrity: sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==} 1630 | engines: {node: '>=8'} 1631 | dependencies: 1632 | crypto-random-string: 2.0.0 1633 | dev: false 1634 | 1635 | /universal-user-agent/6.0.0: 1636 | resolution: {integrity: sha512-isyNax3wXoKaulPDZWHQqbmIx1k2tb9fb3GGDBRxCscfYV2Ch7WxPArBsFEG8s/safwXTT7H4QGhaIkTp9447w==} 1637 | dev: false 1638 | 1639 | /util-deprecate/1.0.2: 1640 | resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} 1641 | dev: false 1642 | 1643 | /wait-for-expect/3.0.2: 1644 | resolution: {integrity: sha512-cfS1+DZxuav1aBYbaO/kE06EOS8yRw7qOFoD3XtjTkYvCvh3zUvNST8DXK/nPaeqIzIv3P3kL3lRJn8iwOiSag==} 1645 | dev: false 1646 | 1647 | /wait-on/6.0.1: 1648 | resolution: {integrity: sha512-zht+KASY3usTY5u2LgaNqn/Cd8MukxLGjdcZxT2ns5QzDmTFc4XoWBgC+C/na+sMRZTuVygQoMYwdcVjHnYIVw==} 1649 | engines: {node: '>=10.0.0'} 1650 | hasBin: true 1651 | dependencies: 1652 | axios: 0.25.0 1653 | joi: 17.8.3 1654 | lodash: 4.17.21 1655 | minimist: 1.2.8 1656 | rxjs: 7.8.0 1657 | transitivePeerDependencies: 1658 | - debug 1659 | dev: false 1660 | 1661 | /webidl-conversions/3.0.1: 1662 | resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==} 1663 | dev: false 1664 | 1665 | /whatwg-url/5.0.0: 1666 | resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==} 1667 | dependencies: 1668 | tr46: 0.0.3 1669 | webidl-conversions: 3.0.1 1670 | dev: false 1671 | 1672 | /wrap-ansi/7.0.0: 1673 | resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} 1674 | engines: {node: '>=10'} 1675 | dependencies: 1676 | ansi-styles: 4.3.0 1677 | string-width: 4.2.3 1678 | strip-ansi: 6.0.1 1679 | dev: false 1680 | 1681 | /wrappy/1.0.2: 1682 | resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} 1683 | dev: false 1684 | 1685 | /write-file-atomic/3.0.3: 1686 | resolution: {integrity: sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==} 1687 | dependencies: 1688 | imurmurhash: 0.1.4 1689 | is-typedarray: 1.0.0 1690 | signal-exit: 3.0.7 1691 | typedarray-to-buffer: 3.1.5 1692 | dev: false 1693 | 1694 | /ws/7.5.9: 1695 | resolution: {integrity: sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==} 1696 | engines: {node: '>=8.3.0'} 1697 | peerDependencies: 1698 | bufferutil: ^4.0.1 1699 | utf-8-validate: ^5.0.2 1700 | peerDependenciesMeta: 1701 | bufferutil: 1702 | optional: true 1703 | utf-8-validate: 1704 | optional: true 1705 | dev: false 1706 | 1707 | /ws/8.11.0: 1708 | resolution: {integrity: sha512-HPG3wQd9sNQoT9xHyNCXoDUa+Xw/VevmY9FoHyQ+g+rrMn4j6FB4np7Z0OhdTgjx6MgQLK7jwSy1YecU1+4Asg==} 1709 | engines: {node: '>=10.0.0'} 1710 | peerDependencies: 1711 | bufferutil: ^4.0.1 1712 | utf-8-validate: ^5.0.2 1713 | peerDependenciesMeta: 1714 | bufferutil: 1715 | optional: true 1716 | utf-8-validate: 1717 | optional: true 1718 | dev: false 1719 | 1720 | /xdg-basedir/4.0.0: 1721 | resolution: {integrity: sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q==} 1722 | engines: {node: '>=8'} 1723 | dev: false 1724 | 1725 | /y18n/5.0.8: 1726 | resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} 1727 | engines: {node: '>=10'} 1728 | dev: false 1729 | 1730 | /yargs-parser/21.1.1: 1731 | resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} 1732 | engines: {node: '>=12'} 1733 | dev: false 1734 | 1735 | /yargs/17.7.1: 1736 | resolution: {integrity: sha512-cwiTb08Xuv5fqF4AovYacTFNxk62th7LKJ6BL9IGUpTJrWoU7/7WdQGTP2SjKf1dUNBGzDd28p/Yfs/GI6JrLw==} 1737 | engines: {node: '>=12'} 1738 | dependencies: 1739 | cliui: 8.0.1 1740 | escalade: 3.1.1 1741 | get-caller-file: 2.0.5 1742 | require-directory: 2.1.1 1743 | string-width: 4.2.3 1744 | y18n: 5.0.8 1745 | yargs-parser: 21.1.1 1746 | dev: false 1747 | 1748 | /yauzl/2.10.0: 1749 | resolution: {integrity: sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==} 1750 | dependencies: 1751 | buffer-crc32: 0.2.13 1752 | fd-slicer: 1.1.0 1753 | dev: false 1754 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "@tsconfig/node-lts-strictest-esm/tsconfig.json", 3 | "compilerOptions": { 4 | "lib": ["esnext", "dom"], 5 | "moduleResolution": "node", 6 | "noEmit": true 7 | }, 8 | "include": ["src/**/*"] 9 | } 10 | --------------------------------------------------------------------------------