commit bf4ee2c3cfa344e3d1fb707b0a1421b0fb51634f Author: zyachel Date: Sun Apr 17 17:54:23 2022 +0530 initial commit diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..7e0e089 --- /dev/null +++ b/.env.example @@ -0,0 +1,8 @@ +NODE_ENV=production #if set to development, morgan middleware will log every request +PORT=3000 # if unset, default back to 3000 + +#optional properties. default shown. comment out by removing # to enable them. + +#user agent and accept header that quora will see +#AXIOS_USER_AGENT='axios/0.26.1' +#AXIOS_ACCEPT='application/json, text/plain, */*' \ No newline at end of file diff --git a/.eslintrc.json b/.eslintrc.json new file mode 100644 index 0000000..56769be --- /dev/null +++ b/.eslintrc.json @@ -0,0 +1,12 @@ +{ + "env": { + "browser": true, + "es2021": true + }, + "extends": ["airbnb-base", "prettier"], + "parserOptions": { + "ecmaVersion": "latest", + "sourceType": "module" + }, + "rules": { "spaced-comment": 0, "import/extensions": 0 } +} diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..69a46b5 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +.vscode/* +node_modules/* +.env +dev-data/* \ No newline at end of file diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..162676c --- /dev/null +++ b/LICENSE @@ -0,0 +1,661 @@ + GNU AFFERO GENERAL PUBLIC LICENSE + Version 3, 19 November 2007 + +Copyright (C) 2007 Free Software Foundation, Inc. +Everyone is permitted to copy and distribute verbatim copies +of this license document, but changing it is not allowed. + + Preamble + +The GNU Affero General Public License is a free, copyleft license for +software and other kinds of works, specifically designed to ensure +cooperation with the community in the case of network server software. + +The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +our General Public Licenses are intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. + +When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + +Developers that use our General Public Licenses protect your rights +with two steps: (1) assert copyright on the software, and (2) offer +you this License which gives you legal permission to copy, distribute +and/or modify the software. + +A secondary benefit of defending all users' freedom is that +improvements made in alternate versions of the program, if they +receive widespread use, become available for other developers to +incorporate. Many developers of free software are heartened and +encouraged by the resulting cooperation. However, in the case of +software used on network servers, this result may fail to come about. +The GNU General Public License permits making a modified version and +letting the public access it on a server without ever releasing its +source code to the public. + +The GNU Affero General Public License is designed specifically to +ensure that, in such cases, the modified source code becomes available +to the community. It requires the operator of a network server to +provide the source code of the modified version running there to the +users of that server. Therefore, public use of a modified version, on +a publicly accessible server, gives the public access to the source +code of the modified version. + +An older license, called the Affero General Public License and +published by Affero, was designed to accomplish similar goals. This is +a different license, not a version of the Affero GPL, but Affero has +released a new version of the Affero GPL which permits relicensing under +this license. + +The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + +0. Definitions. + +"This License" refers to version 3 of the GNU Affero General Public License. + +"Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + +"The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + +To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + +A "covered work" means either the unmodified Program or a work based +on the Program. + +To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + +To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + +An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + +1. Source Code. + +The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + +A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + +The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + +The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + +The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + +The Corresponding Source for a work in source code form is that +same work. + +2. Basic Permissions. + +All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + +You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + +Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + +3. Protecting Users' Legal Rights From Anti-Circumvention Law. + +No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + +When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + +4. Conveying Verbatim Copies. + +You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + +You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + +5. Conveying Modified Source Versions. + +You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + +A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + +6. Conveying Non-Source Forms. + +You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + +A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + +A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + +"Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + +If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + +The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + +Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + +7. Additional Terms. + +"Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + +When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + +Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + +All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + +If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + +Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + +8. Termination. + +You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + +However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + +Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + +Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + +9. Acceptance Not Required for Having Copies. + +You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + +10. Automatic Licensing of Downstream Recipients. + +Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + +An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + +You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + +11. Patents. + +A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + +A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + +Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + +In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + +If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + +If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + +A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + +Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + +12. No Surrender of Others' Freedom. + +If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + +13. Remote Network Interaction; Use with the GNU General Public License. + +Notwithstanding any other provision of this License, if you modify the +Program, your modified version must prominently offer all users +interacting with it remotely through a computer network (if your version +supports such interaction) an opportunity to receive the Corresponding +Source of your version by providing access to the Corresponding Source +from a network server at no charge, through some standard or customary +means of facilitating copying of software. This Corresponding Source +shall include the Corresponding Source for any work covered by version 3 +of the GNU General Public License that is incorporated pursuant to the +following paragraph. + +Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the work with which it is combined will remain governed by version +3 of the GNU General Public License. + +14. Revised Versions of this License. + +The Free Software Foundation may publish revised and/or new versions of +the GNU Affero General Public License from time to time. Such new versions +will be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + +Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU Affero General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU Affero General Public License, you may choose any version ever published +by the Free Software Foundation. + +If the Program specifies that a proxy can decide which future +versions of the GNU Affero General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + +Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + +15. Disclaimer of Warranty. + +THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + +16. Limitation of Liability. + +IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + +17. Interpretation of Sections 15 and 16. + +If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + +If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + +To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published + by the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + +If your software can interact with users remotely through a computer +network, you should also make sure that it provides a way for users to +get its source. For example, if your program is a web application, its +interface could display a "Source" link that leads users to an archive +of the code. There are many ways you could offer source, and different +solutions will be better for different programs; see section 13 for the +specific requirements. + +You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU AGPL, see +. diff --git a/README.md b/README.md new file mode 100644 index 0000000..63ab656 --- /dev/null +++ b/README.md @@ -0,0 +1,189 @@ +# **Quetre** + +Quetre is an alternative front-end to Quora. +It enables you to see answers without ads, trackers, and other such bloat. + +--- + +## **Key Features** + +- Privacy focused + + All requests except for images are proxied which makes it impossible for Quora to collate meaningful data points about you. + +- No ads or tracking + + Absolutely no ads, no tracking, no browser fingerprinting, and no telemetry of any kind. + +- Fully responsive layout + + Utilises modern CSS features like CSS Grid and Flexbox to make the website fully responsive for all screen sizes. + +- Lightweight and fast + + As the website contains no bloat, pages load in a jiffy and request sizes are tiny. + +- Dark and light themes + + Whether you're a nightowl or bright screen lover, you'll enjoy curated color scheme for your taste. + +- Unofficial API support + + just add `/api/v1/` after the domain name in the URL and get a JSON repsonse. + +--- + +## **Screenshots** + +| | | +| :------------------------------: | :-------------------------------: | +| ![](public/misc/img/preview.png) | ![](public/misc/img/preview2.png) | + +--- + +## **Comparision** + +### Speed + +URL for comparision: https://www.quora.com/How-does-the-Z-boson-decay +| | Quora | Quetre | +| :------------- | :---- | :------ | +| No. of requests | 83* | 15 | +| Load time | 6.76s | 4.61s | +| Finish time | 2.44min* | 4.62s | +| Data consumed | 3.49MB | 404.47KB | + +\*the requests were ongoing even after 6 minutes + +--- + +### Usability + +- Quora: You can't even see an answer(except for some hacks) if you're not signed in. They put a big banner in front of answers to sign you up/in forcefully. + +- Quetre: There is no accounts system. Just read whatever you want to read. Zero fuss. + +--- + +### Privacy + +#### Quora(when browsing anonymously) + +From [their privacy policy](https://www.quora.com/about/privacy) + +- Technologies used + - cookies + - log files + - clear GIFs/pixel tags + - JavaScript + - web beacons + - local storage objects + - Analytics Tools + - other tracking technologies +- Data collected + - searches + - page views + - date and time of your visit + - browser type + - type of computer or mobile device + - browser language + - IP address + - mobile carrier + - unique device identifier + - location + - requested and referring URLs + - other information about your use of the Quora Platform + +#### Quetre + +- Data actively collected by Quetre + + None. + +- Data passively collected by Quetre + + Whenever you hit some error page, an error object is logged to the console on the server. That error object contains the resource url you were trying to access, and the usual stack trace. That's it. + +- Data stored locally in your browser + + A key called 'theme' is stored in local storage provided by your browser to store your theme preference should you override the default theme. To prevent this behaviour, either disable JavaScript or local storage for Quetre. + +- Data collected by other services + + Since Quetre is deployed on heroku, heroku might log your IP to prevent abuse. Also, as Quetre connects to '\*.quoracdn.net' and 'cdn.jsdelivr.net' for images and mathjax library respectively, both of these service might log some data. So, follow due precaution. Using a VPN might be a good idea. Or even better, consider hosting your own instance. + +--- + +## FAQs + +- There are some unreachable routes. + + I'm working to implement them soon. Keep an eye on [To-Do list](#to-do). + +- Why is website connecting to '\*.quoracdn.net' and 'cdn.jsdelivr.net'? + + For the moment, images aren't proxied but directly fetched from quora. Hence the connection to quoracdn. As for the connection to jsdelivr, it is for an open source library – [Mathjax](https://www.mathjax.org/) – which is used to display math eqations nicely. If I get enough time, I'll include it locally. + +- Why are some math equations showing up weirdly? + + If you're browsing with JavaScript disabled, then the Mathjax library isn't able to load and format tex equations. I'd recommend to enable JavaScript for it since there's no other way to show them in the browser. Even Quora uses Mathjax. + +- Why can I only view a couple of answers? + + Quora doesn't show all answers at once. It only loads more answers as the user scrolls down. Furthermore, it uses many unique IDs to send ajax requests to fetch those answers. So, all in all, getting more answers isn't impossible but quite difficult requiring some serious amount of time on their website in order to figure out how it all happens. I'm short on time for now. + +- I have some ideas/want to help. + + You're most welcome to do that. Just [contact me](#contact) or fork [the repo](https://github.com/zyachel/quetre/fork) and make a pull request. You can even help by correcting some typos or translating this README to other languages. + +- Why the name Quetre? + + Quora is [supposedly](https://www.quora.com/Why-is-Quora-called-Quora-4) a portmanteau of 'Questions or answers'. In the same vein, Quetre is a portmanteau of 'Questions and answers', but [in Latin](https://lingva.ml/en/la/questions%20and%20answers%0A). + +--- + +## To-Do + +- [ ] add missing routes like topics, profile, and search +- [ ] use redis +- [ ] serve images and other assets from Quetre +- [ ] implement a better installation method +- [ ] implement other trivial routes like a specific answer, spaces, etc. +- [ ] implement a way to get more answers(not a big priority as of now) + +--- + +## Installation + +1. Install [Node.js](https://nodejs.org/en/) and [Git](https://git-scm.com/). Instructions are on their websites. + +2. Clone and set up the repository. + + ```bash + git clone https://github.com/zyachel/quetre.git + cd quetre + cp .env.example .env # you can make any changes here + # change `pnpm` to `npm run` here as well as in package.json if you use `npm` + pnpm install + pnpm start + ``` + +Quetre will start running at http://localhost:3000. + +--- + +## Misc + +Check out these [projects](https://github.com/mendel5/alternative-front-ends) similar to Quetre. + +--- + +## Contact + +Send a message on [\[matrix\]](https://matrix.to/#/@ninal:matrix.org) or go old school with [email](mailto:aricla@protonmail.com) in case you wish to contact me. + +--- + +## License + +Licensed under [GNU AGPLv3](/LICENSE). diff --git a/app.js b/app.js new file mode 100644 index 0000000..ec6c009 --- /dev/null +++ b/app.js @@ -0,0 +1,60 @@ +//////////////////////////////////////////////////////// +// IMPORTS +//////////////////////////////////////////////////////// +import express from 'express'; +import morgan from 'morgan'; +import helmet from 'helmet'; +import compression from 'compression'; +import { fileURLToPath } from 'url'; +import viewRouter from './routes/viewRoutes.js'; +import apiRouter from './routes/apiRoutes.js'; +import globalErrorHandler from './controllers/errorController.js'; +import AppError from './utils/AppError.js'; + +//////////////////////////////////////////////////////// +// CREATING AND CONFIGURING APP +//////////////////////////////////////////////////////// +const app = express(); + +app.set('view engine', 'pug'); +const pathToViews = fileURLToPath(new URL('./views/pug', import.meta.url)); +app.set('views', pathToViews); +const pathToPublicDirectory = fileURLToPath( + new URL('./public', import.meta.url) +); +app.use(express.static(pathToPublicDirectory)); + +//////////////////////////////////////////////////////// +// MIDDLEWARES +//////////////////////////////////////////////////////// +app.use(compression()); // compressing responses +app.use( + helmet({ + contentSecurityPolicy: { + directives: { + 'img-src': ["'self'", '*.quoracdn.net'], + 'script-src': ["'self'", 'cdn.jsdelivr.net'], + }, + }, + crossOriginEmbedderPolicy: false, + }) +); // using sane headers on response +if (process.env.NODE_ENV === 'development') app.use(morgan('dev')); // for logging during development + +app.use('/', viewRouter); +app.use('/api/v1/', apiRouter); + +//////////////////////////////////////////////////////// +// HANDLING ERRORS +//////////////////////////////////////////////////////// +// for all other routes, throwing error +app.all('*', (req, res, next) => { + next(new AppError(`this route(${req.originalUrl}) doesn't exist`, 404)); +}); + +app.use(globalErrorHandler); + +//////////////////////////////////////////////////////// +// EXPORTS +//////////////////////////////////////////////////////// +export default app; diff --git a/controllers/apiController.js b/controllers/apiController.js new file mode 100644 index 0000000..f3c8ecd --- /dev/null +++ b/controllers/apiController.js @@ -0,0 +1,35 @@ +//////////////////////////////////////////////////////// +// IMPORTS +//////////////////////////////////////////////////////// +import catchAsyncErrors from '../utils/catchAsyncErrors.js'; +import getAnswers from '../fetchers/getAnswers.js'; + +//////////////////////////////////////////////////////// +// EXPORTS +//////////////////////////////////////////////////////// +export const about = (req, res, next) => { + res + .status(200) + .json({ + status: 'success', + message: + "make a request. available endpoints are: '/some-slug', '/unanswered/some-slug'", + }); +}; + +export const unansweredQuestion = catchAsyncErrors(async (req, res, next) => { + const data = await getAnswers(`/unanswered/${req.params.slug}`); + res.status(200).json({ status: 'success', data }); +}); + +export const answeredQuestion = catchAsyncErrors(async (req, res, next) => { + const data = await getAnswers(req.params.slug); + res.status(200).json({ status: 'success', data }); +}); + +export const unimplemented = (req, res, next) => { + res.status(503).json({ + status: 'fail', + message: "This route isn't yet implemented. Check back sometime later!", + }); +}; diff --git a/controllers/errorController.js b/controllers/errorController.js new file mode 100644 index 0000000..7d53b8f --- /dev/null +++ b/controllers/errorController.js @@ -0,0 +1,63 @@ +/* eslint-disable no-param-reassign */ + +//////////////////////////////////////////////////////// +// IMPORTS +//////////////////////////////////////////////////////// +import log from '../utils/log.js'; + +//////////////////////////////////////////////////////// +// FUNCTIONS +//////////////////////////////////////////////////////// +/** + * @description function to send error responses to the client + * @param {{}} err error object + * @param {{}} req request object provided by express + * @param {{}} res response object provided by express + * @param {boolean} devMode if set to true, will send full stack trace to the client + */ +const sendErrorResponse = (err, req, res, devMode = false) => { + // 1. FOR API + if (req.originalUrl.startsWith('/api/')) + res.status(err.statusCode).json({ + status: err.status, + message: err.message, + // only if devMode is true, will this stack trace get sent. using es6 spreading and short circuiting + ...(devMode && { stack: err.stack }), + }); + // 2. FOR WEBPAGES + else + res.status(err.statusCode).render('error', { + title: 'Error', + statusCode: err.statusCode, + message: err.message, + ...(devMode && { stack: err.stack }), + }); +}; + +/** + * @description function to handle all errors occuring in the app + * @param {{}} err object containing full error + * @param {{}} req request object in express + * @param {{}} res response object in express + * @param {function} next function to call next middleware in express + */ + +const globalErrorHandler = (err, req, res, next) => { + // since not all errors will be an instance of AppError class(as not errors will be manually thrown by us), we have to set sensible defaults before dealing with those errors + err.statusCode = err.statusCode || 500; + err.status = err.status || 'error'; + log(err, 'error'); + + if (process.env.NODE_ENV === 'development') + sendErrorResponse(err, req, res, true); + else { + // if error is not operational, sending a generic error message and not revealing full details in production mode + if (err.name !== 'OperationalError') err.message = 'something went wrong!'; + sendErrorResponse(err, req, res); + } +}; + +//////////////////////////////////////////////////////// +// EXPORTS +//////////////////////////////////////////////////////// +export default globalErrorHandler; diff --git a/controllers/viewController.js b/controllers/viewController.js new file mode 100644 index 0000000..3c077d0 --- /dev/null +++ b/controllers/viewController.js @@ -0,0 +1,48 @@ +/* eslint-disable no-unused-vars */ +//////////////////////////////////////////////////////// +// IMPORTS +//////////////////////////////////////////////////////// +import catchAsyncErrors from '../utils/catchAsyncErrors.js'; +import getAnswers from '../fetchers/getAnswers.js'; +import { nonSlugRoutes } from '../utils/constants.js'; + +//////////////////////////////////////////////////////// +// EXPORTS +//////////////////////////////////////////////////////// +export const about = (req, res, next) => { + res.render('about', { title: 'About' }); +}; +export const privacy = (req, res, next) => { + res.render('privacy', { title: 'Privacy' }); +}; + +export const unansweredQuestion = catchAsyncErrors(async (req, res, next) => { + const answers = await getAnswers(`/unanswered/${req.params.slug}`); + res.status(200).render('answers', { + title: answers.question.text.spans.map(span => span.text).join(''), + data: answers, + math: answers.hasMath, + }); +}); + +export const answeredQuestion = catchAsyncErrors(async (req, res, next) => { + const { slug } = req.params; + // added this so that a request by browser to get favicon doesn't end up being interpreted as a slug + if (nonSlugRoutes.includes(slug)) return next(); + + const answers = await getAnswers(slug); + + res.status(200).render('answers', { + title: answers.question.text.spans.map(span => span.text).join(''), + data: answers, + math: answers.hasMath, + }); +}); + +export const unimplemented = (req, res, next) => { + res.status(503).render('error', { + title: 'Not yet implemented', + statusCode: 503, + message: "This route isn't yet implemented. Check back sometime later!", + }); +}; diff --git a/fetchers/fetcher.js b/fetchers/fetcher.js new file mode 100644 index 0000000..0c62e15 --- /dev/null +++ b/fetchers/fetcher.js @@ -0,0 +1,51 @@ +/* eslint-disable no-useless-catch */ +//////////////////////////////////////////////////////// +// IMPORTS +//////////////////////////////////////////////////////// +import * as cheerio from 'cheerio'; +import axiosInstance from '../utils/axiosInstance.js'; +import AppError from '../utils/AppError.js'; + +//////////////////////////////////////////////////////// +// FUNCTION +//////////////////////////////////////////////////////// +/** + * + * @param {string} resourceStr a string after the baseURL + * @returns JSON containing the result + * @description makes a call to quora.com(with the resourceStr appended) and returns parsed JSON containing the data about the resource requested. + * @example await fetcher('What-is-free-and-open-software'); // will return object containing answers + * await fetcher('topic/Space-Physics'); // will return 'space physics' topic object + * await fetcher('profile/Charlie-Cheever'); // will return object containing information about charlie cheever + */ +const fetcher = async resourceStr => { + try { + // as url might contain unescaped chars. so, encodeing it right away + const res = await axiosInstance.get(encodeURIComponent(resourceStr)); + + const $ = cheerio.load(res.data); + let rawData; + $('body') + .children('script') + .each((i, el) => { + if ($(el).html() === 'window.installSettings();') + rawData = $(el) + .next() + .html() + ?.match(/"\{.*\}"/m)?.[0]; + }); + if (!rawData) throw new Error("couldn't retrieve data"); + + const data = JSON.parse(rawData); + + return data; + } catch (err) { + if (err.response.status === 404) throw new AppError('Not found', 404); + else throw err; + } +}; + +//////////////////////////////////////////////////////// +// EXPORTS +//////////////////////////////////////////////////////// +export default fetcher; diff --git a/fetchers/getAnswers.js b/fetchers/getAnswers.js new file mode 100644 index 0000000..e5d7aa5 --- /dev/null +++ b/fetchers/getAnswers.js @@ -0,0 +1,84 @@ +//////////////////////////////////////////////////////// +// IMPORTS +//////////////////////////////////////////////////////// +// import log from '../utils/log.js'; +import fetcher from './fetcher.js'; + +//////////////////////////////////////////////////////// +// FUNCTION +//////////////////////////////////////////////////////// +const getAnswers = async slug => { + // getting data and destructuring it in case it exists + const res = await fetcher(slug); + if (!Object.entries(res).length) throw new Error('no data received!'); + + const { + data: { question: rawData }, + } = JSON.parse(res); + + // array containing all the answers with metadata + const ansArr = rawData.pagedListDataConnection.edges + .filter(ansObj => ansObj.node.answer !== undefined) + .map(ansObj => ({ + text: JSON.parse(ansObj.node.answer.content).sections, + isViewable: !!ansObj.node.answer.viewerHasAccess, + creationTime: ansObj.node.answer.creationTime, + updatedTime: ansObj.node.answer.updatedTime, + numComments: ansObj.node.answer.numDisplayComments, + numUpvotes: ansObj.node.answer.numUpvotes, + numViews: ansObj.node.answer.numViews, + numShares: ansObj.node.answer.numSharers, + numAnswerRequests: ansObj.node.answer.numRequesters, + aid: ansObj.node.answer.aid, + isBusinessAnswer: ansObj.node.answer.businessAnswer, + author: { + uid: ansObj.node.answer.author.uid, + isAnon: ansObj.node.answer.author.isAnon, + avatar: ansObj.node.answer.author.profileImageUrl, + isVerified: ansObj.node.answer.author.isVerified, + profile: ansObj.node.answer.author.profileUrl, + name: `${ansObj.node.answer.author.names[0].givenName} ${ansObj.node.answer.author.names[0].familyName}`, + credential: ansObj.node.answer.authorCredential?.translatedString, + // additionalCredentials: ansObj.node.answer?.credibilityFacts.map(), + }, + OriginalQuestion: { + text: JSON.parse(ansObj.node.answer.question.title).sections[0], + url: ansObj.node.answer.question.url, + qid: ansObj.node.answer.question.qid, + isDeleted: ansObj.node.answer.question.isDeleted, + }, + })); + + // main data object to be returned + const data = { + question: { + text: JSON.parse(rawData.title).sections[0], + url: rawData.url, + qid: rawData.qid, + idDeleted: rawData.isDeleted, + isViewable: rawData.isVisibleToViewer, + askerUid: rawData.asker.uid, + }, + numAnswers: rawData.answerCount, + answers: ansArr, + topics: rawData.topics.map(topicObj => ({ + tid: topicObj.tid, + name: topicObj.name, + url: topicObj.url, + })), + relatedQuestions: rawData.bottomRelatedQuestionsInfo.relatedQuestions.map( + questionObj => ({ + qid: questionObj.qid, + url: questionObj.url, + text: JSON.parse(questionObj.title).sections[0], + }) + ), + }; + + return data; +}; + +//////////////////////////////////////////////////////// +// EXPORTS +//////////////////////////////////////////////////////// +export default getAnswers; diff --git a/package.json b/package.json new file mode 100644 index 0000000..74eb2e5 --- /dev/null +++ b/package.json @@ -0,0 +1,61 @@ +{ + "name": "quetre", + "version": "1.0.0", + "description": "a libre front-end for Quora", + "private": true, + "type": "module", + "main": "index.js", + "scripts": { + "sass:watch": "sass views/sass/main.scss:public/css/styles.css --watch", + "sass:build": "sass views/sass/main.scss:public/css/styles.css --style=compressed", + "server:dev": "NODE_ENV=development nodemon server.js", + "server:prod": "nodemon server.js", + "dev": "(pnpm sass:watch) & (pnpm server:dev)", + "prod": "(pnpm sass:build) & (pnpm server:prod)", + "start": "(npm run sass:build) & (node server.js)" + }, + "repository": { + "type": "git", + "url": "https://github.com/zyachel/quetre.git" + }, + "keywords": [ + "front-end" + ], + "author": "zyachel", + "license": "AGPL-3.0-or-later", + "bugs": { + "url": "https://github.com/zyachel/quetre/issues" + }, + "homepage": "https://github.com/zyachel/quetre#readme", + "dependencies": { + "axios": "^0.26.1", + "cheerio": "^1.0.0-rc.10", + "compression": "^1.7.4", + "dotenv": "^16.0.0", + "express": "^4.17.3", + "helmet": "^5.0.2", + "morgan": "^1.10.0", + "pug": "^3.0.2", + "sass": "^1.50.0" + }, + "devDependencies": { + "@eslint/create-config": "^0.1.2", + "@types/express": "^4.17.13", + "eslint": "^7.32.0", + "eslint-config-airbnb-base": "^15.0.0", + "eslint-config-prettier": "^8.5.0", + "eslint-plugin-import": "^2.26.0", + "nodemon": "^2.0.15", + "prettier": "^2.6.2" + }, + "peerDependencies": { + "eslint-plugin-import": "^2.25.2", + "prettier": "^2.3.0" + }, + "nodemonConfig": { + "ignore": [ + "dev-data/*", + "public/*" + ] + } +} diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml new file mode 100644 index 0000000..a1a0916 --- /dev/null +++ b/pnpm-lock.yaml @@ -0,0 +1,2631 @@ +lockfileVersion: 5.3 + +specifiers: + '@eslint/create-config': ^0.1.2 + '@types/express': ^4.17.13 + axios: ^0.26.1 + cheerio: ^1.0.0-rc.10 + compression: ^1.7.4 + dotenv: ^16.0.0 + eslint: ^7.32.0 + eslint-config-airbnb-base: ^15.0.0 + eslint-config-prettier: ^8.5.0 + eslint-plugin-import: ^2.26.0 + express: ^4.17.3 + helmet: ^5.0.2 + morgan: ^1.10.0 + nodemon: ^2.0.15 + prettier: ^2.6.2 + pug: ^3.0.2 + sass: ^1.50.0 + +dependencies: + axios: 0.26.1 + cheerio: 1.0.0-rc.10 + compression: 1.7.4 + dotenv: 16.0.0 + express: 4.17.3 + helmet: 5.0.2 + morgan: 1.10.0 + pug: 3.0.2 + sass: 1.50.0 + +devDependencies: + '@eslint/create-config': 0.1.2 + '@types/express': 4.17.13 + eslint: 7.32.0 + eslint-config-airbnb-base: 15.0.0_3bd94fa9be989baab6ef2e6b5dec3766 + eslint-config-prettier: 8.5.0_eslint@7.32.0 + eslint-plugin-import: 2.26.0_eslint@7.32.0 + nodemon: 2.0.15 + prettier: 2.6.2 + +packages: + + /@babel/code-frame/7.12.11: + resolution: {integrity: sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==} + dependencies: + '@babel/highlight': 7.17.9 + dev: true + + /@babel/helper-validator-identifier/7.16.7: + resolution: {integrity: sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw==} + engines: {node: '>=6.9.0'} + + /@babel/highlight/7.17.9: + resolution: {integrity: sha512-J9PfEKCbFIv2X5bjTMiZu6Vf341N05QIY+d6FvVKynkG1S7G0j3I0QoRtWIrXhZ+/Nlb5Q0MzqL7TokEJ5BNHg==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-validator-identifier': 7.16.7 + chalk: 2.4.2 + js-tokens: 4.0.0 + dev: true + + /@babel/parser/7.17.9: + resolution: {integrity: sha512-vqUSBLP8dQHFPdPi9bc5GK9vRkYHJ49fsZdtoJ8EQ8ibpwk5rPKfvNIwChB0KVXcIjcepEBBd2VHC5r9Gy8ueg==} + engines: {node: '>=6.0.0'} + hasBin: true + dev: false + + /@babel/types/7.17.0: + resolution: {integrity: sha512-TmKSNO4D5rzhL5bjWFcVHHLETzfQ/AmbKpKPOSjlP0WoHZ6L911fgoOKY4Alp/emzG4cHJdyN49zpgkbXFEHHw==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-validator-identifier': 7.16.7 + to-fast-properties: 2.0.0 + dev: false + + /@eslint/create-config/0.1.2: + resolution: {integrity: sha512-Ajfn2BlrJBYrBjegnEq4ICIoQqzCEq1KkzVPiqtfb+RAUYCuFYQKmgnJdHeDxD5VVgPpxcRBRxPFHssSEMqiiA==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + hasBin: true + dependencies: + '@eslint/eslintrc': 1.2.1 + cross-spawn: 7.0.3 + debug: 4.3.4 + enquirer: 2.3.6 + js-yaml: 4.1.0 + json-stable-stringify-without-jsonify: 1.0.1 + semver: 7.3.7 + transitivePeerDependencies: + - supports-color + dev: true + + /@eslint/eslintrc/0.4.3: + resolution: {integrity: sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw==} + engines: {node: ^10.12.0 || >=12.0.0} + dependencies: + ajv: 6.12.6 + debug: 4.3.4 + espree: 7.3.1 + globals: 13.13.0 + ignore: 4.0.6 + import-fresh: 3.3.0 + js-yaml: 3.14.1 + minimatch: 3.1.2 + strip-json-comments: 3.1.1 + transitivePeerDependencies: + - supports-color + dev: true + + /@eslint/eslintrc/1.2.1: + resolution: {integrity: sha512-bxvbYnBPN1Gibwyp6NrpnFzA3YtRL3BBAyEAFVIpNTm2Rn4Vy87GA5M4aSn3InRrlsbX5N0GW7XIx+U4SAEKdQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + dependencies: + ajv: 6.12.6 + debug: 4.3.4 + espree: 9.3.1 + globals: 13.13.0 + ignore: 5.2.0 + import-fresh: 3.3.0 + js-yaml: 4.1.0 + minimatch: 3.1.2 + strip-json-comments: 3.1.1 + transitivePeerDependencies: + - supports-color + dev: true + + /@humanwhocodes/config-array/0.5.0: + resolution: {integrity: sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg==} + engines: {node: '>=10.10.0'} + dependencies: + '@humanwhocodes/object-schema': 1.2.1 + debug: 4.3.4 + minimatch: 3.1.2 + transitivePeerDependencies: + - supports-color + dev: true + + /@humanwhocodes/object-schema/1.2.1: + resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==} + dev: true + + /@sindresorhus/is/0.14.0: + resolution: {integrity: sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ==} + engines: {node: '>=6'} + dev: true + + /@szmarczak/http-timer/1.1.2: + resolution: {integrity: sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==} + engines: {node: '>=6'} + dependencies: + defer-to-connect: 1.1.3 + dev: true + + /@types/body-parser/1.19.2: + resolution: {integrity: sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==} + dependencies: + '@types/connect': 3.4.35 + '@types/node': 17.0.24 + dev: true + + /@types/connect/3.4.35: + resolution: {integrity: sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==} + dependencies: + '@types/node': 17.0.24 + dev: true + + /@types/express-serve-static-core/4.17.28: + resolution: {integrity: sha512-P1BJAEAW3E2DJUlkgq4tOL3RyMunoWXqbSCygWo5ZIWTjUgN1YnaXWW4VWl/oc8vs/XoYibEGBKP0uZyF4AHig==} + dependencies: + '@types/node': 17.0.24 + '@types/qs': 6.9.7 + '@types/range-parser': 1.2.4 + dev: true + + /@types/express/4.17.13: + resolution: {integrity: sha512-6bSZTPaTIACxn48l50SR+axgrqm6qXFIxrdAKaG6PaJk3+zuUr35hBlgT7vOmJcum+OEaIBLtHV/qloEAFITeA==} + dependencies: + '@types/body-parser': 1.19.2 + '@types/express-serve-static-core': 4.17.28 + '@types/qs': 6.9.7 + '@types/serve-static': 1.13.10 + dev: true + + /@types/json5/0.0.29: + resolution: {integrity: sha1-7ihweulOEdK4J7y+UnC86n8+ce4=} + dev: true + + /@types/mime/1.3.2: + resolution: {integrity: sha512-YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw==} + dev: true + + /@types/node/17.0.24: + resolution: {integrity: sha512-aveCYRQbgTH9Pssp1voEP7HiuWlD2jW2BO56w+bVrJn04i61yh6mRfoKO6hEYQD9vF+W8Chkwc6j1M36uPkx4g==} + dev: true + + /@types/qs/6.9.7: + resolution: {integrity: sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==} + dev: true + + /@types/range-parser/1.2.4: + resolution: {integrity: sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==} + dev: true + + /@types/serve-static/1.13.10: + resolution: {integrity: sha512-nCkHGI4w7ZgAdNkrEu0bv+4xNV/XDqW+DydknebMOQwkpDGx8G+HTlj7R7ABI8i8nKxVw0wtKPi1D+lPOkh4YQ==} + dependencies: + '@types/mime': 1.3.2 + '@types/node': 17.0.24 + dev: true + + /abbrev/1.1.1: + resolution: {integrity: sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==} + dev: true + + /accepts/1.3.8: + resolution: {integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==} + engines: {node: '>= 0.6'} + dependencies: + mime-types: 2.1.35 + negotiator: 0.6.3 + dev: false + + /acorn-jsx/5.3.2_acorn@7.4.1: + resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} + peerDependencies: + acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 + dependencies: + acorn: 7.4.1 + dev: true + + /acorn-jsx/5.3.2_acorn@8.7.0: + resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} + peerDependencies: + acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 + dependencies: + acorn: 8.7.0 + dev: true + + /acorn/7.4.1: + resolution: {integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==} + engines: {node: '>=0.4.0'} + hasBin: true + + /acorn/8.7.0: + resolution: {integrity: sha512-V/LGr1APy+PXIwKebEWrkZPwoeoF+w1jiOBUmuxuiUIaOHtob8Qc9BTrYo7VuI5fR8tqsy+buA2WFooR5olqvQ==} + engines: {node: '>=0.4.0'} + hasBin: true + dev: true + + /ajv/6.12.6: + resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} + dependencies: + fast-deep-equal: 3.1.3 + fast-json-stable-stringify: 2.1.0 + json-schema-traverse: 0.4.1 + uri-js: 4.4.1 + dev: true + + /ajv/8.11.0: + resolution: {integrity: sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==} + dependencies: + fast-deep-equal: 3.1.3 + json-schema-traverse: 1.0.0 + require-from-string: 2.0.2 + uri-js: 4.4.1 + dev: true + + /ansi-align/3.0.1: + resolution: {integrity: sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==} + dependencies: + string-width: 4.2.3 + dev: true + + /ansi-colors/4.1.1: + resolution: {integrity: sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==} + engines: {node: '>=6'} + dev: true + + /ansi-regex/5.0.1: + resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} + engines: {node: '>=8'} + dev: true + + /ansi-styles/3.2.1: + resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} + engines: {node: '>=4'} + dependencies: + color-convert: 1.9.3 + dev: true + + /ansi-styles/4.3.0: + resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} + engines: {node: '>=8'} + dependencies: + color-convert: 2.0.1 + dev: true + + /anymatch/3.1.2: + resolution: {integrity: sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==} + engines: {node: '>= 8'} + dependencies: + normalize-path: 3.0.0 + picomatch: 2.3.1 + + /argparse/1.0.10: + resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==} + dependencies: + sprintf-js: 1.0.3 + dev: true + + /argparse/2.0.1: + resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} + dev: true + + /array-flatten/1.1.1: + resolution: {integrity: sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=} + dev: false + + /array-includes/3.1.4: + resolution: {integrity: sha512-ZTNSQkmWumEbiHO2GF4GmWxYVTiQyJy2XOTa15sdQSrvKn7l+180egQMqlrMOUMCyLMD7pmyQe4mMDUT6Behrw==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + define-properties: 1.1.4 + es-abstract: 1.19.5 + get-intrinsic: 1.1.1 + is-string: 1.0.7 + dev: true + + /array.prototype.flat/1.3.0: + resolution: {integrity: sha512-12IUEkHsAhA4DY5s0FPgNXIdc8VRSqD9Zp78a5au9abH/SOBrsp082JOWFNTjkMozh8mqcdiKuaLGhPeYztxSw==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + define-properties: 1.1.4 + es-abstract: 1.19.5 + es-shim-unscopables: 1.0.0 + dev: true + + /asap/2.0.6: + resolution: {integrity: sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=} + dev: false + + /assert-never/1.2.1: + resolution: {integrity: sha512-TaTivMB6pYI1kXwrFlEhLeGfOqoDNdTxjCdwRfFFkEA30Eu+k48W34nlok2EYWJfFFzqaEmichdNM7th6M5HNw==} + dev: false + + /astral-regex/2.0.0: + resolution: {integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==} + engines: {node: '>=8'} + dev: true + + /axios/0.26.1: + resolution: {integrity: sha512-fPwcX4EvnSHuInCMItEhAGnaSEXRBjtzh9fOtsE6E1G6p7vl7edEeZe11QHf18+6+9gR5PbKV/sGKNaD8YaMeA==} + dependencies: + follow-redirects: 1.14.9 + transitivePeerDependencies: + - debug + dev: false + + /babel-walk/3.0.0-canary-5: + resolution: {integrity: sha512-GAwkz0AihzY5bkwIY5QDR+LvsRQgB/B+1foMPvi0FZPMl5fjD7ICiznUiBdLYMH1QYe6vqu4gWYytZOccLouFw==} + engines: {node: '>= 10.0.0'} + dependencies: + '@babel/types': 7.17.0 + dev: false + + /balanced-match/1.0.2: + resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} + dev: true + + /basic-auth/2.0.1: + resolution: {integrity: sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg==} + engines: {node: '>= 0.8'} + dependencies: + safe-buffer: 5.1.2 + dev: false + + /binary-extensions/2.2.0: + resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==} + engines: {node: '>=8'} + + /body-parser/1.19.2: + resolution: {integrity: sha512-SAAwOxgoCKMGs9uUAUFHygfLAyaniaoun6I8mFY9pRAJL9+Kec34aU+oIjDhTycub1jozEfEwx1W1IuOYxVSFw==} + engines: {node: '>= 0.8'} + dependencies: + bytes: 3.1.2 + content-type: 1.0.4 + debug: 2.6.9 + depd: 1.1.2 + http-errors: 1.8.1 + iconv-lite: 0.4.24 + on-finished: 2.3.0 + qs: 6.9.7 + raw-body: 2.4.3 + type-is: 1.6.18 + dev: false + + /boolbase/1.0.0: + resolution: {integrity: sha1-aN/1++YMUes3cl6p4+0xDcwed24=} + dev: false + + /boxen/5.1.2: + resolution: {integrity: sha512-9gYgQKXx+1nP8mP7CzFyaUARhg7D3n1dF/FnErWmu9l6JvGpNUN278h0aSb+QjoiKSWG+iZ3uHrcqk0qrY9RQQ==} + engines: {node: '>=10'} + dependencies: + ansi-align: 3.0.1 + camelcase: 6.3.0 + chalk: 4.1.2 + cli-boxes: 2.2.1 + string-width: 4.2.3 + type-fest: 0.20.2 + widest-line: 3.1.0 + wrap-ansi: 7.0.0 + dev: true + + /brace-expansion/1.1.11: + resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} + dependencies: + balanced-match: 1.0.2 + concat-map: 0.0.1 + dev: true + + /braces/3.0.2: + resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==} + engines: {node: '>=8'} + dependencies: + fill-range: 7.0.1 + + /bytes/3.0.0: + resolution: {integrity: sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=} + engines: {node: '>= 0.8'} + dev: false + + /bytes/3.1.2: + resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==} + engines: {node: '>= 0.8'} + dev: false + + /cacheable-request/6.1.0: + resolution: {integrity: sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg==} + engines: {node: '>=8'} + dependencies: + clone-response: 1.0.2 + get-stream: 5.2.0 + http-cache-semantics: 4.1.0 + keyv: 3.1.0 + lowercase-keys: 2.0.0 + normalize-url: 4.5.1 + responselike: 1.0.2 + dev: true + + /call-bind/1.0.2: + resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==} + dependencies: + function-bind: 1.1.1 + get-intrinsic: 1.1.1 + + /callsites/3.1.0: + resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} + engines: {node: '>=6'} + dev: true + + /camelcase/6.3.0: + resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==} + engines: {node: '>=10'} + dev: true + + /chalk/2.4.2: + resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} + engines: {node: '>=4'} + dependencies: + ansi-styles: 3.2.1 + escape-string-regexp: 1.0.5 + supports-color: 5.5.0 + dev: true + + /chalk/4.1.2: + resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} + engines: {node: '>=10'} + dependencies: + ansi-styles: 4.3.0 + supports-color: 7.2.0 + dev: true + + /character-parser/2.2.0: + resolution: {integrity: sha1-x84o821LzZdE5f/CxfzeHHMmH8A=} + dependencies: + is-regex: 1.1.4 + dev: false + + /cheerio-select/1.6.0: + resolution: {integrity: sha512-eq0GdBvxVFbqWgmCm7M3XGs1I8oLy/nExUnh6oLqmBditPO9AqQJrkslDpMun/hZ0yyTs8L0m85OHp4ho6Qm9g==} + dependencies: + css-select: 4.3.0 + css-what: 6.1.0 + domelementtype: 2.3.0 + domhandler: 4.3.1 + domutils: 2.8.0 + dev: false + + /cheerio/1.0.0-rc.10: + resolution: {integrity: sha512-g0J0q/O6mW8z5zxQ3A8E8J1hUgp4SMOvEoW/x84OwyHKe/Zccz83PVT4y5Crcr530FV6NgmKI1qvGTKVl9XXVw==} + engines: {node: '>= 6'} + dependencies: + cheerio-select: 1.6.0 + dom-serializer: 1.4.1 + domhandler: 4.3.1 + htmlparser2: 6.1.0 + parse5: 6.0.1 + parse5-htmlparser2-tree-adapter: 6.0.1 + tslib: 2.3.1 + dev: false + + /chokidar/3.5.3: + resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==} + engines: {node: '>= 8.10.0'} + dependencies: + anymatch: 3.1.2 + braces: 3.0.2 + glob-parent: 5.1.2 + is-binary-path: 2.1.0 + is-glob: 4.0.3 + normalize-path: 3.0.0 + readdirp: 3.6.0 + optionalDependencies: + fsevents: 2.3.2 + + /ci-info/2.0.0: + resolution: {integrity: sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==} + dev: true + + /cli-boxes/2.2.1: + resolution: {integrity: sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw==} + engines: {node: '>=6'} + dev: true + + /clone-response/1.0.2: + resolution: {integrity: sha1-0dyXOSAxTfZ/vrlCI7TuNQI56Ws=} + dependencies: + mimic-response: 1.0.1 + dev: true + + /color-convert/1.9.3: + resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} + dependencies: + color-name: 1.1.3 + dev: true + + /color-convert/2.0.1: + resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} + engines: {node: '>=7.0.0'} + dependencies: + color-name: 1.1.4 + dev: true + + /color-name/1.1.3: + resolution: {integrity: sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=} + dev: true + + /color-name/1.1.4: + resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} + dev: true + + /compressible/2.0.18: + resolution: {integrity: sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==} + engines: {node: '>= 0.6'} + dependencies: + mime-db: 1.52.0 + dev: false + + /compression/1.7.4: + resolution: {integrity: sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==} + engines: {node: '>= 0.8.0'} + dependencies: + accepts: 1.3.8 + bytes: 3.0.0 + compressible: 2.0.18 + debug: 2.6.9 + on-headers: 1.0.2 + safe-buffer: 5.1.2 + vary: 1.1.2 + dev: false + + /concat-map/0.0.1: + resolution: {integrity: sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=} + dev: true + + /configstore/5.0.1: + resolution: {integrity: sha512-aMKprgk5YhBNyH25hj8wGt2+D52Sw1DRRIzqBwLp2Ya9mFmY8KPvvtvmna8SxVR9JMZ4kzMD68N22vlaRpkeFA==} + engines: {node: '>=8'} + dependencies: + dot-prop: 5.3.0 + graceful-fs: 4.2.10 + make-dir: 3.1.0 + unique-string: 2.0.0 + write-file-atomic: 3.0.3 + xdg-basedir: 4.0.0 + dev: true + + /confusing-browser-globals/1.0.11: + resolution: {integrity: sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==} + dev: true + + /constantinople/4.0.1: + resolution: {integrity: sha512-vCrqcSIq4//Gx74TXXCGnHpulY1dskqLTFGDmhrGxzeXL8lF8kvXv6mpNWlJj1uD4DW23D4ljAqbY4RRaaUZIw==} + dependencies: + '@babel/parser': 7.17.9 + '@babel/types': 7.17.0 + dev: false + + /content-disposition/0.5.4: + resolution: {integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==} + engines: {node: '>= 0.6'} + dependencies: + safe-buffer: 5.2.1 + dev: false + + /content-type/1.0.4: + resolution: {integrity: sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==} + engines: {node: '>= 0.6'} + dev: false + + /cookie-signature/1.0.6: + resolution: {integrity: sha1-4wOogrNCzD7oylE6eZmXNNqzriw=} + dev: false + + /cookie/0.4.2: + resolution: {integrity: sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==} + engines: {node: '>= 0.6'} + dev: false + + /cross-spawn/7.0.3: + resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} + engines: {node: '>= 8'} + dependencies: + path-key: 3.1.1 + shebang-command: 2.0.0 + which: 2.0.2 + dev: true + + /crypto-random-string/2.0.0: + resolution: {integrity: sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==} + engines: {node: '>=8'} + dev: true + + /css-select/4.3.0: + resolution: {integrity: sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==} + dependencies: + boolbase: 1.0.0 + css-what: 6.1.0 + domhandler: 4.3.1 + domutils: 2.8.0 + nth-check: 2.0.1 + dev: false + + /css-what/6.1.0: + resolution: {integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==} + engines: {node: '>= 6'} + dev: false + + /debug/2.6.9: + resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==} + dependencies: + ms: 2.0.0 + + /debug/3.2.7: + resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} + dependencies: + ms: 2.1.3 + dev: true + + /debug/4.3.4: + resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} + engines: {node: '>=6.0'} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + dependencies: + ms: 2.1.2 + dev: true + + /decompress-response/3.3.0: + resolution: {integrity: sha1-gKTdMjdIOEv6JICDYirt7Jgq3/M=} + engines: {node: '>=4'} + dependencies: + mimic-response: 1.0.1 + dev: true + + /deep-extend/0.6.0: + resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==} + engines: {node: '>=4.0.0'} + dev: true + + /deep-is/0.1.4: + resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} + dev: true + + /defer-to-connect/1.1.3: + resolution: {integrity: sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ==} + dev: true + + /define-properties/1.1.4: + resolution: {integrity: sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA==} + engines: {node: '>= 0.4'} + dependencies: + has-property-descriptors: 1.0.0 + object-keys: 1.1.1 + dev: true + + /depd/1.1.2: + resolution: {integrity: sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=} + engines: {node: '>= 0.6'} + dev: false + + /depd/2.0.0: + resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==} + engines: {node: '>= 0.8'} + dev: false + + /destroy/1.0.4: + resolution: {integrity: sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=} + dev: false + + /doctrine/2.1.0: + resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==} + engines: {node: '>=0.10.0'} + dependencies: + esutils: 2.0.3 + dev: true + + /doctrine/3.0.0: + resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==} + engines: {node: '>=6.0.0'} + dependencies: + esutils: 2.0.3 + dev: true + + /doctypes/1.1.0: + resolution: {integrity: sha1-6oCxBqh1OHdOijpKWv4pPeSJ4Kk=} + dev: false + + /dom-serializer/1.4.1: + resolution: {integrity: sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==} + dependencies: + domelementtype: 2.3.0 + domhandler: 4.3.1 + entities: 2.2.0 + dev: false + + /domelementtype/2.3.0: + resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==} + dev: false + + /domhandler/4.3.1: + resolution: {integrity: sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==} + engines: {node: '>= 4'} + dependencies: + domelementtype: 2.3.0 + dev: false + + /domutils/2.8.0: + resolution: {integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==} + dependencies: + dom-serializer: 1.4.1 + domelementtype: 2.3.0 + domhandler: 4.3.1 + dev: false + + /dot-prop/5.3.0: + resolution: {integrity: sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==} + engines: {node: '>=8'} + dependencies: + is-obj: 2.0.0 + dev: true + + /dotenv/16.0.0: + resolution: {integrity: sha512-qD9WU0MPM4SWLPJy/r2Be+2WgQj8plChsyrCNQzW/0WjvcJQiKQJ9mH3ZgB3fxbUUxgc/11ZJ0Fi5KiimWGz2Q==} + engines: {node: '>=12'} + dev: false + + /duplexer3/0.1.4: + resolution: {integrity: sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI=} + dev: true + + /ee-first/1.1.1: + resolution: {integrity: sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=} + dev: false + + /emoji-regex/8.0.0: + resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} + dev: true + + /encodeurl/1.0.2: + resolution: {integrity: sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=} + engines: {node: '>= 0.8'} + dev: false + + /end-of-stream/1.4.4: + resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==} + dependencies: + once: 1.4.0 + dev: true + + /enquirer/2.3.6: + resolution: {integrity: sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==} + engines: {node: '>=8.6'} + dependencies: + ansi-colors: 4.1.1 + dev: true + + /entities/2.2.0: + resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==} + dev: false + + /es-abstract/1.19.5: + resolution: {integrity: sha512-Aa2G2+Rd3b6kxEUKTF4TaW67czBLyAv3z7VOhYRU50YBx+bbsYZ9xQP4lMNazePuFlybXI0V4MruPos7qUo5fA==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + es-to-primitive: 1.2.1 + function-bind: 1.1.1 + get-intrinsic: 1.1.1 + get-symbol-description: 1.0.0 + has: 1.0.3 + has-symbols: 1.0.3 + internal-slot: 1.0.3 + is-callable: 1.2.4 + is-negative-zero: 2.0.2 + is-regex: 1.1.4 + is-shared-array-buffer: 1.0.2 + is-string: 1.0.7 + is-weakref: 1.0.2 + object-inspect: 1.12.0 + object-keys: 1.1.1 + object.assign: 4.1.2 + string.prototype.trimend: 1.0.4 + string.prototype.trimstart: 1.0.4 + unbox-primitive: 1.0.1 + dev: true + + /es-shim-unscopables/1.0.0: + resolution: {integrity: sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==} + dependencies: + has: 1.0.3 + dev: true + + /es-to-primitive/1.2.1: + resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==} + engines: {node: '>= 0.4'} + dependencies: + is-callable: 1.2.4 + is-date-object: 1.0.5 + is-symbol: 1.0.4 + dev: true + + /escape-goat/2.1.1: + resolution: {integrity: sha512-8/uIhbG12Csjy2JEW7D9pHbreaVaS/OpN3ycnyvElTdwM5n6GY6W6e2IPemfvGZeUMqZ9A/3GqIZMgKnBhAw/Q==} + engines: {node: '>=8'} + dev: true + + /escape-html/1.0.3: + resolution: {integrity: sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=} + dev: false + + /escape-string-regexp/1.0.5: + resolution: {integrity: sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=} + engines: {node: '>=0.8.0'} + dev: true + + /escape-string-regexp/4.0.0: + resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} + engines: {node: '>=10'} + dev: true + + /eslint-config-airbnb-base/15.0.0_3bd94fa9be989baab6ef2e6b5dec3766: + resolution: {integrity: sha512-xaX3z4ZZIcFLvh2oUNvcX5oEofXda7giYmuplVxoOg5A7EXJMrUyqRgR+mhDhPK8LZ4PttFOBvCYDbX3sUoUig==} + engines: {node: ^10.12.0 || >=12.0.0} + peerDependencies: + eslint: ^7.32.0 || ^8.2.0 + eslint-plugin-import: ^2.25.2 + dependencies: + confusing-browser-globals: 1.0.11 + eslint: 7.32.0 + eslint-plugin-import: 2.26.0_eslint@7.32.0 + object.assign: 4.1.2 + object.entries: 1.1.5 + semver: 6.3.0 + dev: true + + /eslint-config-prettier/8.5.0_eslint@7.32.0: + resolution: {integrity: sha512-obmWKLUNCnhtQRKc+tmnYuQl0pFU1ibYJQ5BGhTVB08bHe9wC8qUeG7c08dj9XX+AuPj1YSGSQIHl1pnDHZR0Q==} + hasBin: true + peerDependencies: + eslint: '>=7.0.0' + dependencies: + eslint: 7.32.0 + dev: true + + /eslint-import-resolver-node/0.3.6: + resolution: {integrity: sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw==} + dependencies: + debug: 3.2.7 + resolve: 1.22.0 + dev: true + + /eslint-module-utils/2.7.3: + resolution: {integrity: sha512-088JEC7O3lDZM9xGe0RerkOMd0EjFl+Yvd1jPWIkMT5u3H9+HC34mWWPnqPrN13gieT9pBOO+Qt07Nb/6TresQ==} + engines: {node: '>=4'} + dependencies: + debug: 3.2.7 + find-up: 2.1.0 + dev: true + + /eslint-plugin-import/2.26.0_eslint@7.32.0: + resolution: {integrity: sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==} + engines: {node: '>=4'} + peerDependencies: + eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 + dependencies: + array-includes: 3.1.4 + array.prototype.flat: 1.3.0 + debug: 2.6.9 + doctrine: 2.1.0 + eslint: 7.32.0 + eslint-import-resolver-node: 0.3.6 + eslint-module-utils: 2.7.3 + has: 1.0.3 + is-core-module: 2.8.1 + is-glob: 4.0.3 + minimatch: 3.1.2 + object.values: 1.1.5 + resolve: 1.22.0 + tsconfig-paths: 3.14.1 + dev: true + + /eslint-scope/5.1.1: + resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==} + engines: {node: '>=8.0.0'} + dependencies: + esrecurse: 4.3.0 + estraverse: 4.3.0 + dev: true + + /eslint-utils/2.1.0: + resolution: {integrity: sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==} + engines: {node: '>=6'} + dependencies: + eslint-visitor-keys: 1.3.0 + dev: true + + /eslint-visitor-keys/1.3.0: + resolution: {integrity: sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==} + engines: {node: '>=4'} + dev: true + + /eslint-visitor-keys/2.1.0: + resolution: {integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==} + engines: {node: '>=10'} + dev: true + + /eslint-visitor-keys/3.3.0: + resolution: {integrity: sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + dev: true + + /eslint/7.32.0: + resolution: {integrity: sha512-VHZ8gX+EDfz+97jGcgyGCyRia/dPOd6Xh9yPv8Bl1+SoaIwD+a/vlrOmGRUyOYu7MwUhc7CxqeaDZU13S4+EpA==} + engines: {node: ^10.12.0 || >=12.0.0} + hasBin: true + dependencies: + '@babel/code-frame': 7.12.11 + '@eslint/eslintrc': 0.4.3 + '@humanwhocodes/config-array': 0.5.0 + ajv: 6.12.6 + chalk: 4.1.2 + cross-spawn: 7.0.3 + debug: 4.3.4 + doctrine: 3.0.0 + enquirer: 2.3.6 + escape-string-regexp: 4.0.0 + eslint-scope: 5.1.1 + eslint-utils: 2.1.0 + eslint-visitor-keys: 2.1.0 + espree: 7.3.1 + esquery: 1.4.0 + esutils: 2.0.3 + fast-deep-equal: 3.1.3 + file-entry-cache: 6.0.1 + functional-red-black-tree: 1.0.1 + glob-parent: 5.1.2 + globals: 13.13.0 + ignore: 4.0.6 + import-fresh: 3.3.0 + imurmurhash: 0.1.4 + is-glob: 4.0.3 + js-yaml: 3.14.1 + json-stable-stringify-without-jsonify: 1.0.1 + levn: 0.4.1 + lodash.merge: 4.6.2 + minimatch: 3.1.2 + natural-compare: 1.4.0 + optionator: 0.9.1 + progress: 2.0.3 + regexpp: 3.2.0 + semver: 7.3.7 + strip-ansi: 6.0.1 + strip-json-comments: 3.1.1 + table: 6.8.0 + text-table: 0.2.0 + v8-compile-cache: 2.3.0 + transitivePeerDependencies: + - supports-color + dev: true + + /espree/7.3.1: + resolution: {integrity: sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==} + engines: {node: ^10.12.0 || >=12.0.0} + dependencies: + acorn: 7.4.1 + acorn-jsx: 5.3.2_acorn@7.4.1 + eslint-visitor-keys: 1.3.0 + dev: true + + /espree/9.3.1: + resolution: {integrity: sha512-bvdyLmJMfwkV3NCRl5ZhJf22zBFo1y8bYh3VYb+bfzqNB4Je68P2sSuXyuFquzWLebHpNd2/d5uv7yoP9ISnGQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + dependencies: + acorn: 8.7.0 + acorn-jsx: 5.3.2_acorn@8.7.0 + eslint-visitor-keys: 3.3.0 + dev: true + + /esprima/4.0.1: + resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} + engines: {node: '>=4'} + hasBin: true + dev: true + + /esquery/1.4.0: + resolution: {integrity: sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==} + engines: {node: '>=0.10'} + dependencies: + estraverse: 5.3.0 + dev: true + + /esrecurse/4.3.0: + resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} + engines: {node: '>=4.0'} + dependencies: + estraverse: 5.3.0 + dev: true + + /estraverse/4.3.0: + resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==} + engines: {node: '>=4.0'} + dev: true + + /estraverse/5.3.0: + resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} + engines: {node: '>=4.0'} + dev: true + + /esutils/2.0.3: + resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} + engines: {node: '>=0.10.0'} + dev: true + + /etag/1.8.1: + resolution: {integrity: sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=} + engines: {node: '>= 0.6'} + dev: false + + /express/4.17.3: + resolution: {integrity: sha512-yuSQpz5I+Ch7gFrPCk4/c+dIBKlQUxtgwqzph132bsT6qhuzss6I8cLJQz7B3rFblzd6wtcI0ZbGltH/C4LjUg==} + engines: {node: '>= 0.10.0'} + dependencies: + accepts: 1.3.8 + array-flatten: 1.1.1 + body-parser: 1.19.2 + content-disposition: 0.5.4 + content-type: 1.0.4 + cookie: 0.4.2 + cookie-signature: 1.0.6 + debug: 2.6.9 + depd: 1.1.2 + encodeurl: 1.0.2 + escape-html: 1.0.3 + etag: 1.8.1 + finalhandler: 1.1.2 + fresh: 0.5.2 + merge-descriptors: 1.0.1 + methods: 1.1.2 + on-finished: 2.3.0 + parseurl: 1.3.3 + path-to-regexp: 0.1.7 + proxy-addr: 2.0.7 + qs: 6.9.7 + range-parser: 1.2.1 + safe-buffer: 5.2.1 + send: 0.17.2 + serve-static: 1.14.2 + setprototypeof: 1.2.0 + statuses: 1.5.0 + type-is: 1.6.18 + utils-merge: 1.0.1 + vary: 1.1.2 + dev: false + + /fast-deep-equal/3.1.3: + resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} + dev: true + + /fast-json-stable-stringify/2.1.0: + resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} + dev: true + + /fast-levenshtein/2.0.6: + resolution: {integrity: sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=} + dev: true + + /file-entry-cache/6.0.1: + resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==} + engines: {node: ^10.12.0 || >=12.0.0} + dependencies: + flat-cache: 3.0.4 + dev: true + + /fill-range/7.0.1: + resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==} + engines: {node: '>=8'} + dependencies: + to-regex-range: 5.0.1 + + /finalhandler/1.1.2: + resolution: {integrity: sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==} + engines: {node: '>= 0.8'} + dependencies: + debug: 2.6.9 + encodeurl: 1.0.2 + escape-html: 1.0.3 + on-finished: 2.3.0 + parseurl: 1.3.3 + statuses: 1.5.0 + unpipe: 1.0.0 + dev: false + + /find-up/2.1.0: + resolution: {integrity: sha1-RdG35QbHF93UgndaK3eSCjwMV6c=} + engines: {node: '>=4'} + dependencies: + locate-path: 2.0.0 + dev: true + + /flat-cache/3.0.4: + resolution: {integrity: sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==} + engines: {node: ^10.12.0 || >=12.0.0} + dependencies: + flatted: 3.2.5 + rimraf: 3.0.2 + dev: true + + /flatted/3.2.5: + resolution: {integrity: sha512-WIWGi2L3DyTUvUrwRKgGi9TwxQMUEqPOPQBVi71R96jZXJdFskXEmf54BoZaS1kknGODoIGASGEzBUYdyMCBJg==} + dev: true + + /follow-redirects/1.14.9: + resolution: {integrity: sha512-MQDfihBQYMcyy5dhRDJUHcw7lb2Pv/TuE6xP1vyraLukNDHKbDxDNaOE3NbCAdKQApno+GPRyo1YAp89yCjK4w==} + engines: {node: '>=4.0'} + peerDependencies: + debug: '*' + peerDependenciesMeta: + debug: + optional: true + dev: false + + /forwarded/0.2.0: + resolution: {integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==} + engines: {node: '>= 0.6'} + dev: false + + /fresh/0.5.2: + resolution: {integrity: sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=} + engines: {node: '>= 0.6'} + dev: false + + /fs.realpath/1.0.0: + resolution: {integrity: sha1-FQStJSMVjKpA20onh8sBQRmU6k8=} + dev: true + + /fsevents/2.3.2: + resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==} + engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} + os: [darwin] + requiresBuild: true + optional: true + + /function-bind/1.1.1: + resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==} + + /functional-red-black-tree/1.0.1: + resolution: {integrity: sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=} + dev: true + + /get-intrinsic/1.1.1: + resolution: {integrity: sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==} + dependencies: + function-bind: 1.1.1 + has: 1.0.3 + has-symbols: 1.0.3 + + /get-stream/4.1.0: + resolution: {integrity: sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==} + engines: {node: '>=6'} + dependencies: + pump: 3.0.0 + dev: true + + /get-stream/5.2.0: + resolution: {integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==} + engines: {node: '>=8'} + dependencies: + pump: 3.0.0 + dev: true + + /get-symbol-description/1.0.0: + resolution: {integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + get-intrinsic: 1.1.1 + dev: true + + /glob-parent/5.1.2: + resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} + engines: {node: '>= 6'} + dependencies: + is-glob: 4.0.3 + + /glob/7.2.0: + resolution: {integrity: sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==} + dependencies: + fs.realpath: 1.0.0 + inflight: 1.0.6 + inherits: 2.0.4 + minimatch: 3.1.2 + once: 1.4.0 + path-is-absolute: 1.0.1 + dev: true + + /global-dirs/3.0.0: + resolution: {integrity: sha512-v8ho2DS5RiCjftj1nD9NmnfaOzTdud7RRnVd9kFNOjqZbISlx5DQ+OrTkywgd0dIt7oFCvKetZSHoHcP3sDdiA==} + engines: {node: '>=10'} + dependencies: + ini: 2.0.0 + dev: true + + /globals/13.13.0: + resolution: {integrity: sha512-EQ7Q18AJlPwp3vUDL4mKA0KXrXyNIQyWon6T6XQiBQF0XHvRsiCSrWmmeATpUzdJN2HhWZU6Pdl0a9zdep5p6A==} + engines: {node: '>=8'} + dependencies: + type-fest: 0.20.2 + dev: true + + /got/9.6.0: + resolution: {integrity: sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q==} + engines: {node: '>=8.6'} + dependencies: + '@sindresorhus/is': 0.14.0 + '@szmarczak/http-timer': 1.1.2 + cacheable-request: 6.1.0 + decompress-response: 3.3.0 + duplexer3: 0.1.4 + get-stream: 4.1.0 + lowercase-keys: 1.0.1 + mimic-response: 1.0.1 + p-cancelable: 1.1.0 + to-readable-stream: 1.0.0 + url-parse-lax: 3.0.0 + dev: true + + /graceful-fs/4.2.10: + resolution: {integrity: sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==} + dev: true + + /has-bigints/1.0.1: + resolution: {integrity: sha512-LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA==} + dev: true + + /has-flag/3.0.0: + resolution: {integrity: sha1-tdRU3CGZriJWmfNGfloH87lVuv0=} + engines: {node: '>=4'} + dev: true + + /has-flag/4.0.0: + resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} + engines: {node: '>=8'} + dev: true + + /has-property-descriptors/1.0.0: + resolution: {integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==} + dependencies: + get-intrinsic: 1.1.1 + dev: true + + /has-symbols/1.0.3: + resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==} + engines: {node: '>= 0.4'} + + /has-tostringtag/1.0.0: + resolution: {integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==} + engines: {node: '>= 0.4'} + dependencies: + has-symbols: 1.0.3 + + /has-yarn/2.1.0: + resolution: {integrity: sha512-UqBRqi4ju7T+TqGNdqAO0PaSVGsDGJUBQvk9eUWNGRY1CFGDzYhLWoM7JQEemnlvVcv/YEmc2wNW8BC24EnUsw==} + engines: {node: '>=8'} + dev: true + + /has/1.0.3: + resolution: {integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==} + engines: {node: '>= 0.4.0'} + dependencies: + function-bind: 1.1.1 + + /helmet/5.0.2: + resolution: {integrity: sha512-QWlwUZZ8BtlvwYVTSDTBChGf8EOcQ2LkGMnQJxSzD1mUu8CCjXJZq/BXP8eWw4kikRnzlhtYo3lCk0ucmYA3Vg==} + engines: {node: '>=12.0.0'} + dev: false + + /htmlparser2/6.1.0: + resolution: {integrity: sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==} + dependencies: + domelementtype: 2.3.0 + domhandler: 4.3.1 + domutils: 2.8.0 + entities: 2.2.0 + dev: false + + /http-cache-semantics/4.1.0: + resolution: {integrity: sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ==} + dev: true + + /http-errors/1.8.1: + resolution: {integrity: sha512-Kpk9Sm7NmI+RHhnj6OIWDI1d6fIoFAtFt9RLaTMRlg/8w49juAStsrBgp0Dp4OdxdVbRIeKhtCUvoi/RuAhO4g==} + engines: {node: '>= 0.6'} + dependencies: + depd: 1.1.2 + inherits: 2.0.4 + setprototypeof: 1.2.0 + statuses: 1.5.0 + toidentifier: 1.0.1 + dev: false + + /iconv-lite/0.4.24: + resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==} + engines: {node: '>=0.10.0'} + dependencies: + safer-buffer: 2.1.2 + dev: false + + /ignore-by-default/1.0.1: + resolution: {integrity: sha1-SMptcvbGo68Aqa1K5odr44ieKwk=} + dev: true + + /ignore/4.0.6: + resolution: {integrity: sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==} + engines: {node: '>= 4'} + dev: true + + /ignore/5.2.0: + resolution: {integrity: sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==} + engines: {node: '>= 4'} + dev: true + + /immutable/4.0.0: + resolution: {integrity: sha512-zIE9hX70qew5qTUjSS7wi1iwj/l7+m54KWU247nhM3v806UdGj1yDndXj+IOYxxtW9zyLI+xqFNZjTuDaLUqFw==} + dev: false + + /import-fresh/3.3.0: + resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} + engines: {node: '>=6'} + dependencies: + parent-module: 1.0.1 + resolve-from: 4.0.0 + dev: true + + /import-lazy/2.1.0: + resolution: {integrity: sha1-BWmOPUXIjo1+nZLLBYTnfwlvPkM=} + engines: {node: '>=4'} + dev: true + + /imurmurhash/0.1.4: + resolution: {integrity: sha1-khi5srkoojixPcT7a21XbyMUU+o=} + engines: {node: '>=0.8.19'} + dev: true + + /inflight/1.0.6: + resolution: {integrity: sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=} + dependencies: + once: 1.4.0 + wrappy: 1.0.2 + dev: true + + /inherits/2.0.4: + resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} + + /ini/1.3.8: + resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==} + dev: true + + /ini/2.0.0: + resolution: {integrity: sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==} + engines: {node: '>=10'} + dev: true + + /internal-slot/1.0.3: + resolution: {integrity: sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==} + engines: {node: '>= 0.4'} + dependencies: + get-intrinsic: 1.1.1 + has: 1.0.3 + side-channel: 1.0.4 + dev: true + + /ipaddr.js/1.9.1: + resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==} + engines: {node: '>= 0.10'} + dev: false + + /is-bigint/1.0.4: + resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==} + dependencies: + has-bigints: 1.0.1 + dev: true + + /is-binary-path/2.1.0: + resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} + engines: {node: '>=8'} + dependencies: + binary-extensions: 2.2.0 + + /is-boolean-object/1.1.2: + resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + has-tostringtag: 1.0.0 + dev: true + + /is-callable/1.2.4: + resolution: {integrity: sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w==} + engines: {node: '>= 0.4'} + dev: true + + /is-ci/2.0.0: + resolution: {integrity: sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==} + hasBin: true + dependencies: + ci-info: 2.0.0 + dev: true + + /is-core-module/2.8.1: + resolution: {integrity: sha512-SdNCUs284hr40hFTFP6l0IfZ/RSrMXF3qgoRHd3/79unUTvrFO/JoXwkGm+5J/Oe3E/b5GsnG330uUNgRpu1PA==} + dependencies: + has: 1.0.3 + + /is-date-object/1.0.5: + resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==} + engines: {node: '>= 0.4'} + dependencies: + has-tostringtag: 1.0.0 + dev: true + + /is-expression/4.0.0: + resolution: {integrity: sha512-zMIXX63sxzG3XrkHkrAPvm/OVZVSCPNkwMHU8oTX7/U3AL78I0QXCEICXUM13BIa8TYGZ68PiTKfQz3yaTNr4A==} + dependencies: + acorn: 7.4.1 + object-assign: 4.1.1 + dev: false + + /is-extglob/2.1.1: + resolution: {integrity: sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=} + engines: {node: '>=0.10.0'} + + /is-fullwidth-code-point/3.0.0: + resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} + engines: {node: '>=8'} + dev: true + + /is-glob/4.0.3: + resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} + engines: {node: '>=0.10.0'} + dependencies: + is-extglob: 2.1.1 + + /is-installed-globally/0.4.0: + resolution: {integrity: sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==} + engines: {node: '>=10'} + dependencies: + global-dirs: 3.0.0 + is-path-inside: 3.0.3 + dev: true + + /is-negative-zero/2.0.2: + resolution: {integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==} + engines: {node: '>= 0.4'} + dev: true + + /is-npm/5.0.0: + resolution: {integrity: sha512-WW/rQLOazUq+ST/bCAVBp/2oMERWLsR7OrKyt052dNDk4DHcDE0/7QSXITlmi+VBcV13DfIbysG3tZJm5RfdBA==} + engines: {node: '>=10'} + dev: true + + /is-number-object/1.0.7: + resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==} + engines: {node: '>= 0.4'} + dependencies: + has-tostringtag: 1.0.0 + dev: true + + /is-number/7.0.0: + resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} + engines: {node: '>=0.12.0'} + + /is-obj/2.0.0: + resolution: {integrity: sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==} + engines: {node: '>=8'} + dev: true + + /is-path-inside/3.0.3: + resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==} + engines: {node: '>=8'} + dev: true + + /is-promise/2.2.2: + resolution: {integrity: sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==} + dev: false + + /is-regex/1.1.4: + resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + has-tostringtag: 1.0.0 + + /is-shared-array-buffer/1.0.2: + resolution: {integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==} + dependencies: + call-bind: 1.0.2 + dev: true + + /is-string/1.0.7: + resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==} + engines: {node: '>= 0.4'} + dependencies: + has-tostringtag: 1.0.0 + dev: true + + /is-symbol/1.0.4: + resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==} + engines: {node: '>= 0.4'} + dependencies: + has-symbols: 1.0.3 + dev: true + + /is-typedarray/1.0.0: + resolution: {integrity: sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=} + dev: true + + /is-weakref/1.0.2: + resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==} + dependencies: + call-bind: 1.0.2 + dev: true + + /is-yarn-global/0.3.0: + resolution: {integrity: sha512-VjSeb/lHmkoyd8ryPVIKvOCn4D1koMqY+vqyjjUfc3xyKtP4dYOxM44sZrnqQSzSds3xyOrUTLTC9LVCVgLngw==} + dev: true + + /isexe/2.0.0: + resolution: {integrity: sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=} + dev: true + + /js-stringify/1.0.2: + resolution: {integrity: sha1-Fzb939lyTyijaCrcYjCufk6Weds=} + dev: false + + /js-tokens/4.0.0: + resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} + dev: true + + /js-yaml/3.14.1: + resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==} + hasBin: true + dependencies: + argparse: 1.0.10 + esprima: 4.0.1 + dev: true + + /js-yaml/4.1.0: + resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} + hasBin: true + dependencies: + argparse: 2.0.1 + dev: true + + /json-buffer/3.0.0: + resolution: {integrity: sha1-Wx85evx11ne96Lz8Dkfh+aPZqJg=} + dev: true + + /json-schema-traverse/0.4.1: + resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} + dev: true + + /json-schema-traverse/1.0.0: + resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==} + dev: true + + /json-stable-stringify-without-jsonify/1.0.1: + resolution: {integrity: sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=} + dev: true + + /json5/1.0.1: + resolution: {integrity: sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==} + hasBin: true + dependencies: + minimist: 1.2.6 + dev: true + + /jstransformer/1.0.0: + resolution: {integrity: sha1-7Yvwkh4vPx7U1cGkT2hwntJHIsM=} + dependencies: + is-promise: 2.2.2 + promise: 7.3.1 + dev: false + + /keyv/3.1.0: + resolution: {integrity: sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA==} + dependencies: + json-buffer: 3.0.0 + dev: true + + /latest-version/5.1.0: + resolution: {integrity: sha512-weT+r0kTkRQdCdYCNtkMwWXQTMEswKrFBkm4ckQOMVhhqhIMI1UT2hMj+1iigIhgSZm5gTmrRXBNoGUgaTY1xA==} + engines: {node: '>=8'} + dependencies: + package-json: 6.5.0 + dev: true + + /levn/0.4.1: + resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} + engines: {node: '>= 0.8.0'} + dependencies: + prelude-ls: 1.2.1 + type-check: 0.4.0 + dev: true + + /locate-path/2.0.0: + resolution: {integrity: sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=} + engines: {node: '>=4'} + dependencies: + p-locate: 2.0.0 + path-exists: 3.0.0 + dev: true + + /lodash.merge/4.6.2: + resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} + dev: true + + /lodash.truncate/4.4.2: + resolution: {integrity: sha1-WjUNoLERO4N+z//VgSy+WNbq4ZM=} + dev: true + + /lowercase-keys/1.0.1: + resolution: {integrity: sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==} + engines: {node: '>=0.10.0'} + dev: true + + /lowercase-keys/2.0.0: + resolution: {integrity: sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==} + engines: {node: '>=8'} + dev: true + + /lru-cache/6.0.0: + resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} + engines: {node: '>=10'} + dependencies: + yallist: 4.0.0 + dev: true + + /make-dir/3.1.0: + resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==} + engines: {node: '>=8'} + dependencies: + semver: 6.3.0 + dev: true + + /media-typer/0.3.0: + resolution: {integrity: sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=} + engines: {node: '>= 0.6'} + dev: false + + /merge-descriptors/1.0.1: + resolution: {integrity: sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=} + dev: false + + /methods/1.1.2: + resolution: {integrity: sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=} + engines: {node: '>= 0.6'} + dev: false + + /mime-db/1.52.0: + resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==} + engines: {node: '>= 0.6'} + dev: false + + /mime-types/2.1.35: + resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==} + engines: {node: '>= 0.6'} + dependencies: + mime-db: 1.52.0 + dev: false + + /mime/1.6.0: + resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==} + engines: {node: '>=4'} + hasBin: true + dev: false + + /mimic-response/1.0.1: + resolution: {integrity: sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==} + engines: {node: '>=4'} + dev: true + + /minimatch/3.1.2: + resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} + dependencies: + brace-expansion: 1.1.11 + dev: true + + /minimist/1.2.6: + resolution: {integrity: sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==} + dev: true + + /morgan/1.10.0: + resolution: {integrity: sha512-AbegBVI4sh6El+1gNwvD5YIck7nSA36weD7xvIxG4in80j/UoK8AEGaWnnz8v1GxonMCltmlNs5ZKbGvl9b1XQ==} + engines: {node: '>= 0.8.0'} + dependencies: + basic-auth: 2.0.1 + debug: 2.6.9 + depd: 2.0.0 + on-finished: 2.3.0 + on-headers: 1.0.2 + dev: false + + /ms/2.0.0: + resolution: {integrity: sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=} + + /ms/2.1.2: + resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} + dev: true + + /ms/2.1.3: + resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} + + /natural-compare/1.4.0: + resolution: {integrity: sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=} + dev: true + + /negotiator/0.6.3: + resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==} + engines: {node: '>= 0.6'} + dev: false + + /nodemon/2.0.15: + resolution: {integrity: sha512-gdHMNx47Gw7b3kWxJV64NI+Q5nfl0y5DgDbiVtShiwa7Z0IZ07Ll4RLFo6AjrhzMtoEZn5PDE3/c2AbVsiCkpA==} + engines: {node: '>=8.10.0'} + hasBin: true + requiresBuild: true + dependencies: + chokidar: 3.5.3 + debug: 3.2.7 + ignore-by-default: 1.0.1 + minimatch: 3.1.2 + pstree.remy: 1.1.8 + semver: 5.7.1 + supports-color: 5.5.0 + touch: 3.1.0 + undefsafe: 2.0.5 + update-notifier: 5.1.0 + dev: true + + /nopt/1.0.10: + resolution: {integrity: sha1-bd0hvSoxQXuScn3Vhfim83YI6+4=} + hasBin: true + dependencies: + abbrev: 1.1.1 + dev: true + + /normalize-path/3.0.0: + resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} + engines: {node: '>=0.10.0'} + + /normalize-url/4.5.1: + resolution: {integrity: sha512-9UZCFRHQdNrfTpGg8+1INIg93B6zE0aXMVFkw1WFwvO4SlZywU6aLg5Of0Ap/PgcbSw4LNxvMWXMeugwMCX0AA==} + engines: {node: '>=8'} + dev: true + + /nth-check/2.0.1: + resolution: {integrity: sha512-it1vE95zF6dTT9lBsYbxvqh0Soy4SPowchj0UBGj/V6cTPnXXtQOPUbhZ6CmGzAD/rW22LQK6E96pcdJXk4A4w==} + dependencies: + boolbase: 1.0.0 + dev: false + + /object-assign/4.1.1: + resolution: {integrity: sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=} + engines: {node: '>=0.10.0'} + dev: false + + /object-inspect/1.12.0: + resolution: {integrity: sha512-Ho2z80bVIvJloH+YzRmpZVQe87+qASmBUKZDWgx9cu+KDrX2ZDH/3tMy+gXbZETVGs2M8YdxObOh7XAtim9Y0g==} + dev: true + + /object-keys/1.1.1: + resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} + engines: {node: '>= 0.4'} + dev: true + + /object.assign/4.1.2: + resolution: {integrity: sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + define-properties: 1.1.4 + has-symbols: 1.0.3 + object-keys: 1.1.1 + dev: true + + /object.entries/1.1.5: + resolution: {integrity: sha512-TyxmjUoZggd4OrrU1W66FMDG6CuqJxsFvymeyXI51+vQLN67zYfZseptRge703kKQdo4uccgAKebXFcRCzk4+g==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + define-properties: 1.1.4 + es-abstract: 1.19.5 + dev: true + + /object.values/1.1.5: + resolution: {integrity: sha512-QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + define-properties: 1.1.4 + es-abstract: 1.19.5 + dev: true + + /on-finished/2.3.0: + resolution: {integrity: sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=} + engines: {node: '>= 0.8'} + dependencies: + ee-first: 1.1.1 + dev: false + + /on-headers/1.0.2: + resolution: {integrity: sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==} + engines: {node: '>= 0.8'} + dev: false + + /once/1.4.0: + resolution: {integrity: sha1-WDsap3WWHUsROsF9nFC6753Xa9E=} + dependencies: + wrappy: 1.0.2 + dev: true + + /optionator/0.9.1: + resolution: {integrity: sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==} + engines: {node: '>= 0.8.0'} + dependencies: + deep-is: 0.1.4 + fast-levenshtein: 2.0.6 + levn: 0.4.1 + prelude-ls: 1.2.1 + type-check: 0.4.0 + word-wrap: 1.2.3 + dev: true + + /p-cancelable/1.1.0: + resolution: {integrity: sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw==} + engines: {node: '>=6'} + dev: true + + /p-limit/1.3.0: + resolution: {integrity: sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==} + engines: {node: '>=4'} + dependencies: + p-try: 1.0.0 + dev: true + + /p-locate/2.0.0: + resolution: {integrity: sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=} + engines: {node: '>=4'} + dependencies: + p-limit: 1.3.0 + dev: true + + /p-try/1.0.0: + resolution: {integrity: sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=} + engines: {node: '>=4'} + dev: true + + /package-json/6.5.0: + resolution: {integrity: sha512-k3bdm2n25tkyxcjSKzB5x8kfVxlMdgsbPr0GkZcwHsLpba6cBjqCt1KlcChKEvxHIcTB1FVMuwoijZ26xex5MQ==} + engines: {node: '>=8'} + dependencies: + got: 9.6.0 + registry-auth-token: 4.2.1 + registry-url: 5.1.0 + semver: 6.3.0 + dev: true + + /parent-module/1.0.1: + resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} + engines: {node: '>=6'} + dependencies: + callsites: 3.1.0 + dev: true + + /parse5-htmlparser2-tree-adapter/6.0.1: + resolution: {integrity: sha512-qPuWvbLgvDGilKc5BoicRovlT4MtYT6JfJyBOMDsKoiT+GiuP5qyrPCnR9HcPECIJJmZh5jRndyNThnhhb/vlA==} + dependencies: + parse5: 6.0.1 + dev: false + + /parse5/6.0.1: + resolution: {integrity: sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==} + dev: false + + /parseurl/1.3.3: + resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==} + engines: {node: '>= 0.8'} + dev: false + + /path-exists/3.0.0: + resolution: {integrity: sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=} + engines: {node: '>=4'} + dev: true + + /path-is-absolute/1.0.1: + resolution: {integrity: sha1-F0uSaHNVNP+8es5r9TpanhtcX18=} + engines: {node: '>=0.10.0'} + dev: true + + /path-key/3.1.1: + resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} + engines: {node: '>=8'} + dev: true + + /path-parse/1.0.7: + resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} + + /path-to-regexp/0.1.7: + resolution: {integrity: sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=} + dev: false + + /picomatch/2.3.1: + resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} + engines: {node: '>=8.6'} + + /prelude-ls/1.2.1: + resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} + engines: {node: '>= 0.8.0'} + dev: true + + /prepend-http/2.0.0: + resolution: {integrity: sha1-6SQ0v6XqjBn0HN/UAddBo8gZ2Jc=} + engines: {node: '>=4'} + dev: true + + /prettier/2.6.2: + resolution: {integrity: sha512-PkUpF+qoXTqhOeWL9fu7As8LXsIUZ1WYaJiY/a7McAQzxjk82OF0tibkFXVCDImZtWxbvojFjerkiLb0/q8mew==} + engines: {node: '>=10.13.0'} + hasBin: true + dev: true + + /progress/2.0.3: + resolution: {integrity: sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==} + engines: {node: '>=0.4.0'} + dev: true + + /promise/7.3.1: + resolution: {integrity: sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==} + dependencies: + asap: 2.0.6 + dev: false + + /proxy-addr/2.0.7: + resolution: {integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==} + engines: {node: '>= 0.10'} + dependencies: + forwarded: 0.2.0 + ipaddr.js: 1.9.1 + dev: false + + /pstree.remy/1.1.8: + resolution: {integrity: sha512-77DZwxQmxKnu3aR542U+X8FypNzbfJ+C5XQDk3uWjWxn6151aIMGthWYRXTqT1E5oJvg+ljaa2OJi+VfvCOQ8w==} + dev: true + + /pug-attrs/3.0.0: + resolution: {integrity: sha512-azINV9dUtzPMFQktvTXciNAfAuVh/L/JCl0vtPCwvOA21uZrC08K/UnmrL+SXGEVc1FwzjW62+xw5S/uaLj6cA==} + dependencies: + constantinople: 4.0.1 + js-stringify: 1.0.2 + pug-runtime: 3.0.1 + dev: false + + /pug-code-gen/3.0.2: + resolution: {integrity: sha512-nJMhW16MbiGRiyR4miDTQMRWDgKplnHyeLvioEJYbk1RsPI3FuA3saEP8uwnTb2nTJEKBU90NFVWJBk4OU5qyg==} + dependencies: + constantinople: 4.0.1 + doctypes: 1.1.0 + js-stringify: 1.0.2 + pug-attrs: 3.0.0 + pug-error: 2.0.0 + pug-runtime: 3.0.1 + void-elements: 3.1.0 + with: 7.0.2 + dev: false + + /pug-error/2.0.0: + resolution: {integrity: sha512-sjiUsi9M4RAGHktC1drQfCr5C5eriu24Lfbt4s+7SykztEOwVZtbFk1RRq0tzLxcMxMYTBR+zMQaG07J/btayQ==} + dev: false + + /pug-filters/4.0.0: + resolution: {integrity: sha512-yeNFtq5Yxmfz0f9z2rMXGw/8/4i1cCFecw/Q7+D0V2DdtII5UvqE12VaZ2AY7ri6o5RNXiweGH79OCq+2RQU4A==} + dependencies: + constantinople: 4.0.1 + jstransformer: 1.0.0 + pug-error: 2.0.0 + pug-walk: 2.0.0 + resolve: 1.22.0 + dev: false + + /pug-lexer/5.0.1: + resolution: {integrity: sha512-0I6C62+keXlZPZkOJeVam9aBLVP2EnbeDw3An+k0/QlqdwH6rv8284nko14Na7c0TtqtogfWXcRoFE4O4Ff20w==} + dependencies: + character-parser: 2.2.0 + is-expression: 4.0.0 + pug-error: 2.0.0 + dev: false + + /pug-linker/4.0.0: + resolution: {integrity: sha512-gjD1yzp0yxbQqnzBAdlhbgoJL5qIFJw78juN1NpTLt/mfPJ5VgC4BvkoD3G23qKzJtIIXBbcCt6FioLSFLOHdw==} + dependencies: + pug-error: 2.0.0 + pug-walk: 2.0.0 + dev: false + + /pug-load/3.0.0: + resolution: {integrity: sha512-OCjTEnhLWZBvS4zni/WUMjH2YSUosnsmjGBB1An7CsKQarYSWQ0GCVyd4eQPMFJqZ8w9xgs01QdiZXKVjk92EQ==} + dependencies: + object-assign: 4.1.1 + pug-walk: 2.0.0 + dev: false + + /pug-parser/6.0.0: + resolution: {integrity: sha512-ukiYM/9cH6Cml+AOl5kETtM9NR3WulyVP2y4HOU45DyMim1IeP/OOiyEWRr6qk5I5klpsBnbuHpwKmTx6WURnw==} + dependencies: + pug-error: 2.0.0 + token-stream: 1.0.0 + dev: false + + /pug-runtime/3.0.1: + resolution: {integrity: sha512-L50zbvrQ35TkpHwv0G6aLSuueDRwc/97XdY8kL3tOT0FmhgG7UypU3VztfV/LATAvmUfYi4wNxSajhSAeNN+Kg==} + dev: false + + /pug-strip-comments/2.0.0: + resolution: {integrity: sha512-zo8DsDpH7eTkPHCXFeAk1xZXJbyoTfdPlNR0bK7rpOMuhBYb0f5qUVCO1xlsitYd3w5FQTK7zpNVKb3rZoUrrQ==} + dependencies: + pug-error: 2.0.0 + dev: false + + /pug-walk/2.0.0: + resolution: {integrity: sha512-yYELe9Q5q9IQhuvqsZNwA5hfPkMJ8u92bQLIMcsMxf/VADjNtEYptU+inlufAFYcWdHlwNfZOEnOOQrZrcyJCQ==} + dev: false + + /pug/3.0.2: + resolution: {integrity: sha512-bp0I/hiK1D1vChHh6EfDxtndHji55XP/ZJKwsRqrz6lRia6ZC2OZbdAymlxdVFwd1L70ebrVJw4/eZ79skrIaw==} + dependencies: + pug-code-gen: 3.0.2 + pug-filters: 4.0.0 + pug-lexer: 5.0.1 + pug-linker: 4.0.0 + pug-load: 3.0.0 + pug-parser: 6.0.0 + pug-runtime: 3.0.1 + pug-strip-comments: 2.0.0 + dev: false + + /pump/3.0.0: + resolution: {integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==} + dependencies: + end-of-stream: 1.4.4 + once: 1.4.0 + dev: true + + /punycode/2.1.1: + resolution: {integrity: sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==} + engines: {node: '>=6'} + dev: true + + /pupa/2.1.1: + resolution: {integrity: sha512-l1jNAspIBSFqbT+y+5FosojNpVpF94nlI+wDUpqP9enwOTfHx9f0gh5nB96vl+6yTpsJsypeNrwfzPrKuHB41A==} + engines: {node: '>=8'} + dependencies: + escape-goat: 2.1.1 + dev: true + + /qs/6.9.7: + resolution: {integrity: sha512-IhMFgUmuNpyRfxA90umL7ByLlgRXu6tIfKPpF5TmcfRLlLCckfP/g3IQmju6jjpu+Hh8rA+2p6A27ZSPOOHdKw==} + engines: {node: '>=0.6'} + dev: false + + /range-parser/1.2.1: + resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==} + engines: {node: '>= 0.6'} + dev: false + + /raw-body/2.4.3: + resolution: {integrity: sha512-UlTNLIcu0uzb4D2f4WltY6cVjLi+/jEN4lgEUj3E04tpMDpUlkBo/eSn6zou9hum2VMNpCCUone0O0WeJim07g==} + engines: {node: '>= 0.8'} + dependencies: + bytes: 3.1.2 + http-errors: 1.8.1 + iconv-lite: 0.4.24 + unpipe: 1.0.0 + dev: false + + /rc/1.2.8: + resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==} + hasBin: true + dependencies: + deep-extend: 0.6.0 + ini: 1.3.8 + minimist: 1.2.6 + strip-json-comments: 2.0.1 + dev: true + + /readdirp/3.6.0: + resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} + engines: {node: '>=8.10.0'} + dependencies: + picomatch: 2.3.1 + + /regexpp/3.2.0: + resolution: {integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==} + engines: {node: '>=8'} + dev: true + + /registry-auth-token/4.2.1: + resolution: {integrity: sha512-6gkSb4U6aWJB4SF2ZvLb76yCBjcvufXBqvvEx1HbmKPkutswjW1xNVRY0+daljIYRbogN7O0etYSlbiaEQyMyw==} + engines: {node: '>=6.0.0'} + dependencies: + rc: 1.2.8 + dev: true + + /registry-url/5.1.0: + resolution: {integrity: sha512-8acYXXTI0AkQv6RAOjE3vOaIXZkT9wo4LOFbBKYQEEnnMNBpKqdUrI6S4NT0KPIo/WVvJ5tE/X5LF/TQUf0ekw==} + engines: {node: '>=8'} + dependencies: + rc: 1.2.8 + dev: true + + /require-from-string/2.0.2: + resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==} + engines: {node: '>=0.10.0'} + dev: true + + /resolve-from/4.0.0: + resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} + engines: {node: '>=4'} + dev: true + + /resolve/1.22.0: + resolution: {integrity: sha512-Hhtrw0nLeSrFQ7phPp4OOcVjLPIeMnRlr5mcnVuMe7M/7eBn98A3hmFRLoFo3DLZkivSYwhRUJTyPyWAk56WLw==} + hasBin: true + dependencies: + is-core-module: 2.8.1 + path-parse: 1.0.7 + supports-preserve-symlinks-flag: 1.0.0 + + /responselike/1.0.2: + resolution: {integrity: sha1-kYcg7ztjHFZCvgaPFa3lpG9Loec=} + dependencies: + lowercase-keys: 1.0.1 + dev: true + + /rimraf/3.0.2: + resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} + hasBin: true + dependencies: + glob: 7.2.0 + dev: true + + /safe-buffer/5.1.2: + resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==} + dev: false + + /safe-buffer/5.2.1: + resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} + dev: false + + /safer-buffer/2.1.2: + resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} + dev: false + + /sass/1.50.0: + resolution: {integrity: sha512-cLsD6MEZ5URXHStxApajEh7gW189kkjn4Rc8DQweMyF+o5HF5nfEz8QYLMlPsTOD88DknatTmBWkOcw5/LnJLQ==} + engines: {node: '>=12.0.0'} + hasBin: true + dependencies: + chokidar: 3.5.3 + immutable: 4.0.0 + source-map-js: 1.0.2 + dev: false + + /semver-diff/3.1.1: + resolution: {integrity: sha512-GX0Ix/CJcHyB8c4ykpHGIAvLyOwOobtM/8d+TQkAd81/bEjgPHrfba41Vpesr7jX/t8Uh+R3EX9eAS5be+jQYg==} + engines: {node: '>=8'} + dependencies: + semver: 6.3.0 + dev: true + + /semver/5.7.1: + resolution: {integrity: sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==} + hasBin: true + dev: true + + /semver/6.3.0: + resolution: {integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==} + hasBin: true + dev: true + + /semver/7.3.7: + resolution: {integrity: sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==} + engines: {node: '>=10'} + hasBin: true + dependencies: + lru-cache: 6.0.0 + dev: true + + /send/0.17.2: + resolution: {integrity: sha512-UJYB6wFSJE3G00nEivR5rgWp8c2xXvJ3OPWPhmuteU0IKj8nKbG3DrjiOmLwpnHGYWAVwA69zmTm++YG0Hmwww==} + engines: {node: '>= 0.8.0'} + dependencies: + debug: 2.6.9 + depd: 1.1.2 + destroy: 1.0.4 + encodeurl: 1.0.2 + escape-html: 1.0.3 + etag: 1.8.1 + fresh: 0.5.2 + http-errors: 1.8.1 + mime: 1.6.0 + ms: 2.1.3 + on-finished: 2.3.0 + range-parser: 1.2.1 + statuses: 1.5.0 + dev: false + + /serve-static/1.14.2: + resolution: {integrity: sha512-+TMNA9AFxUEGuC0z2mevogSnn9MXKb4fa7ngeRMJaaGv8vTwnIEkKi+QGvPt33HSnf8pRS+WGM0EbMtCJLKMBQ==} + engines: {node: '>= 0.8.0'} + dependencies: + encodeurl: 1.0.2 + escape-html: 1.0.3 + parseurl: 1.3.3 + send: 0.17.2 + dev: false + + /setprototypeof/1.2.0: + resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==} + dev: false + + /shebang-command/2.0.0: + resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} + engines: {node: '>=8'} + dependencies: + shebang-regex: 3.0.0 + dev: true + + /shebang-regex/3.0.0: + resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} + engines: {node: '>=8'} + dev: true + + /side-channel/1.0.4: + resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==} + dependencies: + call-bind: 1.0.2 + get-intrinsic: 1.1.1 + object-inspect: 1.12.0 + dev: true + + /signal-exit/3.0.7: + resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} + dev: true + + /slice-ansi/4.0.0: + resolution: {integrity: sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==} + engines: {node: '>=10'} + dependencies: + ansi-styles: 4.3.0 + astral-regex: 2.0.0 + is-fullwidth-code-point: 3.0.0 + dev: true + + /source-map-js/1.0.2: + resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==} + engines: {node: '>=0.10.0'} + dev: false + + /sprintf-js/1.0.3: + resolution: {integrity: sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=} + dev: true + + /statuses/1.5.0: + resolution: {integrity: sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=} + engines: {node: '>= 0.6'} + dev: false + + /string-width/4.2.3: + resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} + engines: {node: '>=8'} + dependencies: + emoji-regex: 8.0.0 + is-fullwidth-code-point: 3.0.0 + strip-ansi: 6.0.1 + dev: true + + /string.prototype.trimend/1.0.4: + resolution: {integrity: sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A==} + dependencies: + call-bind: 1.0.2 + define-properties: 1.1.4 + dev: true + + /string.prototype.trimstart/1.0.4: + resolution: {integrity: sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw==} + dependencies: + call-bind: 1.0.2 + define-properties: 1.1.4 + dev: true + + /strip-ansi/6.0.1: + resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} + engines: {node: '>=8'} + dependencies: + ansi-regex: 5.0.1 + dev: true + + /strip-bom/3.0.0: + resolution: {integrity: sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=} + engines: {node: '>=4'} + dev: true + + /strip-json-comments/2.0.1: + resolution: {integrity: sha1-PFMZQukIwml8DsNEhYwobHygpgo=} + engines: {node: '>=0.10.0'} + dev: true + + /strip-json-comments/3.1.1: + resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} + engines: {node: '>=8'} + dev: true + + /supports-color/5.5.0: + resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} + engines: {node: '>=4'} + dependencies: + has-flag: 3.0.0 + dev: true + + /supports-color/7.2.0: + resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} + engines: {node: '>=8'} + dependencies: + has-flag: 4.0.0 + dev: true + + /supports-preserve-symlinks-flag/1.0.0: + resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} + engines: {node: '>= 0.4'} + + /table/6.8.0: + resolution: {integrity: sha512-s/fitrbVeEyHKFa7mFdkuQMWlH1Wgw/yEXMt5xACT4ZpzWFluehAxRtUUQKPuWhaLAWhFcVx6w3oC8VKaUfPGA==} + engines: {node: '>=10.0.0'} + dependencies: + ajv: 8.11.0 + lodash.truncate: 4.4.2 + slice-ansi: 4.0.0 + string-width: 4.2.3 + strip-ansi: 6.0.1 + dev: true + + /text-table/0.2.0: + resolution: {integrity: sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=} + dev: true + + /to-fast-properties/2.0.0: + resolution: {integrity: sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=} + engines: {node: '>=4'} + dev: false + + /to-readable-stream/1.0.0: + resolution: {integrity: sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q==} + engines: {node: '>=6'} + dev: true + + /to-regex-range/5.0.1: + resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} + engines: {node: '>=8.0'} + dependencies: + is-number: 7.0.0 + + /toidentifier/1.0.1: + resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==} + engines: {node: '>=0.6'} + dev: false + + /token-stream/1.0.0: + resolution: {integrity: sha1-zCAOqyYT9BZtJ/+a/HylbUnfbrQ=} + dev: false + + /touch/3.1.0: + resolution: {integrity: sha512-WBx8Uy5TLtOSRtIq+M03/sKDrXCLHxwDcquSP2c43Le03/9serjQBIztjRz6FkJez9D/hleyAXTBGLwwZUw9lA==} + hasBin: true + dependencies: + nopt: 1.0.10 + dev: true + + /tsconfig-paths/3.14.1: + resolution: {integrity: sha512-fxDhWnFSLt3VuTwtvJt5fpwxBHg5AdKWMsgcPOOIilyjymcYVZoCQF8fvFRezCNfblEXmi+PcM1eYHeOAgXCOQ==} + dependencies: + '@types/json5': 0.0.29 + json5: 1.0.1 + minimist: 1.2.6 + strip-bom: 3.0.0 + dev: true + + /tslib/2.3.1: + resolution: {integrity: sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==} + dev: false + + /type-check/0.4.0: + resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} + engines: {node: '>= 0.8.0'} + dependencies: + prelude-ls: 1.2.1 + dev: true + + /type-fest/0.20.2: + resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} + engines: {node: '>=10'} + dev: true + + /type-is/1.6.18: + resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==} + engines: {node: '>= 0.6'} + dependencies: + media-typer: 0.3.0 + mime-types: 2.1.35 + dev: false + + /typedarray-to-buffer/3.1.5: + resolution: {integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==} + dependencies: + is-typedarray: 1.0.0 + dev: true + + /unbox-primitive/1.0.1: + resolution: {integrity: sha512-tZU/3NqK3dA5gpE1KtyiJUrEB0lxnGkMFHptJ7q6ewdZ8s12QrODwNbhIJStmJkd1QDXa1NRA8aF2A1zk/Ypyw==} + dependencies: + function-bind: 1.1.1 + has-bigints: 1.0.1 + has-symbols: 1.0.3 + which-boxed-primitive: 1.0.2 + dev: true + + /undefsafe/2.0.5: + resolution: {integrity: sha512-WxONCrssBM8TSPRqN5EmsjVrsv4A8X12J4ArBiiayv3DyyG3ZlIg6yysuuSYdZsVz3TKcTg2fd//Ujd4CHV1iA==} + dev: true + + /unique-string/2.0.0: + resolution: {integrity: sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==} + engines: {node: '>=8'} + dependencies: + crypto-random-string: 2.0.0 + dev: true + + /unpipe/1.0.0: + resolution: {integrity: sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=} + engines: {node: '>= 0.8'} + dev: false + + /update-notifier/5.1.0: + resolution: {integrity: sha512-ItnICHbeMh9GqUy31hFPrD1kcuZ3rpxDZbf4KUDavXwS0bW5m7SLbDQpGX3UYr072cbrF5hFUs3r5tUsPwjfHw==} + engines: {node: '>=10'} + dependencies: + boxen: 5.1.2 + chalk: 4.1.2 + configstore: 5.0.1 + has-yarn: 2.1.0 + import-lazy: 2.1.0 + is-ci: 2.0.0 + is-installed-globally: 0.4.0 + is-npm: 5.0.0 + is-yarn-global: 0.3.0 + latest-version: 5.1.0 + pupa: 2.1.1 + semver: 7.3.7 + semver-diff: 3.1.1 + xdg-basedir: 4.0.0 + dev: true + + /uri-js/4.4.1: + resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} + dependencies: + punycode: 2.1.1 + dev: true + + /url-parse-lax/3.0.0: + resolution: {integrity: sha1-FrXK/Afb42dsGxmZF3gj1lA6yww=} + engines: {node: '>=4'} + dependencies: + prepend-http: 2.0.0 + dev: true + + /utils-merge/1.0.1: + resolution: {integrity: sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=} + engines: {node: '>= 0.4.0'} + dev: false + + /v8-compile-cache/2.3.0: + resolution: {integrity: sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==} + dev: true + + /vary/1.1.2: + resolution: {integrity: sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=} + engines: {node: '>= 0.8'} + dev: false + + /void-elements/3.1.0: + resolution: {integrity: sha1-YU9/v42AHwu18GYfWy9XhXUOTwk=} + engines: {node: '>=0.10.0'} + dev: false + + /which-boxed-primitive/1.0.2: + resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==} + dependencies: + is-bigint: 1.0.4 + is-boolean-object: 1.1.2 + is-number-object: 1.0.7 + is-string: 1.0.7 + is-symbol: 1.0.4 + dev: true + + /which/2.0.2: + resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} + engines: {node: '>= 8'} + hasBin: true + dependencies: + isexe: 2.0.0 + dev: true + + /widest-line/3.1.0: + resolution: {integrity: sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==} + engines: {node: '>=8'} + dependencies: + string-width: 4.2.3 + dev: true + + /with/7.0.2: + resolution: {integrity: sha512-RNGKj82nUPg3g5ygxkQl0R937xLyho1J24ItRCBTr/m1YnZkzJy1hUiHUJrc/VlsDQzsCnInEGSg3bci0Lmd4w==} + engines: {node: '>= 10.0.0'} + dependencies: + '@babel/parser': 7.17.9 + '@babel/types': 7.17.0 + assert-never: 1.2.1 + babel-walk: 3.0.0-canary-5 + dev: false + + /word-wrap/1.2.3: + resolution: {integrity: sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==} + engines: {node: '>=0.10.0'} + dev: true + + /wrap-ansi/7.0.0: + resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} + engines: {node: '>=10'} + dependencies: + ansi-styles: 4.3.0 + string-width: 4.2.3 + strip-ansi: 6.0.1 + dev: true + + /wrappy/1.0.2: + resolution: {integrity: sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=} + dev: true + + /write-file-atomic/3.0.3: + resolution: {integrity: sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==} + dependencies: + imurmurhash: 0.1.4 + is-typedarray: 1.0.0 + signal-exit: 3.0.7 + typedarray-to-buffer: 3.1.5 + dev: true + + /xdg-basedir/4.0.0: + resolution: {integrity: sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q==} + engines: {node: '>=8'} + dev: true + + /yallist/4.0.0: + resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} + dev: true diff --git a/public/android-chrome-192x192.png b/public/android-chrome-192x192.png new file mode 100644 index 0000000..45ef1e4 Binary files /dev/null and b/public/android-chrome-192x192.png differ diff --git a/public/android-chrome-512x512.png b/public/android-chrome-512x512.png new file mode 100644 index 0000000..bda1b28 Binary files /dev/null and b/public/android-chrome-512x512.png differ diff --git a/public/apple-touch-icon.png b/public/apple-touch-icon.png new file mode 100644 index 0000000..63360fb Binary files /dev/null and b/public/apple-touch-icon.png differ diff --git a/public/browserconfig.xml b/public/browserconfig.xml new file mode 100644 index 0000000..373ba45 --- /dev/null +++ b/public/browserconfig.xml @@ -0,0 +1,9 @@ + + + + + + #0f0e15 + + + diff --git a/public/css/styles.css b/public/css/styles.css new file mode 100644 index 0000000..3414ece --- /dev/null +++ b/public/css/styles.css @@ -0,0 +1,1031 @@ +@charset "UTF-8"; +@keyframes slide { + 0% { + transform: translateY(-1rem); + opacity: 0; + } + 100% { + transform: translateY(0); + opacity: 1; + } +} +@font-face { + font-family: "WorkSans"; + src: url("/fonts/WorkSans.woff2"); + font-display: swap; +} +@font-face { + font-family: "Quicksand"; + src: url("/fonts/Quicksand.woff2"); + font-display: swap; +} +html { + font-size: 62.5%; + scroll-behavior: smooth; + text-rendering: optimizeLegibility; +} + +body { + box-sizing: border-box; + line-height: 1.5; +} + +*, +*::before, +*::after { + box-sizing: inherit; + margin: 0; + padding: 0; +} + +:root { + --ff-primary: Worksans, sans-serif; + --ff-alt-alpha: QuickSand, sans-serif; + --fs-160: 1.6rem; + --fs-180: 1.8rem; + --fs-200: 2rem; + --fs-220: 2.2rem; + --fs-250: 2.5rem; + --fs-270: 2.7rem; + --fs-300: 3rem; + --fs-350: 3.5rem; + --fs-400: 4rem; + --fs-500: 5rem; + --fs-600: 6rem; + --fs-1000: 10rem; + --fs-1500: 15rem; + --space-050: 0.5rem; + --space-100: 1rem; + --space-200: 2rem; + --space-300: 3rem; + --space-400: 4rem; + --space-500: 5rem; + --space-800: 8rem; + --space-1000: 10rem; + --clr-base-bg: #fcfefe; + --clr-base-heading: #252140; + --clr-base-heading-alt-alpha: #2f2a50; + --clr-base-text: #100e1b; + --clr-base-text-alt-alpha: #4b4b4b; + --clr-code-bg: #f9fafa; + --clr-code-text: #3d3d3d; + --clr-base-icon: #34a19b; + --clr-base-icon-alt-alpha: #d6d6d6; + --clr-base-link: #3d3285; + --clr-base-link-alt-alpha: #5b4dbc; + --grad-hf: #e3f6f5 70%, #feffff; + --clr-hf-bg: #e3f6f5; + --clr-hf-logo: #463f79; + --clr-hf-heading: #37315e; + --clr-hf-text: #141222; + --clr-hf-link: #4436ab; + --clr-hf-link-alt-alpha: #422cdd; + --clr-selection-bg: #3e386b; + --clr-selection-text: #f1fbfa; + --clr-scrollbar-thumb: #3e386b; + --clr-scrollbar-thumb-alt-alpha: #564d93; + --clr-focus: #ff5277; +} +:root[theme=dark] { + --clr-base-bg: #0f0e15; + --clr-base-heading: #f6f6f6; + --clr-base-heading-alt-alpha: #e6f7f6; + --clr-base-text: #e1e1e1; + --clr-base-text-alt-alpha: #939393; + --clr-code-bg: #17161e; + --clr-code-text: silver; + --clr-base-icon: #22f9ee; + --clr-base-icon-alt-alpha: #17161e; + --clr-base-link: #b7dbd9; + --clr-base-link-alt-alpha: #78bcb8; + --grad-hf: #0f0d1c, #0f0d1c, #0f0e1b, #100e1b, #0f0e19, #0f0e15; + --clr-hf-bg: #1e1c2c; + --clr-hf-logo: #49d3cc; + --clr-hf-heading: #d1f0ef; + --clr-hf-text: #e3f6f5; + --clr-hf-link: #bfeae8; + --clr-hf-link-alt-alpha: #78d3cf; + --clr-selection-bg: #113634; + --clr-selection-text: #fcfefe; + --clr-scrollbar-thumb: #54c8c2; + --clr-scrollbar-thumb-alt-alpha: #2e8f8a; + --clr-focus: #ff5277; +} +@media (prefers-color-scheme: dark) { + :root:not([js-enabled]) { + --clr-base-bg: #0f0e15; + --clr-base-heading: #f6f6f6; + --clr-base-heading-alt-alpha: #e6f7f6; + --clr-base-text: #e1e1e1; + --clr-base-text-alt-alpha: #939393; + --clr-code-bg: #17161e; + --clr-code-text: silver; + --clr-base-icon: #22f9ee; + --clr-base-icon-alt-alpha: #17161e; + --clr-base-link: #b7dbd9; + --clr-base-link-alt-alpha: #78bcb8; + --grad-hf: #0f0d1c, #0f0d1c, #0f0e1b, #100e1b, #0f0e19, #0f0e15; + --clr-hf-bg: #1e1c2c; + --clr-hf-logo: #49d3cc; + --clr-hf-heading: #d1f0ef; + --clr-hf-text: #e3f6f5; + --clr-hf-link: #bfeae8; + --clr-hf-link-alt-alpha: #78d3cf; + --clr-selection-bg: #113634; + --clr-selection-text: #fcfefe; + --clr-scrollbar-thumb: #54c8c2; + --clr-scrollbar-thumb-alt-alpha: #2e8f8a; + --clr-focus: #ff5277; + } +} + +.body { + font-size: var(--fs-160); + font-family: var(--ff-primary); + background-color: var(--clr-base-bg); + color: var(--clr-base-text); + display: grid; + grid-template-rows: auto 1fr auto; + min-height: 100vh; + transition: color 500ms ease, background-color 500ms ease; +} + +@media screen and (min-width: 118.75em) { + .main { + width: 110em; + margin-inline: auto; + } +} + +::selection { + background: var(--clr-selection-bg); + color: var(--clr-selection-text); +} + +@supports (scrollbar-width: auto) { + * { + scrollbar-width: auto; + scrollbar-color: var(--clr-scrollbar-thumb) transparent; + } +} +@supports not (scrollbar-width: auto) { + ::-webkit-scrollbar { + height: 0.8em; + width: 0.8em; + } + + ::-webkit-scrollbar-thumb { + background: var(--clr-scrollbar-thumb); + border: 2px solid transparent; + background-clip: padding-box; + border-radius: 100vw; + } + ::-webkit-scrollbar-thumb:hover { + background-color: var(--clr-scrollbar-thumb-alt-alpha); + } + + ::-webkit-scrollbar-track { + background: transparent; + } +} +:focus { + outline: 3px solid var(--clr-focus); + outline-offset: 0.2em; +} + +@supports selector(:focus-visible) { + :focus { + outline: none; + } + + :focus-visible { + outline: 3px solid var(--clr-focus); + outline-offset: 0.2em; + } +} +mjx-container.MathJax { + pointer-events: none; +} + +/* +.CtxtMenu_ContextMenu, +.CtxtMenu_Info { + background-color: var(--clr-base-bg) !important; + font-family: inherit !important; + color: inherit !important; +} +.CtxtMenu_InfoTitle, +.CtxtMenu_InfoSignature, +.CtxtMenu_MenuClose .CtxtMenu_InfoClose, +.CtxtMenu_InfoContent { + font-family: inherit !important; + background: inherit !important; + color: inherit !important; +} +*/ +.skip-link { + position: absolute; + left: 50%; + color: var(--clr-base-heading); + text-decoration: none; + text-align: center; + font-weight: 500; + padding: 0 var(--space-100); + border-radius: 0 0 5px 5px; + font-size: var(--fs-180); + transform: translate(-50%, -150%); + transition: transform 200ms ease; +} +.skip-link:is(:focus, :focus-visible) { + transform: translate(-50%, 0); +} + +.theme-changer { + border: none; + background-color: transparent; + cursor: pointer; + position: relative; +} +.theme-changer__icon { + position: absolute; + inset: 0; + height: 100%; + width: 100%; + transition: all 0.5s ease; + transform-origin: center; +} +.theme-changer__icon--sun { + transform: scale(0) rotateZ(-180deg); +} +.theme-changer__icon--moon { + transform: scale(1) rotateZ(0); +} + +:root[theme=dark] .theme-changer__icon--sun { + transform: scale(1) rotateZ(0); +} +:root[theme=dark] .theme-changer__icon--moon { + transform: scale(0) rotateZ(180deg); +} + +.icon { + max-height: var(--fs-500); + max-width: var(--fs-500); + fill: var(--clr-base-icon); +} +.icon__down { + height: var(--fs-350); + width: var(--fs-350); + opacity: 0.3; +} +@media screen and (max-width: 28.125em) { + .icon__down { + height: var(--fs-250); + width: var(--fs-250); + } +} + +.heading { + color: var(--clr-base-heading); + font-weight: 600; +} + +.features { + display: grid; + gap: var(--space-800); +} +.features__heading { + justify-self: center; +} +.features__list { + display: grid; + gap: var(--space-800); + grid-template-columns: repeat(auto-fit, minmax(40rem, 1fr)); +} +@media screen and (max-width: 56.25em) { + .features__list { + gap: var(--space-500); + grid-template-columns: auto; + } +} +.features__feature { + display: grid; + gap: var(--space-100); + grid-template-rows: repeat(3, min-content); + font-size: var(--fs-160); +} +.features__feature-icon { + fill: var(--clr-base-icon); + grid-row: 1/2; + height: 3em; + width: 3em; +} +@media screen and (max-width: 46.875em) { + .features__feature-icon { + height: 2em; + width: 2em; + } +} +.features__feature-heading { + grid-row: 2/3; + font-size: 1.3em; +} +.features__feature-text { + grid-row: 3/4; +} +@media screen and (max-width: 56.25em) { + .features { + gap: var(--space-500); + } +} +@media screen and (max-width: 46.875em) { + .features { + gap: var(--space-200); + } +} + +.faqs { + display: grid; + gap: var(--space-800); + justify-items: center; +} +.faqs__heading { + justify-self: center; +} +.faqs__list { + justify-self: strech; + display: grid; + gap: var(--space-500); + width: 100%; +} +@media screen and (max-width: 46.875em) { + .faqs__list { + gap: var(--space-200); + } +} +.faqs__faq { + border: 1px solid var(--clr-base-icon-alt-alpha); + padding: var(--space-100); +} +.faqs__question { + padding: var(--space-100); + display: flex; + gap: var(--space-100); + justify-content: space-between; + align-items: center; + color: var(--clr-base-heading-alt-alpha); + font-weight: 500; + font-size: var(--fs-180); + list-style-type: none; + cursor: pointer; +} +.faqs__icon { + height: 1em; + width: 1em; + fill: var(--clr-base-icon); + transition: all 200ms; +} +.faqs__faq[open] { + border: 1px solid var(--clr-base-icon); +} +.faqs__faq[open] .faqs__question .faqs__icon { + transform: rotateX(180deg); +} +.faqs__answer { + padding: var(--space-100); +} +.faqs__faq[open] .faqs__answer { + animation: slide 200ms ease; +} +@media screen and (max-width: 56.25em) { + .faqs { + gap: var(--space-500); + } +} +@media screen and (max-width: 46.875em) { + .faqs { + gap: var(--space-200); + } +} + +.answers-box { + display: grid; + gap: var(--space-200); +} +.answers-box__list { + display: grid; + gap: var(--space-800); +} + +.answer { + display: grid; + gap: var(--space-200); +} +.answer__author { + display: grid; + gap: 0 var(--space-100); + grid-template-columns: auto 1fr; + grid-template-rows: repeat(2, min-content); + font-size: var(--fs-160); +} +.answer__author-name { + grid-column: 2/-1; + align-self: end; + color: var(--clr-base-heading-alt-alpha); + font-weight: 500; + display: flex; + gap: var(--space-050); +} +.answer__author-name a { + font-size: 1.05em; + color: currentColor; +} +.answer__author-credentials { + grid-column: 2/-1; + align-self: start; +} +.answer__author-image { + grid-row: 1/-1; + grid-column: 1/span 1; + max-height: var(--fs-600); + max-width: var(--fs-600); + min-height: 100%; + min-width: 100%; + object-fit: cover; + clip-path: circle(50% at 50% 50%); +} +.answer__question { + font-size: 1.05em; +} +.answer__text { + border-block: 1px solid var(--clr-base-icon-alt-alpha); + padding: var(--space-100); + overflow-x: auto; +} +.answer__text > * + * { + padding-top: 0.3em; +} +.answer__para { + overflow-wrap: anywhere; +} +.answer__image { + max-width: 100%; + max-height: 100%; + object-fit: contain; + margin-inline: auto; +} +.answer__quote { + padding-left: 1em; + border-left: 3px solid var(--clr-base-icon-alt-alpha); + color: var(--clr-base-text-alt-alpha); +} +.answer__unordered-list { + display: list-item; + margin-left: 1em; + list-style: inside; +} +.answer__ordered-list { + display: list-item; + list-style: decimal inside; + margin-left: 1em; +} +.answer__code { + white-space: pre-wrap; + background: var(--clr-code-bg); + color: var(--clr-code-text); + padding: 0 1em; +} +.answer__span-code { + white-space: pre-wrap; +} +.answer__span-bold { + font-weight: 500; +} +.answer__span-link { + text-decoration: none; + color: var(--clr-base-link); + transition: color 400ms ease; + border-bottom: 1px solid currentColor; +} +.answer__span-link:hover { + color: var(--clr-base-link-alt-alpha); +} +.answer__unviewable { + display: grid; + align-content: center; + justify-content: start; + grid-auto-flow: column; + gap: var(--space-100); + align-items: center; + margin-top: var(--space-200); + color: var(--clr-base-heading-alt-alpha); + font-weight: 500; +} +.answer__metadata { + justify-self: start; + display: flex; + gap: var(--space-200); + align-items: center; + flex-wrap: wrap; +} +.answer__metadata-item { + display: grid; + grid-template-columns: repeat(2, auto); + gap: 0 var(--space-050); +} +.answer__icon { + grid-column: 1/span 1; + justify-self: end; + align-self: center; + height: 1.3em; + width: 1.3em; + fill: var(--clr-base-icon); +} +.answer__metadata-data { + grid-column: -2/-1; + justify-self: start; +} +.answer__metadata-text { + grid-row: 2/span 1; + grid-column: 1/-1; + justify-self: center; + font-size: 0.9em; + color: var(--clr-base-text-alt-alpha); +} + +.topics { + display: grid; + gap: var(--space-200); +} +.topics__list { + list-style: none; + display: grid; + gap: var(--space-100); +} +.topics__item { + font-weight: 500; +} + +.related { + display: grid; + align-content: start; + gap: var(--space-200); +} +.related__questions { + list-style: none; + display: grid; + gap: var(--space-100); +} +.related__question-item { + font-weight: 500; +} + +.header { + background: var(--clr-hf-bg); +} +.header__about { + min-height: 100vh; + background: linear-gradient(var(--grad-hf)); + display: grid; + grid-template-rows: auto 1fr; +} +.header__bar { + padding: var(--space-300) var(--space-500); + display: flex; + justify-content: space-between; + align-items: center; + gap: var(--space-300); +} +@media screen and (max-width: 46.875em) { + .header__bar { + padding: var(--space-300); + } +} +@media screen and (max-width: 28.125em) { + .header__bar { + padding: var(--space-200) var(--space-300); + } +} +.header__logo { + font-size: var(--fs-300); + font-family: var(--ff-alt-alpha); + color: var(--clr-hf-logo); + font-weight: 700; +} +@media screen and (max-width: 28.125em) { + .header__logo { + font-size: var(--fs-250); + } +} +.header__link { + text-decoration: none; +} +.header__nav-box { + align-self: center; +} +@media screen and (max-width: 40.625em) { + .header__nav-box { + display: none; + } +} +.header__nav { + display: flex; + gap: var(--space-300); +} +.header__nav-item { + list-style: none; +} +.header__nav-link { + font-size: var(--fs-200); + font-weight: 500; + text-decoration: none; + color: var(--clr-hf-link); + transition: color 400ms ease; +} +.header__nav-link:hover { + color: var(--clr-hf-link-alt-alpha); +} +@media screen and (max-width: 46.875em) { + .header__nav-link { + font-size: var(--fs-180); + } +} +.header__theme { + height: var(--fs-300); + width: var(--fs-300); +} +@media screen and (max-width: 28.125em) { + .header__theme { + height: var(--fs-250); + width: var(--fs-250); + } +} +.header__info { + display: grid; + place-items: center; + grid-template-rows: 1fr min-content 0.2fr; + text-align: center; +} +.header__hero { + font-size: var(--fs-600); + font-family: var(--ff-alt-alpha); + color: var(--clr-hf-heading); + font-weight: 700; +} +@media screen and (max-width: 56.25em) { + .header__hero { + font-size: var(--fs-500); + } +} +@media screen and (max-width: 46.875em) { + .header__hero { + font-size: var(--fs-400); + padding: var(--space-200); + } +} +.header__down { + align-self: end; +} + +.footer { + padding: var(--space-400); + display: grid; + gap: var(--space-300); + align-items: center; + background: var(--clr-hf-bg); +} +.footer__about { + padding-top: var(--space-800); + background: linear-gradient(to top, var(--grad-hf)); +} +@media screen and (max-width: 46.875em) { + .footer__about { + padding-top: var(--space-500); + } +} +.footer__logo { + justify-self: center; + font-size: var(--fs-600); + color: var(--clr-hf-logo); + font-family: var(--ff-alt-alpha); + font-weight: 700; +} +@media screen and (max-width: 56.25em) { + .footer__logo { + font-size: var(--fs-500); + } +} +@media screen and (max-width: 46.875em) { + .footer__logo { + font-size: var(--fs-400); + } +} +.footer__nav { + list-style: none; + display: flex; + justify-content: space-evenly; + gap: var(--space-200); + flex-wrap: wrap; +} +.footer__nav-item { + font-size: var(--fs-180); +} +.footer__link { + text-decoration: none; + color: var(--clr-hf-link); + transition: color 400ms ease; + font-weight: 500; +} +.footer__link:hover { + color: var(--clr-hf-link-alt-alpha); +} +.footer__license { + justify-self: center; + font-size: var(--fs-180); + color: var(--clr-hf-text); + text-align: center; +} +@media screen and (max-width: 28.125em) { + .footer { + padding: var(--space-300); + gap: var(--space-200); + } +} + +.about { + display: grid; + gap: var(--space-500); + padding: var(--space-500) var(--space-800); +} +.about__heading-secondary { + font-size: var(--fs-400); +} +@media screen and (max-width: 46.875em) { + .about__heading-secondary { + font-size: var(--fs-350); + } +} +@media screen and (max-width: 34.375em) { + .about__heading-secondary { + font-size: var(--fs-300); + } +} +.about__link { + text-decoration: none; + color: var(--clr-base-link); + transition: color 400ms ease; + border-bottom: 1px solid currentColor; +} +.about__link:hover { + color: var(--clr-base-link-alt-alpha); +} +.about__features { + padding-block: var(--space-800); +} +@media screen and (max-width: 56.25em) { + .about__features { + padding: 0; + } +} +.about__faqs { + padding: var(--space-800); +} +@media screen and (max-width: 64em) { + .about__faqs { + padding-inline: 0; + } +} +@media screen and (max-width: 56.25em) { + .about__faqs { + padding: 0; + } +} +.about__contact { + display: grid; + gap: var(--space-500); + padding: var(--space-800); + justify-items: center; +} +@media screen and (max-width: 64em) { + .about__contact { + padding-inline: 0; + } +} +@media screen and (max-width: 56.25em) { + .about__contact { + padding: 0; + } +} +@media screen and (max-width: 46.875em) { + .about__contact { + gap: var(--space-200); + } +} +.about__contact-text { + font-style: normal; + font-size: var(--fs-200); + text-align: center; +} +@media screen and (max-width: 46.875em) { + .about__contact-text { + font-size: var(--fs-180); + } +} +@media screen and (max-width: 56.25em) { + .about { + padding: var(--space-500); + } + .about > * { + padding-block: var(--space-300); + } +} +@media screen and (max-width: 34.375em) { + .about { + padding: var(--space-200); + } +} + +.privacy { + display: grid; + gap: var(--space-800); + padding: var(--space-800); +} +.privacy__heading-primary { + justify-self: center; + font-size: var(--fs-500); +} +@media screen and (max-width: 46.875em) { + .privacy__heading-primary { + font-size: var(--fs-400); + } +} +@media screen and (max-width: 34.375em) { + .privacy__heading-primary { + font-size: var(--fs-350); + } +} +.privacy__heading-secondary { + font-size: var(--fs-400); +} +@media screen and (max-width: 46.875em) { + .privacy__heading-secondary { + font-size: var(--fs-300); + } +} +@media screen and (max-width: 34.375em) { + .privacy__heading-secondary { + font-size: var(--fs-250); + } +} +.privacy__short { + justify-self: center; + display: grid; + gap: var(--space-200); + justify-items: center; +} +@media screen and (max-width: 46.875em) { + .privacy__short { + gap: var(--space-100); + } +} +.privacy__short-text { + text-align: center; + font-size: var(--fs-200); +} +@media screen and (max-width: 46.875em) { + .privacy__short-text { + font-size: var(--fs-180); + } +} +@media screen and (max-width: 56.25em) { + .privacy { + gap: var(--space-500); + padding: var(--space-500); + } +} +@media screen and (max-width: 34.375em) { + .privacy { + padding: var(--space-200); + } +} + +.error { + padding: var(--space-500); + display: grid; + place-content: center; + gap: var(--space-300); + place-items: center; +} +.error__code { + font-size: var(--fs-1500); + font-family: var(--ff-alt-alpha); + font-weight: 700; + line-height: 1; +} +@media screen and (max-width: 34.375em) { + .error__code { + font-size: var(--fs-1000); + } +} +.error__message, .error__return { + font-size: var(--fs-200); + color: var(--clr-base-text); + text-align: center; +} +@media screen and (max-width: 34.375em) { + .error__message, .error__return { + font-size: var(--fs-180); + } +} +.error__link { + text-decoration: none; + color: var(--clr-base-link); + transition: color 400ms ease; +} +.error__link:hover { + color: var(--clr-base-link-alt-alpha); +} +.error__stack-box { + overflow: auto; + max-width: 90%; +} +.error__stack { + padding: var(--space-300); +} + +.answers { + padding: var(--space-800); + display: grid; + grid-template-columns: 2fr 1.2fr; + grid-template-rows: min-content min-content 1fr; + grid-auto-flow: dense; + align-items: start; + gap: var(--space-800); +} +.answers__question-box { + grid-column: 1/-1; + grid-row: 1/span 1; + display: grid; + gap: var(--space-200); +} +.answers__answers-box { + grid-row: 2/-1; +} +.answers__topics { + grid-row: 2/span 1; +} +.answers__related { + grid-row: 3/-1; +} +.answers__question { + font-size: var(--fs-300); +} +@media screen and (max-width: 34.375em) { + .answers__question { + font-size: var(--fs-270); + } +} +.answers__link { + text-decoration: none; + color: var(--clr-base-link); + transition: color 400ms ease; +} +.answers__link:hover { + color: var(--clr-base-link-alt-alpha); +} +.answers__metadata { + display: flex; + color: var(--clr-base-text-alt-alpha); +} +.answers__metadata :not(:last-child)::after { + margin-inline: var(--space-100); + content: "·"; + font-weight: 700; +} +@media screen and (max-width: 34.375em) { + .answers__metadata { + display: block; + } + .answers__metadata :not(:last-child)::after { + display: none; + } +} +@media screen and (max-width: 75em) { + .answers { + display: flex; + flex-direction: column; + } +} +@media screen and (max-width: 56.25em) { + .answers { + padding: var(--space-500); + gap: var(--space-500); + } +} +@media screen and (max-width: 34.375em) { + .answers { + padding-inline: var(--space-200); + } +} + +/*# sourceMappingURL=styles.css.map */ diff --git a/public/css/styles.css.map b/public/css/styles.css.map new file mode 100644 index 0000000..733196f --- /dev/null +++ b/public/css/styles.css.map @@ -0,0 +1 @@ +{"version":3,"sourceRoot":"","sources":["../../views/sass/_mixins.scss","../../views/sass/_base.scss","../../views/sass/_components.scss","../../views/sass/_layouts.scss","../../views/sass/_pages.scss"],"names":[],"mappings":";AAUA;EACE;IACE;IACA;;EAEF;IACE;IACA;;;ACTJ;EACE;EACA;EACA;;AAEF;EACE;EACA;EACA;;AAMF;EACE;EACA;EACA;;;AAGF;EACE;EACA;;;AAGF;AAAA;AAAA;EAGE;EACA;EACA;;;AAMF;EDhBI;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAQA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;;ACeF;EDfE;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;;ACsBA;EAFF;IDpBE;IAAA;IAAA;IAAA;IAAA;IAAA;IAAA;IAAA;IAAA;IAAA;IAAA;IAAA;IAAA;IAAA;IAAA;IAAA;IAAA;IAAA;IAAA;IAAA;IAAA;IAAA;IAAA;;;;AC6BJ;EACE;EACA;EACA;EACA;EAEA;EACA;EACA;EAEA;;;AD2BA;ECxBF;IAEI;IACA;;;;AAOJ;EACE;EACA;;;AAIF;EACE;IACE;IACA;;;AAKJ;EACE;IACE;IACA;;;EAGF;IACE;IACA;IACA;IACA;;EAEA;IACE;;;EAIJ;IACE;;;AAOJ;EACE;EACA;;;AAGF;EACE;IACE;;;EAGF;IACE;IACA;;;AAOJ;EACE;;;AAEF;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AC7IA;EACE;EACA;EAEA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EAEA;;AAEA;EACE;;;AAMJ;EACE;EAEA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EAEA;EACA;;AAGA;EACE;;AAGF;EACE;;;AAOF;EACE;;AAGF;EACE;;;AAQN;EACE;EACA;EACA;;AAEA;EACE;EACA;EACA;;AFsBF;EEzBA;IAMI;IACA;;;;AAQN;EACE;EACA;;;AAMF;EACE;EACA;;AAEA;EACE;;AAGF;EACE;EACA;EACA;;AFTF;EEMA;IAMI;IACA;;;AAIJ;EACE;EACA;EACA;EACA;;AAKF;EACE;EACA;EAEA;EACA;;AF/BF;EE0BA;IAQI;IACA;;;AAIJ;EACE;EACA;;AAEF;EACE;;AF5CF;EEFF;IAkDI;;;AFhDF;EEFF;IAqDI;;;;AAOJ;EACE;EACA;EACA;;AAEA;EACE;;AAGF;EACE;EACA;EACA;EACA;;AFvEF;EEmEA;IAQI;;;AAIJ;EACE;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EAEA;EACA;EACA;EACA;EAEA;;AAEF;EACE;EACA;EACA;EACA;;AAGF;EACE;;AAGF;EACE;;AAGF;EACE;;AAGF;EACE;;AFtHF;EE0DF;IAgEI;;;AF1HF;EE0DF;IAmEI;;;;AAOJ;EACE;EACA;;AAEA;EACE;EACA;;;AAIJ;EACE;EACA;;AAGA;EACE;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;EAEA;EACA;EAGA;EACA;;AAGA;EACE;EACA;;AAIJ;EACE;EACA;;AAGF;EACE;EACA;EAEA;EACA;EACA;EACA;EACA;EAEA;;AAIF;EACE;;AAIF;EACE;EACA;EAUA;;AAPA;EAEE;;AASJ;EAEE;;AAGF;EACE;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;;AAOF;EACE;;AAEF;EACE;;AAEF;EFzTA;EACA,OE0TI;EFnTF;EAIA;;AATF;EACE,OEwTE;;AAKJ;EAEE;EACA;EACA;EACA;EACA;EACA;EAEA;EACA;EACA;;AAMF;EACE;EAEA;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA;EAEA;EACA;EACA;;AAGF;EACE;EACA;;AAGF;EACE;EACA;EACA;EAEA;EACA;;;AAOJ;EACE;EACA;;AAEA;EACE;EACA;EACA;;AAKF;EAEE;;;AAOJ;EACE;EACA;EACA;;AAEA;EACE;EACA;EACA;;AAGF;EACE;;;ACtcJ;EACE;;AAEA;EACE;EACA;EAEA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;;AH6EF;EGlFA;IAQI;;;AH0EJ;EGlFA;IAWI;;;AAIJ;EACE;EACA;EACA;EACA;;AH+DF;EGnEA;IAOI;;;AAIJ;EACE;;AAGF;EAEE;;AHkDF;EGpDA;IAKI;;;AAIJ;EACE;EACA;;AAGF;EACE;;AAGF;EACE;EACA;EHrBF;EACA,OGsBuB;EHfrB;;AALF;EACE,OGmByC;;AH8B3C;EGlCA;IAOI;;;AAIJ;EACE;EACA;;AHqBF;EGvBA;IAKI;IACA;;;AAIJ;EACE;EACA;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;;AHEF;EGNA;IAOI;;;AHDJ;EGNA;IAUI;IACA;;;AAIJ;EACE;;;AAOJ;EACE;EACA;EACA;EACA;EAEA;;AAEA;EACE;EACA;;AH3BF;EGyBA;IAKI;;;AAIJ;EACE;EACA;EACA;EACA;EACA;;AHvCF;EGkCA;IAQI;;;AH1CJ;EGkCA;IAYI;;;AAIJ;EACE;EACA;EACA;EACA;EACA;;AAWF;EACE;;AAGF;EH3HA;EACA,OG2HuB;EHpHrB;EGqHA;;AH1HF;EACE,OGwHyC;;AAI3C;EACE;EACA;EACA;EACA;;AH/EF;EGiBF;IAkEI;IACA;;;;AClLJ;EACE;EACA;EACA;;AAEA;EACE;;AJwFF;EIzFA;IAII;;;AJqFJ;EIzFA;IAOI;;;AAIJ;EJyBA;EACA,OIxBI;EJ+BF;EAIA;;AATF;EACE,OI1BE;;AAKJ;EACE;;AJqEF;EItEA;IAII;;;AAIJ;EACE;;AJ6DF;EI9DA;IAII;;;AJ0DJ;EI9DA;IAOI;;;AAIJ;EACE;EACA;EACA;EACA;;AJ+CF;EInDA;IAOI;;;AJ4CJ;EInDA;IAWI;;;AJwCJ;EInDA;IAcI;;;AAOJ;EACE;EACA;EACA;;AJ2BF;EI9BA;IAMI;;;AJwBJ;EI9FF;IA0EI;;EAEA;IACE;;;AJiBJ;EI9FF;IAiFI;;;;AAOJ;EACE;EACA;EACA;;AAEA;EACE;EACA;;AJDF;EIDA;IAKI;;;AJJJ;EIDA;IAQI;;;AAIJ;EACE;;AJZF;EIWA;IAII;;;AJfJ;EIWA;IAOI;;;AAIJ;EACE;EACA;EACA;EACA;;AJ1BF;EIsBA;IAOI;;;AAIJ;EACE;EACA;;AJnCF;EIiCA;IAKI;;;AJtCJ;EINF;IAiDI;IACA;;;AJ5CF;EINF;IAqDI;;;;AAOJ;EACE;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EAEA;;AJlEF;EI6DA;IAQI;;;AAIJ;EAEE;EAEA;EACA;;AJ9EF;EIyEA;IAQI;;;AAIJ;EJ1IA;EACA,OI0IuB;EJnIrB;;AALF;EACE,OIuI2C;;AAG7C;EAEE;EACA;;AAIF;EACE;;;AAQJ;EAEE;EAEA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EAEA;EACA;;AAGF;EACE;;AAGF;EACE;;AAGF;EACE;;AAGF;EACE;;AJzIF;EIwIA;IAII;;;AAIJ;EJrMA;EACA,OIqMuB;EJ9LrB;;AALF;EACE,OIkM2C;;AAG7C;EACE;EACA;;AAEA;EACE;EACA;EACA;;AJ3JJ;EIoJA;IAWI;;EAEA;IACE;;;AJlKN;EIyGF;IA+DI;IACA;;;AJzKF;EIyGF;IAoEI;IACA;;;AJ9KF;EIyGF;IAwEI","file":"styles.css"} \ No newline at end of file diff --git a/public/favicon-32x32.png b/public/favicon-32x32.png new file mode 100644 index 0000000..9485dd2 Binary files /dev/null and b/public/favicon-32x32.png differ diff --git a/public/favicon.ico b/public/favicon.ico new file mode 100644 index 0000000..d56c4ad Binary files /dev/null and b/public/favicon.ico differ diff --git a/public/fonts/Quicksand.woff2 b/public/fonts/Quicksand.woff2 new file mode 100644 index 0000000..0f9c419 Binary files /dev/null and b/public/fonts/Quicksand.woff2 differ diff --git a/public/fonts/WorkSans.woff2 b/public/fonts/WorkSans.woff2 new file mode 100644 index 0000000..3f0a489 Binary files /dev/null and b/public/fonts/WorkSans.woff2 differ diff --git a/public/js/index.js b/public/js/index.js new file mode 100644 index 0000000..38ad67e --- /dev/null +++ b/public/js/index.js @@ -0,0 +1,41 @@ +//////////////////////////////////////////////////////// +// CONSTANTS +//////////////////////////////////////////////////////// +const rootEl = document.documentElement; +const btnTheme = document.querySelector('.theme-changer'); + +//////////////////////////////////////////////////////// +// HELPER FUNCTIONS +//////////////////////////////////////////////////////// +// gets theme prefered by browser +const browserPrefersDarkTheme = window.matchMedia( + 'prefers-color-scheme: dark' +).matches; +// gets theme prefered by user(stored in local storage) +const userPrefersTheme = localStorage?.getItem('theme'); +// sets theme to local storage +const setTheme = theme => rootEl.setAttribute('theme', theme); +const localStorageAccessible = !!typeof Storage; + +//////////////////////////////////////////////////////// +// EVENT LISTENER +//////////////////////////////////////////////////////// +btnTheme.addEventListener('click', () => { + const curTheme = rootEl.getAttribute('theme') || 'light'; + const themeToSet = curTheme === 'light' ? 'dark' : 'light'; + setTheme(themeToSet); + + // only setting the value in localStoage if it's actually accessible + if (localStorageAccessible) localStorage.setItem('theme', themeToSet); +}); + +//////////////////////////////////////////////////////// +// INIT FUNCTION +//////////////////////////////////////////////////////// +(() => { + // setting this attr on root to not render some css styles + rootEl.setAttribute('js-enabled', ''); + // applying theme preferences in case they exist + if (browserPrefersDarkTheme) setTheme('dark'); + else if (userPrefersTheme) setTheme(userPrefersTheme); +})(); diff --git a/public/misc/img/preview.png b/public/misc/img/preview.png new file mode 100644 index 0000000..58a6e70 Binary files /dev/null and b/public/misc/img/preview.png differ diff --git a/public/misc/img/preview2.png b/public/misc/img/preview2.png new file mode 100644 index 0000000..0042edb Binary files /dev/null and b/public/misc/img/preview2.png differ diff --git a/public/misc/sprite.svg b/public/misc/sprite.svg new file mode 100644 index 0000000..622183b --- /dev/null +++ b/public/misc/sprite.svg @@ -0,0 +1,120 @@ + \ No newline at end of file diff --git a/public/mstile-150x150.png b/public/mstile-150x150.png new file mode 100644 index 0000000..97c650f Binary files /dev/null and b/public/mstile-150x150.png differ diff --git a/public/robots.txt b/public/robots.txt new file mode 100644 index 0000000..6be90e3 --- /dev/null +++ b/public/robots.txt @@ -0,0 +1,2 @@ +user-agent: * +disallow: /misc/ \ No newline at end of file diff --git a/public/safari-pinned-tab.svg b/public/safari-pinned-tab.svg new file mode 100644 index 0000000..e4ea31f --- /dev/null +++ b/public/safari-pinned-tab.svg @@ -0,0 +1,63 @@ + + + + +Created by potrace 1.14, written by Peter Selinger 2001-2017 + + + + + + diff --git a/public/site.webmanifest b/public/site.webmanifest new file mode 100644 index 0000000..67af816 --- /dev/null +++ b/public/site.webmanifest @@ -0,0 +1,18 @@ +{ + "name": "Quetre", + "short_name": "Quetre", + "icons": [ + { + "src": "/android-chrome-192x192.png", + "sizes": "192x192", + "type": "image/png" + }, + { + "src": "/android-chrome-512x512.png", + "sizes": "512x512", + "type": "image/png" + } + ], + "theme_color": "#0f0e15", + "background_color": "#0f0e15" +} diff --git a/routes/apiRoutes.js b/routes/apiRoutes.js new file mode 100644 index 0000000..800cbc4 --- /dev/null +++ b/routes/apiRoutes.js @@ -0,0 +1,18 @@ +import express from 'express'; +import { + about, + unimplemented, + unansweredQuestion, + answeredQuestion, +} from '../controllers/apiController.js'; + +const apiRouter = express.Router(); + +apiRouter.get('/', about); +apiRouter.get('/search', unimplemented); +apiRouter.get('/profile/:name', unimplemented); +apiRouter.get('/topic/:name', unimplemented); +apiRouter.get('/unanswered/:slug', unansweredQuestion); +apiRouter.get('/:slug', answeredQuestion); + +export default apiRouter; diff --git a/routes/viewRoutes.js b/routes/viewRoutes.js new file mode 100644 index 0000000..3611348 --- /dev/null +++ b/routes/viewRoutes.js @@ -0,0 +1,20 @@ +import express from 'express'; +import { + about, + answeredQuestion, + privacy, + unansweredQuestion, + unimplemented, +} from '../controllers/viewController.js'; + +const viewRouter = express.Router(); + +viewRouter.get('/', about); +viewRouter.get('/privacy', privacy); +viewRouter.get('/search', unimplemented); +viewRouter.get('/profile/:name', unimplemented); +viewRouter.get('/topic/:name', unimplemented); +viewRouter.get('/unanswered/:slug', unansweredQuestion); +viewRouter.get('/:slug', answeredQuestion); + +export default viewRouter; diff --git a/server.js b/server.js new file mode 100644 index 0000000..fa1cb15 --- /dev/null +++ b/server.js @@ -0,0 +1,30 @@ +//////////////////////////////////////////////////////// +// IMPORTS +//////////////////////////////////////////////////////// +import dotenv from 'dotenv/config'; // importing .env vars +import app from './app.js'; +import log from './utils/log.js'; + +//////////////////////////////////////////////////////// +// HANDLING NODEJS ERRORS +//////////////////////////////////////////////////////// +process.on('uncaughtException', err => { + log(err, 'error'); + process.exit(1); +}); + +process.on('unhandledRejection', err => { + log(err, 'error'); + server.close(() => process.exit(1)); +}); + +//////////////////////////////////////////////////////// +// STARTING SERVER +//////////////////////////////////////////////////////// +const port = 3000 || process.env.PORT; +const server = app.listen(port, () => + log( + `server running in ${process.env.NODE_ENV} mode at port ${port}`, + 'success' + ) +); diff --git a/utils/AppError.js b/utils/AppError.js new file mode 100644 index 0000000..30a6a36 --- /dev/null +++ b/utils/AppError.js @@ -0,0 +1,26 @@ +//////////////////////////////////////////////////////// +// CLASS DECLARATION +//////////////////////////////////////////////////////// +/** + * + * @param {string} message error message to display + * @param {number} statusCode status code to send(defaults to 500) + * @description custom error class to handle operational errors elegantly + */ +const AppError = class extends Error { + constructor(message, statusCode = 500) { + super(message); + this.statusCode = statusCode; + this.status = `${statusCode}`.startsWith('4') ? 'fail' : 'error'; + // adding custom name to distinguish operational errors(errors that we know will occur and will handle them accordingly) from non-operational errors. + this.name = 'OperationalError'; + // since this method is only available in v8(which is what nodejs uses), using it conditionally. + // this.constructor just points back to AppError + Error.captureStackTrace(this, this.constructor); + } +}; + +//////////////////////////////////////////////////////// +// EXPORTS +//////////////////////////////////////////////////////// +export default AppError; diff --git a/utils/axiosInstance.js b/utils/axiosInstance.js new file mode 100644 index 0000000..c74cb18 --- /dev/null +++ b/utils/axiosInstance.js @@ -0,0 +1,28 @@ +//////////////////////////////////////////////////////// +// IMPORTS +//////////////////////////////////////////////////////// +import axios from 'axios'; + +//////////////////////////////////////////////////////// +// FUNCTION +//////////////////////////////////////////////////////// +/** + * @description an axios instance having base url already set + */ +const axiosInstance = axios.create({ + baseURL: 'https://www.quora.com', + // conditionally adding headers to the request config using ES6 spreading and short-circuiting + headers: { + ...(process.env.AXIOS_USER_AGENT && { + 'User-Agent': process.env.AXIOS_USER_AGENT, + }), + ...(process.env.ACCEPT && { + Accept: process.env.ACCEPT, + }), + }, +}); + +//////////////////////////////////////////////////////// +// EXPORTS +//////////////////////////////////////////////////////// +export default axiosInstance; diff --git a/utils/catchAsyncErrors.js b/utils/catchAsyncErrors.js new file mode 100644 index 0000000..d1232a8 --- /dev/null +++ b/utils/catchAsyncErrors.js @@ -0,0 +1,18 @@ +/////////////////////////////////////////////////////////////// +// FUNCTION +/////////////////////////////////////////////////////////////// +/** + * + * @param {function} asyncFunction an async function whose errors need to be caught + * @returns a function which executes all the code inside the passed asyncFunction, and passes down the errors to the express middleware, if any. + * + * @description an alternative to try catch blocks to handle errors in async functions + */ +const catchAsyncErrors = asyncFunction => (req, res, next) => { + asyncFunction(req, res, next).catch(err => next(err)); +}; + +/////////////////////////////////////////////////////////////// +// EXPORTS +/////////////////////////////////////////////////////////////// +export default catchAsyncErrors; diff --git a/utils/constants.js b/utils/constants.js new file mode 100644 index 0000000..409d730 --- /dev/null +++ b/utils/constants.js @@ -0,0 +1,13 @@ +//////////////////////////////////////////////////////// +// EXPORTS +//////////////////////////////////////////////////////// + +// some routes are accidentally thought of as slug for answered question. filtering those here. +export const nonSlugRoutes = [ + 'favicon.ico', + 'apple-touch-icon.png', + 'favicon-32x32.png', + 'favicon-16x16.png', + 'safari-pinned-tab.svg', + 'site.webmanifest', +]; diff --git a/utils/log.js b/utils/log.js new file mode 100644 index 0000000..3d48ec9 --- /dev/null +++ b/utils/log.js @@ -0,0 +1,42 @@ +//////////////////////////////////////////////////////// +// FUNCTION +//////////////////////////////////////////////////////// + +/** + * + * @param {string | {}} toLog stuff to log + * @param {'success'| 'error'} type optional type param to color the log accordingly + * @description logs color coded stuff to the stdout so that it's easily distinguishable + */ +function log(toLog, type = null) { + // setting defaults + const data = { + message: toLog?.message || toLog, + stack: toLog?.stack || '', + colorCode: 33, + emoji: '🟡', + }; + + // changing some values according to the type provided + switch (type) { + case 'success': + data.colorCode = 32; + data.emoji = '🟢'; + break; + + case 'error': + data.colorCode = 31; + data.emoji = '🔴'; + break; + } + + // actually logging to the console + console.log( + `\u001b[${data.colorCode}m ${data.emoji} ${data.message}\n${data.stack} \u001b[39m` + ); +} + +//////////////////////////////////////////////////////// +// EXPORTS +//////////////////////////////////////////////////////// +export default log; diff --git a/views/pug/_answer.pug b/views/pug/_answer.pug new file mode 100644 index 0000000..65e6187 --- /dev/null +++ b/views/pug/_answer.pug @@ -0,0 +1,94 @@ +//- putting spans in semantically correct tags(to the extent possible) +mixin spansChecker(spans) + each span in spans + - if(span.modifiers.math) + //- setting that var in the base.pug value to true here. + - someAnswerContainsMath = true; + span.answer__span-math= `\\(${span.text}\\)` + - else if (span.modifiers.code) + code.answer__span-code= span.text + - else if (span.modifiers.embed) + a.answer__span-link.answers__link(href=span.modifiers.embed.url)= span.modifiers.embed.title || 'link' + - else if (span.modifiers.link) + //- removing quora.com from the link in case it is a quora.com link. + a.answer__span-link.answers__link(href=span.modifiers.link.url.split('https://www.quora.com')[1] || span.modifiers.link.url)=span.text + - else if (span.modifiers.bold) + strong.answer__span-bold= span.text + - else if (span.modifiers.italic) + em.answer__span-bold= span.text + - else + span.answer__span-plain= span.text + +//- mixin to format date and stuff +mixin addDate(date) + - const dateObj = new Date(date / 1000); + time.answer__metadata-data(datetime= dateObj.toISOString(), title=dateObj.toUTCString())= Intl.DateTimeFormat('en-US', {year: '2-digit', month: 'short', day: 'numeric' }).format(dateObj) + +article.answer + //- stuff about author + figure.answer__author + figcaption.answer__author-name + if answerObj.author.isAnon + span Anonymous + else + a.answers__link(href=answerObj.author.profile)= answerObj.author.name + if answerObj.author.isVerified + svg.answer__icon + title verified + use(href='/misc/sprite.svg#icon-verified') + img.answer__author-image(src=answerObj.author.avatar, alt=`${answerObj.author.name}'s profile photo`) + p.answer__author-credentials(aria-label=`${answerObj.author.name}'s credentials`)= answerObj.author.credential || '' + + h3.answer__question.heading.heading__tertiary + span Originally answered to  + a.answer__link.answers__link(href=answerObj.OriginalQuestion.url) + +spansChecker(answerObj.OriginalQuestion.text.spans) + + //- main answer goes here + .answer__text + //- putting paragraphs in semantically correct tags(to the extent possible) + each para in answerObj.text + -if(para.type==='image') + img.answer__para.answer__image(src=para.spans[0].modifiers.master_url, alt='User embedded image') + - else if (para.type==='code') + pre.answer__para.answer__code: code + +spansChecker(para.spans) + - else if(para.quoted) + blockquote.answer__para.answer__quote + +spansChecker(para.spans) + - else + p(class=`answer__para answer__${para.type}`) + +spansChecker(para.spans) + //- for quora plus answers. since quora only shows half answer, we gotta warn viewer. + unless answerObj.isViewable + p.answer__unviewable + svg.answer__icon: use(href='/misc/sprite.svg#icon-danger') + | This is a Quora plus answer and hence full answer is not viewable. + + //- metadata about answer(likes, shares, etc) + .answer__metadata + p.answer__metadata-item + svg.answer__icon: use(href='/misc/sprite.svg#icon-clock') + +addDate(answerObj.creationTime) + span.answer__metadata-text  Answered + if answerObj.updatedTime + p.answer__metadata-item + svg.answer__icon: use(href='/misc/sprite.svg#icon-clock-edit') + +addDate(answerObj.updatedTime) + span.answer__metadata-text  Edited + p.answer__metadata-item + svg.answer__icon: use(href='/misc/sprite.svg#icon-eye') + span.answer__metadata-data= answerObj.numViews + span.answer__metadata-text  Views + p.answer__metadata-item + svg.answer__icon: use(href='/misc/sprite.svg#icon-arrow-up') + span.answer__metadata-data= answerObj.numUpvotes + span.answer__metadata-text  Upvotes + p.answer__metadata-item + svg.answer__icon: use(href='/misc/sprite.svg#icon-comments') + span.answer__metadata-data= answerObj.numComments + span.answer__metadata-text  Comments + p.answer__metadata-item + svg.answer__icon: use(href='/misc/sprite.svg#icon-share') + span.answer__metadata-data= answerObj.numShares + span.answer__metadata-text  Shares diff --git a/views/pug/_footer.pug b/views/pug/_footer.pug new file mode 100644 index 0000000..b88fba2 --- /dev/null +++ b/views/pug/_footer.pug @@ -0,0 +1,15 @@ +footer.footer(class=`${title ==='About' ? 'footer__about' : ''}`) + block footer + //- more stuff will be prepended here on about page + nav.footer__nav-box(aria-label='Primary navigation') + ul.footer__nav + - if (title !=='About') + li.footer__nav-item: a.footer__nav-link.footer__link(href="/") About + + li.footer__nav-item: a.footer__nav-link.footer__link(href="https://github.com/zyachel/quetre") Source Code + li.footer__nav-item: a.footer__nav-link.footer__link(href="/privacy") Privacy + li.footer__nav-item: a.footer__nav-link.footer__link(href="#") Back to top + + p.footer__license Licensed under  + a.footer__link(href="https://www.gnu.org/licenses/agpl-3.0.html") GNU AGPLv3 + | . \ No newline at end of file diff --git a/views/pug/_header.pug b/views/pug/_header.pug new file mode 100644 index 0000000..02e5db5 --- /dev/null +++ b/views/pug/_header.pug @@ -0,0 +1,13 @@ +header.header(class=`${title === 'About' ? 'header__about': ''}`) + .header__bar + a.header__link.header__logo(href='/') Quetre + + //- for nav on about page + block header__nav + + button.button.theme-changer.header__theme(aria-label='Change Theme') + svg.icon.icon__theme.theme-changer__icon.theme-changer__icon--sun: use(href='/misc/sprite.svg#icon-sun') + svg.icon.icon__theme.theme-changer__icon.theme-changer__icon--moon: use(href='/misc/sprite.svg#icon-moon') + + //- for info line on about page + block header__info \ No newline at end of file diff --git a/views/pug/about.pug b/views/pug/about.pug new file mode 100644 index 0000000..8fa5496 --- /dev/null +++ b/views/pug/about.pug @@ -0,0 +1,98 @@ +extends base + +block header__nav + nav.header__nav-box(aria-label='Table of Contents'): ul.header__nav + li.header__nav-item + a.header__link.header__nav-link(href="#features") Features + li.header__nav-item + a.header__link.header__nav-link(href="#faqs") FAQs + li.header__nav-item + a.header__link.header__nav-link(href="#contact") Contact + li.header__nav-item + a.header__link.header__nav-link(href="https://github.com/zyachel/quetre") Source + + +block header__info + .header__info + h1.heading.heading__primary.header__hero A libre front-end for Quora + a.header__link.header__down(href='#features', aria-label='go to features section'): svg.icon.icon__down: use(href='/misc/sprite.svg#icon-down') + +block content + main#main.main.about + section.about__features.features#features + h2.heading.heading__secondary.about__heading-secondary.features__heading Key features + .features__list + .features__feature + svg.features__feature-icon: use(href='/misc/sprite.svg#icon-spy') + h3.heading.heading__tertiary.features__feature-heading Privacy focused + p.features__feature-text All requests except for images are proxied which makes it impossible for Quora to collate meaningful data points about you. + .features__feature + svg.features__feature-icon: use(href='/misc/sprite.svg#icon-fingerprint') + h3.heading.heading__tertiary.features__feature-heading No ads or tracking + p.features__feature-text Absolutely no ads, no tracking, no browser fingerprinting, and no telemetry of any kind. + .features__feature + svg.features__feature-icon: use(href='/misc/sprite.svg#icon-responsive') + h3.heading.heading__tertiary.features__feature-heading Fully responsive layout + p.features__feature-text Utilises modern CSS features like CSS Grid and Flexbox to make the website fully responsive for all screen sizes. + .features__feature + svg.features__feature-icon: use(href='/misc/sprite.svg#icon-bolt') + h3.heading.heading__tertiary.features__feature-heading Lightweight and fast + p.features__feature-text As the website contains no bloat, pages load in a jiffy and request sizes are tiny. + .features__feature + svg.features__feature-icon: use(href='/misc/sprite.svg#icon-palette') + h3.heading.heading__tertiary.features__feature-heading Dark and light themes + p.features__feature-text Whether you're a nightowl or bright screen lover, you'll enjoy curated color scheme for your taste. + .features__feature + svg.features__feature-icon: use(href='/misc/sprite.svg#icon-code') + h3.heading.heading__tertiary.features__feature-heading Unofficial API support + p.features__feature-text just add  + code /api/v1/ + | after the domain name in the URL and get a JSON repsonse. + + section.about__faqs.faqs#faqs + h2.heading.heading__secondary.about__heading-secondary.faqs__heading FAQs + .faqs__list + details.faqs__faq + summary.faqs__question There are some unreachable routes. + svg.faqs__icon: use(href='/misc/sprite.svg#icon-open') + p.faqs__answer I'm working to implement them soon. + details.faqs__faq + summary.faqs__question Why is website connecting to '*.quoracdn.net' and 'cdn.jsdelivr.net'? + svg.faqs__icon: use(href='/misc/sprite.svg#icon-open') + p.faqs__answer For the moment, images aren't proxied but directly fetched from quora. Hence the connection to quoracdn. As for the connection to jsdelivr, it is for an open source library –  + a.about__link(href='https://www.mathjax.org/') Mathjax + | – which is used to display math eqations nicely. If I get enough time, I'll include it locally. + details.faqs__faq + summary.faqs__question Why are some math equations showing up weirdly? + svg.faqs__icon: use(href='/misc/sprite.svg#icon-open') + p.faqs__answer If you're browsing with JavaScript disabled, then the Mathjax library isn't able to load and format tex equations. I'd recommend to enable JavaScript for it since there's no other way to show them in the browser. Even Quora uses Mathjax. + details.faqs__faq + summary.faqs__question Why can I only view a couple of answers? + svg.faqs__icon: use(href='/misc/sprite.svg#icon-open') + p.faqs__answer Quora doesn't show all answers at once. It only loads more answers as the user scrolls down. Furthermore, it uses many unique IDs to send ajax requests to fetch those answers. So, all in all, getting more answers isn't impossible but quite difficult requiring some serious amount of time on their website in order to figure out how it all happens. I'm short on time for now. + details.faqs__faq + summary.faqs__question I have some ideas/want to help. + svg.faqs__icon: use(href='/misc/sprite.svg#icon-open') + p.faqs__answer You're most welcome to do that. Just  + a.about__link(href='#contact') contact me + | or fork  + a.about__link(href='https://github.com/zyachel/quetre') the repo + | and make a pull request. + details.faqs__faq + summary.faqs__question Why the name Quetre? + svg.faqs__icon: use(href='/misc/sprite.svg#icon-open') + p.faqs__answer Quora is  + a.about__link(href='/Why-is-Quora-called-Quora-4') supposedly + | a portmanteau of 'Questions or answers'. In the same vein, Quetre is a portmanteau of 'Questions and answers', but  + a.about__link(href="https://lingva.ml/en/la/questions%20and%20answers%0A") in Latin + |. + + section.about__contact#contact + h2.heading.heading__secondary.about__heading-secondary.about__contact-heading Contact + address.about__contact-text Reach me via  + a.about__link(href='https://matrix.to/#/@ninal:matrix.org') Matrix + | or  + a.about__link(href="mailto:aricla@protonmail.com") Email + | in case you got any suggestions or feedback, or if you just want to drop a hi :) +block prepend footer + p.footer__logo Quetre \ No newline at end of file diff --git a/views/pug/answers.pug b/views/pug/answers.pug new file mode 100644 index 0000000..c9d5486 --- /dev/null +++ b/views/pug/answers.pug @@ -0,0 +1,39 @@ +extends base + +mixin checkMath(spans) + each span in spans + -if(span.modifiers?.math) + span= `\\(${span.text}\\)` + -else + span= span.text + +block content + main#main.main.answers + + .answers__question-box + h1.heading.heading__primary.answers__question + +checkMath(data.question.text.spans) + .answers__metadata + p.answers__answers-total= `${ data.numAnswers ? 'Total answers: ' + data.numAnswers : 'Unanswered'}` + p.answers__answers-shown Viewable answers: #{data.answers.length} + a.answers__question-link.answers__link(href='https://quora.com' + data.question.url) View on Quora + + .answers-box.answers__answers-box + h2.heading.heading__secondary.answers__answers-box-heading Answers + .answers-box__list + each answerObj in data.answers + include _answer + + aside.topics.answers__topics + h2.heading.heading__secondary.answers__topic-heading Tagged Topics + ul.topics__list + each topic in data.topics + li.topics__item: a.topics__link.answers__link(href=topic.url)= topic.name + + + aside.related.answers__related + h2.heading.heading__secondary.answers__related-heading Related Questions + ul.related__questions + each question in data.relatedQuestions + li.related__question-item: a.related__question-link.answers__link(href=question.url) + +checkMath(question.text.spans) diff --git a/views/pug/base.pug b/views/pug/base.pug new file mode 100644 index 0000000..548e78b --- /dev/null +++ b/views/pug/base.pug @@ -0,0 +1,49 @@ +doctype html +html(lang='en') + // see the full source code on github in case you're interested. + head + meta(charset='UTF-8') + meta(http-equiv='X-UA-Compatible', content='IE=edge') + meta(name='viewport', content='width=device-width, initial-scale=1.0') + //- appending title to name in case it exists, else showing name as the title of the page + title= title ? `${title} | Quetre`: 'Quetre' + meta(name="description", content="A libre front-end for Quora. See any answer without being tracked, without being required to log in, and without being bombarded by pesky ads.") + //- preloading css and fonts for performance gains + link(rel='preload', href='/fonts/WorkSans.woff2', as='font', type='font/woff2', crossorigin) + link(rel='preload', href='/fonts/Quicksand.woff2', as='font', type='font/woff2', crossorigin) + link(rel='preload stylesheet', href='/css/styles.css', as='style', crossorigin) + //- favicons + link(rel="shortcut icon", href="/favicon.ico", type="image/x-icon") + link(rel="icon", href="/favicon.ico", type="image/x-icon") + link(rel="icon", type="image/png", sizes="32x32", href="/favicon-32x32.png") + link(rel="apple-touch-icon", sizes="180x180", href="/apple-touch-icon.png") + link(rel="mask-icon", href="/safari-pinned-tab.svg", color="#0f0e15") + link(rel="manifest", href="/site.webmanifest") + meta(name="msapplication-TileColor", content="#0f0e15") + meta(name="theme-color", content="#0f0e15") + + + + + //- own script + script(src='/js/index.js', defer) + + //- initially setting this var to false. will update in case an answer contains some math expression + - let someAnswerContainsMath = false; + + body.body + -if (title !=='About') + a.skip-link(href="#main") Skip to main content + //- stuff that's visible on page goes here + include _header + block content + p placeholder text + include _footer + + //- including mathjax script only when some answer has math expressions(using the var from above) + if someAnswerContainsMath + script#MathJax-script( + type='text/javascript', + src='https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-chtml.js', + async + ) \ No newline at end of file diff --git a/views/pug/error.pug b/views/pug/error.pug new file mode 100644 index 0000000..e809b57 --- /dev/null +++ b/views/pug/error.pug @@ -0,0 +1,15 @@ +extends base + +block content + main#main.main.error + p.error__code= statusCode + p.error__message= message + + //- will only apply in dev mode + if stack + .error__stack-box: pre.error__stack + code.error__text= stack + + p.error__return Go back to the  + a.error__link(href="/") Home Page + |. \ No newline at end of file diff --git a/views/pug/privacy.pug b/views/pug/privacy.pug new file mode 100644 index 0000000..ddf0d96 --- /dev/null +++ b/views/pug/privacy.pug @@ -0,0 +1,29 @@ +extends base + +block content + main#main.main.privacy + h1.heading.heading__primary.privacy__heading-primary Privacy Policy + + section.privacy__short + h2.heading.heading__secondary.privacy__heading-secondary The short version + p.privacy__short-text Quetre doesn't collect any personally identifiable data. + + section.faqs.privacy__long + h2.heading.heading__secondary.privacy__heading-secondary The long version + .faqs__list + details.faqs__faq + summary.faqs__question Data actively collected by Quetre + svg.faqs__icon: use(href='/misc/sprite.svg#icon-open') + p.faqs__answer None. + details.faqs__faq + summary.faqs__question Data passively collected by Quetre + svg.faqs__icon: use(href='/misc/sprite.svg#icon-open') + p.faqs__answer Whenever you hit some error page, an error object is logged to the console on the server. That error object contains the resource url you were trying to access, and the usual stack trace. That's it. + details.faqs__faq + summary.faqs__question Data stored locally in your browser + svg.faqs__icon: use(href='/misc/sprite.svg#icon-open') + p.faqs__answer A key called 'theme' is stored in local storage provided by your browser to store your theme preference should you override the default theme. To prevent this behaviour, either disable JavaScript or local storage for Quetre. + details.faqs__faq + summary.faqs__question Data collected by other services + svg.faqs__icon: use(href='/misc/sprite.svg#icon-open') + p.faqs__answer Since Quetre is deployed on heroku, heroku might log your IP to prevent abuse. Also, as Quetre connects to '*.quoracdn.net' and 'cdn.jsdelivr.net' for images and mathjax library respectively, both of these service might log some data. So, follow due precaution. Using a VPN might be a good idea. Or even better, consider hosting your own instance. diff --git a/views/sass/_abstracts.scss b/views/sass/_abstracts.scss new file mode 100644 index 0000000..85d16e4 --- /dev/null +++ b/views/sass/_abstracts.scss @@ -0,0 +1,155 @@ +//////////////////////////////////////////////////////// +// IMPORTS +//////////////////////////////////////////////////////// +@use 'sass:map'; +@use 'sass:color'; + +//////////////////////////////////////////////////////// +// COLORS +//////////////////////////////////////////////////////// +$clr-primary: #e3f6f5; +$clr-secondary: #272343; +$clr-highlight: #ff5277; + +$misc-vars: ( + ff-primary: ( + 'Worksans', + sans-serif, + ), + ff-alt-alpha: ( + 'QuickSand', + sans-serif, + ), + fs-160: 1.6rem, + fs-180: 1.8rem, + fs-200: 2rem, + fs-220: 2.2rem, + fs-250: 2.5rem, + fs-270: 2.7rem, + fs-300: 3rem, + fs-350: 3.5rem, + fs-400: 4rem, + fs-500: 5rem, + fs-600: 6rem, + fs-1000: 10rem, + fs-1500: 15rem, + space-050: 0.5rem, + space-100: 1rem, + space-200: 2rem, + space-300: 3rem, + space-400: 4rem, + space-500: 5rem, + space-800: 8rem, + space-1000: 10rem, +); + +$themed-vars: ( + // base + clr-base-bg: + ( + light: color.scale($clr-primary, $lightness: 90%), + dark: color.scale($clr-secondary, $lightness: -65%, $saturation: -40%), + ), + clr-base-heading: ( + light: color.scale($clr-secondary, $lightness: -5%), + dark: color.scale($clr-primary, $lightness: 50%, $saturation: -100%), + ), + clr-base-heading-alt-alpha: ( + light: color.scale($clr-secondary, $lightness: 5%), + dark: color.scale($clr-primary, $lightness: 10%), + ), + clr-base-text: ( + light: color.scale($clr-secondary, $lightness: -60%), + dark: color.scale($clr-primary, $whiteness: 90%, $blackness: 10%), + ), + clr-base-text-alt-alpha: ( + light: color.scale($clr-secondary, $whiteness: 20%), + dark: color.scale($clr-secondary, $whiteness: 100%), + ), + clr-code-bg: ( + light: color.scale($clr-primary, $lightness: 70%, $saturation: -70%), + dark: color.scale($clr-secondary, $lightness: -50%, $saturation: -50%), + ), + clr-code-text: ( + light: color.scale($clr-secondary, $lightness: 5%, $saturation: -100%), + dark: color.scale($clr-primary, $whiteness: 100%, $blackness: 30%), + ), + clr-base-icon: ( + light: color.scale($clr-primary, $lightness: -55%), + dark: color.scale($clr-primary, $lightness: -40%, $saturation: 90%), + ), + clr-base-icon-alt-alpha: ( + light: color.scale($clr-secondary, $lightness: 80%, $saturation: -100%), + dark: color.scale($clr-secondary, $lightness: -50%, $saturation: -50%), + ), + clr-base-link: ( + light: color.scale($clr-secondary, $lightness: 20%, $saturation: 20%), + dark: color.scale($clr-primary, $lightness: -15%, $saturation: -35%), + ), + clr-base-link-alt-alpha: ( + light: color.scale($clr-secondary, $lightness: 40%, $saturation: 20%), + dark: color.scale($clr-primary, $lightness: -35%, $saturation: -35%), + ), + // header, footer + grad-hf: + ( + light: ( + $clr-primary 70%, + color.scale($clr-primary, $lightness: 95%), + ), + dark: ( + color.scale($clr-secondary, $lightness: -60%, $saturation: 7%), + color.scale($clr-secondary, $lightness: -60%, $saturation: 5%), + color.scale($clr-secondary, $lightness: -60%, $saturation: 2%), + color.scale($clr-secondary, $lightness: -60%, $saturation: -0%), + color.scale($clr-secondary, $lightness: -62%, $saturation: -5%), + color.scale($clr-secondary, $lightness: -65%, $saturation: -40%), + ), + ), + clr-hf-bg: ( + light: $clr-primary, + dark: color.scale($clr-secondary, $lightness: -30%, $saturation: -30%), + ), + clr-hf-logo: ( + light: color.scale($clr-secondary, $lightness: 20%), + dark: color.scale($clr-primary, $lightness: -40%, $saturation: 20%), + ), + clr-hf-heading: ( + light: color.scale($clr-secondary, $lightness: 10%), + dark: color.scale($clr-primary, $lightness: -5%), + ), + clr-hf-text: ( + light: color.scale($clr-secondary, $lightness: -50%), + dark: color.scale($clr-primary, $lightness: 0%), + ), + clr-hf-link: ( + light: color.scale($clr-secondary, $lightness: 30%, $saturation: 30%), + dark: color.scale($clr-primary, $lightness: -10%), + ), + clr-hf-link-alt-alpha: ( + light: color.scale($clr-secondary, $lightness: 40%, $saturation: 60%), + dark: color.scale($clr-primary, $lightness: -30%), + ), + // misc + clr-selection-bg: + ( + light: color.scale($clr-secondary, $lightness: 15%), + dark: color.scale($clr-primary, $lightness: -85%), + ), + clr-selection-text: ( + light: color.scale($clr-primary, $lightness: 50%), + dark: color.scale($clr-primary, $lightness: 90%), + ), + clr-scrollbar-thumb: ( + light: color.scale($clr-secondary, $lightness: 15%), + dark: color.scale($clr-primary, $lightness: -40%), + ), + clr-scrollbar-thumb-alt-alpha: ( + light: color.scale($clr-secondary, $lightness: 30%), + dark: color.scale($clr-primary, $lightness: -60%), + ), + clr-focus: ( + light: color.scale($clr-highlight, $lightness: 0%, $saturation: 0%), + dark: color.scale($clr-highlight), + ) +); diff --git a/views/sass/_base.scss b/views/sass/_base.scss new file mode 100644 index 0000000..2de50fd --- /dev/null +++ b/views/sass/_base.scss @@ -0,0 +1,165 @@ +//////////////////////////////////////////////////////// +// IMPORTS +//////////////////////////////////////////////////////// +@use 'mixins' as *; + +//////////////////////////////////////////////////////// +// FONTS +//////////////////////////////////////////////////////// +@font-face { + font-family: 'WorkSans'; + src: url('/fonts/WorkSans.woff2'); + font-display: swap; +} +@font-face { + font-family: 'Quicksand'; + src: url('/fonts/Quicksand.woff2'); + font-display: swap; +} + +//////////////////////////////////////////////////////// +// RESET +//////////////////////////////////////////////////////// +html { + font-size: 62.5%; + scroll-behavior: smooth; + text-rendering: optimizeLegibility; +} + +body { + box-sizing: border-box; + line-height: 1.5; +} + +*, +*::before, +*::after { + box-sizing: inherit; + margin: 0; + padding: 0; +} + +//////////////////////////////////////////////////////// +// BASE STYLING +//////////////////////////////////////////////////////// +:root { + // normal vars + @include get-misc-vars; + // themed vars(default:light) + @include get-themed-vars; + + // dark themed vars when root has an attribute of theme set to 'dark' + &[theme='dark'] { + @include get-themed-vars(dark); + } + + // styles to be applied when js is disabled + &:not([js-enabled]) { + // if the user prefers dark theme + @media (prefers-color-scheme: dark) { + // using dark theme instead of default one + @include get-themed-vars(dark); + } + } +} + +.body { + font-size: var(--fs-160); + font-family: var(--ff-primary); + background-color: var(--clr-base-bg); + color: var(--clr-base-text); + + display: grid; + grid-template-rows: auto 1fr auto; + min-height: 100vh; + + transition: color 500ms ease, background-color 500ms ease; +} + +.main { + @include respond-to(bp-1900, true) { + width: 110em; + margin-inline: auto; + } +} + +//////////////////////////////////////////////////////// +// SELECTION & SCROLLBAR +//////////////////////////////////////////////////////// +::selection { + background: var(--clr-selection-bg); + color: var(--clr-selection-text); +} + +// for gecko-based browsers +@supports (scrollbar-width: auto) { + * { + scrollbar-width: auto; + scrollbar-color: var(--clr-scrollbar-thumb) transparent; + } +} + +// for webkit(and its fork blink) based browsers +@supports not (scrollbar-width: auto) { + ::-webkit-scrollbar { + height: 0.8em; + width: 0.8em; + } + + ::-webkit-scrollbar-thumb { + background: var(--clr-scrollbar-thumb); + border: 2px solid transparent; + background-clip: padding-box; + border-radius: 100vw; + + &:hover { + background-color: var(--clr-scrollbar-thumb-alt-alpha); + } + } + + ::-webkit-scrollbar-track { + background: transparent; + } +} + +//////////////////////////////////////////////////////// +// KEYBOARD NAVIGATION +//////////////////////////////////////////////////////// +:focus { + outline: 3px solid var(--clr-focus); + outline-offset: 0.2em; +} + +@supports selector(:focus-visible) { + :focus { + outline: none; + } + + :focus-visible { + outline: 3px solid var(--clr-focus); + outline-offset: 0.2em; + } +} + +//////////////////////////////////////////////////////// +// FOR MATHJAX +//////////////////////////////////////////////////////// +mjx-container.MathJax { + pointer-events: none; +} +/* +.CtxtMenu_ContextMenu, +.CtxtMenu_Info { + background-color: var(--clr-base-bg) !important; + font-family: inherit !important; + color: inherit !important; +} +.CtxtMenu_InfoTitle, +.CtxtMenu_InfoSignature, +.CtxtMenu_MenuClose .CtxtMenu_InfoClose, +.CtxtMenu_InfoContent { + font-family: inherit !important; + background: inherit !important; + color: inherit !important; +} +*/ diff --git a/views/sass/_components.scss b/views/sass/_components.scss new file mode 100644 index 0000000..bca8d6f --- /dev/null +++ b/views/sass/_components.scss @@ -0,0 +1,466 @@ +//////////////////////////////////////////////////////// +// IMPORTS +//////////////////////////////////////////////////////// +@use 'mixins' as *; + +//////////////////////////////////////////////////////// +// SKIP TO MAIN CONTENT LINK +//////////////////////////////////////////////////////// +.skip-link { + position: absolute; + left: 50%; + // background: var(--clr-base-bg); + color: var(--clr-base-heading); + text-decoration: none; + text-align: center; + font-weight: 500; + padding: 0 var(--space-100); + border-radius: 0 0 5px 5px; + font-size: var(--fs-180); + transform: translate(-50%, -150%); + + transition: transform 200ms ease; + + &:is(:focus, :focus-visible) { + transform: translate(-50%, 0); + } +} +//////////////////////////////////////////////////////// +// THEME CHANGER +//////////////////////////////////////////////////////// +.theme-changer { + border: none; + // outline: none; + background-color: transparent; + cursor: pointer; + position: relative; + + &__icon { + position: absolute; + inset: 0; + height: 100%; + width: 100%; + + transition: all 0.5s ease; + transform-origin: center; + + // initial config + &--sun { + transform: scale(0) rotateZ(-180deg); + } + + &--moon { + transform: scale(1) rotateZ(0); + } + } +} +// changing config when root has the attr of theme +:root[theme='dark'] { + .theme-changer__icon { + &--sun { + transform: scale(1) rotateZ(0); + } + + &--moon { + transform: scale(0) rotateZ(180deg); + } + } +} + +//////////////////////////////////////////////////////// +// ICONS +//////////////////////////////////////////////////////// +.icon { + max-height: var(--fs-500); + max-width: var(--fs-500); + fill: var(--clr-base-icon); + + &__down { + height: var(--fs-350); + width: var(--fs-350); + opacity: 0.3; + + @include respond-to(bp-450) { + height: var(--fs-250); + width: var(--fs-250); + } + } +} + +//////////////////////////////////////////////////////// +// HEADINGS +//////////////////////////////////////////////////////// +.heading { + color: var(--clr-base-heading); + font-weight: 600; +} + +//////////////////////////////////////////////////////// +// FEATURES +//////////////////////////////////////////////////////// +.features { + display: grid; + gap: var(--space-800); + + &__heading { + justify-self: center; + } + + &__list { + display: grid; + gap: var(--space-800); + grid-template-columns: repeat(auto-fit, minmax(40rem, 1fr)); + + @include respond-to(bp-900) { + gap: var(--space-500); + grid-template-columns: auto; + } + } + + &__feature { + display: grid; + gap: var(--space-100); + grid-template-rows: repeat(3, min-content); + font-size: var(--fs-160); + // justify-items: center; + // text-align: center; + } + + &__feature-icon { + fill: var(--clr-base-icon); + grid-row: 1 / 2; + + height: 3em; + width: 3em; + + @include respond-to(bp-750) { + height: 2em; + width: 2em; + } + } + + &__feature-heading { + grid-row: 2 / 3; + font-size: 1.3em; + } + &__feature-text { + grid-row: 3 / 4; + } + + @include respond-to(bp-900) { + gap: var(--space-500); + } + @include respond-to(bp-750) { + gap: var(--space-200); + } +} + +//////////////////////////////////////////////////////// +// FAQs +//////////////////////////////////////////////////////// +.faqs { + display: grid; + gap: var(--space-800); + justify-items: center; + + &__heading { + justify-self: center; + } + + &__list { + justify-self: strech; + display: grid; + gap: var(--space-500); + width: 100%; + // text-align: center; + + @include respond-to(bp-750) { + gap: var(--space-200); + } + } + + &__faq { + border: 1px solid var(--clr-base-icon-alt-alpha); + padding: var(--space-100); + } + + &__question { + padding: var(--space-100); + display: flex; + gap: var(--space-100); + justify-content: space-between; + align-items: center; + + color: var(--clr-base-heading-alt-alpha); + font-weight: 500; + font-size: var(--fs-180); + list-style-type: none; + + cursor: pointer; + } + &__icon { + height: 1em; + width: 1em; + fill: var(--clr-base-icon); + transition: all 200ms; + } + + &__faq[open] { + border: 1px solid var(--clr-base-icon); + } + + &__faq[open] &__question &__icon { + transform: rotateX(180deg); + } + + &__answer { + padding: var(--space-100); + } + + &__faq[open] &__answer { + animation: slide 200ms ease; + } + + @include respond-to(bp-900) { + gap: var(--space-500); + } + @include respond-to(bp-750) { + gap: var(--space-200); + } +} + +//////////////////////////////////////////////////////// +// ANSWERS +//////////////////////////////////////////////////////// +.answers-box { + display: grid; + gap: var(--space-200); + + &__list { + display: grid; + gap: var(--space-800); + } +} + +.answer { + display: grid; + gap: var(--space-200); + + // author area + &__author { + display: grid; + gap: 0 var(--space-100); + grid-template-columns: auto 1fr; + grid-template-rows: repeat(2, min-content); + font-size: var(--fs-160); + } + + &__author-name { + grid-column: 2 / -1; + align-self: end; + + color: var(--clr-base-heading-alt-alpha); + font-weight: 500; + + // for verified icon + display: flex; + gap: var(--space-050); + + // for name linking to profile + a { + font-size: 1.05em; + color: currentColor; + } + } + + &__author-credentials { + grid-column: 2 / -1; + align-self: start; + } + + &__author-image { + grid-row: 1 / -1; + grid-column: 1 / span 1; + + max-height: var(--fs-600); + max-width: var(--fs-600); + min-height: 100%; + min-width: 100%; + object-fit: cover; + + clip-path: circle(50% at 50% 50%); + } + + // question area + &__question { + font-size: 1.05em; + } + + // main answer formatting + &__text { + border-block: 1px solid var(--clr-base-icon-alt-alpha); + padding: var(--space-100); + + // lobotomised owl selector. equivalent to '> *:not(:first-of-type)' but has no/lowest specificity, and hence better for cascading. who says css isn't a programming language :p + > * + * { + // every direct child except first will have padding-top + padding-top: 0.3em; + } + + // some math eqations will overflow. + // in mathjax v3, they can't be broken as of now. this is the best solution i could come up with. + overflow-x: auto; + } + + // paragraphs + &__para { + // line-height: 1.3; + overflow-wrap: anywhere; //breaks long words without hyphens + } + + &__image { + max-width: 100%; + max-height: 100%; + object-fit: contain; + margin-inline: auto; + } + + &__quote { + padding-left: 1em; + border-left: 3px solid var(--clr-base-icon-alt-alpha); + color: var(--clr-base-text-alt-alpha); + } + + &__unordered-list { + display: list-item; + margin-left: 1em; + list-style: inside; + } + + &__ordered-list { + display: list-item; + list-style: decimal inside; + margin-left: 1em; + } + + &__code { + white-space: pre-wrap; + background: var(--clr-code-bg); + color: var(--clr-code-text); + padding: 0 1em; + } + + // spans + &__span-math { + } + + &__span-code { + white-space: pre-wrap; + } + &__span-bold { + font-weight: 500; + } + &__span-link { + @include format-link( + var(--clr-base-link), + var(--clr-base-link-alt-alpha), + true + ); + } + + &__unviewable { + // for aligning both text and svg + display: grid; + align-content: center; + justify-content: start; + grid-auto-flow: column; + gap: var(--space-100); + align-items: center; + + margin-top: var(--space-200); + color: var(--clr-base-heading-alt-alpha); + font-weight: 500; + // border: 1px solid var(--clr-base-icon-alt-alpha); + // padding: var(--space-100); + } + + // metadata(likes, shares, etc) + &__metadata { + justify-self: start; + + display: flex; + gap: var(--space-200); + align-items: center; + flex-wrap: wrap; + } + + &__metadata-item { + display: grid; + grid-template-columns: repeat(2, auto); + gap: 0 var(--space-050); + } + + &__icon { + grid-column: 1 / span 1; + justify-self: end; + align-self: center; + + height: 1.3em; + width: 1.3em; + fill: var(--clr-base-icon); + } + + &__metadata-data { + grid-column: -2 / -1; + justify-self: start; + } + + &__metadata-text { + grid-row: 2 / span 1; + grid-column: 1 / -1; + justify-self: center; + + font-size: 0.9em; + color: var(--clr-base-text-alt-alpha); + } +} + +//////////////////////////////////////////////////////// +// TOPICS +//////////////////////////////////////////////////////// +.topics { + display: grid; + gap: var(--space-200); + + &__list { + list-style: none; + display: grid; + gap: var(--space-100); + // display: flex; + // flex-wrap: wrap; + } + + &__item { + // flex: 0 1 auto + font-weight: 500; + } +} + +//////////////////////////////////////////////////////// +// RELATED +//////////////////////////////////////////////////////// +.related { + display: grid; + align-content: start; + gap: var(--space-200); + + &__questions { + list-style: none; + display: grid; + gap: var(--space-100); + } + + &__question-item { + font-weight: 500; + } +} diff --git a/views/sass/_layouts.scss b/views/sass/_layouts.scss new file mode 100644 index 0000000..3777d81 --- /dev/null +++ b/views/sass/_layouts.scss @@ -0,0 +1,181 @@ +//////////////////////////////////////////////////////// +// IMPORTS +//////////////////////////////////////////////////////// +@use 'mixins' as *; + +//////////////////////////////////////////////////////// +// HEADER +//////////////////////////////////////////////////////// + +.header { + background: var(--clr-hf-bg); + + &__about { + min-height: 100vh; + background: linear-gradient(var(--grad-hf)); + + display: grid; + grid-template-rows: auto 1fr; + } + + &__bar { + padding: var(--space-300) var(--space-500); + display: flex; + justify-content: space-between; + align-items: center; + gap: var(--space-300); + + @include respond-to(bp-750) { + padding: var(--space-300); + } + @include respond-to(bp-450) { + padding: var(--space-200) var(--space-300); + } + } + + &__logo { + font-size: var(--fs-300); + font-family: var(--ff-alt-alpha); + color: var(--clr-hf-logo); + font-weight: 700; + + @include respond-to(bp-450) { + font-size: var(--fs-250); + } + } + + &__link { + text-decoration: none; + } + + &__nav-box { + // margin-left: auto; // for pushing nav to the right + align-self: center; + @include respond-to(bp-650) { + // margin-left: auto; + display: none; + } + } + + &__nav { + display: flex; + gap: var(--space-300); + } + + &__nav-item { + list-style: none; + } + + &__nav-link { + font-size: var(--fs-200); + font-weight: 500; + // color: var(--clr-link); + @include format-link(var(--clr-hf-link), var(--clr-hf-link-alt-alpha)); + + @include respond-to(bp-750) { + font-size: var(--fs-180); + } + } + + &__theme { + height: var(--fs-300); + width: var(--fs-300); + + @include respond-to(bp-450) { + height: var(--fs-250); + width: var(--fs-250); + } + } + + &__info { + display: grid; + place-items: center; + grid-template-rows: 1fr min-content 0.2fr; // .2fr is bottom padding + text-align: center; + } + + &__hero { + font-size: var(--fs-600); + font-family: var(--ff-alt-alpha); + color: var(--clr-hf-heading); + font-weight: 700; + + @include respond-to(bp-900) { + font-size: var(--fs-500); + } + @include respond-to(bp-750) { + font-size: var(--fs-400); + padding: var(--space-200); + } + } + + &__down { + align-self: end; + } +} + +//////////////////////////////////////////////////////// +// FOOTER +//////////////////////////////////////////////////////// +.footer { + padding: var(--space-400); + display: grid; + gap: var(--space-300); + align-items: center; + + background: var(--clr-hf-bg); + + &__about { + padding-top: var(--space-800); + background: linear-gradient(to top, var(--grad-hf)); + + @include respond-to(bp-750) { + padding-top: var(--space-500); + } + } + + &__logo { + justify-self: center; + font-size: var(--fs-600); + color: var(--clr-hf-logo); + font-family: var(--ff-alt-alpha); + font-weight: 700; + + @include respond-to(bp-900) { + font-size: var(--fs-500); + } + + @include respond-to(bp-750) { + font-size: var(--fs-400); + } + } + + &__nav { + list-style: none; + display: flex; + justify-content: space-evenly; + gap: var(--space-200); + flex-wrap: wrap; + } + + &__nav-item { + font-size: var(--fs-180); + } + + &__link { + @include format-link(var(--clr-hf-link), var(--clr-hf-link-alt-alpha)); + font-weight: 500; + } + + &__license { + justify-self: center; + font-size: var(--fs-180); + color: var(--clr-hf-text); + text-align: center; + } + + @include respond-to(bp-450) { + padding: var(--space-300); + gap: var(--space-200); + } +} diff --git a/views/sass/_mixins.scss b/views/sass/_mixins.scss new file mode 100644 index 0000000..2d0c12b --- /dev/null +++ b/views/sass/_mixins.scss @@ -0,0 +1,106 @@ +//////////////////////////////////////////////////////// +// IMPORTS +//////////////////////////////////////////////////////// +@use 'sass:map'; +@use 'sass:meta'; +@use 'abstracts' as *; + +//////////////////////////////////////////////////////// +// ANIMATIONS +//////////////////////////////////////////////////////// +@keyframes slide { + 0% { + transform: translateY(-1rem); + opacity: 0; + } + 100% { + transform: translateY(0); + opacity: 1; + } +} + +//////////////////////////////////////////////////////// +// MIXINS +//////////////////////////////////////////////////////// +/////// CONVERTS SASS VARS TO CSS CUSTOM PROPERTIES +@mixin get-misc-vars { + // here $var is name of the key and $val is value + @each $var, $val in $misc-vars { + --#{$var}: #{$val}; + } +} + +/////// CONVERTS SASS (THEMED)VARS TO CSS CUSTOM PROPERTIES +@mixin get-themed-vars($theme: 'light') { + // here also, $var is name of the key and $val is value of that key, which in itself is a map. we get value from the map by passing in $theme. + @each $var, $val in $themed-vars { + --#{$var}: #{map.get($val, $theme)}; + } +} + +//////////////////////////////////////////////////////// +// LINKS +//////////////////////////////////////////////////////// +@mixin format-link( + $clr-base, + $clr-hover, + $underline: false, + $transition: true +) { + text-decoration: none; + color: $clr-base; + + &:hover { + color: $clr-hover; + } + + @if $transition { + transition: color 400ms ease; + } + + @if $underline { + border-bottom: 1px solid currentColor; + } +} + +//////////////////////////////////////////////////////// +// BREAKPOINT MANAGER +//////////////////////////////////////////////////////// + +// map to hold breakpoints +$breakpoints: ( + bp-1900: 118.75em, + bp-1200: 75em, + bp-1024: 64em, + bp-900: 56.25em, + bp-750: 46.875em, + bp-650: 40.625em, + bp-550: 34.375em, + bp-450: 28.125em, +); + +// main mixin +@mixin respond-to($given-breakpoint, $min: false) { + $breakpoint: null; + + @if (map.has-key($breakpoints, $given-breakpoint)) { + $breakpoint: map.get($breakpoints, $given-breakpoint); + + // when only nos are passed + } @else if (meta.type-of($given-breakpoint) == 'number') { + $breakpoint: $given-breakpoint; + + // throwing an error + } @else { + @error 'given breakpoint(#{$given-breakpoint}) is neither present in breakpoint map, nor is it a sensible number!'; + } + + $expr: 'max-width: #{$breakpoint}'; + + @if ($min) { + $expr: 'min-width: #{$breakpoint}'; + } + @media screen and ($expr) { + @content; + } +} diff --git a/views/sass/_pages.scss b/views/sass/_pages.scss new file mode 100644 index 0000000..53a550d --- /dev/null +++ b/views/sass/_pages.scss @@ -0,0 +1,282 @@ +//////////////////////////////////////////////////////// +// IMPORTS +//////////////////////////////////////////////////////// +@use 'mixins' as *; + +//////////////////////////////////////////////////////// +// ABOUT +//////////////////////////////////////////////////////// +.about { + display: grid; + gap: var(--space-500); + padding: var(--space-500) var(--space-800); + + &__heading-secondary { + font-size: var(--fs-400); + + @include respond-to(bp-750) { + font-size: var(--fs-350); + } + @include respond-to(bp-550) { + font-size: var(--fs-300); + } + } + + &__link { + @include format-link( + var(--clr-base-link), + var(--clr-base-link-alt-alpha), + true + ); + } + + &__features { + padding-block: var(--space-800); + + @include respond-to(bp-900) { + padding: 0; + } + } + + &__faqs { + padding: var(--space-800); + + @include respond-to(bp-1024) { + padding-inline: 0; + } + @include respond-to(bp-900) { + padding: 0; + } + } + + &__contact { + display: grid; + gap: var(--space-500); + padding: var(--space-800); + justify-items: center; + + @include respond-to(bp-1024) { + padding-inline: 0; + } + + @include respond-to(bp-900) { + padding: 0; + } + @include respond-to(bp-750) { + gap: var(--space-200); + } + } + + &__contact-heading { + } + + &__contact-text { + font-style: normal; + font-size: var(--fs-200); + text-align: center; + + @include respond-to(bp-750) { + font-size: var(--fs-180); + } + } + @include respond-to(bp-900) { + padding: var(--space-500); + + & > * { + padding-block: var(--space-300); + } + } + @include respond-to(bp-550) { + padding: var(--space-200); + } +} + +//////////////////////////////////////////////////////// +// PRIVACY +//////////////////////////////////////////////////////// +.privacy { + display: grid; + gap: var(--space-800); + padding: var(--space-800); + + &__heading-primary { + justify-self: center; + font-size: var(--fs-500); + + @include respond-to(bp-750) { + font-size: var(--fs-400); + } + @include respond-to(bp-550) { + font-size: var(--fs-350); + } + } + + &__heading-secondary { + font-size: var(--fs-400); + + @include respond-to(bp-750) { + font-size: var(--fs-300); + } + @include respond-to(bp-550) { + font-size: var(--fs-250); + } + } + + &__short { + justify-self: center; + display: grid; + gap: var(--space-200); + justify-items: center; + + @include respond-to(bp-750) { + gap: var(--space-100); + } + } + + &__short-text { + text-align: center; + font-size: var(--fs-200); + + @include respond-to(bp-750) { + font-size: var(--fs-180); + } + } + + @include respond-to(bp-900) { + gap: var(--space-500); + padding: var(--space-500); + } + @include respond-to(bp-550) { + padding: var(--space-200); + } +} + +//////////////////////////////////////////////////////// +// ERROR +//////////////////////////////////////////////////////// +.error { + padding: var(--space-500); + display: grid; + place-content: center; + gap: var(--space-300); + place-items: center; + + &__code { + font-size: var(--fs-1500); + font-family: var(--ff-alt-alpha); + font-weight: 700; + // letter-spacing: 0.1em; + line-height: 1; + + @include respond-to(bp-550) { + font-size: var(--fs-1000); + } + } + + &__message, + &__return { + font-size: var(--fs-200); + // font-family: var(--ff-alt-alpha); + color: var(--clr-base-text); + text-align: center; + + @include respond-to(bp-550) { + font-size: var(--fs-180); + } + } + + &__link { + @include format-link(var(--clr-base-link), var(--clr-base-link-alt-alpha)); + } + + &__stack-box { + // display: none; + overflow: auto; + max-width: 90%; + // background: red; + } + + &__stack { + padding: var(--space-300); + } +} + +//////////////////////////////////////////////////////// +// ANSWERED +//////////////////////////////////////////////////////// + +.answers { + // justify-self: center; + padding: var(--space-800); + + display: grid; + grid-template-columns: 2fr 1.2fr; + grid-template-rows: min-content min-content 1fr; + grid-auto-flow: dense; + align-items: start; + gap: var(--space-800); + + &__question-box { + grid-column: 1 / -1; + grid-row: 1 / span 1; + + display: grid; + gap: var(--space-200); + } + + &__answers-box { + grid-row: 2 / -1; + } + + &__topics { + grid-row: 2 / span 1; + } + + &__related { + grid-row: 3 / -1; + } + + &__question { + font-size: var(--fs-300); + + @include respond-to(bp-550) { + font-size: var(--fs-270); + } + } + + &__link { + @include format-link(var(--clr-base-link), var(--clr-base-link-alt-alpha)); + } + + &__metadata { + display: flex; + color: var(--clr-base-text-alt-alpha); + + :not(:last-child)::after { + margin-inline: var(--space-100); + content: '\00b7'; + font-weight: 700; + } + + @include respond-to(bp-550) { + display: block; + + :not(:last-child)::after { + display: none; + } + } + } + + @include respond-to(bp-1200) { + display: flex; + flex-direction: column; + // gap: var(--space-800); + } + @include respond-to(bp-900) { + padding: var(--space-500); + gap: var(--space-500); + } + @include respond-to(bp-550) { + padding-inline: var(--space-200); + } +} diff --git a/views/sass/main.scss b/views/sass/main.scss new file mode 100644 index 0000000..9d251b6 --- /dev/null +++ b/views/sass/main.scss @@ -0,0 +1,7 @@ +//////////////////////////////////////////////////////// +// IMPORTS +//////////////////////////////////////////////////////// +@use 'base'; +@use 'components'; +@use 'layouts'; +@use 'pages';