├── .babelrc ├── .gitignore ├── .sequelizerc ├── LICENSE ├── README.md ├── index.js ├── package-lock.json ├── package.json └── src ├── config └── config.json ├── controllers └── AuthController.js ├── database └── migrations │ └── 20210202095252-create-user.js ├── models ├── User.js └── index.js └── routes └── index.js /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [ 3 | [ 4 | "@babel/preset-env", { 5 | "targets": { 6 | "node": "current" 7 | } 8 | } 9 | ] 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | lerna-debug.log* 8 | 9 | # Diagnostic reports (https://nodejs.org/api/report.html) 10 | report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json 11 | 12 | # Runtime data 13 | pids 14 | *.pid 15 | *.seed 16 | *.pid.lock 17 | 18 | # Directory for instrumented libs generated by jscoverage/JSCover 19 | lib-cov 20 | 21 | # Coverage directory used by tools like istanbul 22 | coverage 23 | *.lcov 24 | 25 | # nyc test coverage 26 | .nyc_output 27 | 28 | # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) 29 | .grunt 30 | 31 | # Bower dependency directory (https://bower.io/) 32 | bower_components 33 | 34 | # node-waf configuration 35 | .lock-wscript 36 | 37 | # Compiled binary addons (https://nodejs.org/api/addons.html) 38 | build/Release 39 | 40 | # Dependency directories 41 | node_modules/ 42 | jspm_packages/ 43 | 44 | # TypeScript v1 declaration files 45 | typings/ 46 | 47 | # TypeScript cache 48 | *.tsbuildinfo 49 | 50 | # Optional npm cache directory 51 | .npm 52 | 53 | # Optional eslint cache 54 | .eslintcache 55 | 56 | # Microbundle cache 57 | .rpt2_cache/ 58 | .rts2_cache_cjs/ 59 | .rts2_cache_es/ 60 | .rts2_cache_umd/ 61 | 62 | # Optional REPL history 63 | .node_repl_history 64 | 65 | # Output of 'npm pack' 66 | *.tgz 67 | 68 | # Yarn Integrity file 69 | .yarn-integrity 70 | 71 | # dotenv environment variables file 72 | .env 73 | .env.test 74 | 75 | # parcel-bundler cache (https://parceljs.org/) 76 | .cache 77 | 78 | # Next.js build output 79 | .next 80 | 81 | # Nuxt.js build / generate output 82 | .nuxt 83 | dist 84 | 85 | # Gatsby files 86 | .cache/ 87 | # Comment in the public line in if your project uses Gatsby and *not* Next.js 88 | # https://nextjs.org/blog/next-9-1#public-directory-support 89 | # public 90 | 91 | # vuepress build output 92 | .vuepress/dist 93 | 94 | # Serverless directories 95 | .serverless/ 96 | 97 | # FuseBox cache 98 | .fusebox/ 99 | 100 | # DynamoDB Local files 101 | .dynamodb/ 102 | 103 | # TernJS port file 104 | .tern-port 105 | 106 | .idea/ 107 | -------------------------------------------------------------------------------- /.sequelizerc: -------------------------------------------------------------------------------- 1 | require("@babel/register"); 2 | 3 | const path = require('path'); 4 | 5 | module.exports = { 6 | "config": path.resolve('./src/config', 'config.json'), 7 | "models-path": path.resolve('./src/models'), 8 | "seeders-path": path.resolve('./src/database/seeders'), 9 | "migrations-path": path.resolve('./src/database/migrations') 10 | }; 11 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 2, June 1991 3 | 4 | Copyright (C) 1989, 1991 Free Software Foundation, Inc., 5 | 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 6 | Everyone is permitted to copy and distribute verbatim copies 7 | of this license document, but changing it is not allowed. 8 | 9 | Preamble 10 | 11 | The licenses for most software are designed to take away your 12 | freedom to share and change it. By contrast, the GNU General Public 13 | License is intended to guarantee your freedom to share and change free 14 | software--to make sure the software is free for all its users. This 15 | General Public License applies to most of the Free Software 16 | Foundation's software and to any other program whose authors commit to 17 | using it. (Some other Free Software Foundation software is covered by 18 | the GNU Lesser General Public License instead.) You can apply it to 19 | your programs, too. 20 | 21 | When we speak of free software, we are referring to freedom, not 22 | price. Our General Public Licenses are designed to make sure that you 23 | have the freedom to distribute copies of free software (and charge for 24 | this service if you wish), that you receive source code or can get it 25 | if you want it, that you can change the software or use pieces of it 26 | in new free programs; and that you know you can do these things. 27 | 28 | To protect your rights, we need to make restrictions that forbid 29 | anyone to deny you these rights or to ask you to surrender the rights. 30 | These restrictions translate to certain responsibilities for you if you 31 | distribute copies of the software, or if you modify it. 32 | 33 | For example, if you distribute copies of such a program, whether 34 | gratis or for a fee, you must give the recipients all the rights that 35 | you have. You must make sure that they, too, receive or can get the 36 | source code. And you must show them these terms so they know their 37 | rights. 38 | 39 | We protect your rights with two steps: (1) copyright the software, and 40 | (2) offer you this license which gives you legal permission to copy, 41 | distribute and/or modify the software. 42 | 43 | Also, for each author's protection and ours, we want to make certain 44 | that everyone understands that there is no warranty for this free 45 | software. If the software is modified by someone else and passed on, we 46 | want its recipients to know that what they have is not the original, so 47 | that any problems introduced by others will not reflect on the original 48 | authors' reputations. 49 | 50 | Finally, any free program is threatened constantly by software 51 | patents. We wish to avoid the danger that redistributors of a free 52 | program will individually obtain patent licenses, in effect making the 53 | program proprietary. To prevent this, we have made it clear that any 54 | patent must be licensed for everyone's free use or not licensed at all. 55 | 56 | The precise terms and conditions for copying, distribution and 57 | modification follow. 58 | 59 | GNU GENERAL PUBLIC LICENSE 60 | TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 61 | 62 | 0. This License applies to any program or other work which contains 63 | a notice placed by the copyright holder saying it may be distributed 64 | under the terms of this General Public License. The "Program", below, 65 | refers to any such program or work, and a "work based on the Program" 66 | means either the Program or any derivative work under copyright law: 67 | that is to say, a work containing the Program or a portion of it, 68 | either verbatim or with modifications and/or translated into another 69 | language. (Hereinafter, translation is included without limitation in 70 | the term "modification".) Each licensee is addressed as "you". 71 | 72 | Activities other than copying, distribution and modification are not 73 | covered by this License; they are outside its scope. The act of 74 | running the Program is not restricted, and the output from the Program 75 | is covered only if its contents constitute a work based on the 76 | Program (independent of having been made by running the Program). 77 | Whether that is true depends on what the Program does. 78 | 79 | 1. You may copy and distribute verbatim copies of the Program's 80 | source code as you receive it, in any medium, provided that you 81 | conspicuously and appropriately publish on each copy an appropriate 82 | copyright notice and disclaimer of warranty; keep intact all the 83 | notices that refer to this License and to the absence of any warranty; 84 | and give any other recipients of the Program a copy of this License 85 | along with the Program. 86 | 87 | You may charge a fee for the physical act of transferring a copy, and 88 | you may at your option offer warranty protection in exchange for a fee. 89 | 90 | 2. You may modify your copy or copies of the Program or any portion 91 | of it, thus forming a work based on the Program, and copy and 92 | distribute such modifications or work under the terms of Section 1 93 | above, provided that you also meet all of these conditions: 94 | 95 | a) You must cause the modified files to carry prominent notices 96 | stating that you changed the files and the date of any change. 97 | 98 | b) You must cause any work that you distribute or publish, that in 99 | whole or in part contains or is derived from the Program or any 100 | part thereof, to be licensed as a whole at no charge to all third 101 | parties under the terms of this License. 102 | 103 | c) If the modified program normally reads commands interactively 104 | when run, you must cause it, when started running for such 105 | interactive use in the most ordinary way, to print or display an 106 | announcement including an appropriate copyright notice and a 107 | notice that there is no warranty (or else, saying that you provide 108 | a warranty) and that users may redistribute the program under 109 | these conditions, and telling the user how to view a copy of this 110 | License. (Exception: if the Program itself is interactive but 111 | does not normally print such an announcement, your work based on 112 | the Program is not required to print an announcement.) 113 | 114 | These requirements apply to the modified work as a whole. If 115 | identifiable sections of that work are not derived from the Program, 116 | and can be reasonably considered independent and separate works in 117 | themselves, then this License, and its terms, do not apply to those 118 | sections when you distribute them as separate works. But when you 119 | distribute the same sections as part of a whole which is a work based 120 | on the Program, the distribution of the whole must be on the terms of 121 | this License, whose permissions for other licensees extend to the 122 | entire whole, and thus to each and every part regardless of who wrote it. 123 | 124 | Thus, it is not the intent of this section to claim rights or contest 125 | your rights to work written entirely by you; rather, the intent is to 126 | exercise the right to control the distribution of derivative or 127 | collective works based on the Program. 128 | 129 | In addition, mere aggregation of another work not based on the Program 130 | with the Program (or with a work based on the Program) on a volume of 131 | a storage or distribution medium does not bring the other work under 132 | the scope of this License. 133 | 134 | 3. You may copy and distribute the Program (or a work based on it, 135 | under Section 2) in object code or executable form under the terms of 136 | Sections 1 and 2 above provided that you also do one of the following: 137 | 138 | a) Accompany it with the complete corresponding machine-readable 139 | source code, which must be distributed under the terms of Sections 140 | 1 and 2 above on a medium customarily used for software interchange; or, 141 | 142 | b) Accompany it with a written offer, valid for at least three 143 | years, to give any third party, for a charge no more than your 144 | cost of physically performing source distribution, a complete 145 | machine-readable copy of the corresponding source code, to be 146 | distributed under the terms of Sections 1 and 2 above on a medium 147 | customarily used for software interchange; or, 148 | 149 | c) Accompany it with the information you received as to the offer 150 | to distribute corresponding source code. (This alternative is 151 | allowed only for noncommercial distribution and only if you 152 | received the program in object code or executable form with such 153 | an offer, in accord with Subsection b above.) 154 | 155 | The source code for a work means the preferred form of the work for 156 | making modifications to it. For an executable work, complete source 157 | code means all the source code for all modules it contains, plus any 158 | associated interface definition files, plus the scripts used to 159 | control compilation and installation of the executable. However, as a 160 | special exception, the source code distributed need not include 161 | anything that is normally distributed (in either source or binary 162 | form) with the major components (compiler, kernel, and so on) of the 163 | operating system on which the executable runs, unless that component 164 | itself accompanies the executable. 165 | 166 | If distribution of executable or object code is made by offering 167 | access to copy from a designated place, then offering equivalent 168 | access to copy the source code from the same place counts as 169 | distribution of the source code, even though third parties are not 170 | compelled to copy the source along with the object code. 171 | 172 | 4. You may not copy, modify, sublicense, or distribute the Program 173 | except as expressly provided under this License. Any attempt 174 | otherwise to copy, modify, sublicense or distribute the Program is 175 | void, and will automatically terminate your rights under this License. 176 | However, parties who have received copies, or rights, from you under 177 | this License will not have their licenses terminated so long as such 178 | parties remain in full compliance. 179 | 180 | 5. You are not required to accept this License, since you have not 181 | signed it. However, nothing else grants you permission to modify or 182 | distribute the Program or its derivative works. These actions are 183 | prohibited by law if you do not accept this License. Therefore, by 184 | modifying or distributing the Program (or any work based on the 185 | Program), you indicate your acceptance of this License to do so, and 186 | all its terms and conditions for copying, distributing or modifying 187 | the Program or works based on it. 188 | 189 | 6. Each time you redistribute the Program (or any work based on the 190 | Program), the recipient automatically receives a license from the 191 | original licensor to copy, distribute or modify the Program subject to 192 | these terms and conditions. You may not impose any further 193 | restrictions on the recipients' exercise of the rights granted herein. 194 | You are not responsible for enforcing compliance by third parties to 195 | this License. 196 | 197 | 7. If, as a consequence of a court judgment or allegation of patent 198 | infringement or for any other reason (not limited to patent issues), 199 | conditions are imposed on you (whether by court order, agreement or 200 | otherwise) that contradict the conditions of this License, they do not 201 | excuse you from the conditions of this License. If you cannot 202 | distribute so as to satisfy simultaneously your obligations under this 203 | License and any other pertinent obligations, then as a consequence you 204 | may not distribute the Program at all. For example, if a patent 205 | license would not permit royalty-free redistribution of the Program by 206 | all those who receive copies directly or indirectly through you, then 207 | the only way you could satisfy both it and this License would be to 208 | refrain entirely from distribution of the Program. 209 | 210 | If any portion of this section is held invalid or unenforceable under 211 | any particular circumstance, the balance of the section is intended to 212 | apply and the section as a whole is intended to apply in other 213 | circumstances. 214 | 215 | It is not the purpose of this section to induce you to infringe any 216 | patents or other property right claims or to contest validity of any 217 | such claims; this section has the sole purpose of protecting the 218 | integrity of the free software distribution system, which is 219 | implemented by public license practices. Many people have made 220 | generous contributions to the wide range of software distributed 221 | through that system in reliance on consistent application of that 222 | system; it is up to the author/donor to decide if he or she is willing 223 | to distribute software through any other system and a licensee cannot 224 | impose that choice. 225 | 226 | This section is intended to make thoroughly clear what is believed to 227 | be a consequence of the rest of this License. 228 | 229 | 8. If the distribution and/or use of the Program is restricted in 230 | certain countries either by patents or by copyrighted interfaces, the 231 | original copyright holder who places the Program under this License 232 | may add an explicit geographical distribution limitation excluding 233 | those countries, so that distribution is permitted only in or among 234 | countries not thus excluded. In such case, this License incorporates 235 | the limitation as if written in the body of this License. 236 | 237 | 9. The Free Software Foundation may publish revised and/or new versions 238 | of the General Public License from time to time. Such new versions will 239 | be similar in spirit to the present version, but may differ in detail to 240 | address new problems or concerns. 241 | 242 | Each version is given a distinguishing version number. If the Program 243 | specifies a version number of this License which applies to it and "any 244 | later version", you have the option of following the terms and conditions 245 | either of that version or of any later version published by the Free 246 | Software Foundation. If the Program does not specify a version number of 247 | this License, you may choose any version ever published by the Free Software 248 | Foundation. 249 | 250 | 10. If you wish to incorporate parts of the Program into other free 251 | programs whose distribution conditions are different, write to the author 252 | to ask for permission. For software which is copyrighted by the Free 253 | Software Foundation, write to the Free Software Foundation; we sometimes 254 | make exceptions for this. Our decision will be guided by the two goals 255 | of preserving the free status of all derivatives of our free software and 256 | of promoting the sharing and reuse of software generally. 257 | 258 | NO WARRANTY 259 | 260 | 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY 261 | FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN 262 | OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES 263 | PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED 264 | OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 265 | MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS 266 | TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE 267 | PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, 268 | REPAIR OR CORRECTION. 269 | 270 | 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 271 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR 272 | REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, 273 | INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING 274 | OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED 275 | TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY 276 | YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER 277 | PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE 278 | POSSIBILITY OF SUCH DAMAGES. 279 | 280 | END OF TERMS AND CONDITIONS 281 | 282 | How to Apply These Terms to Your New Programs 283 | 284 | If you develop a new program, and you want it to be of the greatest 285 | possible use to the public, the best way to achieve this is to make it 286 | free software which everyone can redistribute and change under these terms. 287 | 288 | To do so, attach the following notices to the program. It is safest 289 | to attach them to the start of each source file to most effectively 290 | convey the exclusion of warranty; and each file should have at least 291 | the "copyright" line and a pointer to where the full notice is found. 292 | 293 | 294 | Copyright (C) 295 | 296 | This program is free software; you can redistribute it and/or modify 297 | it under the terms of the GNU General Public License as published by 298 | the Free Software Foundation; either version 2 of the License, or 299 | (at your option) any later version. 300 | 301 | This program is distributed in the hope that it will be useful, 302 | but WITHOUT ANY WARRANTY; without even the implied warranty of 303 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 304 | GNU General Public License for more details. 305 | 306 | You should have received a copy of the GNU General Public License along 307 | with this program; if not, write to the Free Software Foundation, Inc., 308 | 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. 309 | 310 | Also add information on how to contact you by electronic and paper mail. 311 | 312 | If the program is interactive, make it output a short notice like this 313 | when it starts in an interactive mode: 314 | 315 | Gnomovision version 69, Copyright (C) year name of author 316 | Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 317 | This is free software, and you are welcome to redistribute it 318 | under certain conditions; type `show c' for details. 319 | 320 | The hypothetical commands `show w' and `show c' should show the appropriate 321 | parts of the General Public License. Of course, the commands you use may 322 | be called something other than `show w' and `show c'; they could even be 323 | mouse-clicks or menu items--whatever suits your program. 324 | 325 | You should also get your employer (if you work as a programmer) or your 326 | school, if any, to sign a "copyright disclaimer" for the program, if 327 | necessary. Here is a sample; alter the names: 328 | 329 | Yoyodyne, Inc., hereby disclaims all copyright interest in the program 330 | `Gnomovision' (which makes passes at compilers) written by James Hacker. 331 | 332 | , 1 April 1989 333 | Ty Coon, President of Vice 334 | 335 | This General Public License does not permit incorporating your program into 336 | proprietary programs. If your program is a subroutine library, you may 337 | consider it more useful to permit linking proprietary applications with the 338 | library. If this is what you want to do, use the GNU Lesser General 339 | Public License instead of this License. 340 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Setting up Express JS REST API, Postgres, and Sequelize ORM with ES6+ 2 | 3 | Learn how setup is implemented: [here](https://dev.to/richienabuk/setting-up-express-js-rest-api-postgres-and-sequelize-orm-with-es6-4m08) 4 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | import express from 'express'; 2 | import route from './src/routes' 3 | 4 | const app = express(); 5 | 6 | app.use(express.urlencoded({ extended: true })); 7 | app.use(express.json()); 8 | 9 | route(app); 10 | 11 | const port = 5000; 12 | 13 | app.listen(port, () => { 14 | console.log('App is now running at port ', port) 15 | }) 16 | -------------------------------------------------------------------------------- /package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "project", 3 | "version": "1.0.0", 4 | "lockfileVersion": 1, 5 | "requires": true, 6 | "dependencies": { 7 | "@babel/code-frame": { 8 | "version": "7.12.11", 9 | "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz", 10 | "integrity": "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==", 11 | "requires": { 12 | "@babel/highlight": "^7.10.4" 13 | } 14 | }, 15 | "@babel/compat-data": { 16 | "version": "7.12.7", 17 | "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.12.7.tgz", 18 | "integrity": "sha512-YaxPMGs/XIWtYqrdEOZOCPsVWfEoriXopnsz3/i7apYPXQ3698UFhS6dVT1KN5qOsWmVgw/FOrmQgpRaZayGsw==" 19 | }, 20 | "@babel/core": { 21 | "version": "7.12.10", 22 | "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.12.10.tgz", 23 | "integrity": "sha512-eTAlQKq65zHfkHZV0sIVODCPGVgoo1HdBlbSLi9CqOzuZanMv2ihzY+4paiKr1mH+XmYESMAmJ/dpZ68eN6d8w==", 24 | "requires": { 25 | "@babel/code-frame": "^7.10.4", 26 | "@babel/generator": "^7.12.10", 27 | "@babel/helper-module-transforms": "^7.12.1", 28 | "@babel/helpers": "^7.12.5", 29 | "@babel/parser": "^7.12.10", 30 | "@babel/template": "^7.12.7", 31 | "@babel/traverse": "^7.12.10", 32 | "@babel/types": "^7.12.10", 33 | "convert-source-map": "^1.7.0", 34 | "debug": "^4.1.0", 35 | "gensync": "^1.0.0-beta.1", 36 | "json5": "^2.1.2", 37 | "lodash": "^4.17.19", 38 | "semver": "^5.4.1", 39 | "source-map": "^0.5.0" 40 | }, 41 | "dependencies": { 42 | "debug": { 43 | "version": "4.3.1", 44 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz", 45 | "integrity": "sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==", 46 | "requires": { 47 | "ms": "2.1.2" 48 | } 49 | }, 50 | "ms": { 51 | "version": "2.1.2", 52 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", 53 | "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" 54 | } 55 | } 56 | }, 57 | "@babel/generator": { 58 | "version": "7.12.11", 59 | "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.12.11.tgz", 60 | "integrity": "sha512-Ggg6WPOJtSi8yYQvLVjG8F/TlpWDlKx0OpS4Kt+xMQPs5OaGYWy+v1A+1TvxI6sAMGZpKWWoAQ1DaeQbImlItA==", 61 | "requires": { 62 | "@babel/types": "^7.12.11", 63 | "jsesc": "^2.5.1", 64 | "source-map": "^0.5.0" 65 | } 66 | }, 67 | "@babel/helper-annotate-as-pure": { 68 | "version": "7.12.10", 69 | "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.12.10.tgz", 70 | "integrity": "sha512-XplmVbC1n+KY6jL8/fgLVXXUauDIB+lD5+GsQEh6F6GBF1dq1qy4DP4yXWzDKcoqXB3X58t61e85Fitoww4JVQ==", 71 | "requires": { 72 | "@babel/types": "^7.12.10" 73 | } 74 | }, 75 | "@babel/helper-builder-binary-assignment-operator-visitor": { 76 | "version": "7.10.4", 77 | "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.10.4.tgz", 78 | "integrity": "sha512-L0zGlFrGWZK4PbT8AszSfLTM5sDU1+Az/En9VrdT8/LmEiJt4zXt+Jve9DCAnQcbqDhCI+29y/L93mrDzddCcg==", 79 | "requires": { 80 | "@babel/helper-explode-assignable-expression": "^7.10.4", 81 | "@babel/types": "^7.10.4" 82 | } 83 | }, 84 | "@babel/helper-compilation-targets": { 85 | "version": "7.12.5", 86 | "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.12.5.tgz", 87 | "integrity": "sha512-+qH6NrscMolUlzOYngSBMIOQpKUGPPsc61Bu5W10mg84LxZ7cmvnBHzARKbDoFxVvqqAbj6Tg6N7bSrWSPXMyw==", 88 | "requires": { 89 | "@babel/compat-data": "^7.12.5", 90 | "@babel/helper-validator-option": "^7.12.1", 91 | "browserslist": "^4.14.5", 92 | "semver": "^5.5.0" 93 | } 94 | }, 95 | "@babel/helper-create-class-features-plugin": { 96 | "version": "7.12.1", 97 | "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.12.1.tgz", 98 | "integrity": "sha512-hkL++rWeta/OVOBTRJc9a5Azh5mt5WgZUGAKMD8JM141YsE08K//bp1unBBieO6rUKkIPyUE0USQ30jAy3Sk1w==", 99 | "requires": { 100 | "@babel/helper-function-name": "^7.10.4", 101 | "@babel/helper-member-expression-to-functions": "^7.12.1", 102 | "@babel/helper-optimise-call-expression": "^7.10.4", 103 | "@babel/helper-replace-supers": "^7.12.1", 104 | "@babel/helper-split-export-declaration": "^7.10.4" 105 | } 106 | }, 107 | "@babel/helper-create-regexp-features-plugin": { 108 | "version": "7.12.7", 109 | "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.12.7.tgz", 110 | "integrity": "sha512-idnutvQPdpbduutvi3JVfEgcVIHooQnhvhx0Nk9isOINOIGYkZea1Pk2JlJRiUnMefrlvr0vkByATBY/mB4vjQ==", 111 | "requires": { 112 | "@babel/helper-annotate-as-pure": "^7.10.4", 113 | "regexpu-core": "^4.7.1" 114 | } 115 | }, 116 | "@babel/helper-define-map": { 117 | "version": "7.10.5", 118 | "resolved": "https://registry.npmjs.org/@babel/helper-define-map/-/helper-define-map-7.10.5.tgz", 119 | "integrity": "sha512-fMw4kgFB720aQFXSVaXr79pjjcW5puTCM16+rECJ/plGS+zByelE8l9nCpV1GibxTnFVmUuYG9U8wYfQHdzOEQ==", 120 | "requires": { 121 | "@babel/helper-function-name": "^7.10.4", 122 | "@babel/types": "^7.10.5", 123 | "lodash": "^4.17.19" 124 | } 125 | }, 126 | "@babel/helper-explode-assignable-expression": { 127 | "version": "7.12.1", 128 | "resolved": "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.12.1.tgz", 129 | "integrity": "sha512-dmUwH8XmlrUpVqgtZ737tK88v07l840z9j3OEhCLwKTkjlvKpfqXVIZ0wpK3aeOxspwGrf/5AP5qLx4rO3w5rA==", 130 | "requires": { 131 | "@babel/types": "^7.12.1" 132 | } 133 | }, 134 | "@babel/helper-function-name": { 135 | "version": "7.12.11", 136 | "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.12.11.tgz", 137 | "integrity": "sha512-AtQKjtYNolKNi6nNNVLQ27CP6D9oFR6bq/HPYSizlzbp7uC1M59XJe8L+0uXjbIaZaUJF99ruHqVGiKXU/7ybA==", 138 | "requires": { 139 | "@babel/helper-get-function-arity": "^7.12.10", 140 | "@babel/template": "^7.12.7", 141 | "@babel/types": "^7.12.11" 142 | } 143 | }, 144 | "@babel/helper-get-function-arity": { 145 | "version": "7.12.10", 146 | "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.12.10.tgz", 147 | "integrity": "sha512-mm0n5BPjR06wh9mPQaDdXWDoll/j5UpCAPl1x8fS71GHm7HA6Ua2V4ylG1Ju8lvcTOietbPNNPaSilKj+pj+Ag==", 148 | "requires": { 149 | "@babel/types": "^7.12.10" 150 | } 151 | }, 152 | "@babel/helper-hoist-variables": { 153 | "version": "7.10.4", 154 | "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.10.4.tgz", 155 | "integrity": "sha512-wljroF5PgCk2juF69kanHVs6vrLwIPNp6DLD+Lrl3hoQ3PpPPikaDRNFA+0t81NOoMt2DL6WW/mdU8k4k6ZzuA==", 156 | "requires": { 157 | "@babel/types": "^7.10.4" 158 | } 159 | }, 160 | "@babel/helper-member-expression-to-functions": { 161 | "version": "7.12.7", 162 | "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.12.7.tgz", 163 | "integrity": "sha512-DCsuPyeWxeHgh1Dus7APn7iza42i/qXqiFPWyBDdOFtvS581JQePsc1F/nD+fHrcswhLlRc2UpYS1NwERxZhHw==", 164 | "requires": { 165 | "@babel/types": "^7.12.7" 166 | } 167 | }, 168 | "@babel/helper-module-imports": { 169 | "version": "7.12.5", 170 | "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.12.5.tgz", 171 | "integrity": "sha512-SR713Ogqg6++uexFRORf/+nPXMmWIn80TALu0uaFb+iQIUoR7bOC7zBWyzBs5b3tBBJXuyD0cRu1F15GyzjOWA==", 172 | "requires": { 173 | "@babel/types": "^7.12.5" 174 | } 175 | }, 176 | "@babel/helper-module-transforms": { 177 | "version": "7.12.1", 178 | "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.12.1.tgz", 179 | "integrity": "sha512-QQzehgFAZ2bbISiCpmVGfiGux8YVFXQ0abBic2Envhej22DVXV9nCFaS5hIQbkyo1AdGb+gNME2TSh3hYJVV/w==", 180 | "requires": { 181 | "@babel/helper-module-imports": "^7.12.1", 182 | "@babel/helper-replace-supers": "^7.12.1", 183 | "@babel/helper-simple-access": "^7.12.1", 184 | "@babel/helper-split-export-declaration": "^7.11.0", 185 | "@babel/helper-validator-identifier": "^7.10.4", 186 | "@babel/template": "^7.10.4", 187 | "@babel/traverse": "^7.12.1", 188 | "@babel/types": "^7.12.1", 189 | "lodash": "^4.17.19" 190 | } 191 | }, 192 | "@babel/helper-optimise-call-expression": { 193 | "version": "7.12.10", 194 | "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.12.10.tgz", 195 | "integrity": "sha512-4tpbU0SrSTjjt65UMWSrUOPZTsgvPgGG4S8QSTNHacKzpS51IVWGDj0yCwyeZND/i+LSN2g/O63jEXEWm49sYQ==", 196 | "requires": { 197 | "@babel/types": "^7.12.10" 198 | } 199 | }, 200 | "@babel/helper-plugin-utils": { 201 | "version": "7.10.4", 202 | "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz", 203 | "integrity": "sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==" 204 | }, 205 | "@babel/helper-remap-async-to-generator": { 206 | "version": "7.12.1", 207 | "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.12.1.tgz", 208 | "integrity": "sha512-9d0KQCRM8clMPcDwo8SevNs+/9a8yWVVmaE80FGJcEP8N1qToREmWEGnBn8BUlJhYRFz6fqxeRL1sl5Ogsed7A==", 209 | "requires": { 210 | "@babel/helper-annotate-as-pure": "^7.10.4", 211 | "@babel/helper-wrap-function": "^7.10.4", 212 | "@babel/types": "^7.12.1" 213 | } 214 | }, 215 | "@babel/helper-replace-supers": { 216 | "version": "7.12.11", 217 | "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.12.11.tgz", 218 | "integrity": "sha512-q+w1cqmhL7R0FNzth/PLLp2N+scXEK/L2AHbXUyydxp828F4FEa5WcVoqui9vFRiHDQErj9Zof8azP32uGVTRA==", 219 | "requires": { 220 | "@babel/helper-member-expression-to-functions": "^7.12.7", 221 | "@babel/helper-optimise-call-expression": "^7.12.10", 222 | "@babel/traverse": "^7.12.10", 223 | "@babel/types": "^7.12.11" 224 | } 225 | }, 226 | "@babel/helper-simple-access": { 227 | "version": "7.12.1", 228 | "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.12.1.tgz", 229 | "integrity": "sha512-OxBp7pMrjVewSSC8fXDFrHrBcJATOOFssZwv16F3/6Xtc138GHybBfPbm9kfiqQHKhYQrlamWILwlDCeyMFEaA==", 230 | "requires": { 231 | "@babel/types": "^7.12.1" 232 | } 233 | }, 234 | "@babel/helper-skip-transparent-expression-wrappers": { 235 | "version": "7.12.1", 236 | "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.12.1.tgz", 237 | "integrity": "sha512-Mf5AUuhG1/OCChOJ/HcADmvcHM42WJockombn8ATJG3OnyiSxBK/Mm5x78BQWvmtXZKHgbjdGL2kin/HOLlZGA==", 238 | "requires": { 239 | "@babel/types": "^7.12.1" 240 | } 241 | }, 242 | "@babel/helper-split-export-declaration": { 243 | "version": "7.12.11", 244 | "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.12.11.tgz", 245 | "integrity": "sha512-LsIVN8j48gHgwzfocYUSkO/hjYAOJqlpJEc7tGXcIm4cubjVUf8LGW6eWRyxEu7gA25q02p0rQUWoCI33HNS5g==", 246 | "requires": { 247 | "@babel/types": "^7.12.11" 248 | } 249 | }, 250 | "@babel/helper-validator-identifier": { 251 | "version": "7.12.11", 252 | "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz", 253 | "integrity": "sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw==" 254 | }, 255 | "@babel/helper-validator-option": { 256 | "version": "7.12.11", 257 | "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.12.11.tgz", 258 | "integrity": "sha512-TBFCyj939mFSdeX7U7DDj32WtzYY7fDcalgq8v3fBZMNOJQNn7nOYzMaUCiPxPYfCup69mtIpqlKgMZLvQ8Xhw==" 259 | }, 260 | "@babel/helper-wrap-function": { 261 | "version": "7.12.3", 262 | "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.12.3.tgz", 263 | "integrity": "sha512-Cvb8IuJDln3rs6tzjW3Y8UeelAOdnpB8xtQ4sme2MSZ9wOxrbThporC0y/EtE16VAtoyEfLM404Xr1e0OOp+ow==", 264 | "requires": { 265 | "@babel/helper-function-name": "^7.10.4", 266 | "@babel/template": "^7.10.4", 267 | "@babel/traverse": "^7.10.4", 268 | "@babel/types": "^7.10.4" 269 | } 270 | }, 271 | "@babel/helpers": { 272 | "version": "7.12.5", 273 | "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.12.5.tgz", 274 | "integrity": "sha512-lgKGMQlKqA8meJqKsW6rUnc4MdUk35Ln0ATDqdM1a/UpARODdI4j5Y5lVfUScnSNkJcdCRAaWkspykNoFg9sJA==", 275 | "requires": { 276 | "@babel/template": "^7.10.4", 277 | "@babel/traverse": "^7.12.5", 278 | "@babel/types": "^7.12.5" 279 | } 280 | }, 281 | "@babel/highlight": { 282 | "version": "7.10.4", 283 | "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.10.4.tgz", 284 | "integrity": "sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA==", 285 | "requires": { 286 | "@babel/helper-validator-identifier": "^7.10.4", 287 | "chalk": "^2.0.0", 288 | "js-tokens": "^4.0.0" 289 | }, 290 | "dependencies": { 291 | "ansi-styles": { 292 | "version": "3.2.1", 293 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", 294 | "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", 295 | "requires": { 296 | "color-convert": "^1.9.0" 297 | } 298 | }, 299 | "chalk": { 300 | "version": "2.4.2", 301 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", 302 | "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", 303 | "requires": { 304 | "ansi-styles": "^3.2.1", 305 | "escape-string-regexp": "^1.0.5", 306 | "supports-color": "^5.3.0" 307 | } 308 | }, 309 | "color-convert": { 310 | "version": "1.9.3", 311 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", 312 | "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", 313 | "requires": { 314 | "color-name": "1.1.3" 315 | } 316 | }, 317 | "color-name": { 318 | "version": "1.1.3", 319 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", 320 | "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" 321 | } 322 | } 323 | }, 324 | "@babel/node": { 325 | "version": "7.12.10", 326 | "resolved": "https://registry.npmjs.org/@babel/node/-/node-7.12.10.tgz", 327 | "integrity": "sha512-lJT1sXp1bEfAZ7B2ChEOOiUxaGbIWkcAixqZDpbHnJWUqIjoofOGo5ON1bJ9HOmtMdF7rqKiOoM7zZSI87El3g==", 328 | "requires": { 329 | "@babel/register": "^7.12.10", 330 | "commander": "^4.0.1", 331 | "core-js": "^3.2.1", 332 | "lodash": "^4.17.19", 333 | "node-environment-flags": "^1.0.5", 334 | "regenerator-runtime": "^0.13.4", 335 | "v8flags": "^3.1.1" 336 | } 337 | }, 338 | "@babel/parser": { 339 | "version": "7.12.11", 340 | "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.11.tgz", 341 | "integrity": "sha512-N3UxG+uuF4CMYoNj8AhnbAcJF0PiuJ9KHuy1lQmkYsxTer/MAH9UBNHsBoAX/4s6NvlDD047No8mYVGGzLL4hg==" 342 | }, 343 | "@babel/plugin-proposal-async-generator-functions": { 344 | "version": "7.12.12", 345 | "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.12.12.tgz", 346 | "integrity": "sha512-nrz9y0a4xmUrRq51bYkWJIO5SBZyG2ys2qinHsN0zHDHVsUaModrkpyWWWXfGqYQmOL3x9sQIcTNN/pBGpo09A==", 347 | "requires": { 348 | "@babel/helper-plugin-utils": "^7.10.4", 349 | "@babel/helper-remap-async-to-generator": "^7.12.1", 350 | "@babel/plugin-syntax-async-generators": "^7.8.0" 351 | } 352 | }, 353 | "@babel/plugin-proposal-class-properties": { 354 | "version": "7.12.1", 355 | "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.12.1.tgz", 356 | "integrity": "sha512-cKp3dlQsFsEs5CWKnN7BnSHOd0EOW8EKpEjkoz1pO2E5KzIDNV9Ros1b0CnmbVgAGXJubOYVBOGCT1OmJwOI7w==", 357 | "requires": { 358 | "@babel/helper-create-class-features-plugin": "^7.12.1", 359 | "@babel/helper-plugin-utils": "^7.10.4" 360 | } 361 | }, 362 | "@babel/plugin-proposal-dynamic-import": { 363 | "version": "7.12.1", 364 | "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.12.1.tgz", 365 | "integrity": "sha512-a4rhUSZFuq5W8/OO8H7BL5zspjnc1FLd9hlOxIK/f7qG4a0qsqk8uvF/ywgBA8/OmjsapjpvaEOYItfGG1qIvQ==", 366 | "requires": { 367 | "@babel/helper-plugin-utils": "^7.10.4", 368 | "@babel/plugin-syntax-dynamic-import": "^7.8.0" 369 | } 370 | }, 371 | "@babel/plugin-proposal-export-namespace-from": { 372 | "version": "7.12.1", 373 | "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.12.1.tgz", 374 | "integrity": "sha512-6CThGf0irEkzujYS5LQcjBx8j/4aQGiVv7J9+2f7pGfxqyKh3WnmVJYW3hdrQjyksErMGBPQrCnHfOtna+WLbw==", 375 | "requires": { 376 | "@babel/helper-plugin-utils": "^7.10.4", 377 | "@babel/plugin-syntax-export-namespace-from": "^7.8.3" 378 | } 379 | }, 380 | "@babel/plugin-proposal-json-strings": { 381 | "version": "7.12.1", 382 | "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.12.1.tgz", 383 | "integrity": "sha512-GoLDUi6U9ZLzlSda2Df++VSqDJg3CG+dR0+iWsv6XRw1rEq+zwt4DirM9yrxW6XWaTpmai1cWJLMfM8qQJf+yw==", 384 | "requires": { 385 | "@babel/helper-plugin-utils": "^7.10.4", 386 | "@babel/plugin-syntax-json-strings": "^7.8.0" 387 | } 388 | }, 389 | "@babel/plugin-proposal-logical-assignment-operators": { 390 | "version": "7.12.1", 391 | "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.12.1.tgz", 392 | "integrity": "sha512-k8ZmVv0JU+4gcUGeCDZOGd0lCIamU/sMtIiX3UWnUc5yzgq6YUGyEolNYD+MLYKfSzgECPcqetVcJP9Afe/aCA==", 393 | "requires": { 394 | "@babel/helper-plugin-utils": "^7.10.4", 395 | "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" 396 | } 397 | }, 398 | "@babel/plugin-proposal-nullish-coalescing-operator": { 399 | "version": "7.12.1", 400 | "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.12.1.tgz", 401 | "integrity": "sha512-nZY0ESiaQDI1y96+jk6VxMOaL4LPo/QDHBqL+SF3/vl6dHkTwHlOI8L4ZwuRBHgakRBw5zsVylel7QPbbGuYgg==", 402 | "requires": { 403 | "@babel/helper-plugin-utils": "^7.10.4", 404 | "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.0" 405 | } 406 | }, 407 | "@babel/plugin-proposal-numeric-separator": { 408 | "version": "7.12.7", 409 | "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.12.7.tgz", 410 | "integrity": "sha512-8c+uy0qmnRTeukiGsjLGy6uVs/TFjJchGXUeBqlG4VWYOdJWkhhVPdQ3uHwbmalfJwv2JsV0qffXP4asRfL2SQ==", 411 | "requires": { 412 | "@babel/helper-plugin-utils": "^7.10.4", 413 | "@babel/plugin-syntax-numeric-separator": "^7.10.4" 414 | } 415 | }, 416 | "@babel/plugin-proposal-object-rest-spread": { 417 | "version": "7.12.1", 418 | "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.12.1.tgz", 419 | "integrity": "sha512-s6SowJIjzlhx8o7lsFx5zmY4At6CTtDvgNQDdPzkBQucle58A6b/TTeEBYtyDgmcXjUTM+vE8YOGHZzzbc/ioA==", 420 | "requires": { 421 | "@babel/helper-plugin-utils": "^7.10.4", 422 | "@babel/plugin-syntax-object-rest-spread": "^7.8.0", 423 | "@babel/plugin-transform-parameters": "^7.12.1" 424 | } 425 | }, 426 | "@babel/plugin-proposal-optional-catch-binding": { 427 | "version": "7.12.1", 428 | "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.12.1.tgz", 429 | "integrity": "sha512-hFvIjgprh9mMw5v42sJWLI1lzU5L2sznP805zeT6rySVRA0Y18StRhDqhSxlap0oVgItRsB6WSROp4YnJTJz0g==", 430 | "requires": { 431 | "@babel/helper-plugin-utils": "^7.10.4", 432 | "@babel/plugin-syntax-optional-catch-binding": "^7.8.0" 433 | } 434 | }, 435 | "@babel/plugin-proposal-optional-chaining": { 436 | "version": "7.12.7", 437 | "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.12.7.tgz", 438 | "integrity": "sha512-4ovylXZ0PWmwoOvhU2vhnzVNnm88/Sm9nx7V8BPgMvAzn5zDou3/Awy0EjglyubVHasJj+XCEkr/r1X3P5elCA==", 439 | "requires": { 440 | "@babel/helper-plugin-utils": "^7.10.4", 441 | "@babel/helper-skip-transparent-expression-wrappers": "^7.12.1", 442 | "@babel/plugin-syntax-optional-chaining": "^7.8.0" 443 | } 444 | }, 445 | "@babel/plugin-proposal-private-methods": { 446 | "version": "7.12.1", 447 | "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.12.1.tgz", 448 | "integrity": "sha512-mwZ1phvH7/NHK6Kf8LP7MYDogGV+DKB1mryFOEwx5EBNQrosvIczzZFTUmWaeujd5xT6G1ELYWUz3CutMhjE1w==", 449 | "requires": { 450 | "@babel/helper-create-class-features-plugin": "^7.12.1", 451 | "@babel/helper-plugin-utils": "^7.10.4" 452 | } 453 | }, 454 | "@babel/plugin-proposal-unicode-property-regex": { 455 | "version": "7.12.1", 456 | "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.12.1.tgz", 457 | "integrity": "sha512-MYq+l+PvHuw/rKUz1at/vb6nCnQ2gmJBNaM62z0OgH7B2W1D9pvkpYtlti9bGtizNIU1K3zm4bZF9F91efVY0w==", 458 | "requires": { 459 | "@babel/helper-create-regexp-features-plugin": "^7.12.1", 460 | "@babel/helper-plugin-utils": "^7.10.4" 461 | } 462 | }, 463 | "@babel/plugin-syntax-async-generators": { 464 | "version": "7.8.4", 465 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", 466 | "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", 467 | "requires": { 468 | "@babel/helper-plugin-utils": "^7.8.0" 469 | } 470 | }, 471 | "@babel/plugin-syntax-class-properties": { 472 | "version": "7.12.1", 473 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.1.tgz", 474 | "integrity": "sha512-U40A76x5gTwmESz+qiqssqmeEsKvcSyvtgktrm0uzcARAmM9I1jR221f6Oq+GmHrcD+LvZDag1UTOTe2fL3TeA==", 475 | "requires": { 476 | "@babel/helper-plugin-utils": "^7.10.4" 477 | } 478 | }, 479 | "@babel/plugin-syntax-dynamic-import": { 480 | "version": "7.8.3", 481 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz", 482 | "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==", 483 | "requires": { 484 | "@babel/helper-plugin-utils": "^7.8.0" 485 | } 486 | }, 487 | "@babel/plugin-syntax-export-namespace-from": { 488 | "version": "7.8.3", 489 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz", 490 | "integrity": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==", 491 | "requires": { 492 | "@babel/helper-plugin-utils": "^7.8.3" 493 | } 494 | }, 495 | "@babel/plugin-syntax-json-strings": { 496 | "version": "7.8.3", 497 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", 498 | "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", 499 | "requires": { 500 | "@babel/helper-plugin-utils": "^7.8.0" 501 | } 502 | }, 503 | "@babel/plugin-syntax-logical-assignment-operators": { 504 | "version": "7.10.4", 505 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", 506 | "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", 507 | "requires": { 508 | "@babel/helper-plugin-utils": "^7.10.4" 509 | } 510 | }, 511 | "@babel/plugin-syntax-nullish-coalescing-operator": { 512 | "version": "7.8.3", 513 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", 514 | "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", 515 | "requires": { 516 | "@babel/helper-plugin-utils": "^7.8.0" 517 | } 518 | }, 519 | "@babel/plugin-syntax-numeric-separator": { 520 | "version": "7.10.4", 521 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", 522 | "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", 523 | "requires": { 524 | "@babel/helper-plugin-utils": "^7.10.4" 525 | } 526 | }, 527 | "@babel/plugin-syntax-object-rest-spread": { 528 | "version": "7.8.3", 529 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", 530 | "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", 531 | "requires": { 532 | "@babel/helper-plugin-utils": "^7.8.0" 533 | } 534 | }, 535 | "@babel/plugin-syntax-optional-catch-binding": { 536 | "version": "7.8.3", 537 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", 538 | "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", 539 | "requires": { 540 | "@babel/helper-plugin-utils": "^7.8.0" 541 | } 542 | }, 543 | "@babel/plugin-syntax-optional-chaining": { 544 | "version": "7.8.3", 545 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", 546 | "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", 547 | "requires": { 548 | "@babel/helper-plugin-utils": "^7.8.0" 549 | } 550 | }, 551 | "@babel/plugin-syntax-top-level-await": { 552 | "version": "7.12.1", 553 | "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.12.1.tgz", 554 | "integrity": "sha512-i7ooMZFS+a/Om0crxZodrTzNEPJHZrlMVGMTEpFAj6rYY/bKCddB0Dk/YxfPuYXOopuhKk/e1jV6h+WUU9XN3A==", 555 | "requires": { 556 | "@babel/helper-plugin-utils": "^7.10.4" 557 | } 558 | }, 559 | "@babel/plugin-transform-arrow-functions": { 560 | "version": "7.12.1", 561 | "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.12.1.tgz", 562 | "integrity": "sha512-5QB50qyN44fzzz4/qxDPQMBCTHgxg3n0xRBLJUmBlLoU/sFvxVWGZF/ZUfMVDQuJUKXaBhbupxIzIfZ6Fwk/0A==", 563 | "requires": { 564 | "@babel/helper-plugin-utils": "^7.10.4" 565 | } 566 | }, 567 | "@babel/plugin-transform-async-to-generator": { 568 | "version": "7.12.1", 569 | "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.12.1.tgz", 570 | "integrity": "sha512-SDtqoEcarK1DFlRJ1hHRY5HvJUj5kX4qmtpMAm2QnhOlyuMC4TMdCRgW6WXpv93rZeYNeLP22y8Aq2dbcDRM1A==", 571 | "requires": { 572 | "@babel/helper-module-imports": "^7.12.1", 573 | "@babel/helper-plugin-utils": "^7.10.4", 574 | "@babel/helper-remap-async-to-generator": "^7.12.1" 575 | } 576 | }, 577 | "@babel/plugin-transform-block-scoped-functions": { 578 | "version": "7.12.1", 579 | "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.12.1.tgz", 580 | "integrity": "sha512-5OpxfuYnSgPalRpo8EWGPzIYf0lHBWORCkj5M0oLBwHdlux9Ri36QqGW3/LR13RSVOAoUUMzoPI/jpE4ABcHoA==", 581 | "requires": { 582 | "@babel/helper-plugin-utils": "^7.10.4" 583 | } 584 | }, 585 | "@babel/plugin-transform-block-scoping": { 586 | "version": "7.12.12", 587 | "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.12.12.tgz", 588 | "integrity": "sha512-VOEPQ/ExOVqbukuP7BYJtI5ZxxsmegTwzZ04j1aF0dkSypGo9XpDHuOrABsJu+ie+penpSJheDJ11x1BEZNiyQ==", 589 | "requires": { 590 | "@babel/helper-plugin-utils": "^7.10.4" 591 | } 592 | }, 593 | "@babel/plugin-transform-classes": { 594 | "version": "7.12.1", 595 | "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.12.1.tgz", 596 | "integrity": "sha512-/74xkA7bVdzQTBeSUhLLJgYIcxw/dpEpCdRDiHgPJ3Mv6uC11UhjpOhl72CgqbBCmt1qtssCyB2xnJm1+PFjog==", 597 | "requires": { 598 | "@babel/helper-annotate-as-pure": "^7.10.4", 599 | "@babel/helper-define-map": "^7.10.4", 600 | "@babel/helper-function-name": "^7.10.4", 601 | "@babel/helper-optimise-call-expression": "^7.10.4", 602 | "@babel/helper-plugin-utils": "^7.10.4", 603 | "@babel/helper-replace-supers": "^7.12.1", 604 | "@babel/helper-split-export-declaration": "^7.10.4", 605 | "globals": "^11.1.0" 606 | } 607 | }, 608 | "@babel/plugin-transform-computed-properties": { 609 | "version": "7.12.1", 610 | "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.12.1.tgz", 611 | "integrity": "sha512-vVUOYpPWB7BkgUWPo4C44mUQHpTZXakEqFjbv8rQMg7TC6S6ZhGZ3otQcRH6u7+adSlE5i0sp63eMC/XGffrzg==", 612 | "requires": { 613 | "@babel/helper-plugin-utils": "^7.10.4" 614 | } 615 | }, 616 | "@babel/plugin-transform-destructuring": { 617 | "version": "7.12.1", 618 | "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.12.1.tgz", 619 | "integrity": "sha512-fRMYFKuzi/rSiYb2uRLiUENJOKq4Gnl+6qOv5f8z0TZXg3llUwUhsNNwrwaT/6dUhJTzNpBr+CUvEWBtfNY1cw==", 620 | "requires": { 621 | "@babel/helper-plugin-utils": "^7.10.4" 622 | } 623 | }, 624 | "@babel/plugin-transform-dotall-regex": { 625 | "version": "7.12.1", 626 | "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.12.1.tgz", 627 | "integrity": "sha512-B2pXeRKoLszfEW7J4Hg9LoFaWEbr/kzo3teWHmtFCszjRNa/b40f9mfeqZsIDLLt/FjwQ6pz/Gdlwy85xNckBA==", 628 | "requires": { 629 | "@babel/helper-create-regexp-features-plugin": "^7.12.1", 630 | "@babel/helper-plugin-utils": "^7.10.4" 631 | } 632 | }, 633 | "@babel/plugin-transform-duplicate-keys": { 634 | "version": "7.12.1", 635 | "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.12.1.tgz", 636 | "integrity": "sha512-iRght0T0HztAb/CazveUpUQrZY+aGKKaWXMJ4uf9YJtqxSUe09j3wteztCUDRHs+SRAL7yMuFqUsLoAKKzgXjw==", 637 | "requires": { 638 | "@babel/helper-plugin-utils": "^7.10.4" 639 | } 640 | }, 641 | "@babel/plugin-transform-exponentiation-operator": { 642 | "version": "7.12.1", 643 | "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.12.1.tgz", 644 | "integrity": "sha512-7tqwy2bv48q+c1EHbXK0Zx3KXd2RVQp6OC7PbwFNt/dPTAV3Lu5sWtWuAj8owr5wqtWnqHfl2/mJlUmqkChKug==", 645 | "requires": { 646 | "@babel/helper-builder-binary-assignment-operator-visitor": "^7.10.4", 647 | "@babel/helper-plugin-utils": "^7.10.4" 648 | } 649 | }, 650 | "@babel/plugin-transform-for-of": { 651 | "version": "7.12.1", 652 | "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.12.1.tgz", 653 | "integrity": "sha512-Zaeq10naAsuHo7heQvyV0ptj4dlZJwZgNAtBYBnu5nNKJoW62m0zKcIEyVECrUKErkUkg6ajMy4ZfnVZciSBhg==", 654 | "requires": { 655 | "@babel/helper-plugin-utils": "^7.10.4" 656 | } 657 | }, 658 | "@babel/plugin-transform-function-name": { 659 | "version": "7.12.1", 660 | "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.12.1.tgz", 661 | "integrity": "sha512-JF3UgJUILoFrFMEnOJLJkRHSk6LUSXLmEFsA23aR2O5CSLUxbeUX1IZ1YQ7Sn0aXb601Ncwjx73a+FVqgcljVw==", 662 | "requires": { 663 | "@babel/helper-function-name": "^7.10.4", 664 | "@babel/helper-plugin-utils": "^7.10.4" 665 | } 666 | }, 667 | "@babel/plugin-transform-literals": { 668 | "version": "7.12.1", 669 | "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.12.1.tgz", 670 | "integrity": "sha512-+PxVGA+2Ag6uGgL0A5f+9rklOnnMccwEBzwYFL3EUaKuiyVnUipyXncFcfjSkbimLrODoqki1U9XxZzTvfN7IQ==", 671 | "requires": { 672 | "@babel/helper-plugin-utils": "^7.10.4" 673 | } 674 | }, 675 | "@babel/plugin-transform-member-expression-literals": { 676 | "version": "7.12.1", 677 | "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.12.1.tgz", 678 | "integrity": "sha512-1sxePl6z9ad0gFMB9KqmYofk34flq62aqMt9NqliS/7hPEpURUCMbyHXrMPlo282iY7nAvUB1aQd5mg79UD9Jg==", 679 | "requires": { 680 | "@babel/helper-plugin-utils": "^7.10.4" 681 | } 682 | }, 683 | "@babel/plugin-transform-modules-amd": { 684 | "version": "7.12.1", 685 | "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.12.1.tgz", 686 | "integrity": "sha512-tDW8hMkzad5oDtzsB70HIQQRBiTKrhfgwC/KkJeGsaNFTdWhKNt/BiE8c5yj19XiGyrxpbkOfH87qkNg1YGlOQ==", 687 | "requires": { 688 | "@babel/helper-module-transforms": "^7.12.1", 689 | "@babel/helper-plugin-utils": "^7.10.4", 690 | "babel-plugin-dynamic-import-node": "^2.3.3" 691 | } 692 | }, 693 | "@babel/plugin-transform-modules-commonjs": { 694 | "version": "7.12.1", 695 | "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.12.1.tgz", 696 | "integrity": "sha512-dY789wq6l0uLY8py9c1B48V8mVL5gZh/+PQ5ZPrylPYsnAvnEMjqsUXkuoDVPeVK+0VyGar+D08107LzDQ6pag==", 697 | "requires": { 698 | "@babel/helper-module-transforms": "^7.12.1", 699 | "@babel/helper-plugin-utils": "^7.10.4", 700 | "@babel/helper-simple-access": "^7.12.1", 701 | "babel-plugin-dynamic-import-node": "^2.3.3" 702 | } 703 | }, 704 | "@babel/plugin-transform-modules-systemjs": { 705 | "version": "7.12.1", 706 | "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.12.1.tgz", 707 | "integrity": "sha512-Hn7cVvOavVh8yvW6fLwveFqSnd7rbQN3zJvoPNyNaQSvgfKmDBO9U1YL9+PCXGRlZD9tNdWTy5ACKqMuzyn32Q==", 708 | "requires": { 709 | "@babel/helper-hoist-variables": "^7.10.4", 710 | "@babel/helper-module-transforms": "^7.12.1", 711 | "@babel/helper-plugin-utils": "^7.10.4", 712 | "@babel/helper-validator-identifier": "^7.10.4", 713 | "babel-plugin-dynamic-import-node": "^2.3.3" 714 | } 715 | }, 716 | "@babel/plugin-transform-modules-umd": { 717 | "version": "7.12.1", 718 | "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.12.1.tgz", 719 | "integrity": "sha512-aEIubCS0KHKM0zUos5fIoQm+AZUMt1ZvMpqz0/H5qAQ7vWylr9+PLYurT+Ic7ID/bKLd4q8hDovaG3Zch2uz5Q==", 720 | "requires": { 721 | "@babel/helper-module-transforms": "^7.12.1", 722 | "@babel/helper-plugin-utils": "^7.10.4" 723 | } 724 | }, 725 | "@babel/plugin-transform-named-capturing-groups-regex": { 726 | "version": "7.12.1", 727 | "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.12.1.tgz", 728 | "integrity": "sha512-tB43uQ62RHcoDp9v2Nsf+dSM8sbNodbEicbQNA53zHz8pWUhsgHSJCGpt7daXxRydjb0KnfmB+ChXOv3oADp1Q==", 729 | "requires": { 730 | "@babel/helper-create-regexp-features-plugin": "^7.12.1" 731 | } 732 | }, 733 | "@babel/plugin-transform-new-target": { 734 | "version": "7.12.1", 735 | "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.12.1.tgz", 736 | "integrity": "sha512-+eW/VLcUL5L9IvJH7rT1sT0CzkdUTvPrXC2PXTn/7z7tXLBuKvezYbGdxD5WMRoyvyaujOq2fWoKl869heKjhw==", 737 | "requires": { 738 | "@babel/helper-plugin-utils": "^7.10.4" 739 | } 740 | }, 741 | "@babel/plugin-transform-object-super": { 742 | "version": "7.12.1", 743 | "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.12.1.tgz", 744 | "integrity": "sha512-AvypiGJH9hsquNUn+RXVcBdeE3KHPZexWRdimhuV59cSoOt5kFBmqlByorAeUlGG2CJWd0U+4ZtNKga/TB0cAw==", 745 | "requires": { 746 | "@babel/helper-plugin-utils": "^7.10.4", 747 | "@babel/helper-replace-supers": "^7.12.1" 748 | } 749 | }, 750 | "@babel/plugin-transform-parameters": { 751 | "version": "7.12.1", 752 | "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.12.1.tgz", 753 | "integrity": "sha512-xq9C5EQhdPK23ZeCdMxl8bbRnAgHFrw5EOC3KJUsSylZqdkCaFEXxGSBuTSObOpiiHHNyb82es8M1QYgfQGfNg==", 754 | "requires": { 755 | "@babel/helper-plugin-utils": "^7.10.4" 756 | } 757 | }, 758 | "@babel/plugin-transform-property-literals": { 759 | "version": "7.12.1", 760 | "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.12.1.tgz", 761 | "integrity": "sha512-6MTCR/mZ1MQS+AwZLplX4cEySjCpnIF26ToWo942nqn8hXSm7McaHQNeGx/pt7suI1TWOWMfa/NgBhiqSnX0cQ==", 762 | "requires": { 763 | "@babel/helper-plugin-utils": "^7.10.4" 764 | } 765 | }, 766 | "@babel/plugin-transform-regenerator": { 767 | "version": "7.12.1", 768 | "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.12.1.tgz", 769 | "integrity": "sha512-gYrHqs5itw6i4PflFX3OdBPMQdPbF4bj2REIUxlMRUFk0/ZOAIpDFuViuxPjUL7YC8UPnf+XG7/utJvqXdPKng==", 770 | "requires": { 771 | "regenerator-transform": "^0.14.2" 772 | } 773 | }, 774 | "@babel/plugin-transform-reserved-words": { 775 | "version": "7.12.1", 776 | "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.12.1.tgz", 777 | "integrity": "sha512-pOnUfhyPKvZpVyBHhSBoX8vfA09b7r00Pmm1sH+29ae2hMTKVmSp4Ztsr8KBKjLjx17H0eJqaRC3bR2iThM54A==", 778 | "requires": { 779 | "@babel/helper-plugin-utils": "^7.10.4" 780 | } 781 | }, 782 | "@babel/plugin-transform-shorthand-properties": { 783 | "version": "7.12.1", 784 | "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.12.1.tgz", 785 | "integrity": "sha512-GFZS3c/MhX1OusqB1MZ1ct2xRzX5ppQh2JU1h2Pnfk88HtFTM+TWQqJNfwkmxtPQtb/s1tk87oENfXJlx7rSDw==", 786 | "requires": { 787 | "@babel/helper-plugin-utils": "^7.10.4" 788 | } 789 | }, 790 | "@babel/plugin-transform-spread": { 791 | "version": "7.12.1", 792 | "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.12.1.tgz", 793 | "integrity": "sha512-vuLp8CP0BE18zVYjsEBZ5xoCecMK6LBMMxYzJnh01rxQRvhNhH1csMMmBfNo5tGpGO+NhdSNW2mzIvBu3K1fng==", 794 | "requires": { 795 | "@babel/helper-plugin-utils": "^7.10.4", 796 | "@babel/helper-skip-transparent-expression-wrappers": "^7.12.1" 797 | } 798 | }, 799 | "@babel/plugin-transform-sticky-regex": { 800 | "version": "7.12.7", 801 | "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.12.7.tgz", 802 | "integrity": "sha512-VEiqZL5N/QvDbdjfYQBhruN0HYjSPjC4XkeqW4ny/jNtH9gcbgaqBIXYEZCNnESMAGs0/K/R7oFGMhOyu/eIxg==", 803 | "requires": { 804 | "@babel/helper-plugin-utils": "^7.10.4" 805 | } 806 | }, 807 | "@babel/plugin-transform-template-literals": { 808 | "version": "7.12.1", 809 | "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.12.1.tgz", 810 | "integrity": "sha512-b4Zx3KHi+taXB1dVRBhVJtEPi9h1THCeKmae2qP0YdUHIFhVjtpqqNfxeVAa1xeHVhAy4SbHxEwx5cltAu5apw==", 811 | "requires": { 812 | "@babel/helper-plugin-utils": "^7.10.4" 813 | } 814 | }, 815 | "@babel/plugin-transform-typeof-symbol": { 816 | "version": "7.12.10", 817 | "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.12.10.tgz", 818 | "integrity": "sha512-JQ6H8Rnsogh//ijxspCjc21YPd3VLVoYtAwv3zQmqAt8YGYUtdo5usNhdl4b9/Vir2kPFZl6n1h0PfUz4hJhaA==", 819 | "requires": { 820 | "@babel/helper-plugin-utils": "^7.10.4" 821 | } 822 | }, 823 | "@babel/plugin-transform-unicode-escapes": { 824 | "version": "7.12.1", 825 | "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.12.1.tgz", 826 | "integrity": "sha512-I8gNHJLIc7GdApm7wkVnStWssPNbSRMPtgHdmH3sRM1zopz09UWPS4x5V4n1yz/MIWTVnJ9sp6IkuXdWM4w+2Q==", 827 | "requires": { 828 | "@babel/helper-plugin-utils": "^7.10.4" 829 | } 830 | }, 831 | "@babel/plugin-transform-unicode-regex": { 832 | "version": "7.12.1", 833 | "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.12.1.tgz", 834 | "integrity": "sha512-SqH4ClNngh/zGwHZOOQMTD+e8FGWexILV+ePMyiDJttAWRh5dhDL8rcl5lSgU3Huiq6Zn6pWTMvdPAb21Dwdyg==", 835 | "requires": { 836 | "@babel/helper-create-regexp-features-plugin": "^7.12.1", 837 | "@babel/helper-plugin-utils": "^7.10.4" 838 | } 839 | }, 840 | "@babel/preset-env": { 841 | "version": "7.12.11", 842 | "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.12.11.tgz", 843 | "integrity": "sha512-j8Tb+KKIXKYlDBQyIOy4BLxzv1NUOwlHfZ74rvW+Z0Gp4/cI2IMDPBWAgWceGcE7aep9oL/0K9mlzlMGxA8yNw==", 844 | "requires": { 845 | "@babel/compat-data": "^7.12.7", 846 | "@babel/helper-compilation-targets": "^7.12.5", 847 | "@babel/helper-module-imports": "^7.12.5", 848 | "@babel/helper-plugin-utils": "^7.10.4", 849 | "@babel/helper-validator-option": "^7.12.11", 850 | "@babel/plugin-proposal-async-generator-functions": "^7.12.1", 851 | "@babel/plugin-proposal-class-properties": "^7.12.1", 852 | "@babel/plugin-proposal-dynamic-import": "^7.12.1", 853 | "@babel/plugin-proposal-export-namespace-from": "^7.12.1", 854 | "@babel/plugin-proposal-json-strings": "^7.12.1", 855 | "@babel/plugin-proposal-logical-assignment-operators": "^7.12.1", 856 | "@babel/plugin-proposal-nullish-coalescing-operator": "^7.12.1", 857 | "@babel/plugin-proposal-numeric-separator": "^7.12.7", 858 | "@babel/plugin-proposal-object-rest-spread": "^7.12.1", 859 | "@babel/plugin-proposal-optional-catch-binding": "^7.12.1", 860 | "@babel/plugin-proposal-optional-chaining": "^7.12.7", 861 | "@babel/plugin-proposal-private-methods": "^7.12.1", 862 | "@babel/plugin-proposal-unicode-property-regex": "^7.12.1", 863 | "@babel/plugin-syntax-async-generators": "^7.8.0", 864 | "@babel/plugin-syntax-class-properties": "^7.12.1", 865 | "@babel/plugin-syntax-dynamic-import": "^7.8.0", 866 | "@babel/plugin-syntax-export-namespace-from": "^7.8.3", 867 | "@babel/plugin-syntax-json-strings": "^7.8.0", 868 | "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", 869 | "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.0", 870 | "@babel/plugin-syntax-numeric-separator": "^7.10.4", 871 | "@babel/plugin-syntax-object-rest-spread": "^7.8.0", 872 | "@babel/plugin-syntax-optional-catch-binding": "^7.8.0", 873 | "@babel/plugin-syntax-optional-chaining": "^7.8.0", 874 | "@babel/plugin-syntax-top-level-await": "^7.12.1", 875 | "@babel/plugin-transform-arrow-functions": "^7.12.1", 876 | "@babel/plugin-transform-async-to-generator": "^7.12.1", 877 | "@babel/plugin-transform-block-scoped-functions": "^7.12.1", 878 | "@babel/plugin-transform-block-scoping": "^7.12.11", 879 | "@babel/plugin-transform-classes": "^7.12.1", 880 | "@babel/plugin-transform-computed-properties": "^7.12.1", 881 | "@babel/plugin-transform-destructuring": "^7.12.1", 882 | "@babel/plugin-transform-dotall-regex": "^7.12.1", 883 | "@babel/plugin-transform-duplicate-keys": "^7.12.1", 884 | "@babel/plugin-transform-exponentiation-operator": "^7.12.1", 885 | "@babel/plugin-transform-for-of": "^7.12.1", 886 | "@babel/plugin-transform-function-name": "^7.12.1", 887 | "@babel/plugin-transform-literals": "^7.12.1", 888 | "@babel/plugin-transform-member-expression-literals": "^7.12.1", 889 | "@babel/plugin-transform-modules-amd": "^7.12.1", 890 | "@babel/plugin-transform-modules-commonjs": "^7.12.1", 891 | "@babel/plugin-transform-modules-systemjs": "^7.12.1", 892 | "@babel/plugin-transform-modules-umd": "^7.12.1", 893 | "@babel/plugin-transform-named-capturing-groups-regex": "^7.12.1", 894 | "@babel/plugin-transform-new-target": "^7.12.1", 895 | "@babel/plugin-transform-object-super": "^7.12.1", 896 | "@babel/plugin-transform-parameters": "^7.12.1", 897 | "@babel/plugin-transform-property-literals": "^7.12.1", 898 | "@babel/plugin-transform-regenerator": "^7.12.1", 899 | "@babel/plugin-transform-reserved-words": "^7.12.1", 900 | "@babel/plugin-transform-shorthand-properties": "^7.12.1", 901 | "@babel/plugin-transform-spread": "^7.12.1", 902 | "@babel/plugin-transform-sticky-regex": "^7.12.7", 903 | "@babel/plugin-transform-template-literals": "^7.12.1", 904 | "@babel/plugin-transform-typeof-symbol": "^7.12.10", 905 | "@babel/plugin-transform-unicode-escapes": "^7.12.1", 906 | "@babel/plugin-transform-unicode-regex": "^7.12.1", 907 | "@babel/preset-modules": "^0.1.3", 908 | "@babel/types": "^7.12.11", 909 | "core-js-compat": "^3.8.0", 910 | "semver": "^5.5.0" 911 | } 912 | }, 913 | "@babel/preset-modules": { 914 | "version": "0.1.4", 915 | "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.4.tgz", 916 | "integrity": "sha512-J36NhwnfdzpmH41M1DrnkkgAqhZaqr/NBdPfQ677mLzlaXo+oDiv1deyCDtgAhz8p328otdob0Du7+xgHGZbKg==", 917 | "requires": { 918 | "@babel/helper-plugin-utils": "^7.0.0", 919 | "@babel/plugin-proposal-unicode-property-regex": "^7.4.4", 920 | "@babel/plugin-transform-dotall-regex": "^7.4.4", 921 | "@babel/types": "^7.4.4", 922 | "esutils": "^2.0.2" 923 | } 924 | }, 925 | "@babel/register": { 926 | "version": "7.12.10", 927 | "resolved": "https://registry.npmjs.org/@babel/register/-/register-7.12.10.tgz", 928 | "integrity": "sha512-EvX/BvMMJRAA3jZgILWgbsrHwBQvllC5T8B29McyME8DvkdOxk4ujESfrMvME8IHSDvWXrmMXxPvA/lx2gqPLQ==", 929 | "requires": { 930 | "find-cache-dir": "^2.0.0", 931 | "lodash": "^4.17.19", 932 | "make-dir": "^2.1.0", 933 | "pirates": "^4.0.0", 934 | "source-map-support": "^0.5.16" 935 | }, 936 | "dependencies": { 937 | "make-dir": { 938 | "version": "2.1.0", 939 | "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", 940 | "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", 941 | "requires": { 942 | "pify": "^4.0.1", 943 | "semver": "^5.6.0" 944 | } 945 | } 946 | } 947 | }, 948 | "@babel/runtime": { 949 | "version": "7.12.5", 950 | "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz", 951 | "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==", 952 | "requires": { 953 | "regenerator-runtime": "^0.13.4" 954 | } 955 | }, 956 | "@babel/template": { 957 | "version": "7.12.7", 958 | "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.12.7.tgz", 959 | "integrity": "sha512-GkDzmHS6GV7ZeXfJZ0tLRBhZcMcY0/Lnb+eEbXDBfCAcZCjrZKe6p3J4we/D24O9Y8enxWAg1cWwof59yLh2ow==", 960 | "requires": { 961 | "@babel/code-frame": "^7.10.4", 962 | "@babel/parser": "^7.12.7", 963 | "@babel/types": "^7.12.7" 964 | } 965 | }, 966 | "@babel/traverse": { 967 | "version": "7.12.12", 968 | "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.12.tgz", 969 | "integrity": "sha512-s88i0X0lPy45RrLM8b9mz8RPH5FqO9G9p7ti59cToE44xFm1Q+Pjh5Gq4SXBbtb88X7Uy7pexeqRIQDDMNkL0w==", 970 | "requires": { 971 | "@babel/code-frame": "^7.12.11", 972 | "@babel/generator": "^7.12.11", 973 | "@babel/helper-function-name": "^7.12.11", 974 | "@babel/helper-split-export-declaration": "^7.12.11", 975 | "@babel/parser": "^7.12.11", 976 | "@babel/types": "^7.12.12", 977 | "debug": "^4.1.0", 978 | "globals": "^11.1.0", 979 | "lodash": "^4.17.19" 980 | }, 981 | "dependencies": { 982 | "debug": { 983 | "version": "4.3.1", 984 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz", 985 | "integrity": "sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==", 986 | "requires": { 987 | "ms": "2.1.2" 988 | } 989 | }, 990 | "ms": { 991 | "version": "2.1.2", 992 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", 993 | "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" 994 | } 995 | } 996 | }, 997 | "@babel/types": { 998 | "version": "7.12.12", 999 | "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.12.tgz", 1000 | "integrity": "sha512-lnIX7piTxOH22xE7fDXDbSHg9MM1/6ORnafpJmov5rs0kX5g4BZxeXNJLXsMRiO0U5Rb8/FvMS6xlTnTHvxonQ==", 1001 | "requires": { 1002 | "@babel/helper-validator-identifier": "^7.12.11", 1003 | "lodash": "^4.17.19", 1004 | "to-fast-properties": "^2.0.0" 1005 | } 1006 | }, 1007 | "@sindresorhus/is": { 1008 | "version": "0.14.0", 1009 | "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-0.14.0.tgz", 1010 | "integrity": "sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ==", 1011 | "dev": true 1012 | }, 1013 | "@szmarczak/http-timer": { 1014 | "version": "1.1.2", 1015 | "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-1.1.2.tgz", 1016 | "integrity": "sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==", 1017 | "dev": true, 1018 | "requires": { 1019 | "defer-to-connect": "^1.0.1" 1020 | } 1021 | }, 1022 | "@types/node": { 1023 | "version": "14.14.22", 1024 | "resolved": "https://registry.npmjs.org/@types/node/-/node-14.14.22.tgz", 1025 | "integrity": "sha512-g+f/qj/cNcqKkc3tFqlXOYjrmZA+jNBiDzbP3kH+B+otKFqAdPgVTGP1IeKRdMml/aE69as5S4FqtxAbl+LaMw==" 1026 | }, 1027 | "abbrev": { 1028 | "version": "1.1.1", 1029 | "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", 1030 | "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==", 1031 | "dev": true 1032 | }, 1033 | "accepts": { 1034 | "version": "1.3.7", 1035 | "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz", 1036 | "integrity": "sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==", 1037 | "requires": { 1038 | "mime-types": "~2.1.24", 1039 | "negotiator": "0.6.2" 1040 | } 1041 | }, 1042 | "ansi-align": { 1043 | "version": "3.0.0", 1044 | "resolved": "https://registry.npmjs.org/ansi-align/-/ansi-align-3.0.0.tgz", 1045 | "integrity": "sha512-ZpClVKqXN3RGBmKibdfWzqCY4lnjEuoNzU5T0oEFpfd/z5qJHVarukridD4juLO2FXMiwUQxr9WqQtaYa8XRYw==", 1046 | "dev": true, 1047 | "requires": { 1048 | "string-width": "^3.0.0" 1049 | }, 1050 | "dependencies": { 1051 | "string-width": { 1052 | "version": "3.1.0", 1053 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", 1054 | "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", 1055 | "dev": true, 1056 | "requires": { 1057 | "emoji-regex": "^7.0.1", 1058 | "is-fullwidth-code-point": "^2.0.0", 1059 | "strip-ansi": "^5.1.0" 1060 | } 1061 | } 1062 | } 1063 | }, 1064 | "ansi-regex": { 1065 | "version": "4.1.0", 1066 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", 1067 | "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", 1068 | "dev": true 1069 | }, 1070 | "ansi-styles": { 1071 | "version": "4.3.0", 1072 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", 1073 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", 1074 | "dev": true, 1075 | "requires": { 1076 | "color-convert": "^2.0.1" 1077 | } 1078 | }, 1079 | "any-promise": { 1080 | "version": "1.3.0", 1081 | "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", 1082 | "integrity": "sha1-q8av7tzqUugJzcA3au0845Y10X8=" 1083 | }, 1084 | "anymatch": { 1085 | "version": "3.1.1", 1086 | "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.1.tgz", 1087 | "integrity": "sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg==", 1088 | "dev": true, 1089 | "requires": { 1090 | "normalize-path": "^3.0.0", 1091 | "picomatch": "^2.0.4" 1092 | } 1093 | }, 1094 | "array-flatten": { 1095 | "version": "1.1.1", 1096 | "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", 1097 | "integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=" 1098 | }, 1099 | "babel-plugin-dynamic-import-node": { 1100 | "version": "2.3.3", 1101 | "resolved": "https://registry.npmjs.org/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz", 1102 | "integrity": "sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==", 1103 | "requires": { 1104 | "object.assign": "^4.1.0" 1105 | } 1106 | }, 1107 | "balanced-match": { 1108 | "version": "1.0.0", 1109 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", 1110 | "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=", 1111 | "dev": true 1112 | }, 1113 | "binary-extensions": { 1114 | "version": "2.2.0", 1115 | "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", 1116 | "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", 1117 | "dev": true 1118 | }, 1119 | "body-parser": { 1120 | "version": "1.19.0", 1121 | "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.19.0.tgz", 1122 | "integrity": "sha512-dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw==", 1123 | "requires": { 1124 | "bytes": "3.1.0", 1125 | "content-type": "~1.0.4", 1126 | "debug": "2.6.9", 1127 | "depd": "~1.1.2", 1128 | "http-errors": "1.7.2", 1129 | "iconv-lite": "0.4.24", 1130 | "on-finished": "~2.3.0", 1131 | "qs": "6.7.0", 1132 | "raw-body": "2.4.0", 1133 | "type-is": "~1.6.17" 1134 | } 1135 | }, 1136 | "boxen": { 1137 | "version": "4.2.0", 1138 | "resolved": "https://registry.npmjs.org/boxen/-/boxen-4.2.0.tgz", 1139 | "integrity": "sha512-eB4uT9RGzg2odpER62bBwSLvUeGC+WbRjjyyFhGsKnc8wp/m0+hQsMUvUe3H2V0D5vw0nBdO1hCJoZo5mKeuIQ==", 1140 | "dev": true, 1141 | "requires": { 1142 | "ansi-align": "^3.0.0", 1143 | "camelcase": "^5.3.1", 1144 | "chalk": "^3.0.0", 1145 | "cli-boxes": "^2.2.0", 1146 | "string-width": "^4.1.0", 1147 | "term-size": "^2.1.0", 1148 | "type-fest": "^0.8.1", 1149 | "widest-line": "^3.1.0" 1150 | } 1151 | }, 1152 | "brace-expansion": { 1153 | "version": "1.1.11", 1154 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 1155 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 1156 | "dev": true, 1157 | "requires": { 1158 | "balanced-match": "^1.0.0", 1159 | "concat-map": "0.0.1" 1160 | } 1161 | }, 1162 | "braces": { 1163 | "version": "3.0.2", 1164 | "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", 1165 | "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", 1166 | "dev": true, 1167 | "requires": { 1168 | "fill-range": "^7.0.1" 1169 | } 1170 | }, 1171 | "browserslist": { 1172 | "version": "4.16.3", 1173 | "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.16.3.tgz", 1174 | "integrity": "sha512-vIyhWmIkULaq04Gt93txdh+j02yX/JzlyhLYbV3YQCn/zvES3JnY7TifHHvvr1w5hTDluNKMkV05cs4vy8Q7sw==", 1175 | "requires": { 1176 | "caniuse-lite": "^1.0.30001181", 1177 | "colorette": "^1.2.1", 1178 | "electron-to-chromium": "^1.3.649", 1179 | "escalade": "^3.1.1", 1180 | "node-releases": "^1.1.70" 1181 | } 1182 | }, 1183 | "buffer-from": { 1184 | "version": "1.1.1", 1185 | "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz", 1186 | "integrity": "sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==" 1187 | }, 1188 | "buffer-writer": { 1189 | "version": "2.0.0", 1190 | "resolved": "https://registry.npmjs.org/buffer-writer/-/buffer-writer-2.0.0.tgz", 1191 | "integrity": "sha512-a7ZpuTZU1TRtnwyCNW3I5dc0wWNC3VR9S++Ewyk2HHZdrO3CQJqSpd+95Us590V6AL7JqUAH2IwZ/398PmNFgw==" 1192 | }, 1193 | "bytes": { 1194 | "version": "3.1.0", 1195 | "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz", 1196 | "integrity": "sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==" 1197 | }, 1198 | "cacheable-request": { 1199 | "version": "6.1.0", 1200 | "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-6.1.0.tgz", 1201 | "integrity": "sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg==", 1202 | "dev": true, 1203 | "requires": { 1204 | "clone-response": "^1.0.2", 1205 | "get-stream": "^5.1.0", 1206 | "http-cache-semantics": "^4.0.0", 1207 | "keyv": "^3.0.0", 1208 | "lowercase-keys": "^2.0.0", 1209 | "normalize-url": "^4.1.0", 1210 | "responselike": "^1.0.2" 1211 | }, 1212 | "dependencies": { 1213 | "get-stream": { 1214 | "version": "5.2.0", 1215 | "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", 1216 | "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", 1217 | "dev": true, 1218 | "requires": { 1219 | "pump": "^3.0.0" 1220 | } 1221 | }, 1222 | "lowercase-keys": { 1223 | "version": "2.0.0", 1224 | "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz", 1225 | "integrity": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==", 1226 | "dev": true 1227 | } 1228 | } 1229 | }, 1230 | "call-bind": { 1231 | "version": "1.0.2", 1232 | "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", 1233 | "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", 1234 | "requires": { 1235 | "function-bind": "^1.1.1", 1236 | "get-intrinsic": "^1.0.2" 1237 | } 1238 | }, 1239 | "camelcase": { 1240 | "version": "5.3.1", 1241 | "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", 1242 | "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", 1243 | "dev": true 1244 | }, 1245 | "caniuse-lite": { 1246 | "version": "1.0.30001183", 1247 | "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001183.tgz", 1248 | "integrity": "sha512-7JkwTEE1hlRKETbCFd8HDZeLiQIUcl8rC6JgNjvHCNaxOeNmQ9V4LvQXRUsKIV2CC73qKxljwVhToaA3kLRqTw==" 1249 | }, 1250 | "chalk": { 1251 | "version": "3.0.0", 1252 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", 1253 | "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", 1254 | "dev": true, 1255 | "requires": { 1256 | "ansi-styles": "^4.1.0", 1257 | "supports-color": "^7.1.0" 1258 | }, 1259 | "dependencies": { 1260 | "has-flag": { 1261 | "version": "4.0.0", 1262 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", 1263 | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", 1264 | "dev": true 1265 | }, 1266 | "supports-color": { 1267 | "version": "7.2.0", 1268 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", 1269 | "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", 1270 | "dev": true, 1271 | "requires": { 1272 | "has-flag": "^4.0.0" 1273 | } 1274 | } 1275 | } 1276 | }, 1277 | "chokidar": { 1278 | "version": "3.5.1", 1279 | "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.1.tgz", 1280 | "integrity": "sha512-9+s+Od+W0VJJzawDma/gvBNQqkTiqYTWLuZoyAsivsI4AaWTCzHG06/TMjsf1cYe9Cb97UCEhjz7HvnPk2p/tw==", 1281 | "dev": true, 1282 | "requires": { 1283 | "anymatch": "~3.1.1", 1284 | "braces": "~3.0.2", 1285 | "fsevents": "~2.3.1", 1286 | "glob-parent": "~5.1.0", 1287 | "is-binary-path": "~2.1.0", 1288 | "is-glob": "~4.0.1", 1289 | "normalize-path": "~3.0.0", 1290 | "readdirp": "~3.5.0" 1291 | } 1292 | }, 1293 | "ci-info": { 1294 | "version": "2.0.0", 1295 | "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz", 1296 | "integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==", 1297 | "dev": true 1298 | }, 1299 | "cli-boxes": { 1300 | "version": "2.2.1", 1301 | "resolved": "https://registry.npmjs.org/cli-boxes/-/cli-boxes-2.2.1.tgz", 1302 | "integrity": "sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw==", 1303 | "dev": true 1304 | }, 1305 | "clone-response": { 1306 | "version": "1.0.2", 1307 | "resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.2.tgz", 1308 | "integrity": "sha1-0dyXOSAxTfZ/vrlCI7TuNQI56Ws=", 1309 | "dev": true, 1310 | "requires": { 1311 | "mimic-response": "^1.0.0" 1312 | } 1313 | }, 1314 | "color-convert": { 1315 | "version": "2.0.1", 1316 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", 1317 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", 1318 | "dev": true, 1319 | "requires": { 1320 | "color-name": "~1.1.4" 1321 | } 1322 | }, 1323 | "color-name": { 1324 | "version": "1.1.4", 1325 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", 1326 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", 1327 | "dev": true 1328 | }, 1329 | "colorette": { 1330 | "version": "1.2.1", 1331 | "resolved": "https://registry.npmjs.org/colorette/-/colorette-1.2.1.tgz", 1332 | "integrity": "sha512-puCDz0CzydiSYOrnXpz/PKd69zRrribezjtE9yd4zvytoRc8+RY/KJPvtPFKZS3E3wP6neGyMe0vOTlHO5L3Pw==" 1333 | }, 1334 | "commander": { 1335 | "version": "4.1.1", 1336 | "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", 1337 | "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==" 1338 | }, 1339 | "commondir": { 1340 | "version": "1.0.1", 1341 | "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", 1342 | "integrity": "sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=" 1343 | }, 1344 | "concat-map": { 1345 | "version": "0.0.1", 1346 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", 1347 | "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", 1348 | "dev": true 1349 | }, 1350 | "configstore": { 1351 | "version": "5.0.1", 1352 | "resolved": "https://registry.npmjs.org/configstore/-/configstore-5.0.1.tgz", 1353 | "integrity": "sha512-aMKprgk5YhBNyH25hj8wGt2+D52Sw1DRRIzqBwLp2Ya9mFmY8KPvvtvmna8SxVR9JMZ4kzMD68N22vlaRpkeFA==", 1354 | "dev": true, 1355 | "requires": { 1356 | "dot-prop": "^5.2.0", 1357 | "graceful-fs": "^4.1.2", 1358 | "make-dir": "^3.0.0", 1359 | "unique-string": "^2.0.0", 1360 | "write-file-atomic": "^3.0.0", 1361 | "xdg-basedir": "^4.0.0" 1362 | } 1363 | }, 1364 | "content-disposition": { 1365 | "version": "0.5.3", 1366 | "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.3.tgz", 1367 | "integrity": "sha512-ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g==", 1368 | "requires": { 1369 | "safe-buffer": "5.1.2" 1370 | } 1371 | }, 1372 | "content-type": { 1373 | "version": "1.0.4", 1374 | "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz", 1375 | "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==" 1376 | }, 1377 | "convert-source-map": { 1378 | "version": "1.7.0", 1379 | "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.7.0.tgz", 1380 | "integrity": "sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA==", 1381 | "requires": { 1382 | "safe-buffer": "~5.1.1" 1383 | } 1384 | }, 1385 | "cookie": { 1386 | "version": "0.4.0", 1387 | "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.0.tgz", 1388 | "integrity": "sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg==" 1389 | }, 1390 | "cookie-signature": { 1391 | "version": "1.0.6", 1392 | "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", 1393 | "integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=" 1394 | }, 1395 | "core-js": { 1396 | "version": "3.8.3", 1397 | "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.8.3.tgz", 1398 | "integrity": "sha512-KPYXeVZYemC2TkNEkX/01I+7yd+nX3KddKwZ1Ww7SKWdI2wQprSgLmrTddT8nw92AjEklTsPBoSdQBhbI1bQ6Q==" 1399 | }, 1400 | "core-js-compat": { 1401 | "version": "3.8.3", 1402 | "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.8.3.tgz", 1403 | "integrity": "sha512-1sCb0wBXnBIL16pfFG1Gkvei6UzvKyTNYpiC41yrdjEv0UoJoq9E/abTMzyYJ6JpTkAj15dLjbqifIzEBDVvog==", 1404 | "requires": { 1405 | "browserslist": "^4.16.1", 1406 | "semver": "7.0.0" 1407 | }, 1408 | "dependencies": { 1409 | "semver": { 1410 | "version": "7.0.0", 1411 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz", 1412 | "integrity": "sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==" 1413 | } 1414 | } 1415 | }, 1416 | "crypto-random-string": { 1417 | "version": "2.0.0", 1418 | "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz", 1419 | "integrity": "sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==", 1420 | "dev": true 1421 | }, 1422 | "debug": { 1423 | "version": "2.6.9", 1424 | "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", 1425 | "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", 1426 | "requires": { 1427 | "ms": "2.0.0" 1428 | } 1429 | }, 1430 | "decompress-response": { 1431 | "version": "3.3.0", 1432 | "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz", 1433 | "integrity": "sha1-gKTdMjdIOEv6JICDYirt7Jgq3/M=", 1434 | "dev": true, 1435 | "requires": { 1436 | "mimic-response": "^1.0.0" 1437 | } 1438 | }, 1439 | "deep-extend": { 1440 | "version": "0.6.0", 1441 | "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", 1442 | "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==", 1443 | "dev": true 1444 | }, 1445 | "defer-to-connect": { 1446 | "version": "1.1.3", 1447 | "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-1.1.3.tgz", 1448 | "integrity": "sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ==", 1449 | "dev": true 1450 | }, 1451 | "define-properties": { 1452 | "version": "1.1.3", 1453 | "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", 1454 | "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==", 1455 | "requires": { 1456 | "object-keys": "^1.0.12" 1457 | } 1458 | }, 1459 | "depd": { 1460 | "version": "1.1.2", 1461 | "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", 1462 | "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=" 1463 | }, 1464 | "destroy": { 1465 | "version": "1.0.4", 1466 | "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz", 1467 | "integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=" 1468 | }, 1469 | "dot-prop": { 1470 | "version": "5.3.0", 1471 | "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz", 1472 | "integrity": "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==", 1473 | "dev": true, 1474 | "requires": { 1475 | "is-obj": "^2.0.0" 1476 | } 1477 | }, 1478 | "dottie": { 1479 | "version": "2.0.2", 1480 | "resolved": "https://registry.npmjs.org/dottie/-/dottie-2.0.2.tgz", 1481 | "integrity": "sha512-fmrwR04lsniq/uSr8yikThDTrM7epXHBAAjH9TbeH3rEA8tdCO7mRzB9hdmdGyJCxF8KERo9CITcm3kGuoyMhg==" 1482 | }, 1483 | "duplexer3": { 1484 | "version": "0.1.4", 1485 | "resolved": "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.4.tgz", 1486 | "integrity": "sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI=", 1487 | "dev": true 1488 | }, 1489 | "ee-first": { 1490 | "version": "1.1.1", 1491 | "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", 1492 | "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=" 1493 | }, 1494 | "electron-to-chromium": { 1495 | "version": "1.3.650", 1496 | "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.650.tgz", 1497 | "integrity": "sha512-j6pRuNylFBbroG6NB8Lw/Im9oDY74s2zWHBP5TmdYg73cBuL6cz//SMgolVa0gIJk/DSL+kO7baJ1DSXW1FUZg==" 1498 | }, 1499 | "emoji-regex": { 1500 | "version": "7.0.3", 1501 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", 1502 | "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==", 1503 | "dev": true 1504 | }, 1505 | "encodeurl": { 1506 | "version": "1.0.2", 1507 | "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", 1508 | "integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=" 1509 | }, 1510 | "end-of-stream": { 1511 | "version": "1.4.4", 1512 | "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", 1513 | "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", 1514 | "dev": true, 1515 | "requires": { 1516 | "once": "^1.4.0" 1517 | } 1518 | }, 1519 | "es-abstract": { 1520 | "version": "1.18.0-next.2", 1521 | "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.0-next.2.tgz", 1522 | "integrity": "sha512-Ih4ZMFHEtZupnUh6497zEL4y2+w8+1ljnCyaTa+adcoafI1GOvMwFlDjBLfWR7y9VLfrjRJe9ocuHY1PSR9jjw==", 1523 | "requires": { 1524 | "call-bind": "^1.0.2", 1525 | "es-to-primitive": "^1.2.1", 1526 | "function-bind": "^1.1.1", 1527 | "get-intrinsic": "^1.0.2", 1528 | "has": "^1.0.3", 1529 | "has-symbols": "^1.0.1", 1530 | "is-callable": "^1.2.2", 1531 | "is-negative-zero": "^2.0.1", 1532 | "is-regex": "^1.1.1", 1533 | "object-inspect": "^1.9.0", 1534 | "object-keys": "^1.1.1", 1535 | "object.assign": "^4.1.2", 1536 | "string.prototype.trimend": "^1.0.3", 1537 | "string.prototype.trimstart": "^1.0.3" 1538 | } 1539 | }, 1540 | "es-to-primitive": { 1541 | "version": "1.2.1", 1542 | "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", 1543 | "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", 1544 | "requires": { 1545 | "is-callable": "^1.1.4", 1546 | "is-date-object": "^1.0.1", 1547 | "is-symbol": "^1.0.2" 1548 | } 1549 | }, 1550 | "escalade": { 1551 | "version": "3.1.1", 1552 | "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", 1553 | "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==" 1554 | }, 1555 | "escape-goat": { 1556 | "version": "2.1.1", 1557 | "resolved": "https://registry.npmjs.org/escape-goat/-/escape-goat-2.1.1.tgz", 1558 | "integrity": "sha512-8/uIhbG12Csjy2JEW7D9pHbreaVaS/OpN3ycnyvElTdwM5n6GY6W6e2IPemfvGZeUMqZ9A/3GqIZMgKnBhAw/Q==", 1559 | "dev": true 1560 | }, 1561 | "escape-html": { 1562 | "version": "1.0.3", 1563 | "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", 1564 | "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=" 1565 | }, 1566 | "escape-string-regexp": { 1567 | "version": "1.0.5", 1568 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", 1569 | "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=" 1570 | }, 1571 | "esutils": { 1572 | "version": "2.0.3", 1573 | "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", 1574 | "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==" 1575 | }, 1576 | "etag": { 1577 | "version": "1.8.1", 1578 | "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", 1579 | "integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=" 1580 | }, 1581 | "express": { 1582 | "version": "4.17.1", 1583 | "resolved": "https://registry.npmjs.org/express/-/express-4.17.1.tgz", 1584 | "integrity": "sha512-mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g==", 1585 | "requires": { 1586 | "accepts": "~1.3.7", 1587 | "array-flatten": "1.1.1", 1588 | "body-parser": "1.19.0", 1589 | "content-disposition": "0.5.3", 1590 | "content-type": "~1.0.4", 1591 | "cookie": "0.4.0", 1592 | "cookie-signature": "1.0.6", 1593 | "debug": "2.6.9", 1594 | "depd": "~1.1.2", 1595 | "encodeurl": "~1.0.2", 1596 | "escape-html": "~1.0.3", 1597 | "etag": "~1.8.1", 1598 | "finalhandler": "~1.1.2", 1599 | "fresh": "0.5.2", 1600 | "merge-descriptors": "1.0.1", 1601 | "methods": "~1.1.2", 1602 | "on-finished": "~2.3.0", 1603 | "parseurl": "~1.3.3", 1604 | "path-to-regexp": "0.1.7", 1605 | "proxy-addr": "~2.0.5", 1606 | "qs": "6.7.0", 1607 | "range-parser": "~1.2.1", 1608 | "safe-buffer": "5.1.2", 1609 | "send": "0.17.1", 1610 | "serve-static": "1.14.1", 1611 | "setprototypeof": "1.1.1", 1612 | "statuses": "~1.5.0", 1613 | "type-is": "~1.6.18", 1614 | "utils-merge": "1.0.1", 1615 | "vary": "~1.1.2" 1616 | } 1617 | }, 1618 | "fill-range": { 1619 | "version": "7.0.1", 1620 | "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", 1621 | "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", 1622 | "dev": true, 1623 | "requires": { 1624 | "to-regex-range": "^5.0.1" 1625 | } 1626 | }, 1627 | "finalhandler": { 1628 | "version": "1.1.2", 1629 | "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz", 1630 | "integrity": "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==", 1631 | "requires": { 1632 | "debug": "2.6.9", 1633 | "encodeurl": "~1.0.2", 1634 | "escape-html": "~1.0.3", 1635 | "on-finished": "~2.3.0", 1636 | "parseurl": "~1.3.3", 1637 | "statuses": "~1.5.0", 1638 | "unpipe": "~1.0.0" 1639 | } 1640 | }, 1641 | "find-cache-dir": { 1642 | "version": "2.1.0", 1643 | "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-2.1.0.tgz", 1644 | "integrity": "sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==", 1645 | "requires": { 1646 | "commondir": "^1.0.1", 1647 | "make-dir": "^2.0.0", 1648 | "pkg-dir": "^3.0.0" 1649 | }, 1650 | "dependencies": { 1651 | "make-dir": { 1652 | "version": "2.1.0", 1653 | "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", 1654 | "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", 1655 | "requires": { 1656 | "pify": "^4.0.1", 1657 | "semver": "^5.6.0" 1658 | } 1659 | } 1660 | } 1661 | }, 1662 | "find-up": { 1663 | "version": "3.0.0", 1664 | "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", 1665 | "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", 1666 | "requires": { 1667 | "locate-path": "^3.0.0" 1668 | } 1669 | }, 1670 | "forwarded": { 1671 | "version": "0.1.2", 1672 | "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.1.2.tgz", 1673 | "integrity": "sha1-mMI9qxF1ZXuMBXPozszZGw/xjIQ=" 1674 | }, 1675 | "fresh": { 1676 | "version": "0.5.2", 1677 | "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", 1678 | "integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=" 1679 | }, 1680 | "fsevents": { 1681 | "version": "2.3.1", 1682 | "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.1.tgz", 1683 | "integrity": "sha512-YR47Eg4hChJGAB1O3yEAOkGO+rlzutoICGqGo9EZ4lKWokzZRSyIW1QmTzqjtw8MJdj9srP869CuWw/hyzSiBw==", 1684 | "dev": true, 1685 | "optional": true 1686 | }, 1687 | "function-bind": { 1688 | "version": "1.1.1", 1689 | "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", 1690 | "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" 1691 | }, 1692 | "gensync": { 1693 | "version": "1.0.0-beta.2", 1694 | "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", 1695 | "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==" 1696 | }, 1697 | "get-intrinsic": { 1698 | "version": "1.1.0", 1699 | "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.0.tgz", 1700 | "integrity": "sha512-M11rgtQp5GZMZzDL7jLTNxbDfurpzuau5uqRWDPvlHjfvg3TdScAZo96GLvhMjImrmR8uAt0FS2RLoMrfWGKlg==", 1701 | "requires": { 1702 | "function-bind": "^1.1.1", 1703 | "has": "^1.0.3", 1704 | "has-symbols": "^1.0.1" 1705 | } 1706 | }, 1707 | "get-stream": { 1708 | "version": "4.1.0", 1709 | "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", 1710 | "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", 1711 | "dev": true, 1712 | "requires": { 1713 | "pump": "^3.0.0" 1714 | } 1715 | }, 1716 | "glob-parent": { 1717 | "version": "5.1.1", 1718 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.1.tgz", 1719 | "integrity": "sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ==", 1720 | "dev": true, 1721 | "requires": { 1722 | "is-glob": "^4.0.1" 1723 | } 1724 | }, 1725 | "global-dirs": { 1726 | "version": "2.1.0", 1727 | "resolved": "https://registry.npmjs.org/global-dirs/-/global-dirs-2.1.0.tgz", 1728 | "integrity": "sha512-MG6kdOUh/xBnyo9cJFeIKkLEc1AyFq42QTU4XiX51i2NEdxLxLWXIjEjmqKeSuKR7pAZjTqUVoT2b2huxVLgYQ==", 1729 | "dev": true, 1730 | "requires": { 1731 | "ini": "1.3.7" 1732 | } 1733 | }, 1734 | "globals": { 1735 | "version": "11.12.0", 1736 | "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", 1737 | "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==" 1738 | }, 1739 | "got": { 1740 | "version": "9.6.0", 1741 | "resolved": "https://registry.npmjs.org/got/-/got-9.6.0.tgz", 1742 | "integrity": "sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q==", 1743 | "dev": true, 1744 | "requires": { 1745 | "@sindresorhus/is": "^0.14.0", 1746 | "@szmarczak/http-timer": "^1.1.2", 1747 | "cacheable-request": "^6.0.0", 1748 | "decompress-response": "^3.3.0", 1749 | "duplexer3": "^0.1.4", 1750 | "get-stream": "^4.1.0", 1751 | "lowercase-keys": "^1.0.1", 1752 | "mimic-response": "^1.0.1", 1753 | "p-cancelable": "^1.0.0", 1754 | "to-readable-stream": "^1.0.0", 1755 | "url-parse-lax": "^3.0.0" 1756 | } 1757 | }, 1758 | "graceful-fs": { 1759 | "version": "4.2.4", 1760 | "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.4.tgz", 1761 | "integrity": "sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw==", 1762 | "dev": true 1763 | }, 1764 | "has": { 1765 | "version": "1.0.3", 1766 | "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", 1767 | "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", 1768 | "requires": { 1769 | "function-bind": "^1.1.1" 1770 | } 1771 | }, 1772 | "has-flag": { 1773 | "version": "3.0.0", 1774 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", 1775 | "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=" 1776 | }, 1777 | "has-symbols": { 1778 | "version": "1.0.1", 1779 | "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.1.tgz", 1780 | "integrity": "sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg==" 1781 | }, 1782 | "has-yarn": { 1783 | "version": "2.1.0", 1784 | "resolved": "https://registry.npmjs.org/has-yarn/-/has-yarn-2.1.0.tgz", 1785 | "integrity": "sha512-UqBRqi4ju7T+TqGNdqAO0PaSVGsDGJUBQvk9eUWNGRY1CFGDzYhLWoM7JQEemnlvVcv/YEmc2wNW8BC24EnUsw==", 1786 | "dev": true 1787 | }, 1788 | "homedir-polyfill": { 1789 | "version": "1.0.3", 1790 | "resolved": "https://registry.npmjs.org/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz", 1791 | "integrity": "sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==", 1792 | "requires": { 1793 | "parse-passwd": "^1.0.0" 1794 | } 1795 | }, 1796 | "http-cache-semantics": { 1797 | "version": "4.1.0", 1798 | "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.0.tgz", 1799 | "integrity": "sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ==", 1800 | "dev": true 1801 | }, 1802 | "http-errors": { 1803 | "version": "1.7.2", 1804 | "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.7.2.tgz", 1805 | "integrity": "sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg==", 1806 | "requires": { 1807 | "depd": "~1.1.2", 1808 | "inherits": "2.0.3", 1809 | "setprototypeof": "1.1.1", 1810 | "statuses": ">= 1.5.0 < 2", 1811 | "toidentifier": "1.0.0" 1812 | } 1813 | }, 1814 | "iconv-lite": { 1815 | "version": "0.4.24", 1816 | "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", 1817 | "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", 1818 | "requires": { 1819 | "safer-buffer": ">= 2.1.2 < 3" 1820 | } 1821 | }, 1822 | "ignore-by-default": { 1823 | "version": "1.0.1", 1824 | "resolved": "https://registry.npmjs.org/ignore-by-default/-/ignore-by-default-1.0.1.tgz", 1825 | "integrity": "sha1-SMptcvbGo68Aqa1K5odr44ieKwk=", 1826 | "dev": true 1827 | }, 1828 | "import-lazy": { 1829 | "version": "2.1.0", 1830 | "resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-2.1.0.tgz", 1831 | "integrity": "sha1-BWmOPUXIjo1+nZLLBYTnfwlvPkM=", 1832 | "dev": true 1833 | }, 1834 | "imurmurhash": { 1835 | "version": "0.1.4", 1836 | "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", 1837 | "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=", 1838 | "dev": true 1839 | }, 1840 | "inflection": { 1841 | "version": "1.12.0", 1842 | "resolved": "https://registry.npmjs.org/inflection/-/inflection-1.12.0.tgz", 1843 | "integrity": "sha1-ogCTVlbW9fa8TcdQLhrstwMihBY=" 1844 | }, 1845 | "inherits": { 1846 | "version": "2.0.3", 1847 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", 1848 | "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" 1849 | }, 1850 | "ini": { 1851 | "version": "1.3.7", 1852 | "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.7.tgz", 1853 | "integrity": "sha512-iKpRpXP+CrP2jyrxvg1kMUpXDyRUFDWurxbnVT1vQPx+Wz9uCYsMIqYuSBLV+PAaZG/d7kRLKRFc9oDMsH+mFQ==", 1854 | "dev": true 1855 | }, 1856 | "ipaddr.js": { 1857 | "version": "1.9.1", 1858 | "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", 1859 | "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==" 1860 | }, 1861 | "is-binary-path": { 1862 | "version": "2.1.0", 1863 | "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", 1864 | "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", 1865 | "dev": true, 1866 | "requires": { 1867 | "binary-extensions": "^2.0.0" 1868 | } 1869 | }, 1870 | "is-callable": { 1871 | "version": "1.2.3", 1872 | "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.3.tgz", 1873 | "integrity": "sha512-J1DcMe8UYTBSrKezuIUTUwjXsho29693unXM2YhJUTR2txK/eG47bvNa/wipPFmZFgr/N6f1GA66dv0mEyTIyQ==" 1874 | }, 1875 | "is-ci": { 1876 | "version": "2.0.0", 1877 | "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz", 1878 | "integrity": "sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==", 1879 | "dev": true, 1880 | "requires": { 1881 | "ci-info": "^2.0.0" 1882 | } 1883 | }, 1884 | "is-date-object": { 1885 | "version": "1.0.2", 1886 | "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.2.tgz", 1887 | "integrity": "sha512-USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g==" 1888 | }, 1889 | "is-extglob": { 1890 | "version": "2.1.1", 1891 | "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", 1892 | "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", 1893 | "dev": true 1894 | }, 1895 | "is-fullwidth-code-point": { 1896 | "version": "2.0.0", 1897 | "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", 1898 | "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", 1899 | "dev": true 1900 | }, 1901 | "is-glob": { 1902 | "version": "4.0.1", 1903 | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz", 1904 | "integrity": "sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==", 1905 | "dev": true, 1906 | "requires": { 1907 | "is-extglob": "^2.1.1" 1908 | } 1909 | }, 1910 | "is-installed-globally": { 1911 | "version": "0.3.2", 1912 | "resolved": "https://registry.npmjs.org/is-installed-globally/-/is-installed-globally-0.3.2.tgz", 1913 | "integrity": "sha512-wZ8x1js7Ia0kecP/CHM/3ABkAmujX7WPvQk6uu3Fly/Mk44pySulQpnHG46OMjHGXApINnV4QhY3SWnECO2z5g==", 1914 | "dev": true, 1915 | "requires": { 1916 | "global-dirs": "^2.0.1", 1917 | "is-path-inside": "^3.0.1" 1918 | } 1919 | }, 1920 | "is-negative-zero": { 1921 | "version": "2.0.1", 1922 | "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.1.tgz", 1923 | "integrity": "sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w==" 1924 | }, 1925 | "is-npm": { 1926 | "version": "4.0.0", 1927 | "resolved": "https://registry.npmjs.org/is-npm/-/is-npm-4.0.0.tgz", 1928 | "integrity": "sha512-96ECIfh9xtDDlPylNPXhzjsykHsMJZ18ASpaWzQyBr4YRTcVjUvzaHayDAES2oU/3KpljhHUjtSRNiDwi0F0ig==", 1929 | "dev": true 1930 | }, 1931 | "is-number": { 1932 | "version": "7.0.0", 1933 | "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", 1934 | "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", 1935 | "dev": true 1936 | }, 1937 | "is-obj": { 1938 | "version": "2.0.0", 1939 | "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz", 1940 | "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==", 1941 | "dev": true 1942 | }, 1943 | "is-path-inside": { 1944 | "version": "3.0.2", 1945 | "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.2.tgz", 1946 | "integrity": "sha512-/2UGPSgmtqwo1ktx8NDHjuPwZWmHhO+gj0f93EkhLB5RgW9RZevWYYlIkS6zePc6U2WpOdQYIwHe9YC4DWEBVg==", 1947 | "dev": true 1948 | }, 1949 | "is-regex": { 1950 | "version": "1.1.2", 1951 | "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.2.tgz", 1952 | "integrity": "sha512-axvdhb5pdhEVThqJzYXwMlVuZwC+FF2DpcOhTS+y/8jVq4trxyPgfcwIxIKiyeuLlSQYKkmUaPQJ8ZE4yNKXDg==", 1953 | "requires": { 1954 | "call-bind": "^1.0.2", 1955 | "has-symbols": "^1.0.1" 1956 | } 1957 | }, 1958 | "is-symbol": { 1959 | "version": "1.0.3", 1960 | "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.3.tgz", 1961 | "integrity": "sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ==", 1962 | "requires": { 1963 | "has-symbols": "^1.0.1" 1964 | } 1965 | }, 1966 | "is-typedarray": { 1967 | "version": "1.0.0", 1968 | "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", 1969 | "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=", 1970 | "dev": true 1971 | }, 1972 | "is-yarn-global": { 1973 | "version": "0.3.0", 1974 | "resolved": "https://registry.npmjs.org/is-yarn-global/-/is-yarn-global-0.3.0.tgz", 1975 | "integrity": "sha512-VjSeb/lHmkoyd8ryPVIKvOCn4D1koMqY+vqyjjUfc3xyKtP4dYOxM44sZrnqQSzSds3xyOrUTLTC9LVCVgLngw==", 1976 | "dev": true 1977 | }, 1978 | "js-tokens": { 1979 | "version": "4.0.0", 1980 | "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", 1981 | "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" 1982 | }, 1983 | "jsesc": { 1984 | "version": "2.5.2", 1985 | "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", 1986 | "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==" 1987 | }, 1988 | "json-buffer": { 1989 | "version": "3.0.0", 1990 | "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.0.tgz", 1991 | "integrity": "sha1-Wx85evx11ne96Lz8Dkfh+aPZqJg=", 1992 | "dev": true 1993 | }, 1994 | "json5": { 1995 | "version": "2.2.0", 1996 | "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.0.tgz", 1997 | "integrity": "sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA==", 1998 | "requires": { 1999 | "minimist": "^1.2.5" 2000 | } 2001 | }, 2002 | "keyv": { 2003 | "version": "3.1.0", 2004 | "resolved": "https://registry.npmjs.org/keyv/-/keyv-3.1.0.tgz", 2005 | "integrity": "sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA==", 2006 | "dev": true, 2007 | "requires": { 2008 | "json-buffer": "3.0.0" 2009 | } 2010 | }, 2011 | "latest-version": { 2012 | "version": "5.1.0", 2013 | "resolved": "https://registry.npmjs.org/latest-version/-/latest-version-5.1.0.tgz", 2014 | "integrity": "sha512-weT+r0kTkRQdCdYCNtkMwWXQTMEswKrFBkm4ckQOMVhhqhIMI1UT2hMj+1iigIhgSZm5gTmrRXBNoGUgaTY1xA==", 2015 | "dev": true, 2016 | "requires": { 2017 | "package-json": "^6.3.0" 2018 | } 2019 | }, 2020 | "locate-path": { 2021 | "version": "3.0.0", 2022 | "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", 2023 | "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", 2024 | "requires": { 2025 | "p-locate": "^3.0.0", 2026 | "path-exists": "^3.0.0" 2027 | } 2028 | }, 2029 | "lodash": { 2030 | "version": "4.17.20", 2031 | "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.20.tgz", 2032 | "integrity": "sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA==" 2033 | }, 2034 | "lowercase-keys": { 2035 | "version": "1.0.1", 2036 | "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz", 2037 | "integrity": "sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==", 2038 | "dev": true 2039 | }, 2040 | "lru-cache": { 2041 | "version": "6.0.0", 2042 | "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", 2043 | "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", 2044 | "requires": { 2045 | "yallist": "^4.0.0" 2046 | } 2047 | }, 2048 | "make-dir": { 2049 | "version": "3.1.0", 2050 | "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", 2051 | "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", 2052 | "dev": true, 2053 | "requires": { 2054 | "semver": "^6.0.0" 2055 | }, 2056 | "dependencies": { 2057 | "semver": { 2058 | "version": "6.3.0", 2059 | "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", 2060 | "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", 2061 | "dev": true 2062 | } 2063 | } 2064 | }, 2065 | "media-typer": { 2066 | "version": "0.3.0", 2067 | "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", 2068 | "integrity": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=" 2069 | }, 2070 | "merge-descriptors": { 2071 | "version": "1.0.1", 2072 | "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", 2073 | "integrity": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=" 2074 | }, 2075 | "methods": { 2076 | "version": "1.1.2", 2077 | "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", 2078 | "integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=" 2079 | }, 2080 | "mime": { 2081 | "version": "1.6.0", 2082 | "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", 2083 | "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==" 2084 | }, 2085 | "mime-db": { 2086 | "version": "1.45.0", 2087 | "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.45.0.tgz", 2088 | "integrity": "sha512-CkqLUxUk15hofLoLyljJSrukZi8mAtgd+yE5uO4tqRZsdsAJKv0O+rFMhVDRJgozy+yG6md5KwuXhD4ocIoP+w==" 2089 | }, 2090 | "mime-types": { 2091 | "version": "2.1.28", 2092 | "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.28.tgz", 2093 | "integrity": "sha512-0TO2yJ5YHYr7M2zzT7gDU1tbwHxEUWBCLt0lscSNpcdAfFyJOVEpRYNS7EXVcTLNj/25QO8gulHC5JtTzSE2UQ==", 2094 | "requires": { 2095 | "mime-db": "1.45.0" 2096 | } 2097 | }, 2098 | "mimic-response": { 2099 | "version": "1.0.1", 2100 | "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", 2101 | "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==", 2102 | "dev": true 2103 | }, 2104 | "minimatch": { 2105 | "version": "3.0.4", 2106 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", 2107 | "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", 2108 | "dev": true, 2109 | "requires": { 2110 | "brace-expansion": "^1.1.7" 2111 | } 2112 | }, 2113 | "minimist": { 2114 | "version": "1.2.5", 2115 | "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", 2116 | "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==" 2117 | }, 2118 | "moment": { 2119 | "version": "2.29.1", 2120 | "resolved": "https://registry.npmjs.org/moment/-/moment-2.29.1.tgz", 2121 | "integrity": "sha512-kHmoybcPV8Sqy59DwNDY3Jefr64lK/by/da0ViFcuA4DH0vQg5Q6Ze5VimxkfQNSC+Mls/Kx53s7TjP1RhFEDQ==" 2122 | }, 2123 | "moment-timezone": { 2124 | "version": "0.5.32", 2125 | "resolved": "https://registry.npmjs.org/moment-timezone/-/moment-timezone-0.5.32.tgz", 2126 | "integrity": "sha512-Z8QNyuQHQAmWucp8Knmgei8YNo28aLjJq6Ma+jy1ZSpSk5nyfRT8xgUbSQvD2+2UajISfenndwvFuH3NGS+nvA==", 2127 | "requires": { 2128 | "moment": ">= 2.9.0" 2129 | } 2130 | }, 2131 | "ms": { 2132 | "version": "2.0.0", 2133 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", 2134 | "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" 2135 | }, 2136 | "negotiator": { 2137 | "version": "0.6.2", 2138 | "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.2.tgz", 2139 | "integrity": "sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw==" 2140 | }, 2141 | "node-environment-flags": { 2142 | "version": "1.0.6", 2143 | "resolved": "https://registry.npmjs.org/node-environment-flags/-/node-environment-flags-1.0.6.tgz", 2144 | "integrity": "sha512-5Evy2epuL+6TM0lCQGpFIj6KwiEsGh1SrHUhTbNX+sLbBtjidPZFAnVK9y5yU1+h//RitLbRHTIMyxQPtxMdHw==", 2145 | "requires": { 2146 | "object.getownpropertydescriptors": "^2.0.3", 2147 | "semver": "^5.7.0" 2148 | } 2149 | }, 2150 | "node-modules-regexp": { 2151 | "version": "1.0.0", 2152 | "resolved": "https://registry.npmjs.org/node-modules-regexp/-/node-modules-regexp-1.0.0.tgz", 2153 | "integrity": "sha1-jZ2+KJZKSsVxLpExZCEHxx6Q7EA=" 2154 | }, 2155 | "node-releases": { 2156 | "version": "1.1.70", 2157 | "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.70.tgz", 2158 | "integrity": "sha512-Slf2s69+2/uAD79pVVQo8uSiC34+g8GWY8UH2Qtqv34ZfhYrxpYpfzs9Js9d6O0mbDmALuxaTlplnBTnSELcrw==" 2159 | }, 2160 | "nodemon": { 2161 | "version": "2.0.7", 2162 | "resolved": "https://registry.npmjs.org/nodemon/-/nodemon-2.0.7.tgz", 2163 | "integrity": "sha512-XHzK69Awgnec9UzHr1kc8EomQh4sjTQ8oRf8TsGrSmHDx9/UmiGG9E/mM3BuTfNeFwdNBvrqQq/RHL0xIeyFOA==", 2164 | "dev": true, 2165 | "requires": { 2166 | "chokidar": "^3.2.2", 2167 | "debug": "^3.2.6", 2168 | "ignore-by-default": "^1.0.1", 2169 | "minimatch": "^3.0.4", 2170 | "pstree.remy": "^1.1.7", 2171 | "semver": "^5.7.1", 2172 | "supports-color": "^5.5.0", 2173 | "touch": "^3.1.0", 2174 | "undefsafe": "^2.0.3", 2175 | "update-notifier": "^4.1.0" 2176 | }, 2177 | "dependencies": { 2178 | "debug": { 2179 | "version": "3.2.7", 2180 | "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", 2181 | "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", 2182 | "dev": true, 2183 | "requires": { 2184 | "ms": "^2.1.1" 2185 | } 2186 | }, 2187 | "ms": { 2188 | "version": "2.1.3", 2189 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", 2190 | "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", 2191 | "dev": true 2192 | } 2193 | } 2194 | }, 2195 | "nopt": { 2196 | "version": "1.0.10", 2197 | "resolved": "https://registry.npmjs.org/nopt/-/nopt-1.0.10.tgz", 2198 | "integrity": "sha1-bd0hvSoxQXuScn3Vhfim83YI6+4=", 2199 | "dev": true, 2200 | "requires": { 2201 | "abbrev": "1" 2202 | } 2203 | }, 2204 | "normalize-path": { 2205 | "version": "3.0.0", 2206 | "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", 2207 | "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", 2208 | "dev": true 2209 | }, 2210 | "normalize-url": { 2211 | "version": "4.5.0", 2212 | "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-4.5.0.tgz", 2213 | "integrity": "sha512-2s47yzUxdexf1OhyRi4Em83iQk0aPvwTddtFz4hnSSw9dCEsLEGf6SwIO8ss/19S9iBb5sJaOuTvTGDeZI00BQ==", 2214 | "dev": true 2215 | }, 2216 | "object-inspect": { 2217 | "version": "1.9.0", 2218 | "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.9.0.tgz", 2219 | "integrity": "sha512-i3Bp9iTqwhaLZBxGkRfo5ZbE07BQRT7MGu8+nNgwW9ItGp1TzCTw2DLEoWwjClxBjOFI/hWljTAmYGCEwmtnOw==" 2220 | }, 2221 | "object-keys": { 2222 | "version": "1.1.1", 2223 | "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", 2224 | "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==" 2225 | }, 2226 | "object.assign": { 2227 | "version": "4.1.2", 2228 | "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz", 2229 | "integrity": "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==", 2230 | "requires": { 2231 | "call-bind": "^1.0.0", 2232 | "define-properties": "^1.1.3", 2233 | "has-symbols": "^1.0.1", 2234 | "object-keys": "^1.1.1" 2235 | } 2236 | }, 2237 | "object.getownpropertydescriptors": { 2238 | "version": "2.1.1", 2239 | "resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.1.tgz", 2240 | "integrity": "sha512-6DtXgZ/lIZ9hqx4GtZETobXLR/ZLaa0aqV0kzbn80Rf8Z2e/XFnhA0I7p07N2wH8bBBltr2xQPi6sbKWAY2Eng==", 2241 | "requires": { 2242 | "call-bind": "^1.0.0", 2243 | "define-properties": "^1.1.3", 2244 | "es-abstract": "^1.18.0-next.1" 2245 | } 2246 | }, 2247 | "on-finished": { 2248 | "version": "2.3.0", 2249 | "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", 2250 | "integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=", 2251 | "requires": { 2252 | "ee-first": "1.1.1" 2253 | } 2254 | }, 2255 | "once": { 2256 | "version": "1.4.0", 2257 | "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", 2258 | "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", 2259 | "dev": true, 2260 | "requires": { 2261 | "wrappy": "1" 2262 | } 2263 | }, 2264 | "p-cancelable": { 2265 | "version": "1.1.0", 2266 | "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-1.1.0.tgz", 2267 | "integrity": "sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw==", 2268 | "dev": true 2269 | }, 2270 | "p-limit": { 2271 | "version": "2.3.0", 2272 | "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", 2273 | "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", 2274 | "requires": { 2275 | "p-try": "^2.0.0" 2276 | } 2277 | }, 2278 | "p-locate": { 2279 | "version": "3.0.0", 2280 | "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", 2281 | "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", 2282 | "requires": { 2283 | "p-limit": "^2.0.0" 2284 | } 2285 | }, 2286 | "p-try": { 2287 | "version": "2.2.0", 2288 | "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", 2289 | "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==" 2290 | }, 2291 | "package-json": { 2292 | "version": "6.5.0", 2293 | "resolved": "https://registry.npmjs.org/package-json/-/package-json-6.5.0.tgz", 2294 | "integrity": "sha512-k3bdm2n25tkyxcjSKzB5x8kfVxlMdgsbPr0GkZcwHsLpba6cBjqCt1KlcChKEvxHIcTB1FVMuwoijZ26xex5MQ==", 2295 | "dev": true, 2296 | "requires": { 2297 | "got": "^9.6.0", 2298 | "registry-auth-token": "^4.0.0", 2299 | "registry-url": "^5.0.0", 2300 | "semver": "^6.2.0" 2301 | }, 2302 | "dependencies": { 2303 | "semver": { 2304 | "version": "6.3.0", 2305 | "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", 2306 | "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", 2307 | "dev": true 2308 | } 2309 | } 2310 | }, 2311 | "packet-reader": { 2312 | "version": "1.0.0", 2313 | "resolved": "https://registry.npmjs.org/packet-reader/-/packet-reader-1.0.0.tgz", 2314 | "integrity": "sha512-HAKu/fG3HpHFO0AA8WE8q2g+gBJaZ9MG7fcKk+IJPLTGAD6Psw4443l+9DGRbOIh3/aXr7Phy0TjilYivJo5XQ==" 2315 | }, 2316 | "parse-passwd": { 2317 | "version": "1.0.0", 2318 | "resolved": "https://registry.npmjs.org/parse-passwd/-/parse-passwd-1.0.0.tgz", 2319 | "integrity": "sha1-bVuTSkVpk7I9N/QKOC1vFmao5cY=" 2320 | }, 2321 | "parseurl": { 2322 | "version": "1.3.3", 2323 | "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", 2324 | "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==" 2325 | }, 2326 | "path-exists": { 2327 | "version": "3.0.0", 2328 | "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", 2329 | "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=" 2330 | }, 2331 | "path-to-regexp": { 2332 | "version": "0.1.7", 2333 | "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", 2334 | "integrity": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=" 2335 | }, 2336 | "pg": { 2337 | "version": "8.5.1", 2338 | "resolved": "https://registry.npmjs.org/pg/-/pg-8.5.1.tgz", 2339 | "integrity": "sha512-9wm3yX9lCfjvA98ybCyw2pADUivyNWT/yIP4ZcDVpMN0og70BUWYEGXPCTAQdGTAqnytfRADb7NERrY1qxhIqw==", 2340 | "requires": { 2341 | "buffer-writer": "2.0.0", 2342 | "packet-reader": "1.0.0", 2343 | "pg-connection-string": "^2.4.0", 2344 | "pg-pool": "^3.2.2", 2345 | "pg-protocol": "^1.4.0", 2346 | "pg-types": "^2.1.0", 2347 | "pgpass": "1.x" 2348 | } 2349 | }, 2350 | "pg-connection-string": { 2351 | "version": "2.4.0", 2352 | "resolved": "https://registry.npmjs.org/pg-connection-string/-/pg-connection-string-2.4.0.tgz", 2353 | "integrity": "sha512-3iBXuv7XKvxeMrIgym7njT+HlZkwZqqGX4Bu9cci8xHZNT+Um1gWKqCsAzcC0d95rcKMU5WBg6YRUcHyV0HZKQ==" 2354 | }, 2355 | "pg-int8": { 2356 | "version": "1.0.1", 2357 | "resolved": "https://registry.npmjs.org/pg-int8/-/pg-int8-1.0.1.tgz", 2358 | "integrity": "sha512-WCtabS6t3c8SkpDBUlb1kjOs7l66xsGdKpIPZsg4wR+B3+u9UAum2odSsF9tnvxg80h4ZxLWMy4pRjOsFIqQpw==" 2359 | }, 2360 | "pg-pool": { 2361 | "version": "3.2.2", 2362 | "resolved": "https://registry.npmjs.org/pg-pool/-/pg-pool-3.2.2.tgz", 2363 | "integrity": "sha512-ORJoFxAlmmros8igi608iVEbQNNZlp89diFVx6yV5v+ehmpMY9sK6QgpmgoXbmkNaBAx8cOOZh9g80kJv1ooyA==" 2364 | }, 2365 | "pg-protocol": { 2366 | "version": "1.4.0", 2367 | "resolved": "https://registry.npmjs.org/pg-protocol/-/pg-protocol-1.4.0.tgz", 2368 | "integrity": "sha512-El+aXWcwG/8wuFICMQjM5ZSAm6OWiJicFdNYo+VY3QP+8vI4SvLIWVe51PppTzMhikUJR+PsyIFKqfdXPz/yxA==" 2369 | }, 2370 | "pg-types": { 2371 | "version": "2.2.0", 2372 | "resolved": "https://registry.npmjs.org/pg-types/-/pg-types-2.2.0.tgz", 2373 | "integrity": "sha512-qTAAlrEsl8s4OiEQY69wDvcMIdQN6wdz5ojQiOy6YRMuynxenON0O5oCpJI6lshc6scgAY8qvJ2On/p+CXY0GA==", 2374 | "requires": { 2375 | "pg-int8": "1.0.1", 2376 | "postgres-array": "~2.0.0", 2377 | "postgres-bytea": "~1.0.0", 2378 | "postgres-date": "~1.0.4", 2379 | "postgres-interval": "^1.1.0" 2380 | } 2381 | }, 2382 | "pgpass": { 2383 | "version": "1.0.4", 2384 | "resolved": "https://registry.npmjs.org/pgpass/-/pgpass-1.0.4.tgz", 2385 | "integrity": "sha512-YmuA56alyBq7M59vxVBfPJrGSozru8QAdoNlWuW3cz8l+UX3cWge0vTvjKhsSHSJpo3Bom8/Mm6hf0TR5GY0+w==", 2386 | "requires": { 2387 | "split2": "^3.1.1" 2388 | } 2389 | }, 2390 | "picomatch": { 2391 | "version": "2.2.2", 2392 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.2.2.tgz", 2393 | "integrity": "sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg==", 2394 | "dev": true 2395 | }, 2396 | "pify": { 2397 | "version": "4.0.1", 2398 | "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", 2399 | "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==" 2400 | }, 2401 | "pirates": { 2402 | "version": "4.0.1", 2403 | "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.1.tgz", 2404 | "integrity": "sha512-WuNqLTbMI3tmfef2TKxlQmAiLHKtFhlsCZnPIpuv2Ow0RDVO8lfy1Opf4NUzlMXLjPl+Men7AuVdX6TA+s+uGA==", 2405 | "requires": { 2406 | "node-modules-regexp": "^1.0.0" 2407 | } 2408 | }, 2409 | "pkg-dir": { 2410 | "version": "3.0.0", 2411 | "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz", 2412 | "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==", 2413 | "requires": { 2414 | "find-up": "^3.0.0" 2415 | } 2416 | }, 2417 | "postgres-array": { 2418 | "version": "2.0.0", 2419 | "resolved": "https://registry.npmjs.org/postgres-array/-/postgres-array-2.0.0.tgz", 2420 | "integrity": "sha512-VpZrUqU5A69eQyW2c5CA1jtLecCsN2U/bD6VilrFDWq5+5UIEVO7nazS3TEcHf1zuPYO/sqGvUvW62g86RXZuA==" 2421 | }, 2422 | "postgres-bytea": { 2423 | "version": "1.0.0", 2424 | "resolved": "https://registry.npmjs.org/postgres-bytea/-/postgres-bytea-1.0.0.tgz", 2425 | "integrity": "sha1-AntTPAqokOJtFy1Hz5zOzFIazTU=" 2426 | }, 2427 | "postgres-date": { 2428 | "version": "1.0.7", 2429 | "resolved": "https://registry.npmjs.org/postgres-date/-/postgres-date-1.0.7.tgz", 2430 | "integrity": "sha512-suDmjLVQg78nMK2UZ454hAG+OAW+HQPZ6n++TNDUX+L0+uUlLywnoxJKDou51Zm+zTCjrCl0Nq6J9C5hP9vK/Q==" 2431 | }, 2432 | "postgres-interval": { 2433 | "version": "1.2.0", 2434 | "resolved": "https://registry.npmjs.org/postgres-interval/-/postgres-interval-1.2.0.tgz", 2435 | "integrity": "sha512-9ZhXKM/rw350N1ovuWHbGxnGh/SNJ4cnxHiM0rxE4VN41wsg8P8zWn9hv/buK00RP4WvlOyr/RBDiptyxVbkZQ==", 2436 | "requires": { 2437 | "xtend": "^4.0.0" 2438 | } 2439 | }, 2440 | "prepend-http": { 2441 | "version": "2.0.0", 2442 | "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-2.0.0.tgz", 2443 | "integrity": "sha1-6SQ0v6XqjBn0HN/UAddBo8gZ2Jc=", 2444 | "dev": true 2445 | }, 2446 | "proxy-addr": { 2447 | "version": "2.0.6", 2448 | "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.6.tgz", 2449 | "integrity": "sha512-dh/frvCBVmSsDYzw6n926jv974gddhkFPfiN8hPOi30Wax25QZyZEGveluCgliBnqmuM+UJmBErbAUFIoDbjOw==", 2450 | "requires": { 2451 | "forwarded": "~0.1.2", 2452 | "ipaddr.js": "1.9.1" 2453 | } 2454 | }, 2455 | "pstree.remy": { 2456 | "version": "1.1.8", 2457 | "resolved": "https://registry.npmjs.org/pstree.remy/-/pstree.remy-1.1.8.tgz", 2458 | "integrity": "sha512-77DZwxQmxKnu3aR542U+X8FypNzbfJ+C5XQDk3uWjWxn6151aIMGthWYRXTqT1E5oJvg+ljaa2OJi+VfvCOQ8w==", 2459 | "dev": true 2460 | }, 2461 | "pump": { 2462 | "version": "3.0.0", 2463 | "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", 2464 | "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", 2465 | "dev": true, 2466 | "requires": { 2467 | "end-of-stream": "^1.1.0", 2468 | "once": "^1.3.1" 2469 | } 2470 | }, 2471 | "pupa": { 2472 | "version": "2.1.1", 2473 | "resolved": "https://registry.npmjs.org/pupa/-/pupa-2.1.1.tgz", 2474 | "integrity": "sha512-l1jNAspIBSFqbT+y+5FosojNpVpF94nlI+wDUpqP9enwOTfHx9f0gh5nB96vl+6yTpsJsypeNrwfzPrKuHB41A==", 2475 | "dev": true, 2476 | "requires": { 2477 | "escape-goat": "^2.0.0" 2478 | } 2479 | }, 2480 | "qs": { 2481 | "version": "6.7.0", 2482 | "resolved": "https://registry.npmjs.org/qs/-/qs-6.7.0.tgz", 2483 | "integrity": "sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ==" 2484 | }, 2485 | "range-parser": { 2486 | "version": "1.2.1", 2487 | "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", 2488 | "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==" 2489 | }, 2490 | "raw-body": { 2491 | "version": "2.4.0", 2492 | "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.4.0.tgz", 2493 | "integrity": "sha512-4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q==", 2494 | "requires": { 2495 | "bytes": "3.1.0", 2496 | "http-errors": "1.7.2", 2497 | "iconv-lite": "0.4.24", 2498 | "unpipe": "1.0.0" 2499 | } 2500 | }, 2501 | "rc": { 2502 | "version": "1.2.8", 2503 | "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", 2504 | "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==", 2505 | "dev": true, 2506 | "requires": { 2507 | "deep-extend": "^0.6.0", 2508 | "ini": "~1.3.0", 2509 | "minimist": "^1.2.0", 2510 | "strip-json-comments": "~2.0.1" 2511 | } 2512 | }, 2513 | "readable-stream": { 2514 | "version": "3.6.0", 2515 | "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", 2516 | "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", 2517 | "requires": { 2518 | "inherits": "^2.0.3", 2519 | "string_decoder": "^1.1.1", 2520 | "util-deprecate": "^1.0.1" 2521 | } 2522 | }, 2523 | "readdirp": { 2524 | "version": "3.5.0", 2525 | "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.5.0.tgz", 2526 | "integrity": "sha512-cMhu7c/8rdhkHXWsY+osBhfSy0JikwpHK/5+imo+LpeasTF8ouErHrlYkwT0++njiyuDvc7OFY5T3ukvZ8qmFQ==", 2527 | "dev": true, 2528 | "requires": { 2529 | "picomatch": "^2.2.1" 2530 | } 2531 | }, 2532 | "regenerate": { 2533 | "version": "1.4.2", 2534 | "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", 2535 | "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==" 2536 | }, 2537 | "regenerate-unicode-properties": { 2538 | "version": "8.2.0", 2539 | "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-8.2.0.tgz", 2540 | "integrity": "sha512-F9DjY1vKLo/tPePDycuH3dn9H1OTPIkVD9Kz4LODu+F2C75mgjAJ7x/gwy6ZcSNRAAkhNlJSOHRe8k3p+K9WhA==", 2541 | "requires": { 2542 | "regenerate": "^1.4.0" 2543 | } 2544 | }, 2545 | "regenerator-runtime": { 2546 | "version": "0.13.7", 2547 | "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz", 2548 | "integrity": "sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew==" 2549 | }, 2550 | "regenerator-transform": { 2551 | "version": "0.14.5", 2552 | "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.14.5.tgz", 2553 | "integrity": "sha512-eOf6vka5IO151Jfsw2NO9WpGX58W6wWmefK3I1zEGr0lOD0u8rwPaNqQL1aRxUaxLeKO3ArNh3VYg1KbaD+FFw==", 2554 | "requires": { 2555 | "@babel/runtime": "^7.8.4" 2556 | } 2557 | }, 2558 | "regexpu-core": { 2559 | "version": "4.7.1", 2560 | "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-4.7.1.tgz", 2561 | "integrity": "sha512-ywH2VUraA44DZQuRKzARmw6S66mr48pQVva4LBeRhcOltJ6hExvWly5ZjFLYo67xbIxb6W1q4bAGtgfEl20zfQ==", 2562 | "requires": { 2563 | "regenerate": "^1.4.0", 2564 | "regenerate-unicode-properties": "^8.2.0", 2565 | "regjsgen": "^0.5.1", 2566 | "regjsparser": "^0.6.4", 2567 | "unicode-match-property-ecmascript": "^1.0.4", 2568 | "unicode-match-property-value-ecmascript": "^1.2.0" 2569 | } 2570 | }, 2571 | "registry-auth-token": { 2572 | "version": "4.2.1", 2573 | "resolved": "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-4.2.1.tgz", 2574 | "integrity": "sha512-6gkSb4U6aWJB4SF2ZvLb76yCBjcvufXBqvvEx1HbmKPkutswjW1xNVRY0+daljIYRbogN7O0etYSlbiaEQyMyw==", 2575 | "dev": true, 2576 | "requires": { 2577 | "rc": "^1.2.8" 2578 | } 2579 | }, 2580 | "registry-url": { 2581 | "version": "5.1.0", 2582 | "resolved": "https://registry.npmjs.org/registry-url/-/registry-url-5.1.0.tgz", 2583 | "integrity": "sha512-8acYXXTI0AkQv6RAOjE3vOaIXZkT9wo4LOFbBKYQEEnnMNBpKqdUrI6S4NT0KPIo/WVvJ5tE/X5LF/TQUf0ekw==", 2584 | "dev": true, 2585 | "requires": { 2586 | "rc": "^1.2.8" 2587 | } 2588 | }, 2589 | "regjsgen": { 2590 | "version": "0.5.2", 2591 | "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.5.2.tgz", 2592 | "integrity": "sha512-OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A==" 2593 | }, 2594 | "regjsparser": { 2595 | "version": "0.6.7", 2596 | "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.6.7.tgz", 2597 | "integrity": "sha512-ib77G0uxsA2ovgiYbCVGx4Pv3PSttAx2vIwidqQzbL2U5S4Q+j00HdSAneSBuyVcMvEnTXMjiGgB+DlXozVhpQ==", 2598 | "requires": { 2599 | "jsesc": "~0.5.0" 2600 | }, 2601 | "dependencies": { 2602 | "jsesc": { 2603 | "version": "0.5.0", 2604 | "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", 2605 | "integrity": "sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=" 2606 | } 2607 | } 2608 | }, 2609 | "responselike": { 2610 | "version": "1.0.2", 2611 | "resolved": "https://registry.npmjs.org/responselike/-/responselike-1.0.2.tgz", 2612 | "integrity": "sha1-kYcg7ztjHFZCvgaPFa3lpG9Loec=", 2613 | "dev": true, 2614 | "requires": { 2615 | "lowercase-keys": "^1.0.0" 2616 | } 2617 | }, 2618 | "retry-as-promised": { 2619 | "version": "3.2.0", 2620 | "resolved": "https://registry.npmjs.org/retry-as-promised/-/retry-as-promised-3.2.0.tgz", 2621 | "integrity": "sha512-CybGs60B7oYU/qSQ6kuaFmRd9sTZ6oXSc0toqePvV74Ac6/IFZSI1ReFQmtCN+uvW1Mtqdwpvt/LGOiCBAY2Mg==", 2622 | "requires": { 2623 | "any-promise": "^1.3.0" 2624 | } 2625 | }, 2626 | "safe-buffer": { 2627 | "version": "5.1.2", 2628 | "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", 2629 | "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" 2630 | }, 2631 | "safer-buffer": { 2632 | "version": "2.1.2", 2633 | "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", 2634 | "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" 2635 | }, 2636 | "semver": { 2637 | "version": "5.7.1", 2638 | "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", 2639 | "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" 2640 | }, 2641 | "semver-diff": { 2642 | "version": "3.1.1", 2643 | "resolved": "https://registry.npmjs.org/semver-diff/-/semver-diff-3.1.1.tgz", 2644 | "integrity": "sha512-GX0Ix/CJcHyB8c4ykpHGIAvLyOwOobtM/8d+TQkAd81/bEjgPHrfba41Vpesr7jX/t8Uh+R3EX9eAS5be+jQYg==", 2645 | "dev": true, 2646 | "requires": { 2647 | "semver": "^6.3.0" 2648 | }, 2649 | "dependencies": { 2650 | "semver": { 2651 | "version": "6.3.0", 2652 | "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", 2653 | "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", 2654 | "dev": true 2655 | } 2656 | } 2657 | }, 2658 | "send": { 2659 | "version": "0.17.1", 2660 | "resolved": "https://registry.npmjs.org/send/-/send-0.17.1.tgz", 2661 | "integrity": "sha512-BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg==", 2662 | "requires": { 2663 | "debug": "2.6.9", 2664 | "depd": "~1.1.2", 2665 | "destroy": "~1.0.4", 2666 | "encodeurl": "~1.0.2", 2667 | "escape-html": "~1.0.3", 2668 | "etag": "~1.8.1", 2669 | "fresh": "0.5.2", 2670 | "http-errors": "~1.7.2", 2671 | "mime": "1.6.0", 2672 | "ms": "2.1.1", 2673 | "on-finished": "~2.3.0", 2674 | "range-parser": "~1.2.1", 2675 | "statuses": "~1.5.0" 2676 | }, 2677 | "dependencies": { 2678 | "ms": { 2679 | "version": "2.1.1", 2680 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz", 2681 | "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==" 2682 | } 2683 | } 2684 | }, 2685 | "sequelize": { 2686 | "version": "6.5.0", 2687 | "resolved": "https://registry.npmjs.org/sequelize/-/sequelize-6.5.0.tgz", 2688 | "integrity": "sha512-owBt8fnzVy8E1OvyCyfCdVk7OOLyPVrBCMEf+CvRReC5oCyo+UqeXCtwaex9L6LM9ifZ1i3TG3sFeM5MgLK0CQ==", 2689 | "requires": { 2690 | "debug": "^4.1.1", 2691 | "dottie": "^2.0.0", 2692 | "inflection": "1.12.0", 2693 | "lodash": "^4.17.20", 2694 | "moment": "^2.26.0", 2695 | "moment-timezone": "^0.5.31", 2696 | "retry-as-promised": "^3.2.0", 2697 | "semver": "^7.3.2", 2698 | "sequelize-pool": "^6.0.0", 2699 | "toposort-class": "^1.0.1", 2700 | "uuid": "^8.1.0", 2701 | "validator": "^10.11.0", 2702 | "wkx": "^0.5.0" 2703 | }, 2704 | "dependencies": { 2705 | "debug": { 2706 | "version": "4.3.1", 2707 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz", 2708 | "integrity": "sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==", 2709 | "requires": { 2710 | "ms": "2.1.2" 2711 | } 2712 | }, 2713 | "ms": { 2714 | "version": "2.1.2", 2715 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", 2716 | "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" 2717 | }, 2718 | "semver": { 2719 | "version": "7.3.4", 2720 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.4.tgz", 2721 | "integrity": "sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==", 2722 | "requires": { 2723 | "lru-cache": "^6.0.0" 2724 | } 2725 | } 2726 | } 2727 | }, 2728 | "sequelize-pool": { 2729 | "version": "6.1.0", 2730 | "resolved": "https://registry.npmjs.org/sequelize-pool/-/sequelize-pool-6.1.0.tgz", 2731 | "integrity": "sha512-4YwEw3ZgK/tY/so+GfnSgXkdwIJJ1I32uZJztIEgZeAO6HMgj64OzySbWLgxj+tXhZCJnzRfkY9gINw8Ft8ZMg==" 2732 | }, 2733 | "serve-static": { 2734 | "version": "1.14.1", 2735 | "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.14.1.tgz", 2736 | "integrity": "sha512-JMrvUwE54emCYWlTI+hGrGv5I8dEwmco/00EvkzIIsR7MqrHonbD9pO2MOfFnpFntl7ecpZs+3mW+XbQZu9QCg==", 2737 | "requires": { 2738 | "encodeurl": "~1.0.2", 2739 | "escape-html": "~1.0.3", 2740 | "parseurl": "~1.3.3", 2741 | "send": "0.17.1" 2742 | } 2743 | }, 2744 | "setprototypeof": { 2745 | "version": "1.1.1", 2746 | "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.1.tgz", 2747 | "integrity": "sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==" 2748 | }, 2749 | "signal-exit": { 2750 | "version": "3.0.3", 2751 | "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.3.tgz", 2752 | "integrity": "sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA==", 2753 | "dev": true 2754 | }, 2755 | "source-map": { 2756 | "version": "0.5.7", 2757 | "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", 2758 | "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" 2759 | }, 2760 | "source-map-support": { 2761 | "version": "0.5.19", 2762 | "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.19.tgz", 2763 | "integrity": "sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==", 2764 | "requires": { 2765 | "buffer-from": "^1.0.0", 2766 | "source-map": "^0.6.0" 2767 | }, 2768 | "dependencies": { 2769 | "source-map": { 2770 | "version": "0.6.1", 2771 | "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", 2772 | "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" 2773 | } 2774 | } 2775 | }, 2776 | "split2": { 2777 | "version": "3.2.2", 2778 | "resolved": "https://registry.npmjs.org/split2/-/split2-3.2.2.tgz", 2779 | "integrity": "sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg==", 2780 | "requires": { 2781 | "readable-stream": "^3.0.0" 2782 | } 2783 | }, 2784 | "statuses": { 2785 | "version": "1.5.0", 2786 | "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", 2787 | "integrity": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=" 2788 | }, 2789 | "string-width": { 2790 | "version": "4.2.0", 2791 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.0.tgz", 2792 | "integrity": "sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg==", 2793 | "dev": true, 2794 | "requires": { 2795 | "emoji-regex": "^8.0.0", 2796 | "is-fullwidth-code-point": "^3.0.0", 2797 | "strip-ansi": "^6.0.0" 2798 | }, 2799 | "dependencies": { 2800 | "ansi-regex": { 2801 | "version": "5.0.0", 2802 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz", 2803 | "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==", 2804 | "dev": true 2805 | }, 2806 | "emoji-regex": { 2807 | "version": "8.0.0", 2808 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", 2809 | "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", 2810 | "dev": true 2811 | }, 2812 | "is-fullwidth-code-point": { 2813 | "version": "3.0.0", 2814 | "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", 2815 | "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", 2816 | "dev": true 2817 | }, 2818 | "strip-ansi": { 2819 | "version": "6.0.0", 2820 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz", 2821 | "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==", 2822 | "dev": true, 2823 | "requires": { 2824 | "ansi-regex": "^5.0.0" 2825 | } 2826 | } 2827 | } 2828 | }, 2829 | "string.prototype.trimend": { 2830 | "version": "1.0.3", 2831 | "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.3.tgz", 2832 | "integrity": "sha512-ayH0pB+uf0U28CtjlLvL7NaohvR1amUvVZk+y3DYb0Ey2PUV5zPkkKy9+U1ndVEIXO8hNg18eIv9Jntbii+dKw==", 2833 | "requires": { 2834 | "call-bind": "^1.0.0", 2835 | "define-properties": "^1.1.3" 2836 | } 2837 | }, 2838 | "string.prototype.trimstart": { 2839 | "version": "1.0.3", 2840 | "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.3.tgz", 2841 | "integrity": "sha512-oBIBUy5lea5tt0ovtOFiEQaBkoBBkyJhZXzJYrSmDo5IUUqbOPvVezuRs/agBIdZ2p2Eo1FD6bD9USyBLfl3xg==", 2842 | "requires": { 2843 | "call-bind": "^1.0.0", 2844 | "define-properties": "^1.1.3" 2845 | } 2846 | }, 2847 | "string_decoder": { 2848 | "version": "1.3.0", 2849 | "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", 2850 | "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", 2851 | "requires": { 2852 | "safe-buffer": "~5.2.0" 2853 | }, 2854 | "dependencies": { 2855 | "safe-buffer": { 2856 | "version": "5.2.1", 2857 | "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", 2858 | "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" 2859 | } 2860 | } 2861 | }, 2862 | "strip-ansi": { 2863 | "version": "5.2.0", 2864 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", 2865 | "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", 2866 | "dev": true, 2867 | "requires": { 2868 | "ansi-regex": "^4.1.0" 2869 | } 2870 | }, 2871 | "strip-json-comments": { 2872 | "version": "2.0.1", 2873 | "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", 2874 | "integrity": "sha1-PFMZQukIwml8DsNEhYwobHygpgo=", 2875 | "dev": true 2876 | }, 2877 | "supports-color": { 2878 | "version": "5.5.0", 2879 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", 2880 | "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", 2881 | "requires": { 2882 | "has-flag": "^3.0.0" 2883 | } 2884 | }, 2885 | "term-size": { 2886 | "version": "2.2.1", 2887 | "resolved": "https://registry.npmjs.org/term-size/-/term-size-2.2.1.tgz", 2888 | "integrity": "sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==", 2889 | "dev": true 2890 | }, 2891 | "to-fast-properties": { 2892 | "version": "2.0.0", 2893 | "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", 2894 | "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=" 2895 | }, 2896 | "to-readable-stream": { 2897 | "version": "1.0.0", 2898 | "resolved": "https://registry.npmjs.org/to-readable-stream/-/to-readable-stream-1.0.0.tgz", 2899 | "integrity": "sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q==", 2900 | "dev": true 2901 | }, 2902 | "to-regex-range": { 2903 | "version": "5.0.1", 2904 | "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", 2905 | "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", 2906 | "dev": true, 2907 | "requires": { 2908 | "is-number": "^7.0.0" 2909 | } 2910 | }, 2911 | "toidentifier": { 2912 | "version": "1.0.0", 2913 | "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.0.tgz", 2914 | "integrity": "sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==" 2915 | }, 2916 | "toposort-class": { 2917 | "version": "1.0.1", 2918 | "resolved": "https://registry.npmjs.org/toposort-class/-/toposort-class-1.0.1.tgz", 2919 | "integrity": "sha1-f/0feMi+KMO6Rc1OGj9e4ZO9mYg=" 2920 | }, 2921 | "touch": { 2922 | "version": "3.1.0", 2923 | "resolved": "https://registry.npmjs.org/touch/-/touch-3.1.0.tgz", 2924 | "integrity": "sha512-WBx8Uy5TLtOSRtIq+M03/sKDrXCLHxwDcquSP2c43Le03/9serjQBIztjRz6FkJez9D/hleyAXTBGLwwZUw9lA==", 2925 | "dev": true, 2926 | "requires": { 2927 | "nopt": "~1.0.10" 2928 | } 2929 | }, 2930 | "type-fest": { 2931 | "version": "0.8.1", 2932 | "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", 2933 | "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", 2934 | "dev": true 2935 | }, 2936 | "type-is": { 2937 | "version": "1.6.18", 2938 | "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", 2939 | "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", 2940 | "requires": { 2941 | "media-typer": "0.3.0", 2942 | "mime-types": "~2.1.24" 2943 | } 2944 | }, 2945 | "typedarray-to-buffer": { 2946 | "version": "3.1.5", 2947 | "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz", 2948 | "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==", 2949 | "dev": true, 2950 | "requires": { 2951 | "is-typedarray": "^1.0.0" 2952 | } 2953 | }, 2954 | "undefsafe": { 2955 | "version": "2.0.3", 2956 | "resolved": "https://registry.npmjs.org/undefsafe/-/undefsafe-2.0.3.tgz", 2957 | "integrity": "sha512-nrXZwwXrD/T/JXeygJqdCO6NZZ1L66HrxM/Z7mIq2oPanoN0F1nLx3lwJMu6AwJY69hdixaFQOuoYsMjE5/C2A==", 2958 | "dev": true, 2959 | "requires": { 2960 | "debug": "^2.2.0" 2961 | } 2962 | }, 2963 | "unicode-canonical-property-names-ecmascript": { 2964 | "version": "1.0.4", 2965 | "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz", 2966 | "integrity": "sha512-jDrNnXWHd4oHiTZnx/ZG7gtUTVp+gCcTTKr8L0HjlwphROEW3+Him+IpvC+xcJEFegapiMZyZe02CyuOnRmbnQ==" 2967 | }, 2968 | "unicode-match-property-ecmascript": { 2969 | "version": "1.0.4", 2970 | "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-1.0.4.tgz", 2971 | "integrity": "sha512-L4Qoh15vTfntsn4P1zqnHulG0LdXgjSO035fEpdtp6YxXhMT51Q6vgM5lYdG/5X3MjS+k/Y9Xw4SFCY9IkR0rg==", 2972 | "requires": { 2973 | "unicode-canonical-property-names-ecmascript": "^1.0.4", 2974 | "unicode-property-aliases-ecmascript": "^1.0.4" 2975 | } 2976 | }, 2977 | "unicode-match-property-value-ecmascript": { 2978 | "version": "1.2.0", 2979 | "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.2.0.tgz", 2980 | "integrity": "sha512-wjuQHGQVofmSJv1uVISKLE5zO2rNGzM/KCYZch/QQvez7C1hUhBIuZ701fYXExuufJFMPhv2SyL8CyoIfMLbIQ==" 2981 | }, 2982 | "unicode-property-aliases-ecmascript": { 2983 | "version": "1.1.0", 2984 | "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.1.0.tgz", 2985 | "integrity": "sha512-PqSoPh/pWetQ2phoj5RLiaqIk4kCNwoV3CI+LfGmWLKI3rE3kl1h59XpX2BjgDrmbxD9ARtQobPGU1SguCYuQg==" 2986 | }, 2987 | "unique-string": { 2988 | "version": "2.0.0", 2989 | "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-2.0.0.tgz", 2990 | "integrity": "sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==", 2991 | "dev": true, 2992 | "requires": { 2993 | "crypto-random-string": "^2.0.0" 2994 | } 2995 | }, 2996 | "unpipe": { 2997 | "version": "1.0.0", 2998 | "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", 2999 | "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=" 3000 | }, 3001 | "update-notifier": { 3002 | "version": "4.1.3", 3003 | "resolved": "https://registry.npmjs.org/update-notifier/-/update-notifier-4.1.3.tgz", 3004 | "integrity": "sha512-Yld6Z0RyCYGB6ckIjffGOSOmHXj1gMeE7aROz4MG+XMkmixBX4jUngrGXNYz7wPKBmtoD4MnBa2Anu7RSKht/A==", 3005 | "dev": true, 3006 | "requires": { 3007 | "boxen": "^4.2.0", 3008 | "chalk": "^3.0.0", 3009 | "configstore": "^5.0.1", 3010 | "has-yarn": "^2.1.0", 3011 | "import-lazy": "^2.1.0", 3012 | "is-ci": "^2.0.0", 3013 | "is-installed-globally": "^0.3.1", 3014 | "is-npm": "^4.0.0", 3015 | "is-yarn-global": "^0.3.0", 3016 | "latest-version": "^5.0.0", 3017 | "pupa": "^2.0.1", 3018 | "semver-diff": "^3.1.1", 3019 | "xdg-basedir": "^4.0.0" 3020 | } 3021 | }, 3022 | "url-parse-lax": { 3023 | "version": "3.0.0", 3024 | "resolved": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-3.0.0.tgz", 3025 | "integrity": "sha1-FrXK/Afb42dsGxmZF3gj1lA6yww=", 3026 | "dev": true, 3027 | "requires": { 3028 | "prepend-http": "^2.0.0" 3029 | } 3030 | }, 3031 | "util-deprecate": { 3032 | "version": "1.0.2", 3033 | "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", 3034 | "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" 3035 | }, 3036 | "utils-merge": { 3037 | "version": "1.0.1", 3038 | "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", 3039 | "integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=" 3040 | }, 3041 | "uuid": { 3042 | "version": "8.3.2", 3043 | "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", 3044 | "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==" 3045 | }, 3046 | "v8flags": { 3047 | "version": "3.2.0", 3048 | "resolved": "https://registry.npmjs.org/v8flags/-/v8flags-3.2.0.tgz", 3049 | "integrity": "sha512-mH8etigqMfiGWdeXpaaqGfs6BndypxusHHcv2qSHyZkGEznCd/qAXCWWRzeowtL54147cktFOC4P5y+kl8d8Jg==", 3050 | "requires": { 3051 | "homedir-polyfill": "^1.0.1" 3052 | } 3053 | }, 3054 | "validator": { 3055 | "version": "10.11.0", 3056 | "resolved": "https://registry.npmjs.org/validator/-/validator-10.11.0.tgz", 3057 | "integrity": "sha512-X/p3UZerAIsbBfN/IwahhYaBbY68EN/UQBWHtsbXGT5bfrH/p4NQzUCG1kF/rtKaNpnJ7jAu6NGTdSNtyNIXMw==" 3058 | }, 3059 | "vary": { 3060 | "version": "1.1.2", 3061 | "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", 3062 | "integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=" 3063 | }, 3064 | "widest-line": { 3065 | "version": "3.1.0", 3066 | "resolved": "https://registry.npmjs.org/widest-line/-/widest-line-3.1.0.tgz", 3067 | "integrity": "sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==", 3068 | "dev": true, 3069 | "requires": { 3070 | "string-width": "^4.0.0" 3071 | } 3072 | }, 3073 | "wkx": { 3074 | "version": "0.5.0", 3075 | "resolved": "https://registry.npmjs.org/wkx/-/wkx-0.5.0.tgz", 3076 | "integrity": "sha512-Xng/d4Ichh8uN4l0FToV/258EjMGU9MGcA0HV2d9B/ZpZB3lqQm7nkOdZdm5GhKtLLhAE7PiVQwN4eN+2YJJUg==", 3077 | "requires": { 3078 | "@types/node": "*" 3079 | } 3080 | }, 3081 | "wrappy": { 3082 | "version": "1.0.2", 3083 | "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", 3084 | "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", 3085 | "dev": true 3086 | }, 3087 | "write-file-atomic": { 3088 | "version": "3.0.3", 3089 | "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", 3090 | "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", 3091 | "dev": true, 3092 | "requires": { 3093 | "imurmurhash": "^0.1.4", 3094 | "is-typedarray": "^1.0.0", 3095 | "signal-exit": "^3.0.2", 3096 | "typedarray-to-buffer": "^3.1.5" 3097 | } 3098 | }, 3099 | "xdg-basedir": { 3100 | "version": "4.0.0", 3101 | "resolved": "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-4.0.0.tgz", 3102 | "integrity": "sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q==", 3103 | "dev": true 3104 | }, 3105 | "xtend": { 3106 | "version": "4.0.2", 3107 | "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", 3108 | "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==" 3109 | }, 3110 | "yallist": { 3111 | "version": "4.0.0", 3112 | "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", 3113 | "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" 3114 | } 3115 | } 3116 | } 3117 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "project", 3 | "version": "1.0.0", 4 | "description": "", 5 | "main": "index.js", 6 | "scripts": { 7 | "dev": "nodemon --exec babel-node index.js" 8 | }, 9 | "author": "", 10 | "license": "ISC", 11 | "dependencies": { 12 | "@babel/core": "^7.12.10", 13 | "@babel/node": "^7.12.10", 14 | "@babel/preset-env": "^7.12.11", 15 | "express": "^4.17.1", 16 | "pg": "^8.5.1", 17 | "sequelize": "^6.5.0" 18 | }, 19 | "devDependencies": { 20 | "nodemon": "^2.0.7" 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /src/config/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "development": { 3 | "username": "postgres", 4 | "password": "enthusiast", 5 | "database": "node-project", 6 | "host": "127.0.0.1", 7 | "port": "5434", 8 | "dialect": "postgres" 9 | }, 10 | "test": { 11 | "username": "root", 12 | "password": null, 13 | "database": "database_test", 14 | "host": "127.0.0.1", 15 | "dialect": "postgres" 16 | }, 17 | "production": { 18 | "username": "root", 19 | "password": null, 20 | "database": "database_production", 21 | "host": "127.0.0.1", 22 | "dialect": "postgres" 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /src/controllers/AuthController.js: -------------------------------------------------------------------------------- 1 | import { Op } from 'sequelize'; 2 | import model from '../models'; 3 | 4 | const { User } = model; 5 | 6 | export default { 7 | async signUp(req, res) { 8 | const {email, password, name, phone} = req.body; 9 | try { 10 | const user = await User.findOne({where: {[Op.or]: [ {phone}, {email} ]}}); 11 | if(user) { 12 | return res.status(422) 13 | .send({message: 'User with that email or phone already exists'}); 14 | } 15 | 16 | await User.create({ 17 | name, 18 | email, 19 | password, 20 | phone, 21 | }); 22 | return res.status(201).send({message: 'Account created successfully'}); 23 | } catch(e) { 24 | console.log(e); 25 | return res.status(500) 26 | .send( 27 | {message: 'Could not perform operation at this time, kindly try again later.'}); 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /src/database/migrations/20210202095252-create-user.js: -------------------------------------------------------------------------------- 1 | export default { 2 | up: async (queryInterface, Sequelize) => { 3 | await queryInterface.createTable('Users', { 4 | id: { 5 | allowNull: false, 6 | autoIncrement: true, 7 | primaryKey: true, 8 | type: Sequelize.INTEGER 9 | }, 10 | name: { 11 | type: Sequelize.STRING 12 | }, 13 | email: { 14 | allowNull: false, 15 | unique: true, 16 | type: Sequelize.STRING, 17 | }, 18 | phone: { 19 | type: Sequelize.STRING, 20 | unique: true, 21 | }, 22 | password: { 23 | type: Sequelize.STRING 24 | }, 25 | status: { 26 | type: Sequelize.STRING 27 | }, 28 | last_login_at: { 29 | type: Sequelize.DATE 30 | }, 31 | last_ip_address: { 32 | type: Sequelize.STRING 33 | }, 34 | createdAt: { 35 | allowNull: false, 36 | type: Sequelize.DATE 37 | }, 38 | updatedAt: { 39 | allowNull: false, 40 | type: Sequelize.DATE 41 | } 42 | }); 43 | }, 44 | down: async (queryInterface, Sequelize) => { 45 | await queryInterface.dropTable('Users'); 46 | } 47 | }; -------------------------------------------------------------------------------- /src/models/User.js: -------------------------------------------------------------------------------- 1 | import { Model } from 'sequelize'; 2 | 3 | const PROTECTED_ATTRIBUTES = ['password']; 4 | 5 | export default (sequelize, DataTypes) => { 6 | class User extends Model { 7 | toJSON() { 8 | // hide protected fields 9 | const attributes = { ...this.get() }; 10 | // eslint-disable-next-line no-restricted-syntax 11 | for (const a of PROTECTED_ATTRIBUTES) { 12 | delete attributes[a]; 13 | } 14 | return attributes; 15 | } 16 | /** 17 | * Helper method for defining associations. 18 | * This method is not a part of Sequelize lifecycle. 19 | * The `models/index` file will call this method automatically. 20 | */ 21 | static associate(models) { 22 | // define association here 23 | } 24 | }; 25 | User.init({ 26 | name: DataTypes.STRING, 27 | email: { 28 | type: DataTypes.STRING, 29 | allowNull: { 30 | args: false, 31 | msg: 'Please enter your email address', 32 | }, 33 | unique: { 34 | args: true, 35 | msg: 'Email already exists', 36 | }, 37 | validate: { 38 | isEmail: { 39 | args: true, 40 | msg: 'Please enter a valid email address', 41 | }, 42 | }, 43 | }, 44 | phone: { 45 | type: DataTypes.STRING, 46 | unique: true, 47 | }, 48 | password: DataTypes.STRING, 49 | status: DataTypes.STRING, 50 | last_login_at: DataTypes.DATE, 51 | last_ip_address: DataTypes.STRING 52 | }, { 53 | sequelize, 54 | modelName: 'User', 55 | }); 56 | return User; 57 | }; -------------------------------------------------------------------------------- /src/models/index.js: -------------------------------------------------------------------------------- 1 | import fs from 'fs'; 2 | import path from 'path'; 3 | import Sequelize from 'sequelize'; 4 | import enVariables from '../config/config.json'; 5 | 6 | const basename = path.basename(__filename); 7 | const env = process.env.NODE_ENV || 'development'; 8 | const config = enVariables[env]; 9 | const db = {}; 10 | 11 | let sequelize; 12 | if (config.use_env_variable) { 13 | sequelize = new Sequelize(process.env[config.use_env_variable], config); 14 | } else { 15 | sequelize = new Sequelize(config.database, config.username, config.password, config); 16 | } 17 | 18 | fs 19 | .readdirSync(__dirname) 20 | .filter(file => (file.indexOf('.') !== 0) && (file !== basename) && (file.slice(-3) === '.js')) 21 | .forEach(file => { 22 | // eslint-disable-next-line global-require,import/no-dynamic-require 23 | const model = require(path.join(__dirname, file)).default(sequelize, Sequelize.DataTypes); 24 | db[model.name] = model; 25 | }); 26 | 27 | Object.keys(db).forEach(modelName => { 28 | if (db[modelName].associate) { 29 | db[modelName].associate(db); 30 | } 31 | }); 32 | 33 | db.sequelize = sequelize; 34 | db.Sequelize = Sequelize; 35 | 36 | export default db; 37 | -------------------------------------------------------------------------------- /src/routes/index.js: -------------------------------------------------------------------------------- 1 | import AuthController from '../controllers/AuthController' 2 | 3 | export default (app) => { 4 | app.post('/register', AuthController.signUp); 5 | 6 | // Create a catch-all route for testing the installation. 7 | app.all('*', (req, res) => res.status(200).send({ 8 | message: 'Hello World!', 9 | })); 10 | }; 11 | --------------------------------------------------------------------------------