├── .gitignore ├── LICENSE ├── README.md ├── components ├── Cart.js ├── Category.js ├── Container.js ├── Footer.js ├── Header.js ├── Hero.js ├── Pagination.js ├── Product.js ├── ProductDetail.js └── Products.js ├── package-lock.json ├── package.json ├── pages ├── _app.js ├── api │ └── hello.js ├── index.js ├── products │ ├── [id].js │ ├── category │ │ └── [[...cat]].js │ └── index.js └── search │ └── [term].js ├── postcss.config.js ├── public ├── favicon.ico ├── images │ ├── angular.jpg │ ├── cplusplus.jpg │ ├── css.jpg │ ├── github.jpg │ ├── hero.jpg │ ├── html.jpg │ ├── java.jpg │ ├── javascript.jpg │ ├── mongodb.png │ ├── node.js.jpg │ ├── npm.jpg │ ├── python.jpg │ ├── react.jpg │ ├── tailwind.jpg │ ├── vite.jpg │ ├── vscode.jpg │ └── vue.jpg └── vercel.svg └── tailwind.config.js /.gitignore: -------------------------------------------------------------------------------- 1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. 2 | 3 | # dependencies 4 | /node_modules 5 | /.pnp 6 | .pnp.js 7 | 8 | # testing 9 | /coverage 10 | 11 | # next.js 12 | /.next/ 13 | /out/ 14 | 15 | # production 16 | /build 17 | 18 | # misc 19 | .DS_Store 20 | *.pem 21 | 22 | # debug 23 | npm-debug.log* 24 | yarn-debug.log* 25 | yarn-error.log* 26 | 27 | # local env files 28 | .env.local 29 | .env.development.local 30 | .env.test.local 31 | .env.production.local 32 | 33 | # vercel 34 | .vercel 35 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | Copyright [2022] [MongoDB Inc.] 179 | 180 | Licensed under the Apache License, Version 2.0 (the "License"); 181 | you may not use this file except in compliance with the License. 182 | You may obtain a copy of the License at 183 | 184 | http://www.apache.org/licenses/LICENSE-2.0 185 | 186 | Unless required by applicable law or agreed to in writing, software 187 | distributed under the License is distributed on an "AS IS" BASIS, 188 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 189 | See the License for the specific language governing permissions and 190 | limitations under the License. 191 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # MongoDB E-Commerce Project 2 | 3 | [Live Ecommerce Site](https://mongodb-ecommerce.vercel.app/) 4 | -------------------------------------------------------------------------------- /components/Cart.js: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import Image from "next/image"; 3 | import { 4 | XIcon, 5 | PlusCircleIcon, 6 | ArrowNarrowRightIcon, 7 | } from "@heroicons/react/outline"; 8 | 9 | const Cart = ({ isCartOpen, setIsCartOpen }) => { 10 | return ( 11 |
16 |
17 |

Your cart

18 | 24 |
25 |
26 |
27 |
28 | React T-Shirt 36 |
37 |

React T-Shirt

38 |
39 | 42 | 1 43 | 46 |
47 |
48 |
49 | $39 50 |
51 |
52 |
53 | HTML T-Shirt 61 |
62 |

HTML T-Shirt

63 |
64 | 67 | 2 68 | 71 |
72 |
73 |
74 | $39 75 |
76 |
77 |
78 | MongoDB T-Shirt 86 |
87 |

MongoDB T-Shirt

88 |
89 | 92 | 1 93 | 96 |
97 |
98 |
99 | $39 100 |
101 |
102 |
103 | 108 | 111 |
112 |
113 | 114 | Chechout 115 | 116 | 117 |
118 | ); 119 | }; 120 | 121 | export default Cart; 122 | -------------------------------------------------------------------------------- /components/Category.js: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { useRouter } from "next/router"; 3 | 4 | const Category = ({ category, categories, productCount }) => { 5 | const router = useRouter(); 6 | const handleSelect = (cat) => { 7 | router.push({ 8 | pathname: `/products/category/${cat}`, 9 | }); 10 | }; 11 | 12 | return ( 13 | <> 14 |
15 |
16 |

17 | {category} 18 |

19 | {productCount} 20 |
21 |
22 | 35 | 49 |
50 |
51 | 52 | ); 53 | }; 54 | 55 | export default Category; 56 | -------------------------------------------------------------------------------- /components/Container.js: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | 3 | const Container = ({ children }) => { 4 | return ( 5 |
6 |
{children}
7 |
8 | ); 9 | }; 10 | 11 | export default Container; 12 | -------------------------------------------------------------------------------- /components/Footer.js: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import Link from "next/link"; 3 | 4 | const Footer = () => { 5 | return ( 6 | 14 | ); 15 | }; 16 | 17 | export default Footer; 18 | -------------------------------------------------------------------------------- /components/Header.js: -------------------------------------------------------------------------------- 1 | import React, { useState, useEffect } from "react"; 2 | import Link from "next/link"; 3 | import { useRouter } from "next/router"; 4 | import * as Realm from "realm-web"; 5 | import { 6 | ShoppingCartIcon, 7 | MenuIcon, 8 | SearchIcon, 9 | } from "@heroicons/react/outline"; 10 | import Cart from "./Cart"; 11 | 12 | const Header = () => { 13 | const router = useRouter(); 14 | const [isMenuOpen, setIsMenuOpen] = useState(false); 15 | const [isCartOpen, setIsCartOpen] = useState(false); 16 | const [searchTerm, setSearchTerm] = useState(""); 17 | const [autoComplete, setAutoComplete] = useState([]); 18 | 19 | useEffect(async () => { 20 | if (searchTerm.length) { 21 | // add your Realm App Id to the .env.local file 22 | const REALM_APP_ID = process.env.NEXT_PUBLIC_REALM_APP_ID; 23 | const app = new Realm.App({ id: REALM_APP_ID }); 24 | const credentials = Realm.Credentials.anonymous(); 25 | try { 26 | const user = await app.logIn(credentials); 27 | const searchAutoComplete = await user.functions.searchAutoComplete( 28 | searchTerm 29 | ); 30 | setAutoComplete(() => searchAutoComplete); 31 | } catch (error) { 32 | console.error(error); 33 | } 34 | } else { 35 | setAutoComplete([]); 36 | } 37 | }, [searchTerm]); 38 | 39 | const handleSubmit = (e) => { 40 | e.preventDefault(); 41 | 42 | setSearchTerm(""); 43 | router.push({ 44 | pathname: `/search/${searchTerm}`, 45 | }); 46 | }; 47 | 48 | const handleSelect = (id) => { 49 | setSearchTerm(""); 50 | router.push({ 51 | pathname: `/products/${id}`, 52 | }); 53 | }; 54 | 55 | return ( 56 | <> 57 |
58 |
59 |
60 | 61 |
62 | MongoStore 63 |
64 | 65 |
66 | 72 | 73 |
74 | 82 |
83 |
84 |
85 | 86 | 118 | 119 |
120 | 121 | 122 | 123 |
124 | setSearchTerm(e.target.value)} 129 | value={searchTerm} 130 | /> 131 |
132 | {autoComplete.length > 0 && ( 133 |
    134 | {autoComplete.map((item) => { 135 | return ( 136 |
  • handleSelect(item._id)} 140 | > 141 | {item.name} 142 |
  • 143 | ); 144 | })} 145 |
146 | )} 147 |
148 |
149 |
150 | 151 | 152 | ); 153 | }; 154 | 155 | export default Header; 156 | -------------------------------------------------------------------------------- /components/Hero.js: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import Image from "next/image"; 3 | import Link from "next/link"; 4 | import { ArrowNarrowRightIcon } from "@heroicons/react/outline"; 5 | 6 | const Hero = () => { 7 | return ( 8 |
9 | Hero Image 16 |
17 |
18 |

Tech Shirts

19 |

20 | Lorem ipsum dolor sit amet, consectetur adipisicing elit. Doloremque 21 | atque recusandae ipsum odio possimus soluta! 22 |

23 | 24 | 28 | 29 |
30 |
31 |
32 | ); 33 | }; 34 | 35 | export default Hero; 36 | -------------------------------------------------------------------------------- /components/Pagination.js: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | 3 | const Pagination = () => { 4 | return ( 5 |
6 |
7 | 11 | Previous 12 | 13 | 17 | 1 18 | 19 | 23 | 2 24 | 25 | 29 | 3 30 | 31 | 35 | Next 36 | 37 |
38 |
39 | ); 40 | }; 41 | 42 | export default Pagination; 43 | -------------------------------------------------------------------------------- /components/Product.js: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import Image from "next/image"; 3 | import Link from "next/link"; 4 | import { ShoppingCartIcon } from "@heroicons/react/outline"; 5 | 6 | const Product = ({ product }) => { 7 | return ( 8 | 9 |
10 |
11 | {product.name} 18 | 21 |
22 |
23 |

{product.name}

24 | ${product.price} 25 |
26 |
27 | 28 | ); 29 | }; 30 | 31 | export default Product; 32 | -------------------------------------------------------------------------------- /components/ProductDetail.js: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import Image from "next/image"; 3 | import { PlusCircleIcon, MinusCircleIcon } from "@heroicons/react/outline"; 4 | 5 | const ProductDetail = ({ product }) => { 6 | return ( 7 |
8 |
9 | {product.name} 16 |
17 |
18 |

{product.name}

19 | ${product.price} 20 |
21 |
22 | 25 |
26 | 29 | 1 30 | 33 |
34 |
35 |
36 | 39 |
40 |
41 |
42 | ); 43 | }; 44 | 45 | export default ProductDetail; 46 | -------------------------------------------------------------------------------- /components/Products.js: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import Product from "./Product"; 3 | 4 | const Products = ({ products }) => { 5 | return ( 6 |
7 | {products.map((product) => ( 8 | 9 | ))} 10 |
11 | ); 12 | }; 13 | 14 | export default Products; 15 | -------------------------------------------------------------------------------- /package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "mongodb-ecommerce", 3 | "lockfileVersion": 2, 4 | "requires": true, 5 | "packages": { 6 | "": { 7 | "name": "mongodb-ecommerce", 8 | "dependencies": { 9 | "@heroicons/react": "^1.0.4", 10 | "next": "^12.3.0", 11 | "react": "^17.0.2", 12 | "react-dom": "^17.0.2", 13 | "realm-web": "^1.3.0" 14 | }, 15 | "devDependencies": { 16 | "autoprefixer": "^10.2.6", 17 | "postcss": "^8.3.5", 18 | "tailwindcss": "^2.2.4" 19 | } 20 | }, 21 | "node_modules/@babel/code-frame": { 22 | "version": "7.12.11", 23 | "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz", 24 | "integrity": "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==", 25 | "dev": true, 26 | "dependencies": { 27 | "@babel/highlight": "^7.10.4" 28 | } 29 | }, 30 | "node_modules/@babel/helper-validator-identifier": { 31 | "version": "7.14.9", 32 | "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.9.tgz", 33 | "integrity": "sha512-pQYxPY0UP6IHISRitNe8bsijHex4TWZXi2HwKVsjPiltzlhse2znVcm9Ace510VT1kxIHjGJCZZQBX2gJDbo0g==", 34 | "dev": true, 35 | "engines": { 36 | "node": ">=6.9.0" 37 | } 38 | }, 39 | "node_modules/@babel/highlight": { 40 | "version": "7.14.5", 41 | "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.14.5.tgz", 42 | "integrity": "sha512-qf9u2WFWVV0MppaL877j2dBtQIDgmidgjGk5VIMw3OadXvYaXn66U1BFlH2t4+t3i+8PhedppRv+i40ABzd+gg==", 43 | "dev": true, 44 | "dependencies": { 45 | "@babel/helper-validator-identifier": "^7.14.5", 46 | "chalk": "^2.0.0", 47 | "js-tokens": "^4.0.0" 48 | }, 49 | "engines": { 50 | "node": ">=6.9.0" 51 | } 52 | }, 53 | "node_modules/@heroicons/react": { 54 | "version": "1.0.4", 55 | "resolved": "https://registry.npmjs.org/@heroicons/react/-/react-1.0.4.tgz", 56 | "integrity": "sha512-3kOrTmo8+Z8o6AL0rzN82MOf8J5CuxhRLFhpI8mrn+3OqekA6d5eb1GYO3EYYo1Vn6mYQSMNTzCWbEwUInb0cQ==", 57 | "peerDependencies": { 58 | "react": ">= 16" 59 | } 60 | }, 61 | "node_modules/@next/env": { 62 | "version": "12.3.3", 63 | "resolved": "https://registry.npmjs.org/@next/env/-/env-12.3.3.tgz", 64 | "integrity": "sha512-H2pKuOasV9RgvVaWosB2rGSNeQShQpiDaF4EEjLyagIc3HwqdOw2/VAG/8Lq+adOwPv2P73O1hulTNad3k5MDw==" 65 | }, 66 | "node_modules/@next/swc-android-arm-eabi": { 67 | "version": "12.3.3", 68 | "resolved": "https://registry.npmjs.org/@next/swc-android-arm-eabi/-/swc-android-arm-eabi-12.3.3.tgz", 69 | "integrity": "sha512-5O/ZIX6hlIRGMy1R2f/8WiCZ4Hp4WTC0FcTuz8ycQ28j/mzDnmzjVoayVVr+ZmfEKQayFrRu+vxHjFyY0JGQlQ==", 70 | "cpu": [ 71 | "arm" 72 | ], 73 | "optional": true, 74 | "os": [ 75 | "android" 76 | ], 77 | "engines": { 78 | "node": ">= 10" 79 | } 80 | }, 81 | "node_modules/@next/swc-android-arm64": { 82 | "version": "12.3.3", 83 | "resolved": "https://registry.npmjs.org/@next/swc-android-arm64/-/swc-android-arm64-12.3.3.tgz", 84 | "integrity": "sha512-2QWreRmlxYRDtnLYn+BI8oukHwcP7W0zGIY5R2mEXRjI4ARqCLdu8RmcT9Vemw7RfeAVKA/4cv/9PY0pCcQpNA==", 85 | "cpu": [ 86 | "arm64" 87 | ], 88 | "optional": true, 89 | "os": [ 90 | "android" 91 | ], 92 | "engines": { 93 | "node": ">= 10" 94 | } 95 | }, 96 | "node_modules/@next/swc-darwin-arm64": { 97 | "version": "12.3.3", 98 | "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-12.3.3.tgz", 99 | "integrity": "sha512-GtZdDLerM+VToCMFp+W+WhnT6sxHePQH4xZZiYD/Y8KFiwHbDRcJr2FPG0bAJnGNiSvv/QQnBq74wjZ9+7vhcQ==", 100 | "cpu": [ 101 | "arm64" 102 | ], 103 | "optional": true, 104 | "os": [ 105 | "darwin" 106 | ], 107 | "engines": { 108 | "node": ">= 10" 109 | } 110 | }, 111 | "node_modules/@next/swc-darwin-x64": { 112 | "version": "12.3.3", 113 | "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-12.3.3.tgz", 114 | "integrity": "sha512-gRYvTKrRYynjFQUDJ+upHMcBiNz0ii0m7zGgmUTlTSmrBWqVSzx79EHYT7Nn4GWHM+a/W+2VXfu+lqHcJeQ9gQ==", 115 | "cpu": [ 116 | "x64" 117 | ], 118 | "optional": true, 119 | "os": [ 120 | "darwin" 121 | ], 122 | "engines": { 123 | "node": ">= 10" 124 | } 125 | }, 126 | "node_modules/@next/swc-freebsd-x64": { 127 | "version": "12.3.3", 128 | "resolved": "https://registry.npmjs.org/@next/swc-freebsd-x64/-/swc-freebsd-x64-12.3.3.tgz", 129 | "integrity": "sha512-r+GLATzCjjQI82bgrIPXWEYBwZonSO64OThk5wU6HduZlDYTEDxZsFNoNoesCDWCgRrgg+OXj7WLNy1WlvfX7w==", 130 | "cpu": [ 131 | "x64" 132 | ], 133 | "optional": true, 134 | "os": [ 135 | "freebsd" 136 | ], 137 | "engines": { 138 | "node": ">= 10" 139 | } 140 | }, 141 | "node_modules/@next/swc-linux-arm-gnueabihf": { 142 | "version": "12.3.3", 143 | "resolved": "https://registry.npmjs.org/@next/swc-linux-arm-gnueabihf/-/swc-linux-arm-gnueabihf-12.3.3.tgz", 144 | "integrity": "sha512-juvRj1QX9jmQScL4nV0rROtYUFgWP76zfdn1fdfZ2BhvwUugIAq8x+jLVGlnXKUhDrP9+RrAufqXjjVkK+uBxA==", 145 | "cpu": [ 146 | "arm" 147 | ], 148 | "optional": true, 149 | "os": [ 150 | "linux" 151 | ], 152 | "engines": { 153 | "node": ">= 10" 154 | } 155 | }, 156 | "node_modules/@next/swc-linux-arm64-gnu": { 157 | "version": "12.3.3", 158 | "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-12.3.3.tgz", 159 | "integrity": "sha512-hzinybStPB+SzS68hR5rzOngOH7Yd/jFuWGeg9qS5WifYXHpqwGH2BQeKpjVV0iJuyO9r309JKrRWMrbfhnuBA==", 160 | "cpu": [ 161 | "arm64" 162 | ], 163 | "optional": true, 164 | "os": [ 165 | "linux" 166 | ], 167 | "engines": { 168 | "node": ">= 10" 169 | } 170 | }, 171 | "node_modules/@next/swc-linux-arm64-musl": { 172 | "version": "12.3.3", 173 | "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-12.3.3.tgz", 174 | "integrity": "sha512-oyfQYljCwf+9zUu1YkTZbRbyxmcHzvJPMGOxC3kJOReh3kCUoGcmvAxUPMtFD6FSYjJ+eaog4+2IFHtYuAw/bQ==", 175 | "cpu": [ 176 | "arm64" 177 | ], 178 | "optional": true, 179 | "os": [ 180 | "linux" 181 | ], 182 | "engines": { 183 | "node": ">= 10" 184 | } 185 | }, 186 | "node_modules/@next/swc-linux-x64-gnu": { 187 | "version": "12.3.3", 188 | "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-12.3.3.tgz", 189 | "integrity": "sha512-epv4FMazj/XG70KTTnrZ0H1VtL6DeWOvyHLHYy7f5PdgDpBXpDTFjVqhP8NFNH8HmaDDdeL1NvQD07AXhyvUKA==", 190 | "cpu": [ 191 | "x64" 192 | ], 193 | "optional": true, 194 | "os": [ 195 | "linux" 196 | ], 197 | "engines": { 198 | "node": ">= 10" 199 | } 200 | }, 201 | "node_modules/@next/swc-linux-x64-musl": { 202 | "version": "12.3.3", 203 | "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-12.3.3.tgz", 204 | "integrity": "sha512-bG5QODFy59XnSFTiPyIAt+rbPdphtvQMibtOVvyjwIwsBUw7swJ6k+6PSPVYEYpi6SHzi3qYBsro39ayGJKQJg==", 205 | "cpu": [ 206 | "x64" 207 | ], 208 | "optional": true, 209 | "os": [ 210 | "linux" 211 | ], 212 | "engines": { 213 | "node": ">= 10" 214 | } 215 | }, 216 | "node_modules/@next/swc-win32-arm64-msvc": { 217 | "version": "12.3.3", 218 | "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-12.3.3.tgz", 219 | "integrity": "sha512-FbnT3reJ3MbTJ5W0hvlCCGGVDSpburzT5XGC9ljBJ4kr+85iNTLjv7+vrPeDdwHEqtGmdZgnabkLVCI4yFyCag==", 220 | "cpu": [ 221 | "arm64" 222 | ], 223 | "optional": true, 224 | "os": [ 225 | "win32" 226 | ], 227 | "engines": { 228 | "node": ">= 10" 229 | } 230 | }, 231 | "node_modules/@next/swc-win32-ia32-msvc": { 232 | "version": "12.3.3", 233 | "resolved": "https://registry.npmjs.org/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-12.3.3.tgz", 234 | "integrity": "sha512-M/fKZC2tMGWA6eTsIniNEBpx2prdR8lIxvSO3gv5P6ymZOGVWCvEMksnTkPAjHnU6d8r8eCiuGKm3UNo7zCTpQ==", 235 | "cpu": [ 236 | "ia32" 237 | ], 238 | "optional": true, 239 | "os": [ 240 | "win32" 241 | ], 242 | "engines": { 243 | "node": ">= 10" 244 | } 245 | }, 246 | "node_modules/@next/swc-win32-x64-msvc": { 247 | "version": "12.3.3", 248 | "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-12.3.3.tgz", 249 | "integrity": "sha512-Ku9mfGwmNtk44o4B/jEWUxBAT4tJ3S7QbBMLJdL1GmtRZ05LGL36OqWjLvBPr8dFiHOQQbYoAmYfQw7zeGypYA==", 250 | "cpu": [ 251 | "x64" 252 | ], 253 | "optional": true, 254 | "os": [ 255 | "win32" 256 | ], 257 | "engines": { 258 | "node": ">= 10" 259 | } 260 | }, 261 | "node_modules/@nodelib/fs.scandir": { 262 | "version": "2.1.5", 263 | "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", 264 | "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", 265 | "dev": true, 266 | "dependencies": { 267 | "@nodelib/fs.stat": "2.0.5", 268 | "run-parallel": "^1.1.9" 269 | }, 270 | "engines": { 271 | "node": ">= 8" 272 | } 273 | }, 274 | "node_modules/@nodelib/fs.stat": { 275 | "version": "2.0.5", 276 | "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", 277 | "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", 278 | "dev": true, 279 | "engines": { 280 | "node": ">= 8" 281 | } 282 | }, 283 | "node_modules/@nodelib/fs.walk": { 284 | "version": "1.2.8", 285 | "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", 286 | "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", 287 | "dev": true, 288 | "dependencies": { 289 | "@nodelib/fs.scandir": "2.1.5", 290 | "fastq": "^1.6.0" 291 | }, 292 | "engines": { 293 | "node": ">= 8" 294 | } 295 | }, 296 | "node_modules/@swc/helpers": { 297 | "version": "0.4.11", 298 | "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.4.11.tgz", 299 | "integrity": "sha512-rEUrBSGIoSFuYxwBYtlUFMlE2CwGhmW+w9355/5oduSw8e5h2+Tj4UrAGNNgP9915++wj5vkQo0UuOBqOAq4nw==", 300 | "dependencies": { 301 | "tslib": "^2.4.0" 302 | } 303 | }, 304 | "node_modules/@types/parse-json": { 305 | "version": "4.0.0", 306 | "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz", 307 | "integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==", 308 | "dev": true 309 | }, 310 | "node_modules/abort-controller": { 311 | "version": "3.0.0", 312 | "resolved": "https://registry.npmjs.org/abort-controller/-/abort-controller-3.0.0.tgz", 313 | "integrity": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==", 314 | "optional": true, 315 | "dependencies": { 316 | "event-target-shim": "^5.0.0" 317 | }, 318 | "engines": { 319 | "node": ">=6.5" 320 | } 321 | }, 322 | "node_modules/acorn": { 323 | "version": "7.4.1", 324 | "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", 325 | "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", 326 | "dev": true, 327 | "bin": { 328 | "acorn": "bin/acorn" 329 | }, 330 | "engines": { 331 | "node": ">=0.4.0" 332 | } 333 | }, 334 | "node_modules/acorn-node": { 335 | "version": "1.8.2", 336 | "resolved": "https://registry.npmjs.org/acorn-node/-/acorn-node-1.8.2.tgz", 337 | "integrity": "sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A==", 338 | "dev": true, 339 | "dependencies": { 340 | "acorn": "^7.0.0", 341 | "acorn-walk": "^7.0.0", 342 | "xtend": "^4.0.2" 343 | } 344 | }, 345 | "node_modules/acorn-walk": { 346 | "version": "7.2.0", 347 | "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz", 348 | "integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==", 349 | "dev": true, 350 | "engines": { 351 | "node": ">=0.4.0" 352 | } 353 | }, 354 | "node_modules/ansi-styles": { 355 | "version": "3.2.1", 356 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", 357 | "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", 358 | "dev": true, 359 | "dependencies": { 360 | "color-convert": "^1.9.0" 361 | }, 362 | "engines": { 363 | "node": ">=4" 364 | } 365 | }, 366 | "node_modules/anymatch": { 367 | "version": "3.1.2", 368 | "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz", 369 | "integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==", 370 | "dev": true, 371 | "dependencies": { 372 | "normalize-path": "^3.0.0", 373 | "picomatch": "^2.0.4" 374 | }, 375 | "engines": { 376 | "node": ">= 8" 377 | } 378 | }, 379 | "node_modules/arg": { 380 | "version": "5.0.0", 381 | "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.0.tgz", 382 | "integrity": "sha512-4P8Zm2H+BRS+c/xX1LrHw0qKpEhdlZjLCgWy+d78T9vqa2Z2SiD2wMrYuWIAFy5IZUD7nnNXroRttz+0RzlrzQ==", 383 | "dev": true 384 | }, 385 | "node_modules/autoprefixer": { 386 | "version": "10.3.1", 387 | "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.3.1.tgz", 388 | "integrity": "sha512-L8AmtKzdiRyYg7BUXJTzigmhbQRCXFKz6SA1Lqo0+AR2FBbQ4aTAPFSDlOutnFkjhiz8my4agGXog1xlMjPJ6A==", 389 | "dev": true, 390 | "dependencies": { 391 | "browserslist": "^4.16.6", 392 | "caniuse-lite": "^1.0.30001243", 393 | "colorette": "^1.2.2", 394 | "fraction.js": "^4.1.1", 395 | "normalize-range": "^0.1.2", 396 | "postcss-value-parser": "^4.1.0" 397 | }, 398 | "bin": { 399 | "autoprefixer": "bin/autoprefixer" 400 | }, 401 | "engines": { 402 | "node": "^10 || ^12 || >=14" 403 | }, 404 | "funding": { 405 | "type": "opencollective", 406 | "url": "https://opencollective.com/postcss/" 407 | }, 408 | "peerDependencies": { 409 | "postcss": "^8.1.0" 410 | } 411 | }, 412 | "node_modules/balanced-match": { 413 | "version": "1.0.2", 414 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", 415 | "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", 416 | "dev": true 417 | }, 418 | "node_modules/base64-js": { 419 | "version": "1.5.1", 420 | "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", 421 | "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", 422 | "funding": [ 423 | { 424 | "type": "github", 425 | "url": "https://github.com/sponsors/feross" 426 | }, 427 | { 428 | "type": "patreon", 429 | "url": "https://www.patreon.com/feross" 430 | }, 431 | { 432 | "type": "consulting", 433 | "url": "https://feross.org/support" 434 | } 435 | ] 436 | }, 437 | "node_modules/binary-extensions": { 438 | "version": "2.2.0", 439 | "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", 440 | "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", 441 | "dev": true, 442 | "engines": { 443 | "node": ">=8" 444 | } 445 | }, 446 | "node_modules/brace-expansion": { 447 | "version": "1.1.11", 448 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 449 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 450 | "dev": true, 451 | "dependencies": { 452 | "balanced-match": "^1.0.0", 453 | "concat-map": "0.0.1" 454 | } 455 | }, 456 | "node_modules/braces": { 457 | "version": "3.0.2", 458 | "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", 459 | "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", 460 | "dev": true, 461 | "dependencies": { 462 | "fill-range": "^7.0.1" 463 | }, 464 | "engines": { 465 | "node": ">=8" 466 | } 467 | }, 468 | "node_modules/browserslist": { 469 | "version": "4.16.7", 470 | "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.16.7.tgz", 471 | "integrity": "sha512-7I4qVwqZltJ7j37wObBe3SoTz+nS8APaNcrBOlgoirb6/HbEU2XxW/LpUDTCngM6iauwFqmRTuOMfyKnFGY5JA==", 472 | "dev": true, 473 | "dependencies": { 474 | "caniuse-lite": "^1.0.30001248", 475 | "colorette": "^1.2.2", 476 | "electron-to-chromium": "^1.3.793", 477 | "escalade": "^3.1.1", 478 | "node-releases": "^1.1.73" 479 | }, 480 | "bin": { 481 | "browserslist": "cli.js" 482 | }, 483 | "engines": { 484 | "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" 485 | }, 486 | "funding": { 487 | "type": "opencollective", 488 | "url": "https://opencollective.com/browserslist" 489 | } 490 | }, 491 | "node_modules/bson": { 492 | "version": "4.4.1", 493 | "resolved": "https://registry.npmjs.org/bson/-/bson-4.4.1.tgz", 494 | "integrity": "sha512-Uu4OCZa0jouQJCKOk1EmmyqtdWAP5HVLru4lQxTwzJzxT+sJ13lVpEZU/MATDxtHiekWMAL84oQY3Xn1LpJVSg==", 495 | "dependencies": { 496 | "buffer": "^5.6.0" 497 | }, 498 | "engines": { 499 | "node": ">=6.9.0" 500 | } 501 | }, 502 | "node_modules/buffer": { 503 | "version": "5.6.0", 504 | "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.6.0.tgz", 505 | "integrity": "sha512-/gDYp/UtU0eA1ys8bOs9J6a+E/KWIY+DZ+Q2WESNUA0jFRsJOc0SNUO6xJ5SGA1xueg3NL65W6s+NY5l9cunuw==", 506 | "dependencies": { 507 | "base64-js": "^1.0.2", 508 | "ieee754": "^1.1.4" 509 | } 510 | }, 511 | "node_modules/bytes": { 512 | "version": "3.1.0", 513 | "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz", 514 | "integrity": "sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==", 515 | "dev": true, 516 | "engines": { 517 | "node": ">= 0.8" 518 | } 519 | }, 520 | "node_modules/callsites": { 521 | "version": "3.1.0", 522 | "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", 523 | "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", 524 | "dev": true, 525 | "engines": { 526 | "node": ">=6" 527 | } 528 | }, 529 | "node_modules/camelcase-css": { 530 | "version": "2.0.1", 531 | "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz", 532 | "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==", 533 | "dev": true, 534 | "engines": { 535 | "node": ">= 6" 536 | } 537 | }, 538 | "node_modules/caniuse-lite": { 539 | "version": "1.0.30001434", 540 | "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001434.tgz", 541 | "integrity": "sha512-aOBHrLmTQw//WFa2rcF1If9fa3ypkC1wzqqiKHgfdrXTWcU8C4gKVZT77eQAPWN1APys3+uQ0Df07rKauXGEYA==", 542 | "funding": [ 543 | { 544 | "type": "opencollective", 545 | "url": "https://opencollective.com/browserslist" 546 | }, 547 | { 548 | "type": "tidelift", 549 | "url": "https://tidelift.com/funding/github/npm/caniuse-lite" 550 | } 551 | ] 552 | }, 553 | "node_modules/chalk": { 554 | "version": "2.4.2", 555 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", 556 | "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", 557 | "dev": true, 558 | "dependencies": { 559 | "ansi-styles": "^3.2.1", 560 | "escape-string-regexp": "^1.0.5", 561 | "supports-color": "^5.3.0" 562 | }, 563 | "engines": { 564 | "node": ">=4" 565 | } 566 | }, 567 | "node_modules/color": { 568 | "version": "3.2.1", 569 | "resolved": "https://registry.npmjs.org/color/-/color-3.2.1.tgz", 570 | "integrity": "sha512-aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA==", 571 | "dev": true, 572 | "dependencies": { 573 | "color-convert": "^1.9.3", 574 | "color-string": "^1.6.0" 575 | } 576 | }, 577 | "node_modules/color-convert": { 578 | "version": "1.9.3", 579 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", 580 | "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", 581 | "dev": true, 582 | "dependencies": { 583 | "color-name": "1.1.3" 584 | } 585 | }, 586 | "node_modules/color-name": { 587 | "version": "1.1.3", 588 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", 589 | "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", 590 | "dev": true 591 | }, 592 | "node_modules/color-string": { 593 | "version": "1.6.0", 594 | "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.6.0.tgz", 595 | "integrity": "sha512-c/hGS+kRWJutUBEngKKmk4iH3sD59MBkoxVapS/0wgpCz2u7XsNloxknyvBhzwEs1IbV36D9PwqLPJ2DTu3vMA==", 596 | "dev": true, 597 | "dependencies": { 598 | "color-name": "^1.0.0", 599 | "simple-swizzle": "^0.2.2" 600 | } 601 | }, 602 | "node_modules/colorette": { 603 | "version": "1.2.2", 604 | "resolved": "https://registry.npmjs.org/colorette/-/colorette-1.2.2.tgz", 605 | "integrity": "sha512-MKGMzyfeuutC/ZJ1cba9NqcNpfeqMUcYmyF1ZFY6/Cn7CNSAKx6a+s48sqLqyAiZuaP2TcqMhoo+dlwFnVxT9w==", 606 | "dev": true 607 | }, 608 | "node_modules/commander": { 609 | "version": "6.2.1", 610 | "resolved": "https://registry.npmjs.org/commander/-/commander-6.2.1.tgz", 611 | "integrity": "sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==", 612 | "dev": true, 613 | "engines": { 614 | "node": ">= 6" 615 | } 616 | }, 617 | "node_modules/concat-map": { 618 | "version": "0.0.1", 619 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", 620 | "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", 621 | "dev": true 622 | }, 623 | "node_modules/cosmiconfig": { 624 | "version": "7.0.0", 625 | "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.0.0.tgz", 626 | "integrity": "sha512-pondGvTuVYDk++upghXJabWzL6Kxu6f26ljFw64Swq9v6sQPUL3EUlVDV56diOjpCayKihL6hVe8exIACU4XcA==", 627 | "dev": true, 628 | "dependencies": { 629 | "@types/parse-json": "^4.0.0", 630 | "import-fresh": "^3.2.1", 631 | "parse-json": "^5.0.0", 632 | "path-type": "^4.0.0", 633 | "yaml": "^1.10.0" 634 | }, 635 | "engines": { 636 | "node": ">=10" 637 | } 638 | }, 639 | "node_modules/css-unit-converter": { 640 | "version": "1.1.2", 641 | "resolved": "https://registry.npmjs.org/css-unit-converter/-/css-unit-converter-1.1.2.tgz", 642 | "integrity": "sha512-IiJwMC8rdZE0+xiEZHeru6YoONC4rfPMqGm2W85jMIbkFvv5nFTwJVFHam2eFrN6txmoUYFAFXiv8ICVeTO0MA==", 643 | "dev": true 644 | }, 645 | "node_modules/cssesc": { 646 | "version": "3.0.0", 647 | "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", 648 | "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", 649 | "dev": true, 650 | "bin": { 651 | "cssesc": "bin/cssesc" 652 | }, 653 | "engines": { 654 | "node": ">=4" 655 | } 656 | }, 657 | "node_modules/defined": { 658 | "version": "1.0.0", 659 | "resolved": "https://registry.npmjs.org/defined/-/defined-1.0.0.tgz", 660 | "integrity": "sha1-yY2bzvdWdBiOEQlpFRGZ45sfppM=", 661 | "dev": true 662 | }, 663 | "node_modules/detect-browser": { 664 | "version": "5.2.0", 665 | "resolved": "https://registry.npmjs.org/detect-browser/-/detect-browser-5.2.0.tgz", 666 | "integrity": "sha512-tr7XntDAu50BVENgQfajMLzacmSe34D+qZc4zjnniz0ZVuw/TZcLcyxHQjYpJTM36sGEkZZlYLnIM1hH7alTMA==" 667 | }, 668 | "node_modules/detective": { 669 | "version": "5.2.0", 670 | "resolved": "https://registry.npmjs.org/detective/-/detective-5.2.0.tgz", 671 | "integrity": "sha512-6SsIx+nUUbuK0EthKjv0zrdnajCCXVYGmbYYiYjFVpzcjwEs/JMDZ8tPRG29J/HhN56t3GJp2cGSWDRjjot8Pg==", 672 | "dev": true, 673 | "dependencies": { 674 | "acorn-node": "^1.6.1", 675 | "defined": "^1.0.0", 676 | "minimist": "^1.1.1" 677 | }, 678 | "bin": { 679 | "detective": "bin/detective.js" 680 | }, 681 | "engines": { 682 | "node": ">=0.8.0" 683 | } 684 | }, 685 | "node_modules/didyoumean": { 686 | "version": "1.2.2", 687 | "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz", 688 | "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==", 689 | "dev": true 690 | }, 691 | "node_modules/dlv": { 692 | "version": "1.1.3", 693 | "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz", 694 | "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==", 695 | "dev": true 696 | }, 697 | "node_modules/electron-to-chromium": { 698 | "version": "1.3.798", 699 | "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.798.tgz", 700 | "integrity": "sha512-fwsr6oXAORoV9a6Ak2vMCdXfmHIpAGgpOGesulS1cbGgJmrMl3H+GicUyRG3t+z9uHTMrIuMTleFDW+EUFYT3g==", 701 | "dev": true 702 | }, 703 | "node_modules/error-ex": { 704 | "version": "1.3.2", 705 | "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", 706 | "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", 707 | "dev": true, 708 | "dependencies": { 709 | "is-arrayish": "^0.2.1" 710 | } 711 | }, 712 | "node_modules/escalade": { 713 | "version": "3.1.1", 714 | "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", 715 | "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", 716 | "dev": true, 717 | "engines": { 718 | "node": ">=6" 719 | } 720 | }, 721 | "node_modules/escape-string-regexp": { 722 | "version": "1.0.5", 723 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", 724 | "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", 725 | "dev": true, 726 | "engines": { 727 | "node": ">=0.8.0" 728 | } 729 | }, 730 | "node_modules/event-target-shim": { 731 | "version": "5.0.1", 732 | "resolved": "https://registry.npmjs.org/event-target-shim/-/event-target-shim-5.0.1.tgz", 733 | "integrity": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==", 734 | "optional": true, 735 | "engines": { 736 | "node": ">=6" 737 | } 738 | }, 739 | "node_modules/fast-glob": { 740 | "version": "3.2.7", 741 | "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.7.tgz", 742 | "integrity": "sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q==", 743 | "dev": true, 744 | "dependencies": { 745 | "@nodelib/fs.stat": "^2.0.2", 746 | "@nodelib/fs.walk": "^1.2.3", 747 | "glob-parent": "^5.1.2", 748 | "merge2": "^1.3.0", 749 | "micromatch": "^4.0.4" 750 | }, 751 | "engines": { 752 | "node": ">=8" 753 | } 754 | }, 755 | "node_modules/fastq": { 756 | "version": "1.11.1", 757 | "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.11.1.tgz", 758 | "integrity": "sha512-HOnr8Mc60eNYl1gzwp6r5RoUyAn5/glBolUzP/Ez6IFVPMPirxn/9phgL6zhOtaTy7ISwPvQ+wT+hfcRZh/bzw==", 759 | "dev": true, 760 | "dependencies": { 761 | "reusify": "^1.0.4" 762 | } 763 | }, 764 | "node_modules/fill-range": { 765 | "version": "7.0.1", 766 | "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", 767 | "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", 768 | "dev": true, 769 | "dependencies": { 770 | "to-regex-range": "^5.0.1" 771 | }, 772 | "engines": { 773 | "node": ">=8" 774 | } 775 | }, 776 | "node_modules/fraction.js": { 777 | "version": "4.1.1", 778 | "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.1.1.tgz", 779 | "integrity": "sha512-MHOhvvxHTfRFpF1geTK9czMIZ6xclsEor2wkIGYYq+PxcQqT7vStJqjhe6S1TenZrMZzo+wlqOufBDVepUEgPg==", 780 | "dev": true, 781 | "engines": { 782 | "node": "*" 783 | }, 784 | "funding": { 785 | "type": "patreon", 786 | "url": "https://www.patreon.com/infusion" 787 | } 788 | }, 789 | "node_modules/fs-extra": { 790 | "version": "10.0.0", 791 | "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.0.0.tgz", 792 | "integrity": "sha512-C5owb14u9eJwizKGdchcDUQeFtlSHHthBk8pbX9Vc1PFZrLombudjDnNns88aYslCyF6IY5SUw3Roz6xShcEIQ==", 793 | "dev": true, 794 | "dependencies": { 795 | "graceful-fs": "^4.2.0", 796 | "jsonfile": "^6.0.1", 797 | "universalify": "^2.0.0" 798 | }, 799 | "engines": { 800 | "node": ">=12" 801 | } 802 | }, 803 | "node_modules/fs.realpath": { 804 | "version": "1.0.0", 805 | "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", 806 | "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", 807 | "dev": true 808 | }, 809 | "node_modules/fsevents": { 810 | "version": "2.3.2", 811 | "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", 812 | "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", 813 | "dev": true, 814 | "hasInstallScript": true, 815 | "optional": true, 816 | "os": [ 817 | "darwin" 818 | ], 819 | "engines": { 820 | "node": "^8.16.0 || ^10.6.0 || >=11.0.0" 821 | } 822 | }, 823 | "node_modules/function-bind": { 824 | "version": "1.1.1", 825 | "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", 826 | "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", 827 | "dev": true 828 | }, 829 | "node_modules/glob": { 830 | "version": "7.1.7", 831 | "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz", 832 | "integrity": "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==", 833 | "dev": true, 834 | "dependencies": { 835 | "fs.realpath": "^1.0.0", 836 | "inflight": "^1.0.4", 837 | "inherits": "2", 838 | "minimatch": "^3.0.4", 839 | "once": "^1.3.0", 840 | "path-is-absolute": "^1.0.0" 841 | }, 842 | "engines": { 843 | "node": "*" 844 | }, 845 | "funding": { 846 | "url": "https://github.com/sponsors/isaacs" 847 | } 848 | }, 849 | "node_modules/glob-parent": { 850 | "version": "5.1.2", 851 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", 852 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 853 | "dev": true, 854 | "dependencies": { 855 | "is-glob": "^4.0.1" 856 | }, 857 | "engines": { 858 | "node": ">= 6" 859 | } 860 | }, 861 | "node_modules/graceful-fs": { 862 | "version": "4.2.8", 863 | "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.8.tgz", 864 | "integrity": "sha512-qkIilPUYcNhJpd33n0GBXTB1MMPp14TxEsEs0pTrsSVucApsYzW5V+Q8Qxhik6KU3evy+qkAAowTByymK0avdg==", 865 | "dev": true 866 | }, 867 | "node_modules/has": { 868 | "version": "1.0.3", 869 | "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", 870 | "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", 871 | "dev": true, 872 | "dependencies": { 873 | "function-bind": "^1.1.1" 874 | }, 875 | "engines": { 876 | "node": ">= 0.4.0" 877 | } 878 | }, 879 | "node_modules/has-flag": { 880 | "version": "3.0.0", 881 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", 882 | "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", 883 | "dev": true, 884 | "engines": { 885 | "node": ">=4" 886 | } 887 | }, 888 | "node_modules/html-tags": { 889 | "version": "3.1.0", 890 | "resolved": "https://registry.npmjs.org/html-tags/-/html-tags-3.1.0.tgz", 891 | "integrity": "sha512-1qYz89hW3lFDEazhjW0yVAV87lw8lVkrJocr72XmBkMKsoSVJCQx3W8BXsC7hO2qAt8BoVjYjtAcZ9perqGnNg==", 892 | "dev": true, 893 | "engines": { 894 | "node": ">=8" 895 | } 896 | }, 897 | "node_modules/ieee754": { 898 | "version": "1.2.1", 899 | "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", 900 | "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", 901 | "funding": [ 902 | { 903 | "type": "github", 904 | "url": "https://github.com/sponsors/feross" 905 | }, 906 | { 907 | "type": "patreon", 908 | "url": "https://www.patreon.com/feross" 909 | }, 910 | { 911 | "type": "consulting", 912 | "url": "https://feross.org/support" 913 | } 914 | ] 915 | }, 916 | "node_modules/import-cwd": { 917 | "version": "3.0.0", 918 | "resolved": "https://registry.npmjs.org/import-cwd/-/import-cwd-3.0.0.tgz", 919 | "integrity": "sha512-4pnzH16plW+hgvRECbDWpQl3cqtvSofHWh44met7ESfZ8UZOWWddm8hEyDTqREJ9RbYHY8gi8DqmaelApoOGMg==", 920 | "dev": true, 921 | "dependencies": { 922 | "import-from": "^3.0.0" 923 | }, 924 | "engines": { 925 | "node": ">=8" 926 | } 927 | }, 928 | "node_modules/import-fresh": { 929 | "version": "3.3.0", 930 | "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", 931 | "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", 932 | "dev": true, 933 | "dependencies": { 934 | "parent-module": "^1.0.0", 935 | "resolve-from": "^4.0.0" 936 | }, 937 | "engines": { 938 | "node": ">=6" 939 | }, 940 | "funding": { 941 | "url": "https://github.com/sponsors/sindresorhus" 942 | } 943 | }, 944 | "node_modules/import-from": { 945 | "version": "3.0.0", 946 | "resolved": "https://registry.npmjs.org/import-from/-/import-from-3.0.0.tgz", 947 | "integrity": "sha512-CiuXOFFSzkU5x/CR0+z7T91Iht4CXgfCxVOFRhh2Zyhg5wOpWvvDLQUsWl+gcN+QscYBjez8hDCt85O7RLDttQ==", 948 | "dev": true, 949 | "dependencies": { 950 | "resolve-from": "^5.0.0" 951 | }, 952 | "engines": { 953 | "node": ">=8" 954 | } 955 | }, 956 | "node_modules/import-from/node_modules/resolve-from": { 957 | "version": "5.0.0", 958 | "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", 959 | "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", 960 | "dev": true, 961 | "engines": { 962 | "node": ">=8" 963 | } 964 | }, 965 | "node_modules/inflight": { 966 | "version": "1.0.6", 967 | "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", 968 | "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", 969 | "dev": true, 970 | "dependencies": { 971 | "once": "^1.3.0", 972 | "wrappy": "1" 973 | } 974 | }, 975 | "node_modules/inherits": { 976 | "version": "2.0.4", 977 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", 978 | "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", 979 | "dev": true 980 | }, 981 | "node_modules/is-arrayish": { 982 | "version": "0.2.1", 983 | "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", 984 | "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=", 985 | "dev": true 986 | }, 987 | "node_modules/is-binary-path": { 988 | "version": "2.1.0", 989 | "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", 990 | "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", 991 | "dev": true, 992 | "dependencies": { 993 | "binary-extensions": "^2.0.0" 994 | }, 995 | "engines": { 996 | "node": ">=8" 997 | } 998 | }, 999 | "node_modules/is-core-module": { 1000 | "version": "2.5.0", 1001 | "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.5.0.tgz", 1002 | "integrity": "sha512-TXCMSDsEHMEEZ6eCA8rwRDbLu55MRGmrctljsBX/2v1d9/GzqHOxW5c5oPSgrUt2vBFXebu9rGqckXGPWOlYpg==", 1003 | "dev": true, 1004 | "dependencies": { 1005 | "has": "^1.0.3" 1006 | }, 1007 | "funding": { 1008 | "url": "https://github.com/sponsors/ljharb" 1009 | } 1010 | }, 1011 | "node_modules/is-extglob": { 1012 | "version": "2.1.1", 1013 | "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", 1014 | "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", 1015 | "dev": true, 1016 | "engines": { 1017 | "node": ">=0.10.0" 1018 | } 1019 | }, 1020 | "node_modules/is-glob": { 1021 | "version": "4.0.1", 1022 | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz", 1023 | "integrity": "sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==", 1024 | "dev": true, 1025 | "dependencies": { 1026 | "is-extglob": "^2.1.1" 1027 | }, 1028 | "engines": { 1029 | "node": ">=0.10.0" 1030 | } 1031 | }, 1032 | "node_modules/is-number": { 1033 | "version": "7.0.0", 1034 | "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", 1035 | "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", 1036 | "dev": true, 1037 | "engines": { 1038 | "node": ">=0.12.0" 1039 | } 1040 | }, 1041 | "node_modules/js-base64": { 1042 | "version": "2.6.4", 1043 | "resolved": "https://registry.npmjs.org/js-base64/-/js-base64-2.6.4.tgz", 1044 | "integrity": "sha512-pZe//GGmwJndub7ZghVHz7vjb2LgC1m8B07Au3eYqeqv9emhESByMXxaEgkUkEqJe87oBbSniGYoQNIBklc7IQ==" 1045 | }, 1046 | "node_modules/js-tokens": { 1047 | "version": "4.0.0", 1048 | "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", 1049 | "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" 1050 | }, 1051 | "node_modules/json-parse-even-better-errors": { 1052 | "version": "2.3.1", 1053 | "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", 1054 | "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", 1055 | "dev": true 1056 | }, 1057 | "node_modules/jsonfile": { 1058 | "version": "6.1.0", 1059 | "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", 1060 | "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", 1061 | "dev": true, 1062 | "dependencies": { 1063 | "universalify": "^2.0.0" 1064 | }, 1065 | "optionalDependencies": { 1066 | "graceful-fs": "^4.1.6" 1067 | } 1068 | }, 1069 | "node_modules/lilconfig": { 1070 | "version": "2.0.3", 1071 | "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.0.3.tgz", 1072 | "integrity": "sha512-EHKqr/+ZvdKCifpNrJCKxBTgk5XupZA3y/aCPY9mxfgBzmgh93Mt/WqjjQ38oMxXuvDokaKiM3lAgvSH2sjtHg==", 1073 | "dev": true, 1074 | "engines": { 1075 | "node": ">=10" 1076 | } 1077 | }, 1078 | "node_modules/lines-and-columns": { 1079 | "version": "1.1.6", 1080 | "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.1.6.tgz", 1081 | "integrity": "sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA=", 1082 | "dev": true 1083 | }, 1084 | "node_modules/lodash": { 1085 | "version": "4.17.21", 1086 | "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", 1087 | "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", 1088 | "dev": true 1089 | }, 1090 | "node_modules/lodash.toarray": { 1091 | "version": "4.4.0", 1092 | "resolved": "https://registry.npmjs.org/lodash.toarray/-/lodash.toarray-4.4.0.tgz", 1093 | "integrity": "sha1-JMS/zWsvuji/0FlNsRedjptlZWE=", 1094 | "dev": true 1095 | }, 1096 | "node_modules/lodash.topath": { 1097 | "version": "4.5.2", 1098 | "resolved": "https://registry.npmjs.org/lodash.topath/-/lodash.topath-4.5.2.tgz", 1099 | "integrity": "sha1-NhY1Hzu6YZlKCTGYlmC9AyVP0Ak=", 1100 | "dev": true 1101 | }, 1102 | "node_modules/loose-envify": { 1103 | "version": "1.4.0", 1104 | "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", 1105 | "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", 1106 | "dependencies": { 1107 | "js-tokens": "^3.0.0 || ^4.0.0" 1108 | }, 1109 | "bin": { 1110 | "loose-envify": "cli.js" 1111 | } 1112 | }, 1113 | "node_modules/merge2": { 1114 | "version": "1.4.1", 1115 | "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", 1116 | "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", 1117 | "dev": true, 1118 | "engines": { 1119 | "node": ">= 8" 1120 | } 1121 | }, 1122 | "node_modules/micromatch": { 1123 | "version": "4.0.4", 1124 | "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.4.tgz", 1125 | "integrity": "sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg==", 1126 | "dev": true, 1127 | "dependencies": { 1128 | "braces": "^3.0.1", 1129 | "picomatch": "^2.2.3" 1130 | }, 1131 | "engines": { 1132 | "node": ">=8.6" 1133 | } 1134 | }, 1135 | "node_modules/minimatch": { 1136 | "version": "3.1.2", 1137 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 1138 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 1139 | "dev": true, 1140 | "dependencies": { 1141 | "brace-expansion": "^1.1.7" 1142 | }, 1143 | "engines": { 1144 | "node": "*" 1145 | } 1146 | }, 1147 | "node_modules/minimist": { 1148 | "version": "1.2.7", 1149 | "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.7.tgz", 1150 | "integrity": "sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g==", 1151 | "dev": true, 1152 | "funding": { 1153 | "url": "https://github.com/sponsors/ljharb" 1154 | } 1155 | }, 1156 | "node_modules/modern-normalize": { 1157 | "version": "1.1.0", 1158 | "resolved": "https://registry.npmjs.org/modern-normalize/-/modern-normalize-1.1.0.tgz", 1159 | "integrity": "sha512-2lMlY1Yc1+CUy0gw4H95uNN7vjbpoED7NNRSBHE25nWfLBdmMzFCsPshlzbxHz+gYMcBEUN8V4pU16prcdPSgA==", 1160 | "dev": true, 1161 | "engines": { 1162 | "node": ">=6" 1163 | }, 1164 | "funding": { 1165 | "url": "https://github.com/sponsors/sindresorhus" 1166 | } 1167 | }, 1168 | "node_modules/nanoid": { 1169 | "version": "3.3.4", 1170 | "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz", 1171 | "integrity": "sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==", 1172 | "bin": { 1173 | "nanoid": "bin/nanoid.cjs" 1174 | }, 1175 | "engines": { 1176 | "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" 1177 | } 1178 | }, 1179 | "node_modules/next": { 1180 | "version": "12.3.3", 1181 | "resolved": "https://registry.npmjs.org/next/-/next-12.3.3.tgz", 1182 | "integrity": "sha512-Rx2Y6Wl5R8E77NOfBupp/B9OPCklqfqD0yN2+rDivhMjd6hjVFH5n0WTDI4PWwDmZsdNcYt6NV85kJ3PLR+eNQ==", 1183 | "dependencies": { 1184 | "@next/env": "12.3.3", 1185 | "@swc/helpers": "0.4.11", 1186 | "caniuse-lite": "^1.0.30001406", 1187 | "postcss": "8.4.14", 1188 | "styled-jsx": "5.0.7", 1189 | "use-sync-external-store": "1.2.0" 1190 | }, 1191 | "bin": { 1192 | "next": "dist/bin/next" 1193 | }, 1194 | "engines": { 1195 | "node": ">=12.22.0" 1196 | }, 1197 | "optionalDependencies": { 1198 | "@next/swc-android-arm-eabi": "12.3.3", 1199 | "@next/swc-android-arm64": "12.3.3", 1200 | "@next/swc-darwin-arm64": "12.3.3", 1201 | "@next/swc-darwin-x64": "12.3.3", 1202 | "@next/swc-freebsd-x64": "12.3.3", 1203 | "@next/swc-linux-arm-gnueabihf": "12.3.3", 1204 | "@next/swc-linux-arm64-gnu": "12.3.3", 1205 | "@next/swc-linux-arm64-musl": "12.3.3", 1206 | "@next/swc-linux-x64-gnu": "12.3.3", 1207 | "@next/swc-linux-x64-musl": "12.3.3", 1208 | "@next/swc-win32-arm64-msvc": "12.3.3", 1209 | "@next/swc-win32-ia32-msvc": "12.3.3", 1210 | "@next/swc-win32-x64-msvc": "12.3.3" 1211 | }, 1212 | "peerDependencies": { 1213 | "fibers": ">= 3.1.0", 1214 | "node-sass": "^6.0.0 || ^7.0.0", 1215 | "react": "^17.0.2 || ^18.0.0-0", 1216 | "react-dom": "^17.0.2 || ^18.0.0-0", 1217 | "sass": "^1.3.0" 1218 | }, 1219 | "peerDependenciesMeta": { 1220 | "fibers": { 1221 | "optional": true 1222 | }, 1223 | "node-sass": { 1224 | "optional": true 1225 | }, 1226 | "sass": { 1227 | "optional": true 1228 | } 1229 | } 1230 | }, 1231 | "node_modules/node-emoji": { 1232 | "version": "1.10.0", 1233 | "resolved": "https://registry.npmjs.org/node-emoji/-/node-emoji-1.10.0.tgz", 1234 | "integrity": "sha512-Yt3384If5H6BYGVHiHwTL+99OzJKHhgp82S8/dktEK73T26BazdgZ4JZh92xSVtGNJvz9UbXdNAc5hcrXV42vw==", 1235 | "dev": true, 1236 | "dependencies": { 1237 | "lodash.toarray": "^4.4.0" 1238 | } 1239 | }, 1240 | "node_modules/node-fetch": { 1241 | "version": "2.6.7", 1242 | "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz", 1243 | "integrity": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==", 1244 | "optional": true, 1245 | "dependencies": { 1246 | "whatwg-url": "^5.0.0" 1247 | }, 1248 | "engines": { 1249 | "node": "4.x || >=6.0.0" 1250 | }, 1251 | "peerDependencies": { 1252 | "encoding": "^0.1.0" 1253 | }, 1254 | "peerDependenciesMeta": { 1255 | "encoding": { 1256 | "optional": true 1257 | } 1258 | } 1259 | }, 1260 | "node_modules/node-releases": { 1261 | "version": "1.1.73", 1262 | "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.73.tgz", 1263 | "integrity": "sha512-uW7fodD6pyW2FZNZnp/Z3hvWKeEW1Y8R1+1CnErE8cXFXzl5blBOoVB41CvMer6P6Q0S5FXDwcHgFd1Wj0U9zg==", 1264 | "dev": true 1265 | }, 1266 | "node_modules/normalize-path": { 1267 | "version": "3.0.0", 1268 | "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", 1269 | "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", 1270 | "dev": true, 1271 | "engines": { 1272 | "node": ">=0.10.0" 1273 | } 1274 | }, 1275 | "node_modules/normalize-range": { 1276 | "version": "0.1.2", 1277 | "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", 1278 | "integrity": "sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=", 1279 | "dev": true, 1280 | "engines": { 1281 | "node": ">=0.10.0" 1282 | } 1283 | }, 1284 | "node_modules/object-assign": { 1285 | "version": "4.1.1", 1286 | "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", 1287 | "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=", 1288 | "engines": { 1289 | "node": ">=0.10.0" 1290 | } 1291 | }, 1292 | "node_modules/object-hash": { 1293 | "version": "2.2.0", 1294 | "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-2.2.0.tgz", 1295 | "integrity": "sha512-gScRMn0bS5fH+IuwyIFgnh9zBdo4DV+6GhygmWM9HyNJSgS0hScp1f5vjtm7oIIOiT9trXrShAkLFSc2IqKNgw==", 1296 | "dev": true, 1297 | "engines": { 1298 | "node": ">= 6" 1299 | } 1300 | }, 1301 | "node_modules/once": { 1302 | "version": "1.4.0", 1303 | "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", 1304 | "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", 1305 | "dev": true, 1306 | "dependencies": { 1307 | "wrappy": "1" 1308 | } 1309 | }, 1310 | "node_modules/parent-module": { 1311 | "version": "1.0.1", 1312 | "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", 1313 | "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", 1314 | "dev": true, 1315 | "dependencies": { 1316 | "callsites": "^3.0.0" 1317 | }, 1318 | "engines": { 1319 | "node": ">=6" 1320 | } 1321 | }, 1322 | "node_modules/parse-json": { 1323 | "version": "5.2.0", 1324 | "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", 1325 | "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", 1326 | "dev": true, 1327 | "dependencies": { 1328 | "@babel/code-frame": "^7.0.0", 1329 | "error-ex": "^1.3.1", 1330 | "json-parse-even-better-errors": "^2.3.0", 1331 | "lines-and-columns": "^1.1.6" 1332 | }, 1333 | "engines": { 1334 | "node": ">=8" 1335 | }, 1336 | "funding": { 1337 | "url": "https://github.com/sponsors/sindresorhus" 1338 | } 1339 | }, 1340 | "node_modules/path-is-absolute": { 1341 | "version": "1.0.1", 1342 | "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", 1343 | "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", 1344 | "dev": true, 1345 | "engines": { 1346 | "node": ">=0.10.0" 1347 | } 1348 | }, 1349 | "node_modules/path-parse": { 1350 | "version": "1.0.7", 1351 | "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", 1352 | "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", 1353 | "dev": true 1354 | }, 1355 | "node_modules/path-type": { 1356 | "version": "4.0.0", 1357 | "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", 1358 | "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", 1359 | "dev": true, 1360 | "engines": { 1361 | "node": ">=8" 1362 | } 1363 | }, 1364 | "node_modules/picocolors": { 1365 | "version": "1.0.0", 1366 | "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", 1367 | "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" 1368 | }, 1369 | "node_modules/picomatch": { 1370 | "version": "2.3.0", 1371 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.0.tgz", 1372 | "integrity": "sha512-lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw==", 1373 | "dev": true, 1374 | "engines": { 1375 | "node": ">=8.6" 1376 | }, 1377 | "funding": { 1378 | "url": "https://github.com/sponsors/jonschlinkert" 1379 | } 1380 | }, 1381 | "node_modules/postcss": { 1382 | "version": "8.4.14", 1383 | "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.14.tgz", 1384 | "integrity": "sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==", 1385 | "funding": [ 1386 | { 1387 | "type": "opencollective", 1388 | "url": "https://opencollective.com/postcss/" 1389 | }, 1390 | { 1391 | "type": "tidelift", 1392 | "url": "https://tidelift.com/funding/github/npm/postcss" 1393 | } 1394 | ], 1395 | "dependencies": { 1396 | "nanoid": "^3.3.4", 1397 | "picocolors": "^1.0.0", 1398 | "source-map-js": "^1.0.2" 1399 | }, 1400 | "engines": { 1401 | "node": "^10 || ^12 || >=14" 1402 | } 1403 | }, 1404 | "node_modules/postcss-js": { 1405 | "version": "3.0.3", 1406 | "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-3.0.3.tgz", 1407 | "integrity": "sha512-gWnoWQXKFw65Hk/mi2+WTQTHdPD5UJdDXZmX073EY/B3BWnYjO4F4t0VneTCnCGQ5E5GsCdMkzPaTXwl3r5dJw==", 1408 | "dev": true, 1409 | "dependencies": { 1410 | "camelcase-css": "^2.0.1", 1411 | "postcss": "^8.1.6" 1412 | }, 1413 | "engines": { 1414 | "node": ">=10.0" 1415 | }, 1416 | "funding": { 1417 | "type": "opencollective", 1418 | "url": "https://opencollective.com/postcss/" 1419 | } 1420 | }, 1421 | "node_modules/postcss-load-config": { 1422 | "version": "3.1.0", 1423 | "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-3.1.0.tgz", 1424 | "integrity": "sha512-ipM8Ds01ZUophjDTQYSVP70slFSYg3T0/zyfII5vzhN6V57YSxMgG5syXuwi5VtS8wSf3iL30v0uBdoIVx4Q0g==", 1425 | "dev": true, 1426 | "dependencies": { 1427 | "import-cwd": "^3.0.0", 1428 | "lilconfig": "^2.0.3", 1429 | "yaml": "^1.10.2" 1430 | }, 1431 | "engines": { 1432 | "node": ">= 10" 1433 | }, 1434 | "funding": { 1435 | "type": "opencollective", 1436 | "url": "https://opencollective.com/postcss/" 1437 | }, 1438 | "peerDependencies": { 1439 | "ts-node": ">=9.0.0" 1440 | }, 1441 | "peerDependenciesMeta": { 1442 | "ts-node": { 1443 | "optional": true 1444 | } 1445 | } 1446 | }, 1447 | "node_modules/postcss-nested": { 1448 | "version": "5.0.5", 1449 | "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-5.0.5.tgz", 1450 | "integrity": "sha512-GSRXYz5bccobpTzLQZXOnSOfKl6TwVr5CyAQJUPub4nuRJSOECK5AqurxVgmtxP48p0Kc/ndY/YyS1yqldX0Ew==", 1451 | "dev": true, 1452 | "dependencies": { 1453 | "postcss-selector-parser": "^6.0.4" 1454 | }, 1455 | "engines": { 1456 | "node": ">=10.0" 1457 | }, 1458 | "funding": { 1459 | "type": "opencollective", 1460 | "url": "https://opencollective.com/postcss/" 1461 | }, 1462 | "peerDependencies": { 1463 | "postcss": "^8.1.13" 1464 | } 1465 | }, 1466 | "node_modules/postcss-selector-parser": { 1467 | "version": "6.0.6", 1468 | "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.6.tgz", 1469 | "integrity": "sha512-9LXrvaaX3+mcv5xkg5kFwqSzSH1JIObIx51PrndZwlmznwXRfxMddDvo9gve3gVR8ZTKgoFDdWkbRFmEhT4PMg==", 1470 | "dev": true, 1471 | "dependencies": { 1472 | "cssesc": "^3.0.0", 1473 | "util-deprecate": "^1.0.2" 1474 | }, 1475 | "engines": { 1476 | "node": ">=4" 1477 | } 1478 | }, 1479 | "node_modules/postcss-value-parser": { 1480 | "version": "4.1.0", 1481 | "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz", 1482 | "integrity": "sha512-97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ==", 1483 | "dev": true 1484 | }, 1485 | "node_modules/pretty-hrtime": { 1486 | "version": "1.0.3", 1487 | "resolved": "https://registry.npmjs.org/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz", 1488 | "integrity": "sha1-t+PqQkNaTJsnWdmeDyAesZWALuE=", 1489 | "dev": true, 1490 | "engines": { 1491 | "node": ">= 0.8" 1492 | } 1493 | }, 1494 | "node_modules/purgecss": { 1495 | "version": "4.0.3", 1496 | "resolved": "https://registry.npmjs.org/purgecss/-/purgecss-4.0.3.tgz", 1497 | "integrity": "sha512-PYOIn5ibRIP34PBU9zohUcCI09c7drPJJtTDAc0Q6QlRz2/CHQ8ywGLdE7ZhxU2VTqB7p5wkvj5Qcm05Rz3Jmw==", 1498 | "dev": true, 1499 | "dependencies": { 1500 | "commander": "^6.0.0", 1501 | "glob": "^7.0.0", 1502 | "postcss": "^8.2.1", 1503 | "postcss-selector-parser": "^6.0.2" 1504 | }, 1505 | "bin": { 1506 | "purgecss": "bin/purgecss.js" 1507 | } 1508 | }, 1509 | "node_modules/queue-microtask": { 1510 | "version": "1.2.3", 1511 | "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", 1512 | "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", 1513 | "dev": true, 1514 | "funding": [ 1515 | { 1516 | "type": "github", 1517 | "url": "https://github.com/sponsors/feross" 1518 | }, 1519 | { 1520 | "type": "patreon", 1521 | "url": "https://www.patreon.com/feross" 1522 | }, 1523 | { 1524 | "type": "consulting", 1525 | "url": "https://feross.org/support" 1526 | } 1527 | ] 1528 | }, 1529 | "node_modules/quick-lru": { 1530 | "version": "5.1.1", 1531 | "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz", 1532 | "integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==", 1533 | "dev": true, 1534 | "engines": { 1535 | "node": ">=10" 1536 | }, 1537 | "funding": { 1538 | "url": "https://github.com/sponsors/sindresorhus" 1539 | } 1540 | }, 1541 | "node_modules/react": { 1542 | "version": "17.0.2", 1543 | "resolved": "https://registry.npmjs.org/react/-/react-17.0.2.tgz", 1544 | "integrity": "sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA==", 1545 | "dependencies": { 1546 | "loose-envify": "^1.1.0", 1547 | "object-assign": "^4.1.1" 1548 | }, 1549 | "engines": { 1550 | "node": ">=0.10.0" 1551 | } 1552 | }, 1553 | "node_modules/react-dom": { 1554 | "version": "17.0.2", 1555 | "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-17.0.2.tgz", 1556 | "integrity": "sha512-s4h96KtLDUQlsENhMn1ar8t2bEa+q/YAtj8pPPdIjPDGBDIVNsrD9aXNWqspUe6AzKCIG0C1HZZLqLV7qpOBGA==", 1557 | "dependencies": { 1558 | "loose-envify": "^1.1.0", 1559 | "object-assign": "^4.1.1", 1560 | "scheduler": "^0.20.2" 1561 | }, 1562 | "peerDependencies": { 1563 | "react": "17.0.2" 1564 | } 1565 | }, 1566 | "node_modules/realm-web": { 1567 | "version": "1.3.0", 1568 | "resolved": "https://registry.npmjs.org/realm-web/-/realm-web-1.3.0.tgz", 1569 | "integrity": "sha512-8HlXGdJr3TvfUMu+zO6bhgpUapmqHy6zIdYl43QlVuZCg0u3mqMGPMNUVvuAcOp0EqDddj/UoGlDPGsfwlXdiA==", 1570 | "dependencies": { 1571 | "bson": "^4.2.0", 1572 | "detect-browser": "^5.1.1", 1573 | "js-base64": "^2.6.3" 1574 | }, 1575 | "optionalDependencies": { 1576 | "abort-controller": "^3.0.0", 1577 | "node-fetch": "^2.6.0" 1578 | } 1579 | }, 1580 | "node_modules/reduce-css-calc": { 1581 | "version": "2.1.8", 1582 | "resolved": "https://registry.npmjs.org/reduce-css-calc/-/reduce-css-calc-2.1.8.tgz", 1583 | "integrity": "sha512-8liAVezDmUcH+tdzoEGrhfbGcP7nOV4NkGE3a74+qqvE7nt9i4sKLGBuZNOnpI4WiGksiNPklZxva80061QiPg==", 1584 | "dev": true, 1585 | "dependencies": { 1586 | "css-unit-converter": "^1.1.1", 1587 | "postcss-value-parser": "^3.3.0" 1588 | } 1589 | }, 1590 | "node_modules/reduce-css-calc/node_modules/postcss-value-parser": { 1591 | "version": "3.3.1", 1592 | "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", 1593 | "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", 1594 | "dev": true 1595 | }, 1596 | "node_modules/resolve": { 1597 | "version": "1.20.0", 1598 | "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.20.0.tgz", 1599 | "integrity": "sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==", 1600 | "dev": true, 1601 | "dependencies": { 1602 | "is-core-module": "^2.2.0", 1603 | "path-parse": "^1.0.6" 1604 | }, 1605 | "funding": { 1606 | "url": "https://github.com/sponsors/ljharb" 1607 | } 1608 | }, 1609 | "node_modules/resolve-from": { 1610 | "version": "4.0.0", 1611 | "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", 1612 | "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", 1613 | "dev": true, 1614 | "engines": { 1615 | "node": ">=4" 1616 | } 1617 | }, 1618 | "node_modules/reusify": { 1619 | "version": "1.0.4", 1620 | "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", 1621 | "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", 1622 | "dev": true, 1623 | "engines": { 1624 | "iojs": ">=1.0.0", 1625 | "node": ">=0.10.0" 1626 | } 1627 | }, 1628 | "node_modules/rimraf": { 1629 | "version": "3.0.2", 1630 | "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", 1631 | "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", 1632 | "dev": true, 1633 | "dependencies": { 1634 | "glob": "^7.1.3" 1635 | }, 1636 | "bin": { 1637 | "rimraf": "bin.js" 1638 | }, 1639 | "funding": { 1640 | "url": "https://github.com/sponsors/isaacs" 1641 | } 1642 | }, 1643 | "node_modules/run-parallel": { 1644 | "version": "1.2.0", 1645 | "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", 1646 | "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", 1647 | "dev": true, 1648 | "funding": [ 1649 | { 1650 | "type": "github", 1651 | "url": "https://github.com/sponsors/feross" 1652 | }, 1653 | { 1654 | "type": "patreon", 1655 | "url": "https://www.patreon.com/feross" 1656 | }, 1657 | { 1658 | "type": "consulting", 1659 | "url": "https://feross.org/support" 1660 | } 1661 | ], 1662 | "dependencies": { 1663 | "queue-microtask": "^1.2.2" 1664 | } 1665 | }, 1666 | "node_modules/scheduler": { 1667 | "version": "0.20.2", 1668 | "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.20.2.tgz", 1669 | "integrity": "sha512-2eWfGgAqqWFGqtdMmcL5zCMK1U8KlXv8SQFGglL3CEtd0aDVDWgeF/YoCmvln55m5zSk3J/20hTaSBeSObsQDQ==", 1670 | "dependencies": { 1671 | "loose-envify": "^1.1.0", 1672 | "object-assign": "^4.1.1" 1673 | } 1674 | }, 1675 | "node_modules/simple-swizzle": { 1676 | "version": "0.2.2", 1677 | "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz", 1678 | "integrity": "sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo=", 1679 | "dev": true, 1680 | "dependencies": { 1681 | "is-arrayish": "^0.3.1" 1682 | } 1683 | }, 1684 | "node_modules/simple-swizzle/node_modules/is-arrayish": { 1685 | "version": "0.3.2", 1686 | "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz", 1687 | "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==", 1688 | "dev": true 1689 | }, 1690 | "node_modules/source-map-js": { 1691 | "version": "1.0.2", 1692 | "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", 1693 | "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", 1694 | "engines": { 1695 | "node": ">=0.10.0" 1696 | } 1697 | }, 1698 | "node_modules/styled-jsx": { 1699 | "version": "5.0.7", 1700 | "resolved": "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.0.7.tgz", 1701 | "integrity": "sha512-b3sUzamS086YLRuvnaDigdAewz1/EFYlHpYBP5mZovKEdQQOIIYq8lApylub3HHZ6xFjV051kkGU7cudJmrXEA==", 1702 | "engines": { 1703 | "node": ">= 12.0.0" 1704 | }, 1705 | "peerDependencies": { 1706 | "react": ">= 16.8.0 || 17.x.x || ^18.0.0-0" 1707 | }, 1708 | "peerDependenciesMeta": { 1709 | "@babel/core": { 1710 | "optional": true 1711 | }, 1712 | "babel-plugin-macros": { 1713 | "optional": true 1714 | } 1715 | } 1716 | }, 1717 | "node_modules/supports-color": { 1718 | "version": "5.5.0", 1719 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", 1720 | "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", 1721 | "dev": true, 1722 | "dependencies": { 1723 | "has-flag": "^3.0.0" 1724 | }, 1725 | "engines": { 1726 | "node": ">=4" 1727 | } 1728 | }, 1729 | "node_modules/tailwindcss": { 1730 | "version": "2.2.7", 1731 | "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-2.2.7.tgz", 1732 | "integrity": "sha512-jv35rugP5j8PpzbXnsria7ZAry7Evh0KtQ4MZqNd+PhF+oIKPwJTVwe/rmfRx9cZw3W7iPZyzBmeoAoNwfJ1yg==", 1733 | "dev": true, 1734 | "dependencies": { 1735 | "arg": "^5.0.0", 1736 | "bytes": "^3.0.0", 1737 | "chalk": "^4.1.1", 1738 | "chokidar": "^3.5.2", 1739 | "color": "^3.2.0", 1740 | "cosmiconfig": "^7.0.0", 1741 | "detective": "^5.2.0", 1742 | "didyoumean": "^1.2.2", 1743 | "dlv": "^1.1.3", 1744 | "fast-glob": "^3.2.7", 1745 | "fs-extra": "^10.0.0", 1746 | "glob-parent": "^6.0.0", 1747 | "html-tags": "^3.1.0", 1748 | "is-glob": "^4.0.1", 1749 | "lodash": "^4.17.21", 1750 | "lodash.topath": "^4.5.2", 1751 | "modern-normalize": "^1.1.0", 1752 | "node-emoji": "^1.8.1", 1753 | "normalize-path": "^3.0.0", 1754 | "object-hash": "^2.2.0", 1755 | "postcss-js": "^3.0.3", 1756 | "postcss-load-config": "^3.1.0", 1757 | "postcss-nested": "5.0.5", 1758 | "postcss-selector-parser": "^6.0.6", 1759 | "postcss-value-parser": "^4.1.0", 1760 | "pretty-hrtime": "^1.0.3", 1761 | "purgecss": "^4.0.3", 1762 | "quick-lru": "^5.1.1", 1763 | "reduce-css-calc": "^2.1.8", 1764 | "resolve": "^1.20.0", 1765 | "tmp": "^0.2.1" 1766 | }, 1767 | "bin": { 1768 | "tailwind": "lib/cli.js", 1769 | "tailwindcss": "lib/cli.js" 1770 | }, 1771 | "engines": { 1772 | "node": ">=12.13.0" 1773 | }, 1774 | "peerDependencies": { 1775 | "autoprefixer": "^10.0.2", 1776 | "postcss": "^8.0.9" 1777 | } 1778 | }, 1779 | "node_modules/tailwindcss/node_modules/ansi-styles": { 1780 | "version": "4.3.0", 1781 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", 1782 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", 1783 | "dev": true, 1784 | "dependencies": { 1785 | "color-convert": "^2.0.1" 1786 | }, 1787 | "engines": { 1788 | "node": ">=8" 1789 | }, 1790 | "funding": { 1791 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 1792 | } 1793 | }, 1794 | "node_modules/tailwindcss/node_modules/chalk": { 1795 | "version": "4.1.2", 1796 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 1797 | "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 1798 | "dev": true, 1799 | "dependencies": { 1800 | "ansi-styles": "^4.1.0", 1801 | "supports-color": "^7.1.0" 1802 | }, 1803 | "engines": { 1804 | "node": ">=10" 1805 | }, 1806 | "funding": { 1807 | "url": "https://github.com/chalk/chalk?sponsor=1" 1808 | } 1809 | }, 1810 | "node_modules/tailwindcss/node_modules/chokidar": { 1811 | "version": "3.5.2", 1812 | "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.2.tgz", 1813 | "integrity": "sha512-ekGhOnNVPgT77r4K/U3GDhu+FQ2S8TnK/s2KbIGXi0SZWuwkZ2QNyfWdZW+TVfn84DpEP7rLeCt2UI6bJ8GwbQ==", 1814 | "dev": true, 1815 | "dependencies": { 1816 | "anymatch": "~3.1.2", 1817 | "braces": "~3.0.2", 1818 | "glob-parent": "~5.1.2", 1819 | "is-binary-path": "~2.1.0", 1820 | "is-glob": "~4.0.1", 1821 | "normalize-path": "~3.0.0", 1822 | "readdirp": "~3.6.0" 1823 | }, 1824 | "engines": { 1825 | "node": ">= 8.10.0" 1826 | }, 1827 | "optionalDependencies": { 1828 | "fsevents": "~2.3.2" 1829 | } 1830 | }, 1831 | "node_modules/tailwindcss/node_modules/chokidar/node_modules/glob-parent": { 1832 | "version": "5.1.2", 1833 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", 1834 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 1835 | "dev": true, 1836 | "dependencies": { 1837 | "is-glob": "^4.0.1" 1838 | }, 1839 | "engines": { 1840 | "node": ">= 6" 1841 | } 1842 | }, 1843 | "node_modules/tailwindcss/node_modules/color-convert": { 1844 | "version": "2.0.1", 1845 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", 1846 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", 1847 | "dev": true, 1848 | "dependencies": { 1849 | "color-name": "~1.1.4" 1850 | }, 1851 | "engines": { 1852 | "node": ">=7.0.0" 1853 | } 1854 | }, 1855 | "node_modules/tailwindcss/node_modules/color-name": { 1856 | "version": "1.1.4", 1857 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", 1858 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", 1859 | "dev": true 1860 | }, 1861 | "node_modules/tailwindcss/node_modules/glob-parent": { 1862 | "version": "6.0.1", 1863 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.1.tgz", 1864 | "integrity": "sha512-kEVjS71mQazDBHKcsq4E9u/vUzaLcw1A8EtUeydawvIWQCJM0qQ08G1H7/XTjFUulla6XQiDOG6MXSaG0HDKog==", 1865 | "dev": true, 1866 | "dependencies": { 1867 | "is-glob": "^4.0.1" 1868 | }, 1869 | "engines": { 1870 | "node": ">=10.13.0" 1871 | } 1872 | }, 1873 | "node_modules/tailwindcss/node_modules/has-flag": { 1874 | "version": "4.0.0", 1875 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", 1876 | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", 1877 | "dev": true, 1878 | "engines": { 1879 | "node": ">=8" 1880 | } 1881 | }, 1882 | "node_modules/tailwindcss/node_modules/readdirp": { 1883 | "version": "3.6.0", 1884 | "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", 1885 | "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", 1886 | "dev": true, 1887 | "dependencies": { 1888 | "picomatch": "^2.2.1" 1889 | }, 1890 | "engines": { 1891 | "node": ">=8.10.0" 1892 | } 1893 | }, 1894 | "node_modules/tailwindcss/node_modules/supports-color": { 1895 | "version": "7.2.0", 1896 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", 1897 | "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", 1898 | "dev": true, 1899 | "dependencies": { 1900 | "has-flag": "^4.0.0" 1901 | }, 1902 | "engines": { 1903 | "node": ">=8" 1904 | } 1905 | }, 1906 | "node_modules/tmp": { 1907 | "version": "0.2.1", 1908 | "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.2.1.tgz", 1909 | "integrity": "sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ==", 1910 | "dev": true, 1911 | "dependencies": { 1912 | "rimraf": "^3.0.0" 1913 | }, 1914 | "engines": { 1915 | "node": ">=8.17.0" 1916 | } 1917 | }, 1918 | "node_modules/to-regex-range": { 1919 | "version": "5.0.1", 1920 | "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", 1921 | "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", 1922 | "dev": true, 1923 | "dependencies": { 1924 | "is-number": "^7.0.0" 1925 | }, 1926 | "engines": { 1927 | "node": ">=8.0" 1928 | } 1929 | }, 1930 | "node_modules/tr46": { 1931 | "version": "0.0.3", 1932 | "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", 1933 | "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", 1934 | "optional": true 1935 | }, 1936 | "node_modules/tslib": { 1937 | "version": "2.4.1", 1938 | "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.1.tgz", 1939 | "integrity": "sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==" 1940 | }, 1941 | "node_modules/universalify": { 1942 | "version": "2.0.0", 1943 | "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", 1944 | "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", 1945 | "dev": true, 1946 | "engines": { 1947 | "node": ">= 10.0.0" 1948 | } 1949 | }, 1950 | "node_modules/use-sync-external-store": { 1951 | "version": "1.2.0", 1952 | "resolved": "https://registry.npmjs.org/use-sync-external-store/-/use-sync-external-store-1.2.0.tgz", 1953 | "integrity": "sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==", 1954 | "peerDependencies": { 1955 | "react": "^16.8.0 || ^17.0.0 || ^18.0.0" 1956 | } 1957 | }, 1958 | "node_modules/util-deprecate": { 1959 | "version": "1.0.2", 1960 | "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", 1961 | "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", 1962 | "dev": true 1963 | }, 1964 | "node_modules/webidl-conversions": { 1965 | "version": "3.0.1", 1966 | "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", 1967 | "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", 1968 | "optional": true 1969 | }, 1970 | "node_modules/whatwg-url": { 1971 | "version": "5.0.0", 1972 | "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", 1973 | "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", 1974 | "optional": true, 1975 | "dependencies": { 1976 | "tr46": "~0.0.3", 1977 | "webidl-conversions": "^3.0.0" 1978 | } 1979 | }, 1980 | "node_modules/wrappy": { 1981 | "version": "1.0.2", 1982 | "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", 1983 | "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", 1984 | "dev": true 1985 | }, 1986 | "node_modules/xtend": { 1987 | "version": "4.0.2", 1988 | "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", 1989 | "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", 1990 | "dev": true, 1991 | "engines": { 1992 | "node": ">=0.4" 1993 | } 1994 | }, 1995 | "node_modules/yaml": { 1996 | "version": "1.10.2", 1997 | "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", 1998 | "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", 1999 | "dev": true, 2000 | "engines": { 2001 | "node": ">= 6" 2002 | } 2003 | } 2004 | }, 2005 | "dependencies": { 2006 | "@babel/code-frame": { 2007 | "version": "7.12.11", 2008 | "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz", 2009 | "integrity": "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==", 2010 | "dev": true, 2011 | "requires": { 2012 | "@babel/highlight": "^7.10.4" 2013 | } 2014 | }, 2015 | "@babel/helper-validator-identifier": { 2016 | "version": "7.14.9", 2017 | "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.9.tgz", 2018 | "integrity": "sha512-pQYxPY0UP6IHISRitNe8bsijHex4TWZXi2HwKVsjPiltzlhse2znVcm9Ace510VT1kxIHjGJCZZQBX2gJDbo0g==", 2019 | "dev": true 2020 | }, 2021 | "@babel/highlight": { 2022 | "version": "7.14.5", 2023 | "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.14.5.tgz", 2024 | "integrity": "sha512-qf9u2WFWVV0MppaL877j2dBtQIDgmidgjGk5VIMw3OadXvYaXn66U1BFlH2t4+t3i+8PhedppRv+i40ABzd+gg==", 2025 | "dev": true, 2026 | "requires": { 2027 | "@babel/helper-validator-identifier": "^7.14.5", 2028 | "chalk": "^2.0.0", 2029 | "js-tokens": "^4.0.0" 2030 | } 2031 | }, 2032 | "@heroicons/react": { 2033 | "version": "1.0.4", 2034 | "resolved": "https://registry.npmjs.org/@heroicons/react/-/react-1.0.4.tgz", 2035 | "integrity": "sha512-3kOrTmo8+Z8o6AL0rzN82MOf8J5CuxhRLFhpI8mrn+3OqekA6d5eb1GYO3EYYo1Vn6mYQSMNTzCWbEwUInb0cQ==", 2036 | "requires": {} 2037 | }, 2038 | "@next/env": { 2039 | "version": "12.3.3", 2040 | "resolved": "https://registry.npmjs.org/@next/env/-/env-12.3.3.tgz", 2041 | "integrity": "sha512-H2pKuOasV9RgvVaWosB2rGSNeQShQpiDaF4EEjLyagIc3HwqdOw2/VAG/8Lq+adOwPv2P73O1hulTNad3k5MDw==" 2042 | }, 2043 | "@next/swc-android-arm-eabi": { 2044 | "version": "12.3.3", 2045 | "resolved": "https://registry.npmjs.org/@next/swc-android-arm-eabi/-/swc-android-arm-eabi-12.3.3.tgz", 2046 | "integrity": "sha512-5O/ZIX6hlIRGMy1R2f/8WiCZ4Hp4WTC0FcTuz8ycQ28j/mzDnmzjVoayVVr+ZmfEKQayFrRu+vxHjFyY0JGQlQ==", 2047 | "optional": true 2048 | }, 2049 | "@next/swc-android-arm64": { 2050 | "version": "12.3.3", 2051 | "resolved": "https://registry.npmjs.org/@next/swc-android-arm64/-/swc-android-arm64-12.3.3.tgz", 2052 | "integrity": "sha512-2QWreRmlxYRDtnLYn+BI8oukHwcP7W0zGIY5R2mEXRjI4ARqCLdu8RmcT9Vemw7RfeAVKA/4cv/9PY0pCcQpNA==", 2053 | "optional": true 2054 | }, 2055 | "@next/swc-darwin-arm64": { 2056 | "version": "12.3.3", 2057 | "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-12.3.3.tgz", 2058 | "integrity": "sha512-GtZdDLerM+VToCMFp+W+WhnT6sxHePQH4xZZiYD/Y8KFiwHbDRcJr2FPG0bAJnGNiSvv/QQnBq74wjZ9+7vhcQ==", 2059 | "optional": true 2060 | }, 2061 | "@next/swc-darwin-x64": { 2062 | "version": "12.3.3", 2063 | "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-12.3.3.tgz", 2064 | "integrity": "sha512-gRYvTKrRYynjFQUDJ+upHMcBiNz0ii0m7zGgmUTlTSmrBWqVSzx79EHYT7Nn4GWHM+a/W+2VXfu+lqHcJeQ9gQ==", 2065 | "optional": true 2066 | }, 2067 | "@next/swc-freebsd-x64": { 2068 | "version": "12.3.3", 2069 | "resolved": "https://registry.npmjs.org/@next/swc-freebsd-x64/-/swc-freebsd-x64-12.3.3.tgz", 2070 | "integrity": "sha512-r+GLATzCjjQI82bgrIPXWEYBwZonSO64OThk5wU6HduZlDYTEDxZsFNoNoesCDWCgRrgg+OXj7WLNy1WlvfX7w==", 2071 | "optional": true 2072 | }, 2073 | "@next/swc-linux-arm-gnueabihf": { 2074 | "version": "12.3.3", 2075 | "resolved": "https://registry.npmjs.org/@next/swc-linux-arm-gnueabihf/-/swc-linux-arm-gnueabihf-12.3.3.tgz", 2076 | "integrity": "sha512-juvRj1QX9jmQScL4nV0rROtYUFgWP76zfdn1fdfZ2BhvwUugIAq8x+jLVGlnXKUhDrP9+RrAufqXjjVkK+uBxA==", 2077 | "optional": true 2078 | }, 2079 | "@next/swc-linux-arm64-gnu": { 2080 | "version": "12.3.3", 2081 | "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-12.3.3.tgz", 2082 | "integrity": "sha512-hzinybStPB+SzS68hR5rzOngOH7Yd/jFuWGeg9qS5WifYXHpqwGH2BQeKpjVV0iJuyO9r309JKrRWMrbfhnuBA==", 2083 | "optional": true 2084 | }, 2085 | "@next/swc-linux-arm64-musl": { 2086 | "version": "12.3.3", 2087 | "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-12.3.3.tgz", 2088 | "integrity": "sha512-oyfQYljCwf+9zUu1YkTZbRbyxmcHzvJPMGOxC3kJOReh3kCUoGcmvAxUPMtFD6FSYjJ+eaog4+2IFHtYuAw/bQ==", 2089 | "optional": true 2090 | }, 2091 | "@next/swc-linux-x64-gnu": { 2092 | "version": "12.3.3", 2093 | "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-12.3.3.tgz", 2094 | "integrity": "sha512-epv4FMazj/XG70KTTnrZ0H1VtL6DeWOvyHLHYy7f5PdgDpBXpDTFjVqhP8NFNH8HmaDDdeL1NvQD07AXhyvUKA==", 2095 | "optional": true 2096 | }, 2097 | "@next/swc-linux-x64-musl": { 2098 | "version": "12.3.3", 2099 | "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-12.3.3.tgz", 2100 | "integrity": "sha512-bG5QODFy59XnSFTiPyIAt+rbPdphtvQMibtOVvyjwIwsBUw7swJ6k+6PSPVYEYpi6SHzi3qYBsro39ayGJKQJg==", 2101 | "optional": true 2102 | }, 2103 | "@next/swc-win32-arm64-msvc": { 2104 | "version": "12.3.3", 2105 | "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-12.3.3.tgz", 2106 | "integrity": "sha512-FbnT3reJ3MbTJ5W0hvlCCGGVDSpburzT5XGC9ljBJ4kr+85iNTLjv7+vrPeDdwHEqtGmdZgnabkLVCI4yFyCag==", 2107 | "optional": true 2108 | }, 2109 | "@next/swc-win32-ia32-msvc": { 2110 | "version": "12.3.3", 2111 | "resolved": "https://registry.npmjs.org/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-12.3.3.tgz", 2112 | "integrity": "sha512-M/fKZC2tMGWA6eTsIniNEBpx2prdR8lIxvSO3gv5P6ymZOGVWCvEMksnTkPAjHnU6d8r8eCiuGKm3UNo7zCTpQ==", 2113 | "optional": true 2114 | }, 2115 | "@next/swc-win32-x64-msvc": { 2116 | "version": "12.3.3", 2117 | "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-12.3.3.tgz", 2118 | "integrity": "sha512-Ku9mfGwmNtk44o4B/jEWUxBAT4tJ3S7QbBMLJdL1GmtRZ05LGL36OqWjLvBPr8dFiHOQQbYoAmYfQw7zeGypYA==", 2119 | "optional": true 2120 | }, 2121 | "@nodelib/fs.scandir": { 2122 | "version": "2.1.5", 2123 | "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", 2124 | "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", 2125 | "dev": true, 2126 | "requires": { 2127 | "@nodelib/fs.stat": "2.0.5", 2128 | "run-parallel": "^1.1.9" 2129 | } 2130 | }, 2131 | "@nodelib/fs.stat": { 2132 | "version": "2.0.5", 2133 | "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", 2134 | "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", 2135 | "dev": true 2136 | }, 2137 | "@nodelib/fs.walk": { 2138 | "version": "1.2.8", 2139 | "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", 2140 | "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", 2141 | "dev": true, 2142 | "requires": { 2143 | "@nodelib/fs.scandir": "2.1.5", 2144 | "fastq": "^1.6.0" 2145 | } 2146 | }, 2147 | "@swc/helpers": { 2148 | "version": "0.4.11", 2149 | "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.4.11.tgz", 2150 | "integrity": "sha512-rEUrBSGIoSFuYxwBYtlUFMlE2CwGhmW+w9355/5oduSw8e5h2+Tj4UrAGNNgP9915++wj5vkQo0UuOBqOAq4nw==", 2151 | "requires": { 2152 | "tslib": "^2.4.0" 2153 | } 2154 | }, 2155 | "@types/parse-json": { 2156 | "version": "4.0.0", 2157 | "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz", 2158 | "integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==", 2159 | "dev": true 2160 | }, 2161 | "abort-controller": { 2162 | "version": "3.0.0", 2163 | "resolved": "https://registry.npmjs.org/abort-controller/-/abort-controller-3.0.0.tgz", 2164 | "integrity": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==", 2165 | "optional": true, 2166 | "requires": { 2167 | "event-target-shim": "^5.0.0" 2168 | } 2169 | }, 2170 | "acorn": { 2171 | "version": "7.4.1", 2172 | "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", 2173 | "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", 2174 | "dev": true 2175 | }, 2176 | "acorn-node": { 2177 | "version": "1.8.2", 2178 | "resolved": "https://registry.npmjs.org/acorn-node/-/acorn-node-1.8.2.tgz", 2179 | "integrity": "sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A==", 2180 | "dev": true, 2181 | "requires": { 2182 | "acorn": "^7.0.0", 2183 | "acorn-walk": "^7.0.0", 2184 | "xtend": "^4.0.2" 2185 | } 2186 | }, 2187 | "acorn-walk": { 2188 | "version": "7.2.0", 2189 | "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz", 2190 | "integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==", 2191 | "dev": true 2192 | }, 2193 | "ansi-styles": { 2194 | "version": "3.2.1", 2195 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", 2196 | "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", 2197 | "dev": true, 2198 | "requires": { 2199 | "color-convert": "^1.9.0" 2200 | } 2201 | }, 2202 | "anymatch": { 2203 | "version": "3.1.2", 2204 | "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz", 2205 | "integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==", 2206 | "dev": true, 2207 | "requires": { 2208 | "normalize-path": "^3.0.0", 2209 | "picomatch": "^2.0.4" 2210 | } 2211 | }, 2212 | "arg": { 2213 | "version": "5.0.0", 2214 | "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.0.tgz", 2215 | "integrity": "sha512-4P8Zm2H+BRS+c/xX1LrHw0qKpEhdlZjLCgWy+d78T9vqa2Z2SiD2wMrYuWIAFy5IZUD7nnNXroRttz+0RzlrzQ==", 2216 | "dev": true 2217 | }, 2218 | "autoprefixer": { 2219 | "version": "10.3.1", 2220 | "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.3.1.tgz", 2221 | "integrity": "sha512-L8AmtKzdiRyYg7BUXJTzigmhbQRCXFKz6SA1Lqo0+AR2FBbQ4aTAPFSDlOutnFkjhiz8my4agGXog1xlMjPJ6A==", 2222 | "dev": true, 2223 | "requires": { 2224 | "browserslist": "^4.16.6", 2225 | "caniuse-lite": "^1.0.30001243", 2226 | "colorette": "^1.2.2", 2227 | "fraction.js": "^4.1.1", 2228 | "normalize-range": "^0.1.2", 2229 | "postcss-value-parser": "^4.1.0" 2230 | } 2231 | }, 2232 | "balanced-match": { 2233 | "version": "1.0.2", 2234 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", 2235 | "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", 2236 | "dev": true 2237 | }, 2238 | "base64-js": { 2239 | "version": "1.5.1", 2240 | "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", 2241 | "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==" 2242 | }, 2243 | "binary-extensions": { 2244 | "version": "2.2.0", 2245 | "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", 2246 | "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", 2247 | "dev": true 2248 | }, 2249 | "brace-expansion": { 2250 | "version": "1.1.11", 2251 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 2252 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 2253 | "dev": true, 2254 | "requires": { 2255 | "balanced-match": "^1.0.0", 2256 | "concat-map": "0.0.1" 2257 | } 2258 | }, 2259 | "braces": { 2260 | "version": "3.0.2", 2261 | "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", 2262 | "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", 2263 | "dev": true, 2264 | "requires": { 2265 | "fill-range": "^7.0.1" 2266 | } 2267 | }, 2268 | "browserslist": { 2269 | "version": "4.16.7", 2270 | "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.16.7.tgz", 2271 | "integrity": "sha512-7I4qVwqZltJ7j37wObBe3SoTz+nS8APaNcrBOlgoirb6/HbEU2XxW/LpUDTCngM6iauwFqmRTuOMfyKnFGY5JA==", 2272 | "dev": true, 2273 | "requires": { 2274 | "caniuse-lite": "^1.0.30001248", 2275 | "colorette": "^1.2.2", 2276 | "electron-to-chromium": "^1.3.793", 2277 | "escalade": "^3.1.1", 2278 | "node-releases": "^1.1.73" 2279 | } 2280 | }, 2281 | "bson": { 2282 | "version": "4.4.1", 2283 | "resolved": "https://registry.npmjs.org/bson/-/bson-4.4.1.tgz", 2284 | "integrity": "sha512-Uu4OCZa0jouQJCKOk1EmmyqtdWAP5HVLru4lQxTwzJzxT+sJ13lVpEZU/MATDxtHiekWMAL84oQY3Xn1LpJVSg==", 2285 | "requires": { 2286 | "buffer": "^5.6.0" 2287 | } 2288 | }, 2289 | "buffer": { 2290 | "version": "5.6.0", 2291 | "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.6.0.tgz", 2292 | "integrity": "sha512-/gDYp/UtU0eA1ys8bOs9J6a+E/KWIY+DZ+Q2WESNUA0jFRsJOc0SNUO6xJ5SGA1xueg3NL65W6s+NY5l9cunuw==", 2293 | "requires": { 2294 | "base64-js": "^1.0.2", 2295 | "ieee754": "^1.1.4" 2296 | } 2297 | }, 2298 | "bytes": { 2299 | "version": "3.1.0", 2300 | "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz", 2301 | "integrity": "sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==", 2302 | "dev": true 2303 | }, 2304 | "callsites": { 2305 | "version": "3.1.0", 2306 | "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", 2307 | "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", 2308 | "dev": true 2309 | }, 2310 | "camelcase-css": { 2311 | "version": "2.0.1", 2312 | "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz", 2313 | "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==", 2314 | "dev": true 2315 | }, 2316 | "caniuse-lite": { 2317 | "version": "1.0.30001434", 2318 | "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001434.tgz", 2319 | "integrity": "sha512-aOBHrLmTQw//WFa2rcF1If9fa3ypkC1wzqqiKHgfdrXTWcU8C4gKVZT77eQAPWN1APys3+uQ0Df07rKauXGEYA==" 2320 | }, 2321 | "chalk": { 2322 | "version": "2.4.2", 2323 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", 2324 | "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", 2325 | "dev": true, 2326 | "requires": { 2327 | "ansi-styles": "^3.2.1", 2328 | "escape-string-regexp": "^1.0.5", 2329 | "supports-color": "^5.3.0" 2330 | } 2331 | }, 2332 | "color": { 2333 | "version": "3.2.1", 2334 | "resolved": "https://registry.npmjs.org/color/-/color-3.2.1.tgz", 2335 | "integrity": "sha512-aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA==", 2336 | "dev": true, 2337 | "requires": { 2338 | "color-convert": "^1.9.3", 2339 | "color-string": "^1.6.0" 2340 | } 2341 | }, 2342 | "color-convert": { 2343 | "version": "1.9.3", 2344 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", 2345 | "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", 2346 | "dev": true, 2347 | "requires": { 2348 | "color-name": "1.1.3" 2349 | } 2350 | }, 2351 | "color-name": { 2352 | "version": "1.1.3", 2353 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", 2354 | "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", 2355 | "dev": true 2356 | }, 2357 | "color-string": { 2358 | "version": "1.6.0", 2359 | "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.6.0.tgz", 2360 | "integrity": "sha512-c/hGS+kRWJutUBEngKKmk4iH3sD59MBkoxVapS/0wgpCz2u7XsNloxknyvBhzwEs1IbV36D9PwqLPJ2DTu3vMA==", 2361 | "dev": true, 2362 | "requires": { 2363 | "color-name": "^1.0.0", 2364 | "simple-swizzle": "^0.2.2" 2365 | } 2366 | }, 2367 | "colorette": { 2368 | "version": "1.2.2", 2369 | "resolved": "https://registry.npmjs.org/colorette/-/colorette-1.2.2.tgz", 2370 | "integrity": "sha512-MKGMzyfeuutC/ZJ1cba9NqcNpfeqMUcYmyF1ZFY6/Cn7CNSAKx6a+s48sqLqyAiZuaP2TcqMhoo+dlwFnVxT9w==", 2371 | "dev": true 2372 | }, 2373 | "commander": { 2374 | "version": "6.2.1", 2375 | "resolved": "https://registry.npmjs.org/commander/-/commander-6.2.1.tgz", 2376 | "integrity": "sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==", 2377 | "dev": true 2378 | }, 2379 | "concat-map": { 2380 | "version": "0.0.1", 2381 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", 2382 | "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", 2383 | "dev": true 2384 | }, 2385 | "cosmiconfig": { 2386 | "version": "7.0.0", 2387 | "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.0.0.tgz", 2388 | "integrity": "sha512-pondGvTuVYDk++upghXJabWzL6Kxu6f26ljFw64Swq9v6sQPUL3EUlVDV56diOjpCayKihL6hVe8exIACU4XcA==", 2389 | "dev": true, 2390 | "requires": { 2391 | "@types/parse-json": "^4.0.0", 2392 | "import-fresh": "^3.2.1", 2393 | "parse-json": "^5.0.0", 2394 | "path-type": "^4.0.0", 2395 | "yaml": "^1.10.0" 2396 | } 2397 | }, 2398 | "css-unit-converter": { 2399 | "version": "1.1.2", 2400 | "resolved": "https://registry.npmjs.org/css-unit-converter/-/css-unit-converter-1.1.2.tgz", 2401 | "integrity": "sha512-IiJwMC8rdZE0+xiEZHeru6YoONC4rfPMqGm2W85jMIbkFvv5nFTwJVFHam2eFrN6txmoUYFAFXiv8ICVeTO0MA==", 2402 | "dev": true 2403 | }, 2404 | "cssesc": { 2405 | "version": "3.0.0", 2406 | "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", 2407 | "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", 2408 | "dev": true 2409 | }, 2410 | "defined": { 2411 | "version": "1.0.0", 2412 | "resolved": "https://registry.npmjs.org/defined/-/defined-1.0.0.tgz", 2413 | "integrity": "sha1-yY2bzvdWdBiOEQlpFRGZ45sfppM=", 2414 | "dev": true 2415 | }, 2416 | "detect-browser": { 2417 | "version": "5.2.0", 2418 | "resolved": "https://registry.npmjs.org/detect-browser/-/detect-browser-5.2.0.tgz", 2419 | "integrity": "sha512-tr7XntDAu50BVENgQfajMLzacmSe34D+qZc4zjnniz0ZVuw/TZcLcyxHQjYpJTM36sGEkZZlYLnIM1hH7alTMA==" 2420 | }, 2421 | "detective": { 2422 | "version": "5.2.0", 2423 | "resolved": "https://registry.npmjs.org/detective/-/detective-5.2.0.tgz", 2424 | "integrity": "sha512-6SsIx+nUUbuK0EthKjv0zrdnajCCXVYGmbYYiYjFVpzcjwEs/JMDZ8tPRG29J/HhN56t3GJp2cGSWDRjjot8Pg==", 2425 | "dev": true, 2426 | "requires": { 2427 | "acorn-node": "^1.6.1", 2428 | "defined": "^1.0.0", 2429 | "minimist": "^1.1.1" 2430 | } 2431 | }, 2432 | "didyoumean": { 2433 | "version": "1.2.2", 2434 | "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz", 2435 | "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==", 2436 | "dev": true 2437 | }, 2438 | "dlv": { 2439 | "version": "1.1.3", 2440 | "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz", 2441 | "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==", 2442 | "dev": true 2443 | }, 2444 | "electron-to-chromium": { 2445 | "version": "1.3.798", 2446 | "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.798.tgz", 2447 | "integrity": "sha512-fwsr6oXAORoV9a6Ak2vMCdXfmHIpAGgpOGesulS1cbGgJmrMl3H+GicUyRG3t+z9uHTMrIuMTleFDW+EUFYT3g==", 2448 | "dev": true 2449 | }, 2450 | "error-ex": { 2451 | "version": "1.3.2", 2452 | "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", 2453 | "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", 2454 | "dev": true, 2455 | "requires": { 2456 | "is-arrayish": "^0.2.1" 2457 | } 2458 | }, 2459 | "escalade": { 2460 | "version": "3.1.1", 2461 | "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", 2462 | "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", 2463 | "dev": true 2464 | }, 2465 | "escape-string-regexp": { 2466 | "version": "1.0.5", 2467 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", 2468 | "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", 2469 | "dev": true 2470 | }, 2471 | "event-target-shim": { 2472 | "version": "5.0.1", 2473 | "resolved": "https://registry.npmjs.org/event-target-shim/-/event-target-shim-5.0.1.tgz", 2474 | "integrity": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==", 2475 | "optional": true 2476 | }, 2477 | "fast-glob": { 2478 | "version": "3.2.7", 2479 | "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.7.tgz", 2480 | "integrity": "sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q==", 2481 | "dev": true, 2482 | "requires": { 2483 | "@nodelib/fs.stat": "^2.0.2", 2484 | "@nodelib/fs.walk": "^1.2.3", 2485 | "glob-parent": "^5.1.2", 2486 | "merge2": "^1.3.0", 2487 | "micromatch": "^4.0.4" 2488 | } 2489 | }, 2490 | "fastq": { 2491 | "version": "1.11.1", 2492 | "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.11.1.tgz", 2493 | "integrity": "sha512-HOnr8Mc60eNYl1gzwp6r5RoUyAn5/glBolUzP/Ez6IFVPMPirxn/9phgL6zhOtaTy7ISwPvQ+wT+hfcRZh/bzw==", 2494 | "dev": true, 2495 | "requires": { 2496 | "reusify": "^1.0.4" 2497 | } 2498 | }, 2499 | "fill-range": { 2500 | "version": "7.0.1", 2501 | "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", 2502 | "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", 2503 | "dev": true, 2504 | "requires": { 2505 | "to-regex-range": "^5.0.1" 2506 | } 2507 | }, 2508 | "fraction.js": { 2509 | "version": "4.1.1", 2510 | "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.1.1.tgz", 2511 | "integrity": "sha512-MHOhvvxHTfRFpF1geTK9czMIZ6xclsEor2wkIGYYq+PxcQqT7vStJqjhe6S1TenZrMZzo+wlqOufBDVepUEgPg==", 2512 | "dev": true 2513 | }, 2514 | "fs-extra": { 2515 | "version": "10.0.0", 2516 | "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.0.0.tgz", 2517 | "integrity": "sha512-C5owb14u9eJwizKGdchcDUQeFtlSHHthBk8pbX9Vc1PFZrLombudjDnNns88aYslCyF6IY5SUw3Roz6xShcEIQ==", 2518 | "dev": true, 2519 | "requires": { 2520 | "graceful-fs": "^4.2.0", 2521 | "jsonfile": "^6.0.1", 2522 | "universalify": "^2.0.0" 2523 | } 2524 | }, 2525 | "fs.realpath": { 2526 | "version": "1.0.0", 2527 | "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", 2528 | "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", 2529 | "dev": true 2530 | }, 2531 | "fsevents": { 2532 | "version": "2.3.2", 2533 | "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", 2534 | "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", 2535 | "dev": true, 2536 | "optional": true 2537 | }, 2538 | "function-bind": { 2539 | "version": "1.1.1", 2540 | "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", 2541 | "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", 2542 | "dev": true 2543 | }, 2544 | "glob": { 2545 | "version": "7.1.7", 2546 | "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz", 2547 | "integrity": "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==", 2548 | "dev": true, 2549 | "requires": { 2550 | "fs.realpath": "^1.0.0", 2551 | "inflight": "^1.0.4", 2552 | "inherits": "2", 2553 | "minimatch": "^3.0.4", 2554 | "once": "^1.3.0", 2555 | "path-is-absolute": "^1.0.0" 2556 | } 2557 | }, 2558 | "glob-parent": { 2559 | "version": "5.1.2", 2560 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", 2561 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 2562 | "dev": true, 2563 | "requires": { 2564 | "is-glob": "^4.0.1" 2565 | } 2566 | }, 2567 | "graceful-fs": { 2568 | "version": "4.2.8", 2569 | "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.8.tgz", 2570 | "integrity": "sha512-qkIilPUYcNhJpd33n0GBXTB1MMPp14TxEsEs0pTrsSVucApsYzW5V+Q8Qxhik6KU3evy+qkAAowTByymK0avdg==", 2571 | "dev": true 2572 | }, 2573 | "has": { 2574 | "version": "1.0.3", 2575 | "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", 2576 | "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", 2577 | "dev": true, 2578 | "requires": { 2579 | "function-bind": "^1.1.1" 2580 | } 2581 | }, 2582 | "has-flag": { 2583 | "version": "3.0.0", 2584 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", 2585 | "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", 2586 | "dev": true 2587 | }, 2588 | "html-tags": { 2589 | "version": "3.1.0", 2590 | "resolved": "https://registry.npmjs.org/html-tags/-/html-tags-3.1.0.tgz", 2591 | "integrity": "sha512-1qYz89hW3lFDEazhjW0yVAV87lw8lVkrJocr72XmBkMKsoSVJCQx3W8BXsC7hO2qAt8BoVjYjtAcZ9perqGnNg==", 2592 | "dev": true 2593 | }, 2594 | "ieee754": { 2595 | "version": "1.2.1", 2596 | "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", 2597 | "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==" 2598 | }, 2599 | "import-cwd": { 2600 | "version": "3.0.0", 2601 | "resolved": "https://registry.npmjs.org/import-cwd/-/import-cwd-3.0.0.tgz", 2602 | "integrity": "sha512-4pnzH16plW+hgvRECbDWpQl3cqtvSofHWh44met7ESfZ8UZOWWddm8hEyDTqREJ9RbYHY8gi8DqmaelApoOGMg==", 2603 | "dev": true, 2604 | "requires": { 2605 | "import-from": "^3.0.0" 2606 | } 2607 | }, 2608 | "import-fresh": { 2609 | "version": "3.3.0", 2610 | "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", 2611 | "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", 2612 | "dev": true, 2613 | "requires": { 2614 | "parent-module": "^1.0.0", 2615 | "resolve-from": "^4.0.0" 2616 | } 2617 | }, 2618 | "import-from": { 2619 | "version": "3.0.0", 2620 | "resolved": "https://registry.npmjs.org/import-from/-/import-from-3.0.0.tgz", 2621 | "integrity": "sha512-CiuXOFFSzkU5x/CR0+z7T91Iht4CXgfCxVOFRhh2Zyhg5wOpWvvDLQUsWl+gcN+QscYBjez8hDCt85O7RLDttQ==", 2622 | "dev": true, 2623 | "requires": { 2624 | "resolve-from": "^5.0.0" 2625 | }, 2626 | "dependencies": { 2627 | "resolve-from": { 2628 | "version": "5.0.0", 2629 | "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", 2630 | "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", 2631 | "dev": true 2632 | } 2633 | } 2634 | }, 2635 | "inflight": { 2636 | "version": "1.0.6", 2637 | "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", 2638 | "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", 2639 | "dev": true, 2640 | "requires": { 2641 | "once": "^1.3.0", 2642 | "wrappy": "1" 2643 | } 2644 | }, 2645 | "inherits": { 2646 | "version": "2.0.4", 2647 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", 2648 | "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", 2649 | "dev": true 2650 | }, 2651 | "is-arrayish": { 2652 | "version": "0.2.1", 2653 | "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", 2654 | "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=", 2655 | "dev": true 2656 | }, 2657 | "is-binary-path": { 2658 | "version": "2.1.0", 2659 | "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", 2660 | "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", 2661 | "dev": true, 2662 | "requires": { 2663 | "binary-extensions": "^2.0.0" 2664 | } 2665 | }, 2666 | "is-core-module": { 2667 | "version": "2.5.0", 2668 | "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.5.0.tgz", 2669 | "integrity": "sha512-TXCMSDsEHMEEZ6eCA8rwRDbLu55MRGmrctljsBX/2v1d9/GzqHOxW5c5oPSgrUt2vBFXebu9rGqckXGPWOlYpg==", 2670 | "dev": true, 2671 | "requires": { 2672 | "has": "^1.0.3" 2673 | } 2674 | }, 2675 | "is-extglob": { 2676 | "version": "2.1.1", 2677 | "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", 2678 | "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", 2679 | "dev": true 2680 | }, 2681 | "is-glob": { 2682 | "version": "4.0.1", 2683 | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz", 2684 | "integrity": "sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==", 2685 | "dev": true, 2686 | "requires": { 2687 | "is-extglob": "^2.1.1" 2688 | } 2689 | }, 2690 | "is-number": { 2691 | "version": "7.0.0", 2692 | "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", 2693 | "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", 2694 | "dev": true 2695 | }, 2696 | "js-base64": { 2697 | "version": "2.6.4", 2698 | "resolved": "https://registry.npmjs.org/js-base64/-/js-base64-2.6.4.tgz", 2699 | "integrity": "sha512-pZe//GGmwJndub7ZghVHz7vjb2LgC1m8B07Au3eYqeqv9emhESByMXxaEgkUkEqJe87oBbSniGYoQNIBklc7IQ==" 2700 | }, 2701 | "js-tokens": { 2702 | "version": "4.0.0", 2703 | "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", 2704 | "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" 2705 | }, 2706 | "json-parse-even-better-errors": { 2707 | "version": "2.3.1", 2708 | "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", 2709 | "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", 2710 | "dev": true 2711 | }, 2712 | "jsonfile": { 2713 | "version": "6.1.0", 2714 | "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", 2715 | "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", 2716 | "dev": true, 2717 | "requires": { 2718 | "graceful-fs": "^4.1.6", 2719 | "universalify": "^2.0.0" 2720 | } 2721 | }, 2722 | "lilconfig": { 2723 | "version": "2.0.3", 2724 | "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.0.3.tgz", 2725 | "integrity": "sha512-EHKqr/+ZvdKCifpNrJCKxBTgk5XupZA3y/aCPY9mxfgBzmgh93Mt/WqjjQ38oMxXuvDokaKiM3lAgvSH2sjtHg==", 2726 | "dev": true 2727 | }, 2728 | "lines-and-columns": { 2729 | "version": "1.1.6", 2730 | "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.1.6.tgz", 2731 | "integrity": "sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA=", 2732 | "dev": true 2733 | }, 2734 | "lodash": { 2735 | "version": "4.17.21", 2736 | "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", 2737 | "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", 2738 | "dev": true 2739 | }, 2740 | "lodash.toarray": { 2741 | "version": "4.4.0", 2742 | "resolved": "https://registry.npmjs.org/lodash.toarray/-/lodash.toarray-4.4.0.tgz", 2743 | "integrity": "sha1-JMS/zWsvuji/0FlNsRedjptlZWE=", 2744 | "dev": true 2745 | }, 2746 | "lodash.topath": { 2747 | "version": "4.5.2", 2748 | "resolved": "https://registry.npmjs.org/lodash.topath/-/lodash.topath-4.5.2.tgz", 2749 | "integrity": "sha1-NhY1Hzu6YZlKCTGYlmC9AyVP0Ak=", 2750 | "dev": true 2751 | }, 2752 | "loose-envify": { 2753 | "version": "1.4.0", 2754 | "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", 2755 | "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", 2756 | "requires": { 2757 | "js-tokens": "^3.0.0 || ^4.0.0" 2758 | } 2759 | }, 2760 | "merge2": { 2761 | "version": "1.4.1", 2762 | "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", 2763 | "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", 2764 | "dev": true 2765 | }, 2766 | "micromatch": { 2767 | "version": "4.0.4", 2768 | "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.4.tgz", 2769 | "integrity": "sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg==", 2770 | "dev": true, 2771 | "requires": { 2772 | "braces": "^3.0.1", 2773 | "picomatch": "^2.2.3" 2774 | } 2775 | }, 2776 | "minimatch": { 2777 | "version": "3.1.2", 2778 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 2779 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 2780 | "dev": true, 2781 | "requires": { 2782 | "brace-expansion": "^1.1.7" 2783 | } 2784 | }, 2785 | "minimist": { 2786 | "version": "1.2.7", 2787 | "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.7.tgz", 2788 | "integrity": "sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g==", 2789 | "dev": true 2790 | }, 2791 | "modern-normalize": { 2792 | "version": "1.1.0", 2793 | "resolved": "https://registry.npmjs.org/modern-normalize/-/modern-normalize-1.1.0.tgz", 2794 | "integrity": "sha512-2lMlY1Yc1+CUy0gw4H95uNN7vjbpoED7NNRSBHE25nWfLBdmMzFCsPshlzbxHz+gYMcBEUN8V4pU16prcdPSgA==", 2795 | "dev": true 2796 | }, 2797 | "nanoid": { 2798 | "version": "3.3.4", 2799 | "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz", 2800 | "integrity": "sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==" 2801 | }, 2802 | "next": { 2803 | "version": "12.3.3", 2804 | "resolved": "https://registry.npmjs.org/next/-/next-12.3.3.tgz", 2805 | "integrity": "sha512-Rx2Y6Wl5R8E77NOfBupp/B9OPCklqfqD0yN2+rDivhMjd6hjVFH5n0WTDI4PWwDmZsdNcYt6NV85kJ3PLR+eNQ==", 2806 | "requires": { 2807 | "@next/env": "12.3.3", 2808 | "@next/swc-android-arm-eabi": "12.3.3", 2809 | "@next/swc-android-arm64": "12.3.3", 2810 | "@next/swc-darwin-arm64": "12.3.3", 2811 | "@next/swc-darwin-x64": "12.3.3", 2812 | "@next/swc-freebsd-x64": "12.3.3", 2813 | "@next/swc-linux-arm-gnueabihf": "12.3.3", 2814 | "@next/swc-linux-arm64-gnu": "12.3.3", 2815 | "@next/swc-linux-arm64-musl": "12.3.3", 2816 | "@next/swc-linux-x64-gnu": "12.3.3", 2817 | "@next/swc-linux-x64-musl": "12.3.3", 2818 | "@next/swc-win32-arm64-msvc": "12.3.3", 2819 | "@next/swc-win32-ia32-msvc": "12.3.3", 2820 | "@next/swc-win32-x64-msvc": "12.3.3", 2821 | "@swc/helpers": "0.4.11", 2822 | "caniuse-lite": "^1.0.30001406", 2823 | "postcss": "8.4.14", 2824 | "styled-jsx": "5.0.7", 2825 | "use-sync-external-store": "1.2.0" 2826 | } 2827 | }, 2828 | "node-emoji": { 2829 | "version": "1.10.0", 2830 | "resolved": "https://registry.npmjs.org/node-emoji/-/node-emoji-1.10.0.tgz", 2831 | "integrity": "sha512-Yt3384If5H6BYGVHiHwTL+99OzJKHhgp82S8/dktEK73T26BazdgZ4JZh92xSVtGNJvz9UbXdNAc5hcrXV42vw==", 2832 | "dev": true, 2833 | "requires": { 2834 | "lodash.toarray": "^4.4.0" 2835 | } 2836 | }, 2837 | "node-fetch": { 2838 | "version": "2.6.7", 2839 | "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz", 2840 | "integrity": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==", 2841 | "optional": true, 2842 | "requires": { 2843 | "whatwg-url": "^5.0.0" 2844 | } 2845 | }, 2846 | "node-releases": { 2847 | "version": "1.1.73", 2848 | "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.73.tgz", 2849 | "integrity": "sha512-uW7fodD6pyW2FZNZnp/Z3hvWKeEW1Y8R1+1CnErE8cXFXzl5blBOoVB41CvMer6P6Q0S5FXDwcHgFd1Wj0U9zg==", 2850 | "dev": true 2851 | }, 2852 | "normalize-path": { 2853 | "version": "3.0.0", 2854 | "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", 2855 | "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", 2856 | "dev": true 2857 | }, 2858 | "normalize-range": { 2859 | "version": "0.1.2", 2860 | "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", 2861 | "integrity": "sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=", 2862 | "dev": true 2863 | }, 2864 | "object-assign": { 2865 | "version": "4.1.1", 2866 | "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", 2867 | "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=" 2868 | }, 2869 | "object-hash": { 2870 | "version": "2.2.0", 2871 | "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-2.2.0.tgz", 2872 | "integrity": "sha512-gScRMn0bS5fH+IuwyIFgnh9zBdo4DV+6GhygmWM9HyNJSgS0hScp1f5vjtm7oIIOiT9trXrShAkLFSc2IqKNgw==", 2873 | "dev": true 2874 | }, 2875 | "once": { 2876 | "version": "1.4.0", 2877 | "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", 2878 | "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", 2879 | "dev": true, 2880 | "requires": { 2881 | "wrappy": "1" 2882 | } 2883 | }, 2884 | "parent-module": { 2885 | "version": "1.0.1", 2886 | "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", 2887 | "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", 2888 | "dev": true, 2889 | "requires": { 2890 | "callsites": "^3.0.0" 2891 | } 2892 | }, 2893 | "parse-json": { 2894 | "version": "5.2.0", 2895 | "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", 2896 | "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", 2897 | "dev": true, 2898 | "requires": { 2899 | "@babel/code-frame": "^7.0.0", 2900 | "error-ex": "^1.3.1", 2901 | "json-parse-even-better-errors": "^2.3.0", 2902 | "lines-and-columns": "^1.1.6" 2903 | } 2904 | }, 2905 | "path-is-absolute": { 2906 | "version": "1.0.1", 2907 | "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", 2908 | "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", 2909 | "dev": true 2910 | }, 2911 | "path-parse": { 2912 | "version": "1.0.7", 2913 | "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", 2914 | "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", 2915 | "dev": true 2916 | }, 2917 | "path-type": { 2918 | "version": "4.0.0", 2919 | "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", 2920 | "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", 2921 | "dev": true 2922 | }, 2923 | "picocolors": { 2924 | "version": "1.0.0", 2925 | "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", 2926 | "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" 2927 | }, 2928 | "picomatch": { 2929 | "version": "2.3.0", 2930 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.0.tgz", 2931 | "integrity": "sha512-lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw==", 2932 | "dev": true 2933 | }, 2934 | "postcss": { 2935 | "version": "8.4.14", 2936 | "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.14.tgz", 2937 | "integrity": "sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==", 2938 | "requires": { 2939 | "nanoid": "^3.3.4", 2940 | "picocolors": "^1.0.0", 2941 | "source-map-js": "^1.0.2" 2942 | } 2943 | }, 2944 | "postcss-js": { 2945 | "version": "3.0.3", 2946 | "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-3.0.3.tgz", 2947 | "integrity": "sha512-gWnoWQXKFw65Hk/mi2+WTQTHdPD5UJdDXZmX073EY/B3BWnYjO4F4t0VneTCnCGQ5E5GsCdMkzPaTXwl3r5dJw==", 2948 | "dev": true, 2949 | "requires": { 2950 | "camelcase-css": "^2.0.1", 2951 | "postcss": "^8.1.6" 2952 | } 2953 | }, 2954 | "postcss-load-config": { 2955 | "version": "3.1.0", 2956 | "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-3.1.0.tgz", 2957 | "integrity": "sha512-ipM8Ds01ZUophjDTQYSVP70slFSYg3T0/zyfII5vzhN6V57YSxMgG5syXuwi5VtS8wSf3iL30v0uBdoIVx4Q0g==", 2958 | "dev": true, 2959 | "requires": { 2960 | "import-cwd": "^3.0.0", 2961 | "lilconfig": "^2.0.3", 2962 | "yaml": "^1.10.2" 2963 | } 2964 | }, 2965 | "postcss-nested": { 2966 | "version": "5.0.5", 2967 | "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-5.0.5.tgz", 2968 | "integrity": "sha512-GSRXYz5bccobpTzLQZXOnSOfKl6TwVr5CyAQJUPub4nuRJSOECK5AqurxVgmtxP48p0Kc/ndY/YyS1yqldX0Ew==", 2969 | "dev": true, 2970 | "requires": { 2971 | "postcss-selector-parser": "^6.0.4" 2972 | } 2973 | }, 2974 | "postcss-selector-parser": { 2975 | "version": "6.0.6", 2976 | "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.6.tgz", 2977 | "integrity": "sha512-9LXrvaaX3+mcv5xkg5kFwqSzSH1JIObIx51PrndZwlmznwXRfxMddDvo9gve3gVR8ZTKgoFDdWkbRFmEhT4PMg==", 2978 | "dev": true, 2979 | "requires": { 2980 | "cssesc": "^3.0.0", 2981 | "util-deprecate": "^1.0.2" 2982 | } 2983 | }, 2984 | "postcss-value-parser": { 2985 | "version": "4.1.0", 2986 | "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz", 2987 | "integrity": "sha512-97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ==", 2988 | "dev": true 2989 | }, 2990 | "pretty-hrtime": { 2991 | "version": "1.0.3", 2992 | "resolved": "https://registry.npmjs.org/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz", 2993 | "integrity": "sha1-t+PqQkNaTJsnWdmeDyAesZWALuE=", 2994 | "dev": true 2995 | }, 2996 | "purgecss": { 2997 | "version": "4.0.3", 2998 | "resolved": "https://registry.npmjs.org/purgecss/-/purgecss-4.0.3.tgz", 2999 | "integrity": "sha512-PYOIn5ibRIP34PBU9zohUcCI09c7drPJJtTDAc0Q6QlRz2/CHQ8ywGLdE7ZhxU2VTqB7p5wkvj5Qcm05Rz3Jmw==", 3000 | "dev": true, 3001 | "requires": { 3002 | "commander": "^6.0.0", 3003 | "glob": "^7.0.0", 3004 | "postcss": "^8.2.1", 3005 | "postcss-selector-parser": "^6.0.2" 3006 | } 3007 | }, 3008 | "queue-microtask": { 3009 | "version": "1.2.3", 3010 | "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", 3011 | "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", 3012 | "dev": true 3013 | }, 3014 | "quick-lru": { 3015 | "version": "5.1.1", 3016 | "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz", 3017 | "integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==", 3018 | "dev": true 3019 | }, 3020 | "react": { 3021 | "version": "17.0.2", 3022 | "resolved": "https://registry.npmjs.org/react/-/react-17.0.2.tgz", 3023 | "integrity": "sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA==", 3024 | "requires": { 3025 | "loose-envify": "^1.1.0", 3026 | "object-assign": "^4.1.1" 3027 | } 3028 | }, 3029 | "react-dom": { 3030 | "version": "17.0.2", 3031 | "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-17.0.2.tgz", 3032 | "integrity": "sha512-s4h96KtLDUQlsENhMn1ar8t2bEa+q/YAtj8pPPdIjPDGBDIVNsrD9aXNWqspUe6AzKCIG0C1HZZLqLV7qpOBGA==", 3033 | "requires": { 3034 | "loose-envify": "^1.1.0", 3035 | "object-assign": "^4.1.1", 3036 | "scheduler": "^0.20.2" 3037 | } 3038 | }, 3039 | "realm-web": { 3040 | "version": "1.3.0", 3041 | "resolved": "https://registry.npmjs.org/realm-web/-/realm-web-1.3.0.tgz", 3042 | "integrity": "sha512-8HlXGdJr3TvfUMu+zO6bhgpUapmqHy6zIdYl43QlVuZCg0u3mqMGPMNUVvuAcOp0EqDddj/UoGlDPGsfwlXdiA==", 3043 | "requires": { 3044 | "abort-controller": "^3.0.0", 3045 | "bson": "^4.2.0", 3046 | "detect-browser": "^5.1.1", 3047 | "js-base64": "^2.6.3", 3048 | "node-fetch": "^2.6.0" 3049 | } 3050 | }, 3051 | "reduce-css-calc": { 3052 | "version": "2.1.8", 3053 | "resolved": "https://registry.npmjs.org/reduce-css-calc/-/reduce-css-calc-2.1.8.tgz", 3054 | "integrity": "sha512-8liAVezDmUcH+tdzoEGrhfbGcP7nOV4NkGE3a74+qqvE7nt9i4sKLGBuZNOnpI4WiGksiNPklZxva80061QiPg==", 3055 | "dev": true, 3056 | "requires": { 3057 | "css-unit-converter": "^1.1.1", 3058 | "postcss-value-parser": "^3.3.0" 3059 | }, 3060 | "dependencies": { 3061 | "postcss-value-parser": { 3062 | "version": "3.3.1", 3063 | "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", 3064 | "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", 3065 | "dev": true 3066 | } 3067 | } 3068 | }, 3069 | "resolve": { 3070 | "version": "1.20.0", 3071 | "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.20.0.tgz", 3072 | "integrity": "sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==", 3073 | "dev": true, 3074 | "requires": { 3075 | "is-core-module": "^2.2.0", 3076 | "path-parse": "^1.0.6" 3077 | } 3078 | }, 3079 | "resolve-from": { 3080 | "version": "4.0.0", 3081 | "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", 3082 | "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", 3083 | "dev": true 3084 | }, 3085 | "reusify": { 3086 | "version": "1.0.4", 3087 | "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", 3088 | "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", 3089 | "dev": true 3090 | }, 3091 | "rimraf": { 3092 | "version": "3.0.2", 3093 | "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", 3094 | "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", 3095 | "dev": true, 3096 | "requires": { 3097 | "glob": "^7.1.3" 3098 | } 3099 | }, 3100 | "run-parallel": { 3101 | "version": "1.2.0", 3102 | "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", 3103 | "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", 3104 | "dev": true, 3105 | "requires": { 3106 | "queue-microtask": "^1.2.2" 3107 | } 3108 | }, 3109 | "scheduler": { 3110 | "version": "0.20.2", 3111 | "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.20.2.tgz", 3112 | "integrity": "sha512-2eWfGgAqqWFGqtdMmcL5zCMK1U8KlXv8SQFGglL3CEtd0aDVDWgeF/YoCmvln55m5zSk3J/20hTaSBeSObsQDQ==", 3113 | "requires": { 3114 | "loose-envify": "^1.1.0", 3115 | "object-assign": "^4.1.1" 3116 | } 3117 | }, 3118 | "simple-swizzle": { 3119 | "version": "0.2.2", 3120 | "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz", 3121 | "integrity": "sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo=", 3122 | "dev": true, 3123 | "requires": { 3124 | "is-arrayish": "^0.3.1" 3125 | }, 3126 | "dependencies": { 3127 | "is-arrayish": { 3128 | "version": "0.3.2", 3129 | "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz", 3130 | "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==", 3131 | "dev": true 3132 | } 3133 | } 3134 | }, 3135 | "source-map-js": { 3136 | "version": "1.0.2", 3137 | "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", 3138 | "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==" 3139 | }, 3140 | "styled-jsx": { 3141 | "version": "5.0.7", 3142 | "resolved": "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.0.7.tgz", 3143 | "integrity": "sha512-b3sUzamS086YLRuvnaDigdAewz1/EFYlHpYBP5mZovKEdQQOIIYq8lApylub3HHZ6xFjV051kkGU7cudJmrXEA==", 3144 | "requires": {} 3145 | }, 3146 | "supports-color": { 3147 | "version": "5.5.0", 3148 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", 3149 | "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", 3150 | "dev": true, 3151 | "requires": { 3152 | "has-flag": "^3.0.0" 3153 | } 3154 | }, 3155 | "tailwindcss": { 3156 | "version": "2.2.7", 3157 | "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-2.2.7.tgz", 3158 | "integrity": "sha512-jv35rugP5j8PpzbXnsria7ZAry7Evh0KtQ4MZqNd+PhF+oIKPwJTVwe/rmfRx9cZw3W7iPZyzBmeoAoNwfJ1yg==", 3159 | "dev": true, 3160 | "requires": { 3161 | "arg": "^5.0.0", 3162 | "bytes": "^3.0.0", 3163 | "chalk": "^4.1.1", 3164 | "chokidar": "^3.5.2", 3165 | "color": "^3.2.0", 3166 | "cosmiconfig": "^7.0.0", 3167 | "detective": "^5.2.0", 3168 | "didyoumean": "^1.2.2", 3169 | "dlv": "^1.1.3", 3170 | "fast-glob": "^3.2.7", 3171 | "fs-extra": "^10.0.0", 3172 | "glob-parent": "^6.0.0", 3173 | "html-tags": "^3.1.0", 3174 | "is-glob": "^4.0.1", 3175 | "lodash": "^4.17.21", 3176 | "lodash.topath": "^4.5.2", 3177 | "modern-normalize": "^1.1.0", 3178 | "node-emoji": "^1.8.1", 3179 | "normalize-path": "^3.0.0", 3180 | "object-hash": "^2.2.0", 3181 | "postcss-js": "^3.0.3", 3182 | "postcss-load-config": "^3.1.0", 3183 | "postcss-nested": "5.0.5", 3184 | "postcss-selector-parser": "^6.0.6", 3185 | "postcss-value-parser": "^4.1.0", 3186 | "pretty-hrtime": "^1.0.3", 3187 | "purgecss": "^4.0.3", 3188 | "quick-lru": "^5.1.1", 3189 | "reduce-css-calc": "^2.1.8", 3190 | "resolve": "^1.20.0", 3191 | "tmp": "^0.2.1" 3192 | }, 3193 | "dependencies": { 3194 | "ansi-styles": { 3195 | "version": "4.3.0", 3196 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", 3197 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", 3198 | "dev": true, 3199 | "requires": { 3200 | "color-convert": "^2.0.1" 3201 | } 3202 | }, 3203 | "chalk": { 3204 | "version": "4.1.2", 3205 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 3206 | "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 3207 | "dev": true, 3208 | "requires": { 3209 | "ansi-styles": "^4.1.0", 3210 | "supports-color": "^7.1.0" 3211 | } 3212 | }, 3213 | "chokidar": { 3214 | "version": "3.5.2", 3215 | "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.2.tgz", 3216 | "integrity": "sha512-ekGhOnNVPgT77r4K/U3GDhu+FQ2S8TnK/s2KbIGXi0SZWuwkZ2QNyfWdZW+TVfn84DpEP7rLeCt2UI6bJ8GwbQ==", 3217 | "dev": true, 3218 | "requires": { 3219 | "anymatch": "~3.1.2", 3220 | "braces": "~3.0.2", 3221 | "fsevents": "~2.3.2", 3222 | "glob-parent": "~5.1.2", 3223 | "is-binary-path": "~2.1.0", 3224 | "is-glob": "~4.0.1", 3225 | "normalize-path": "~3.0.0", 3226 | "readdirp": "~3.6.0" 3227 | }, 3228 | "dependencies": { 3229 | "glob-parent": { 3230 | "version": "5.1.2", 3231 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", 3232 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 3233 | "dev": true, 3234 | "requires": { 3235 | "is-glob": "^4.0.1" 3236 | } 3237 | } 3238 | } 3239 | }, 3240 | "color-convert": { 3241 | "version": "2.0.1", 3242 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", 3243 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", 3244 | "dev": true, 3245 | "requires": { 3246 | "color-name": "~1.1.4" 3247 | } 3248 | }, 3249 | "color-name": { 3250 | "version": "1.1.4", 3251 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", 3252 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", 3253 | "dev": true 3254 | }, 3255 | "glob-parent": { 3256 | "version": "6.0.1", 3257 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.1.tgz", 3258 | "integrity": "sha512-kEVjS71mQazDBHKcsq4E9u/vUzaLcw1A8EtUeydawvIWQCJM0qQ08G1H7/XTjFUulla6XQiDOG6MXSaG0HDKog==", 3259 | "dev": true, 3260 | "requires": { 3261 | "is-glob": "^4.0.1" 3262 | } 3263 | }, 3264 | "has-flag": { 3265 | "version": "4.0.0", 3266 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", 3267 | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", 3268 | "dev": true 3269 | }, 3270 | "readdirp": { 3271 | "version": "3.6.0", 3272 | "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", 3273 | "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", 3274 | "dev": true, 3275 | "requires": { 3276 | "picomatch": "^2.2.1" 3277 | } 3278 | }, 3279 | "supports-color": { 3280 | "version": "7.2.0", 3281 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", 3282 | "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", 3283 | "dev": true, 3284 | "requires": { 3285 | "has-flag": "^4.0.0" 3286 | } 3287 | } 3288 | } 3289 | }, 3290 | "tmp": { 3291 | "version": "0.2.1", 3292 | "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.2.1.tgz", 3293 | "integrity": "sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ==", 3294 | "dev": true, 3295 | "requires": { 3296 | "rimraf": "^3.0.0" 3297 | } 3298 | }, 3299 | "to-regex-range": { 3300 | "version": "5.0.1", 3301 | "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", 3302 | "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", 3303 | "dev": true, 3304 | "requires": { 3305 | "is-number": "^7.0.0" 3306 | } 3307 | }, 3308 | "tr46": { 3309 | "version": "0.0.3", 3310 | "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", 3311 | "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", 3312 | "optional": true 3313 | }, 3314 | "tslib": { 3315 | "version": "2.4.1", 3316 | "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.1.tgz", 3317 | "integrity": "sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==" 3318 | }, 3319 | "universalify": { 3320 | "version": "2.0.0", 3321 | "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", 3322 | "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", 3323 | "dev": true 3324 | }, 3325 | "use-sync-external-store": { 3326 | "version": "1.2.0", 3327 | "resolved": "https://registry.npmjs.org/use-sync-external-store/-/use-sync-external-store-1.2.0.tgz", 3328 | "integrity": "sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==", 3329 | "requires": {} 3330 | }, 3331 | "util-deprecate": { 3332 | "version": "1.0.2", 3333 | "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", 3334 | "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", 3335 | "dev": true 3336 | }, 3337 | "webidl-conversions": { 3338 | "version": "3.0.1", 3339 | "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", 3340 | "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", 3341 | "optional": true 3342 | }, 3343 | "whatwg-url": { 3344 | "version": "5.0.0", 3345 | "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", 3346 | "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", 3347 | "optional": true, 3348 | "requires": { 3349 | "tr46": "~0.0.3", 3350 | "webidl-conversions": "^3.0.0" 3351 | } 3352 | }, 3353 | "wrappy": { 3354 | "version": "1.0.2", 3355 | "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", 3356 | "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", 3357 | "dev": true 3358 | }, 3359 | "xtend": { 3360 | "version": "4.0.2", 3361 | "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", 3362 | "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", 3363 | "dev": true 3364 | }, 3365 | "yaml": { 3366 | "version": "1.10.2", 3367 | "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", 3368 | "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", 3369 | "dev": true 3370 | } 3371 | } 3372 | } 3373 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "private": true, 3 | "scripts": { 4 | "dev": "next dev", 5 | "build": "next build", 6 | "start": "next start" 7 | }, 8 | "dependencies": { 9 | "@heroicons/react": "^1.0.4", 10 | "next": "^12.3.0", 11 | "react": "^17.0.2", 12 | "react-dom": "^17.0.2", 13 | "realm-web": "^1.3.0" 14 | }, 15 | "devDependencies": { 16 | "autoprefixer": "^10.2.6", 17 | "postcss": "^8.3.5", 18 | "tailwindcss": "^2.2.4" 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /pages/_app.js: -------------------------------------------------------------------------------- 1 | import 'tailwindcss/tailwind.css' 2 | 3 | function MyApp({ Component, pageProps }) { 4 | return 5 | } 6 | 7 | export default MyApp 8 | -------------------------------------------------------------------------------- /pages/api/hello.js: -------------------------------------------------------------------------------- 1 | // Next.js API route support: https://nextjs.org/docs/api-routes/introduction 2 | 3 | export default function helloAPI(req, res) { 4 | res.status(200).json({ name: 'John Doe' }) 5 | } 6 | -------------------------------------------------------------------------------- /pages/index.js: -------------------------------------------------------------------------------- 1 | import Head from "next/head"; 2 | import { useState, useEffect } from "react"; 3 | import * as Realm from "realm-web"; 4 | import Category from "../components/Category"; 5 | import Container from "../components/Container"; 6 | import Footer from "../components/Footer"; 7 | import Header from "../components/Header"; 8 | import Hero from "../components/Hero"; 9 | import Pagination from "../components/Pagination"; 10 | import Products from "../components/Products"; 11 | 12 | export default function Home() { 13 | const [products, setProducts] = useState([]); 14 | const [categories, setCategories] = useState([]); 15 | 16 | useEffect(async () => { 17 | // add your Realm App Id to the .env.local file 18 | const REALM_APP_ID = process.env.NEXT_PUBLIC_REALM_APP_ID; 19 | const app = new Realm.App({ id: REALM_APP_ID }); 20 | const credentials = Realm.Credentials.anonymous(); 21 | try { 22 | const user = await app.logIn(credentials); 23 | const allProducts = await user.functions.getAllProducts(); 24 | setProducts(() => allProducts); 25 | const uniqueCategories = await user.functions.getUniqueCategories(); 26 | setCategories(() => uniqueCategories); 27 | } catch (error) { 28 | console.error(error); 29 | } 30 | }, []); 31 | 32 | return ( 33 |
34 | 35 | Create Next App 36 | 37 | 38 |
39 |
40 | 41 | 42 | 47 | 48 | 49 | 50 |
51 |
52 |
53 | ); 54 | } 55 | -------------------------------------------------------------------------------- /pages/products/[id].js: -------------------------------------------------------------------------------- 1 | import Head from "next/head"; 2 | import { useState, useEffect } from "react"; 3 | import { useRouter } from "next/router"; 4 | import * as Realm from "realm-web"; 5 | 6 | import Header from "../../components/Header"; 7 | import Container from "../../components/Container"; 8 | import Footer from "../../components/Footer"; 9 | import ProductDetail from "../../components/ProductDetail"; 10 | 11 | const ProductDetails = () => { 12 | const [product, setProduct] = useState(); 13 | const { query } = useRouter(); 14 | 15 | useEffect(async () => { 16 | if (query.id) { 17 | // add your Realm App Id to the .env.local file 18 | const REALM_APP_ID = process.env.NEXT_PUBLIC_REALM_APP_ID; 19 | const app = new Realm.App({ id: REALM_APP_ID }); 20 | const credentials = Realm.Credentials.anonymous(); 21 | try { 22 | const user = await app.logIn(credentials); 23 | const oneProduct = await user.functions.getOneProduct(query.id); 24 | setProduct(() => oneProduct); 25 | } catch (error) { 26 | console.error(error); 27 | } 28 | } 29 | }, [query]); 30 | 31 | return ( 32 | <> 33 | {product && ( 34 | <> 35 | 36 | MongoDB E-Commerce Demo - {product.name} 37 | 38 | 39 |
40 |
41 | 42 | 43 | 44 |
45 |
46 | 47 | )} 48 | 49 | ); 50 | }; 51 | 52 | export default ProductDetails; 53 | -------------------------------------------------------------------------------- /pages/products/category/[[...cat]].js: -------------------------------------------------------------------------------- 1 | import Head from "next/head"; 2 | import { useState, useEffect } from "react"; 3 | import { useRouter } from "next/router"; 4 | import * as Realm from "realm-web"; 5 | import Category from "../../../components/Category"; 6 | import Container from "../../../components/Container"; 7 | import Footer from "../../../components/Footer"; 8 | import Header from "../../../components/Header"; 9 | import Pagination from "../../../components/Pagination"; 10 | import Products from "../../../components/Products"; 11 | 12 | export default function Home() { 13 | const [products, setProducts] = useState([]); 14 | const [categories, setCategories] = useState([]); 15 | const [categoryName, setCategoryName] = useState(""); 16 | const { query } = useRouter(); 17 | 18 | useEffect(async () => { 19 | // add your Realm App Id to the .env.local file 20 | const REALM_APP_ID = process.env.NEXT_PUBLIC_REALM_APP_ID; 21 | const app = new Realm.App({ id: REALM_APP_ID }); 22 | const credentials = Realm.Credentials.anonymous(); 23 | try { 24 | const user = await app.logIn(credentials); 25 | let getProducts; 26 | if (query.cat) { 27 | getProducts = await user.functions.getProductsByCategory(query.cat); 28 | setCategoryName(() => query.cat); 29 | } else { 30 | getProducts = await user.functions.getAllProducts(); 31 | setCategoryName(() => "All Products"); 32 | } 33 | setProducts(() => getProducts); 34 | const uniqueCategories = await user.functions.getUniqueCategories(); 35 | setCategories(() => uniqueCategories); 36 | } catch (error) { 37 | console.error(error); 38 | } 39 | }, [query]); 40 | 41 | return ( 42 |
43 | 44 | Create Next App 45 | 46 | 47 |
48 |
49 | 50 | 55 | 56 | 57 | 58 |
59 |
60 |
61 | ); 62 | } 63 | -------------------------------------------------------------------------------- /pages/products/index.js: -------------------------------------------------------------------------------- 1 | import Head from "next/head"; 2 | import { useState, useEffect } from "react"; 3 | import * as Realm from "realm-web"; 4 | import Category from "../../components/Category"; 5 | import Container from "../../components/Container"; 6 | import Footer from "../../components/Footer"; 7 | import Header from "../../components/Header"; 8 | import Pagination from "../../components/Pagination"; 9 | import Products from "../../components/Products"; 10 | 11 | export default function Home() { 12 | const [products, setProducts] = useState([]); 13 | const [categories, setCategories] = useState([]); 14 | 15 | useEffect(async () => { 16 | // add your Realm App Id to the .env.local file 17 | const REALM_APP_ID = process.env.NEXT_PUBLIC_REALM_APP_ID; 18 | const app = new Realm.App({ id: REALM_APP_ID }); 19 | const credentials = Realm.Credentials.anonymous(); 20 | try { 21 | const user = await app.logIn(credentials); 22 | const allProducts = await user.functions.getAllProducts(); 23 | setProducts(() => allProducts); 24 | const uniqueCategories = await user.functions.getUniqueCategories(); 25 | setCategories(() => uniqueCategories); 26 | } catch (error) { 27 | console.error(error); 28 | } 29 | }, []); 30 | 31 | return ( 32 |
33 | 34 | Create Next App 35 | 36 | 37 |
38 |
39 | 40 | 45 | 46 | 47 | 48 |
49 |
50 |
51 | ); 52 | } 53 | -------------------------------------------------------------------------------- /pages/search/[term].js: -------------------------------------------------------------------------------- 1 | import Head from "next/head"; 2 | import { useState, useEffect } from "react"; 3 | import { useRouter } from "next/router"; 4 | import * as Realm from "realm-web"; 5 | import Category from "../../components/Category"; 6 | import Container from "../../components/Container"; 7 | import Footer from "../../components/Footer"; 8 | import Header from "../../components/Header"; 9 | import Pagination from "../../components/Pagination"; 10 | import Products from "../../components/Products"; 11 | 12 | export default function Home() { 13 | const [products, setProducts] = useState([]); 14 | const { query } = useRouter(); 15 | 16 | useEffect(async () => { 17 | if (query.term) { 18 | // add your Realm App Id to the .env.local file 19 | const REALM_APP_ID = process.env.NEXT_PUBLIC_REALM_APP_ID; 20 | const app = new Realm.App({ id: REALM_APP_ID }); 21 | const credentials = Realm.Credentials.anonymous(); 22 | try { 23 | const user = await app.logIn(credentials); 24 | const searchProducts = await user.functions.searchProducts(query.term); 25 | setProducts(() => searchProducts); 26 | } catch (error) { 27 | console.error(error); 28 | } 29 | } 30 | }, [query]); 31 | 32 | return ( 33 |
34 | 35 | Create Next App 36 | 37 | 38 |
39 |
40 | 41 | 45 | 46 | 47 | 48 |
49 |
50 |
51 | ); 52 | } 53 | -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- 1 | // If you want to use other PostCSS plugins, see the following: 2 | // https://tailwindcss.com/docs/using-with-preprocessors 3 | module.exports = { 4 | plugins: { 5 | tailwindcss: {}, 6 | autoprefixer: {}, 7 | }, 8 | } 9 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/mongodb-ecommerce/ae96d748f01efa5e694eea5b317cc403ef7a8bc9/public/favicon.ico -------------------------------------------------------------------------------- /public/images/angular.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/mongodb-ecommerce/ae96d748f01efa5e694eea5b317cc403ef7a8bc9/public/images/angular.jpg -------------------------------------------------------------------------------- /public/images/cplusplus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/mongodb-ecommerce/ae96d748f01efa5e694eea5b317cc403ef7a8bc9/public/images/cplusplus.jpg -------------------------------------------------------------------------------- /public/images/css.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/mongodb-ecommerce/ae96d748f01efa5e694eea5b317cc403ef7a8bc9/public/images/css.jpg -------------------------------------------------------------------------------- /public/images/github.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/mongodb-ecommerce/ae96d748f01efa5e694eea5b317cc403ef7a8bc9/public/images/github.jpg -------------------------------------------------------------------------------- /public/images/hero.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/mongodb-ecommerce/ae96d748f01efa5e694eea5b317cc403ef7a8bc9/public/images/hero.jpg -------------------------------------------------------------------------------- /public/images/html.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/mongodb-ecommerce/ae96d748f01efa5e694eea5b317cc403ef7a8bc9/public/images/html.jpg -------------------------------------------------------------------------------- /public/images/java.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/mongodb-ecommerce/ae96d748f01efa5e694eea5b317cc403ef7a8bc9/public/images/java.jpg -------------------------------------------------------------------------------- /public/images/javascript.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/mongodb-ecommerce/ae96d748f01efa5e694eea5b317cc403ef7a8bc9/public/images/javascript.jpg -------------------------------------------------------------------------------- /public/images/mongodb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/mongodb-ecommerce/ae96d748f01efa5e694eea5b317cc403ef7a8bc9/public/images/mongodb.png -------------------------------------------------------------------------------- /public/images/node.js.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/mongodb-ecommerce/ae96d748f01efa5e694eea5b317cc403ef7a8bc9/public/images/node.js.jpg -------------------------------------------------------------------------------- /public/images/npm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/mongodb-ecommerce/ae96d748f01efa5e694eea5b317cc403ef7a8bc9/public/images/npm.jpg -------------------------------------------------------------------------------- /public/images/python.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/mongodb-ecommerce/ae96d748f01efa5e694eea5b317cc403ef7a8bc9/public/images/python.jpg -------------------------------------------------------------------------------- /public/images/react.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/mongodb-ecommerce/ae96d748f01efa5e694eea5b317cc403ef7a8bc9/public/images/react.jpg -------------------------------------------------------------------------------- /public/images/tailwind.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/mongodb-ecommerce/ae96d748f01efa5e694eea5b317cc403ef7a8bc9/public/images/tailwind.jpg -------------------------------------------------------------------------------- /public/images/vite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/mongodb-ecommerce/ae96d748f01efa5e694eea5b317cc403ef7a8bc9/public/images/vite.jpg -------------------------------------------------------------------------------- /public/images/vscode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/mongodb-ecommerce/ae96d748f01efa5e694eea5b317cc403ef7a8bc9/public/images/vscode.jpg -------------------------------------------------------------------------------- /public/images/vue.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongodb-developer/mongodb-ecommerce/ae96d748f01efa5e694eea5b317cc403ef7a8bc9/public/images/vue.jpg -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- 1 | 3 | 4 | -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | mode: 'jit', 3 | purge: ['./pages/**/*.{js,ts,jsx,tsx}', './components/**/*.{js,ts,jsx,tsx}'], 4 | darkMode: false, // or 'media' or 'class' 5 | theme: { 6 | extend: {}, 7 | }, 8 | variants: { 9 | extend: {}, 10 | }, 11 | plugins: [], 12 | } 13 | --------------------------------------------------------------------------------