├── .env.sample
├── .eslintrc.cjs
├── .gitignore
├── .prettierrc.cjs
├── .vscode
└── settings.json
├── LICENSE
├── README.md
├── TODO.md
├── next.config.js
├── package-lock.json
├── package.json
├── postcss.config.cjs
├── public
├── android-chrome-192x192.png
├── android-chrome-512x512.png
├── apple-touch-icon.png
├── favicon-16x16.png
├── favicon-32x32.png
├── favicon.ico
├── favicon.png
├── favicon.svg
└── site.webmanifest
├── src
├── TravelLogContext.ts
├── TravelLogInitialState.ts
├── TravelLogProvider.tsx
├── app
│ ├── globals.css
│ ├── layout.tsx
│ └── page.tsx
├── components
│ ├── LoadingSpinner.tsx
│ ├── TravelLogForm.tsx
│ ├── TravelLogMap.tsx
│ └── TravelLogSidebar.tsx
├── db.ts
├── lib
│ ├── clientConfig.ts
│ └── serverConfig.ts
├── models
│ └── TravelLog
│ │ ├── TravelLog.ts
│ │ └── TravelLogs.ts
├── pages
│ └── api
│ │ └── logs.ts
└── types
│ └── TravelLogProviderTypes.ts
├── tailwind.config.cjs
└── tsconfig.json
/.env.sample:
--------------------------------------------------------------------------------
1 | NEXT_PUBLIC_MAP_TILE_URL=https://api.mapbox.com/styles/v1/codinggarden/cl84ukoao000p16o8u4zibr8d/tiles/256/{z}/{x}/{y}@2x?access_token=your-access-token-here
2 | DB_URL=mongodb://localhost
3 | DB_NAME=next-travel-log
4 | API_KEY=supersecret
--------------------------------------------------------------------------------
/.eslintrc.cjs:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | parserOptions: {
3 | project: ['./tsconfig.json'],
4 | },
5 | extends: [
6 | 'next/core-web-vitals',
7 | 'airbnb-base',
8 | 'airbnb-typescript',
9 | 'plugin:prettier/recommended',
10 | ],
11 | rules: {
12 | 'no-underscore-dangle': 0,
13 | },
14 | };
15 |
--------------------------------------------------------------------------------
/.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 | .pnpm-debug.log*
27 |
28 | # local env files
29 | .env*.local
30 |
31 | # vercel
32 | .vercel
33 |
34 | # typescript
35 | *.tsbuildinfo
36 | next-env.d.ts
37 |
--------------------------------------------------------------------------------
/.prettierrc.cjs:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | trailingComma: "es5",
3 | tabWidth: 2,
4 | semi: true,
5 | singleQuote: true,
6 | };
--------------------------------------------------------------------------------
/.vscode/settings.json:
--------------------------------------------------------------------------------
1 | {
2 | "typescript.tsdk": "node_modules/typescript/lib",
3 | "typescript.enablePromptUseWorkspaceTsdk": true
4 | }
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License Copyright (c) 2023 w3cj
2 |
3 | Permission is hereby granted, free of
4 | charge, to any person obtaining a copy of this software and associated
5 | documentation files (the "Software"), to deal in the Software without
6 | restriction, including without limitation the rights to use, copy, modify, merge,
7 | publish, distribute, sublicense, and/or sell copies of the Software, and to
8 | permit persons to whom the Software is furnished to do so, subject to the
9 | following conditions:
10 |
11 | The above copyright notice and this permission notice
12 | (including the next paragraph) shall be included in all copies or substantial
13 | portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
16 | ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
17 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
18 | EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
19 | OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 | FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21 | THE SOFTWARE.
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Full Stack Travel Log with Next.js 13 Beta
2 |
3 | Install dependencies
4 |
5 | ```sh
6 | npm install
7 | ```
8 |
9 | Copy `.env.sample` to `.env.local`
10 |
11 | Add your own Map Tiles URL (Get one from [Leaflet-Providers](https://leaflet-extras.github.io/leaflet-providers/preview/) Notice that some of them require registration and a key) - Recommended free one: `https://tiles.stadiamaps.com/tiles/alidade_smooth_dark/{z}/{x}/{y}{r}.png`
12 |
13 | Get MongoDB running, either locally or can create a Project and Cluster using any online provider.
14 |
15 | Update `DB_URL` and `DB_NAME` accordingly. (DB_NAME could stay with the default value)
16 |
17 | Finally run the development server:
18 |
19 | ```sh
20 | npm run dev
21 | ```
22 |
23 | Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
24 |
25 | # Tech Stack
26 |
27 | ## Backend
28 |
29 | * [Next.js 13 Beta](https://beta.nextjs.org/docs)
30 | * [app directory](https://beta.nextjs.org/docs/routing/fundamentals)
31 | * [server components](https://beta.nextjs.org/docs/rendering/server-and-client-components)
32 | * [MongoDB](https://www.mongodb.com/)
33 | * [mongodb](https://www.npmjs.com/package/mongodb)
34 |
35 | ## Shared
36 |
37 | * [react](https://reactjs.org/)
38 | * [Typescript](https://www.typescriptlang.org/)
39 | * [Zod](https://zod.dev/)
40 |
41 | ## Frontend
42 | * [react-leaflet](https://react-leaflet.js.org/)
43 | * [Leaflet](https://leafletjs.com/)
44 | * [react-hook-form](https://react-hook-form.com/)
45 | * [Tailwind](https://tailwindcss.com/)
46 | * [DaisyUI](https://daisyui.com/)
47 |
48 | ## Developer Tools
49 |
50 | * [eslint](https://eslint.org/)
51 | * [prettier](https://prettier.io/)
52 | * [prettier + eslint](https://github.com/prettier/eslint-plugin-prettier)
53 |
54 | ## Utilities
55 |
56 | * [Map Box Studio - Custom Tile Layer](https://www.mapbox.com/mapbox-studio)
--------------------------------------------------------------------------------
/TODO.md:
--------------------------------------------------------------------------------
1 | * [x] Setup Server
2 | * [x] Install Dependencies
3 | * [x] Install / Setup Linter
4 | * [x] Model DB
5 | * What data will we store?
6 | * [x] Setup ZOD Validator
7 | * [x] Create Form to add a new entry
8 | * [x] Setup Map SDK on client
9 | * [x] List all log entries on map
10 | * [x] POST /logs
11 | * Create a new log entry
12 | * [x] GET / logs
13 | * List all log entries
14 | * [x] Show Create Form as Sidebar
15 | * [x] Create Form
16 | * [x] Click on map to choose latitude / longitude
17 | * [x] Re-load map after create
18 | * [x] Show server errors in form
19 | * [x] Update Travel Log Icon
20 | * [x] Lock down with a api key
21 | * [x] Rate Limit
22 | * [x] DEPLOY!
23 | * [x] Vercel
24 | * [x] Mongo Atlas
25 | * [x] Zod Validators
26 | * Serialization / Deserialization
27 | * Timestamp
28 | * DB
29 | * Request / POST
30 | * [x] DB timestamps... UTC??
31 | * [x] visitDate time zone error...
32 | * [x] Config object loader with validation
33 | * [ ] Edit existing log
34 | * [ ] Loading spinner...
35 | * [ ] Cluster close points
36 | * [ ] TODO: add map tiles attribution https://docs.mapbox.com/help/getting-started/attribution/#static--print
37 |
38 | # Stretch
39 |
40 | * Change size of selected icon...
41 | * Set places you want to visit
42 | * Use Prisma
43 | * Multiple at same location???
44 | * Next Auth...
45 | * Search for locations
46 | * When adding marker, put on user current location
47 | * List logs in sidebar, click to zoom
--------------------------------------------------------------------------------
/next.config.js:
--------------------------------------------------------------------------------
1 | /** @type {import('next').NextConfig} */
2 | const nextConfig = {
3 | experimental: {
4 | appDir: true,
5 | },
6 | }
7 |
8 | module.exports = nextConfig
9 |
--------------------------------------------------------------------------------
/package-lock.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "next-travel-log",
3 | "version": "0.1.0",
4 | "lockfileVersion": 3,
5 | "requires": true,
6 | "packages": {
7 | "": {
8 | "name": "next-travel-log",
9 | "version": "0.1.0",
10 | "license": "MIT",
11 | "dependencies": {
12 | "@hookform/resolvers": "^2.9.11",
13 | "@types/node": "18.14.6",
14 | "@types/react": "18.0.28",
15 | "@types/react-dom": "18.0.11",
16 | "daisyui": "^2.51.3",
17 | "date-fns": "^2.29.3",
18 | "eslint": "8.35.0",
19 | "eslint-config-next": "13.2.3",
20 | "lambda-rate-limiter": "^3.0.1",
21 | "leaflet": "^1.9.3",
22 | "mongodb": "^5.1.0",
23 | "next": "13.2.3",
24 | "react": "18.2.0",
25 | "react-dom": "18.2.0",
26 | "react-hook-form": "^7.43.5",
27 | "react-leaflet": "^4.2.1",
28 | "typescript": "4.9.5",
29 | "zod": "^3.21.4"
30 | },
31 | "devDependencies": {
32 | "@tailwindcss/forms": "^0.5.3",
33 | "@types/lambda-rate-limiter": "^3.0.0",
34 | "@types/leaflet": "^1.9.1",
35 | "autoprefixer": "^10.4.13",
36 | "eslint-config-airbnb-base": "^15.0.0",
37 | "eslint-config-airbnb-typescript": "^17.0.0",
38 | "eslint-config-prettier": "^8.7.0",
39 | "eslint-plugin-import": "^2.27.5",
40 | "eslint-plugin-prettier": "^4.2.1",
41 | "postcss": "^8.4.21",
42 | "tailwindcss": "^3.2.7"
43 | }
44 | },
45 | "node_modules/@babel/runtime": {
46 | "version": "7.20.13",
47 | "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.20.13.tgz",
48 | "integrity": "sha512-gt3PKXs0DBoL9xCvOIIZ2NEqAGZqHjAnmVbfQtB620V0uReIQutpel14KcneZuer7UioY8ALKZ7iocavvzTNFA==",
49 | "dependencies": {
50 | "regenerator-runtime": "^0.13.11"
51 | },
52 | "engines": {
53 | "node": ">=6.9.0"
54 | }
55 | },
56 | "node_modules/@eslint/eslintrc": {
57 | "version": "2.0.0",
58 | "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.0.0.tgz",
59 | "integrity": "sha512-fluIaaV+GyV24CCu/ggiHdV+j4RNh85yQnAYS/G2mZODZgGmmlrgCydjUcV3YvxCm9x8nMAfThsqTni4KiXT4A==",
60 | "dependencies": {
61 | "ajv": "^6.12.4",
62 | "debug": "^4.3.2",
63 | "espree": "^9.4.0",
64 | "globals": "^13.19.0",
65 | "ignore": "^5.2.0",
66 | "import-fresh": "^3.2.1",
67 | "js-yaml": "^4.1.0",
68 | "minimatch": "^3.1.2",
69 | "strip-json-comments": "^3.1.1"
70 | },
71 | "engines": {
72 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
73 | },
74 | "funding": {
75 | "url": "https://opencollective.com/eslint"
76 | }
77 | },
78 | "node_modules/@eslint/js": {
79 | "version": "8.35.0",
80 | "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.35.0.tgz",
81 | "integrity": "sha512-JXdzbRiWclLVoD8sNUjR443VVlYqiYmDVT6rGUEIEHU5YJW0gaVZwV2xgM7D4arkvASqD0IlLUVjHiFuxaftRw==",
82 | "engines": {
83 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
84 | }
85 | },
86 | "node_modules/@hookform/resolvers": {
87 | "version": "2.9.11",
88 | "resolved": "https://registry.npmjs.org/@hookform/resolvers/-/resolvers-2.9.11.tgz",
89 | "integrity": "sha512-bA3aZ79UgcHj7tFV7RlgThzwSSHZgvfbt2wprldRkYBcMopdMvHyO17Wwp/twcJasNFischFfS7oz8Katz8DdQ==",
90 | "peerDependencies": {
91 | "react-hook-form": "^7.0.0"
92 | }
93 | },
94 | "node_modules/@humanwhocodes/config-array": {
95 | "version": "0.11.8",
96 | "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.8.tgz",
97 | "integrity": "sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g==",
98 | "dependencies": {
99 | "@humanwhocodes/object-schema": "^1.2.1",
100 | "debug": "^4.1.1",
101 | "minimatch": "^3.0.5"
102 | },
103 | "engines": {
104 | "node": ">=10.10.0"
105 | }
106 | },
107 | "node_modules/@humanwhocodes/module-importer": {
108 | "version": "1.0.1",
109 | "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz",
110 | "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==",
111 | "engines": {
112 | "node": ">=12.22"
113 | },
114 | "funding": {
115 | "type": "github",
116 | "url": "https://github.com/sponsors/nzakas"
117 | }
118 | },
119 | "node_modules/@humanwhocodes/object-schema": {
120 | "version": "1.2.1",
121 | "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz",
122 | "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA=="
123 | },
124 | "node_modules/@next/env": {
125 | "version": "13.2.3",
126 | "resolved": "https://registry.npmjs.org/@next/env/-/env-13.2.3.tgz",
127 | "integrity": "sha512-FN50r/E+b8wuqyRjmGaqvqNDuWBWYWQiigfZ50KnSFH0f+AMQQyaZl+Zm2+CIpKk0fL9QxhLxOpTVA3xFHgFow=="
128 | },
129 | "node_modules/@next/eslint-plugin-next": {
130 | "version": "13.2.3",
131 | "resolved": "https://registry.npmjs.org/@next/eslint-plugin-next/-/eslint-plugin-next-13.2.3.tgz",
132 | "integrity": "sha512-QmMPItnU7VeojI1KnuwL9SLFWEwmaNHNlnOGpoTwdLoSiP9sc8KYiAHWEc4/44L+cAdCxcZYvn7frcRNP5l84Q==",
133 | "dependencies": {
134 | "glob": "7.1.7"
135 | }
136 | },
137 | "node_modules/@next/swc-android-arm-eabi": {
138 | "version": "13.2.3",
139 | "resolved": "https://registry.npmjs.org/@next/swc-android-arm-eabi/-/swc-android-arm-eabi-13.2.3.tgz",
140 | "integrity": "sha512-mykdVaAXX/gm+eFO2kPeVjnOCKwanJ9mV2U0lsUGLrEdMUifPUjiXKc6qFAIs08PvmTMOLMNnUxqhGsJlWGKSw==",
141 | "cpu": [
142 | "arm"
143 | ],
144 | "optional": true,
145 | "os": [
146 | "android"
147 | ],
148 | "engines": {
149 | "node": ">= 10"
150 | }
151 | },
152 | "node_modules/@next/swc-android-arm64": {
153 | "version": "13.2.3",
154 | "resolved": "https://registry.npmjs.org/@next/swc-android-arm64/-/swc-android-arm64-13.2.3.tgz",
155 | "integrity": "sha512-8XwHPpA12gdIFtope+n9xCtJZM3U4gH4vVTpUwJ2w1kfxFmCpwQ4xmeGSkR67uOg80yRMuF0h9V1ueo05sws5w==",
156 | "cpu": [
157 | "arm64"
158 | ],
159 | "optional": true,
160 | "os": [
161 | "android"
162 | ],
163 | "engines": {
164 | "node": ">= 10"
165 | }
166 | },
167 | "node_modules/@next/swc-darwin-arm64": {
168 | "version": "13.2.3",
169 | "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-13.2.3.tgz",
170 | "integrity": "sha512-TXOubiFdLpMfMtaRu1K5d1I9ipKbW5iS2BNbu8zJhoqrhk3Kp7aRKTxqFfWrbliAHhWVE/3fQZUYZOWSXVQi1w==",
171 | "cpu": [
172 | "arm64"
173 | ],
174 | "optional": true,
175 | "os": [
176 | "darwin"
177 | ],
178 | "engines": {
179 | "node": ">= 10"
180 | }
181 | },
182 | "node_modules/@next/swc-darwin-x64": {
183 | "version": "13.2.3",
184 | "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-13.2.3.tgz",
185 | "integrity": "sha512-GZctkN6bJbpjlFiS5pylgB2pifHvgkqLAPumJzxnxkf7kqNm6rOGuNjsROvOWVWXmKhrzQkREO/WPS2aWsr/yw==",
186 | "cpu": [
187 | "x64"
188 | ],
189 | "optional": true,
190 | "os": [
191 | "darwin"
192 | ],
193 | "engines": {
194 | "node": ">= 10"
195 | }
196 | },
197 | "node_modules/@next/swc-freebsd-x64": {
198 | "version": "13.2.3",
199 | "resolved": "https://registry.npmjs.org/@next/swc-freebsd-x64/-/swc-freebsd-x64-13.2.3.tgz",
200 | "integrity": "sha512-rK6GpmMt/mU6MPuav0/M7hJ/3t8HbKPCELw/Uqhi4732xoq2hJ2zbo2FkYs56y6w0KiXrIp4IOwNB9K8L/q62g==",
201 | "cpu": [
202 | "x64"
203 | ],
204 | "optional": true,
205 | "os": [
206 | "freebsd"
207 | ],
208 | "engines": {
209 | "node": ">= 10"
210 | }
211 | },
212 | "node_modules/@next/swc-linux-arm-gnueabihf": {
213 | "version": "13.2.3",
214 | "resolved": "https://registry.npmjs.org/@next/swc-linux-arm-gnueabihf/-/swc-linux-arm-gnueabihf-13.2.3.tgz",
215 | "integrity": "sha512-yeiCp/Odt1UJ4KUE89XkeaaboIDiVFqKP4esvoLKGJ0fcqJXMofj4ad3tuQxAMs3F+qqrz9MclqhAHkex1aPZA==",
216 | "cpu": [
217 | "arm"
218 | ],
219 | "optional": true,
220 | "os": [
221 | "linux"
222 | ],
223 | "engines": {
224 | "node": ">= 10"
225 | }
226 | },
227 | "node_modules/@next/swc-linux-arm64-gnu": {
228 | "version": "13.2.3",
229 | "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-13.2.3.tgz",
230 | "integrity": "sha512-/miIopDOUsuNlvjBjTipvoyjjaxgkOuvlz+cIbbPcm1eFvzX2ltSfgMgty15GuOiR8Hub4FeTSiq3g2dmCkzGA==",
231 | "cpu": [
232 | "arm64"
233 | ],
234 | "optional": true,
235 | "os": [
236 | "linux"
237 | ],
238 | "engines": {
239 | "node": ">= 10"
240 | }
241 | },
242 | "node_modules/@next/swc-linux-arm64-musl": {
243 | "version": "13.2.3",
244 | "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-13.2.3.tgz",
245 | "integrity": "sha512-sujxFDhMMDjqhruup8LLGV/y+nCPi6nm5DlFoThMJFvaaKr/imhkXuk8uCTq4YJDbtRxnjydFv2y8laBSJVC2g==",
246 | "cpu": [
247 | "arm64"
248 | ],
249 | "optional": true,
250 | "os": [
251 | "linux"
252 | ],
253 | "engines": {
254 | "node": ">= 10"
255 | }
256 | },
257 | "node_modules/@next/swc-linux-x64-gnu": {
258 | "version": "13.2.3",
259 | "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-13.2.3.tgz",
260 | "integrity": "sha512-w5MyxPknVvC9LVnMenAYMXMx4KxPwXuJRMQFvY71uXg68n7cvcas85U5zkdrbmuZ+JvsO5SIG8k36/6X3nUhmQ==",
261 | "cpu": [
262 | "x64"
263 | ],
264 | "optional": true,
265 | "os": [
266 | "linux"
267 | ],
268 | "engines": {
269 | "node": ">= 10"
270 | }
271 | },
272 | "node_modules/@next/swc-linux-x64-musl": {
273 | "version": "13.2.3",
274 | "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-13.2.3.tgz",
275 | "integrity": "sha512-CTeelh8OzSOVqpzMFMFnVRJIFAFQoTsI9RmVJWW/92S4xfECGcOzgsX37CZ8K982WHRzKU7exeh7vYdG/Eh4CA==",
276 | "cpu": [
277 | "x64"
278 | ],
279 | "optional": true,
280 | "os": [
281 | "linux"
282 | ],
283 | "engines": {
284 | "node": ">= 10"
285 | }
286 | },
287 | "node_modules/@next/swc-win32-arm64-msvc": {
288 | "version": "13.2.3",
289 | "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-13.2.3.tgz",
290 | "integrity": "sha512-7N1KBQP5mo4xf52cFCHgMjzbc9jizIlkTepe9tMa2WFvEIlKDfdt38QYcr9mbtny17yuaIw02FXOVEytGzqdOQ==",
291 | "cpu": [
292 | "arm64"
293 | ],
294 | "optional": true,
295 | "os": [
296 | "win32"
297 | ],
298 | "engines": {
299 | "node": ">= 10"
300 | }
301 | },
302 | "node_modules/@next/swc-win32-ia32-msvc": {
303 | "version": "13.2.3",
304 | "resolved": "https://registry.npmjs.org/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-13.2.3.tgz",
305 | "integrity": "sha512-LzWD5pTSipUXTEMRjtxES/NBYktuZdo7xExJqGDMnZU8WOI+v9mQzsmQgZS/q02eIv78JOCSemqVVKZBGCgUvA==",
306 | "cpu": [
307 | "ia32"
308 | ],
309 | "optional": true,
310 | "os": [
311 | "win32"
312 | ],
313 | "engines": {
314 | "node": ">= 10"
315 | }
316 | },
317 | "node_modules/@next/swc-win32-x64-msvc": {
318 | "version": "13.2.3",
319 | "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-13.2.3.tgz",
320 | "integrity": "sha512-aLG2MaFs4y7IwaMTosz2r4mVbqRyCnMoFqOcmfTi7/mAS+G4IMH0vJp4oLdbshqiVoiVuKrAfqtXj55/m7Qu1Q==",
321 | "cpu": [
322 | "x64"
323 | ],
324 | "optional": true,
325 | "os": [
326 | "win32"
327 | ],
328 | "engines": {
329 | "node": ">= 10"
330 | }
331 | },
332 | "node_modules/@nodelib/fs.scandir": {
333 | "version": "2.1.5",
334 | "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz",
335 | "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==",
336 | "dependencies": {
337 | "@nodelib/fs.stat": "2.0.5",
338 | "run-parallel": "^1.1.9"
339 | },
340 | "engines": {
341 | "node": ">= 8"
342 | }
343 | },
344 | "node_modules/@nodelib/fs.stat": {
345 | "version": "2.0.5",
346 | "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz",
347 | "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==",
348 | "engines": {
349 | "node": ">= 8"
350 | }
351 | },
352 | "node_modules/@nodelib/fs.walk": {
353 | "version": "1.2.8",
354 | "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz",
355 | "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==",
356 | "dependencies": {
357 | "@nodelib/fs.scandir": "2.1.5",
358 | "fastq": "^1.6.0"
359 | },
360 | "engines": {
361 | "node": ">= 8"
362 | }
363 | },
364 | "node_modules/@pkgr/utils": {
365 | "version": "2.3.1",
366 | "resolved": "https://registry.npmjs.org/@pkgr/utils/-/utils-2.3.1.tgz",
367 | "integrity": "sha512-wfzX8kc1PMyUILA+1Z/EqoE4UCXGy0iRGMhPwdfae1+f0OXlLqCk+By+aMzgJBzR9AzS4CDizioG6Ss1gvAFJw==",
368 | "dependencies": {
369 | "cross-spawn": "^7.0.3",
370 | "is-glob": "^4.0.3",
371 | "open": "^8.4.0",
372 | "picocolors": "^1.0.0",
373 | "tiny-glob": "^0.2.9",
374 | "tslib": "^2.4.0"
375 | },
376 | "engines": {
377 | "node": "^12.20.0 || ^14.18.0 || >=16.0.0"
378 | },
379 | "funding": {
380 | "url": "https://opencollective.com/unts"
381 | }
382 | },
383 | "node_modules/@react-leaflet/core": {
384 | "version": "2.1.0",
385 | "resolved": "https://registry.npmjs.org/@react-leaflet/core/-/core-2.1.0.tgz",
386 | "integrity": "sha512-Qk7Pfu8BSarKGqILj4x7bCSZ1pjuAPZ+qmRwH5S7mDS91VSbVVsJSrW4qA+GPrro8t69gFYVMWb1Zc4yFmPiVg==",
387 | "peerDependencies": {
388 | "leaflet": "^1.9.0",
389 | "react": "^18.0.0",
390 | "react-dom": "^18.0.0"
391 | }
392 | },
393 | "node_modules/@rushstack/eslint-patch": {
394 | "version": "1.2.0",
395 | "resolved": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.2.0.tgz",
396 | "integrity": "sha512-sXo/qW2/pAcmT43VoRKOJbDOfV3cYpq3szSVfIThQXNt+E4DfKj361vaAt3c88U5tPUxzEswam7GW48PJqtKAg=="
397 | },
398 | "node_modules/@swc/helpers": {
399 | "version": "0.4.14",
400 | "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.4.14.tgz",
401 | "integrity": "sha512-4C7nX/dvpzB7za4Ql9K81xK3HPxCpHMgwTZVyf+9JQ6VUbn9jjZVN7/Nkdz/Ugzs2CSjqnL/UPXroiVBVHUWUw==",
402 | "dependencies": {
403 | "tslib": "^2.4.0"
404 | }
405 | },
406 | "node_modules/@tailwindcss/forms": {
407 | "version": "0.5.3",
408 | "resolved": "https://registry.npmjs.org/@tailwindcss/forms/-/forms-0.5.3.tgz",
409 | "integrity": "sha512-y5mb86JUoiUgBjY/o6FJSFZSEttfb3Q5gllE4xoKjAAD+vBrnIhE4dViwUuow3va8mpH4s9jyUbUbrRGoRdc2Q==",
410 | "dev": true,
411 | "dependencies": {
412 | "mini-svg-data-uri": "^1.2.3"
413 | },
414 | "peerDependencies": {
415 | "tailwindcss": ">=3.0.0 || >= 3.0.0-alpha.1"
416 | }
417 | },
418 | "node_modules/@types/geojson": {
419 | "version": "7946.0.10",
420 | "resolved": "https://registry.npmjs.org/@types/geojson/-/geojson-7946.0.10.tgz",
421 | "integrity": "sha512-Nmh0K3iWQJzniTuPRcJn5hxXkfB1T1pgB89SBig5PlJQU5yocazeu4jATJlaA0GYFKWMqDdvYemoSnF2pXgLVA==",
422 | "dev": true
423 | },
424 | "node_modules/@types/json-schema": {
425 | "version": "7.0.11",
426 | "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.11.tgz",
427 | "integrity": "sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==",
428 | "dev": true,
429 | "peer": true
430 | },
431 | "node_modules/@types/json5": {
432 | "version": "0.0.29",
433 | "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz",
434 | "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ=="
435 | },
436 | "node_modules/@types/lambda-rate-limiter": {
437 | "version": "3.0.0",
438 | "resolved": "https://registry.npmjs.org/@types/lambda-rate-limiter/-/lambda-rate-limiter-3.0.0.tgz",
439 | "integrity": "sha512-bKej2hv/zn16vb0r86Y/CGZ49nfgFP8DqWQCv28yHWljoe0xNL2aMG+4WXeUFyQe48hmJu/21xhvrlDm2OlFjw==",
440 | "dev": true
441 | },
442 | "node_modules/@types/leaflet": {
443 | "version": "1.9.1",
444 | "resolved": "https://registry.npmjs.org/@types/leaflet/-/leaflet-1.9.1.tgz",
445 | "integrity": "sha512-lYawM3I3lLO6rmBASaqdGgY6zUL4YHr3H79/axx7FNYyPXuj0P1DZHbkNo8Itbv0i7Y9EryLWtDXXROMygXhRA==",
446 | "dev": true,
447 | "dependencies": {
448 | "@types/geojson": "*"
449 | }
450 | },
451 | "node_modules/@types/node": {
452 | "version": "18.14.6",
453 | "resolved": "https://registry.npmjs.org/@types/node/-/node-18.14.6.tgz",
454 | "integrity": "sha512-93+VvleD3mXwlLI/xASjw0FzKcwzl3OdTCzm1LaRfqgS21gfFtK3zDXM5Op9TeeMsJVOaJ2VRDpT9q4Y3d0AvA=="
455 | },
456 | "node_modules/@types/prop-types": {
457 | "version": "15.7.5",
458 | "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.5.tgz",
459 | "integrity": "sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w=="
460 | },
461 | "node_modules/@types/react": {
462 | "version": "18.0.28",
463 | "resolved": "https://registry.npmjs.org/@types/react/-/react-18.0.28.tgz",
464 | "integrity": "sha512-RD0ivG1kEztNBdoAK7lekI9M+azSnitIn85h4iOiaLjaTrMjzslhaqCGaI4IyCJ1RljWiLCEu4jyrLLgqxBTew==",
465 | "dependencies": {
466 | "@types/prop-types": "*",
467 | "@types/scheduler": "*",
468 | "csstype": "^3.0.2"
469 | }
470 | },
471 | "node_modules/@types/react-dom": {
472 | "version": "18.0.11",
473 | "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.0.11.tgz",
474 | "integrity": "sha512-O38bPbI2CWtgw/OoQoY+BRelw7uysmXbWvw3nLWO21H1HSh+GOlqPuXshJfjmpNlKiiSDG9cc1JZAaMmVdcTlw==",
475 | "dependencies": {
476 | "@types/react": "*"
477 | }
478 | },
479 | "node_modules/@types/scheduler": {
480 | "version": "0.16.2",
481 | "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.2.tgz",
482 | "integrity": "sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew=="
483 | },
484 | "node_modules/@types/semver": {
485 | "version": "7.3.13",
486 | "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.3.13.tgz",
487 | "integrity": "sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw==",
488 | "dev": true,
489 | "peer": true
490 | },
491 | "node_modules/@types/webidl-conversions": {
492 | "version": "7.0.0",
493 | "resolved": "https://registry.npmjs.org/@types/webidl-conversions/-/webidl-conversions-7.0.0.tgz",
494 | "integrity": "sha512-xTE1E+YF4aWPJJeUzaZI5DRntlkY3+BCVJi0axFptnjGmAoWxkyREIh/XMrfxVLejwQxMCfDXdICo0VLxThrog=="
495 | },
496 | "node_modules/@types/whatwg-url": {
497 | "version": "8.2.2",
498 | "resolved": "https://registry.npmjs.org/@types/whatwg-url/-/whatwg-url-8.2.2.tgz",
499 | "integrity": "sha512-FtQu10RWgn3D9U4aazdwIE2yzphmTJREDqNdODHrbrZmmMqI0vMheC/6NE/J1Yveaj8H+ela+YwWTjq5PGmuhA==",
500 | "dependencies": {
501 | "@types/node": "*",
502 | "@types/webidl-conversions": "*"
503 | }
504 | },
505 | "node_modules/@typescript-eslint/eslint-plugin": {
506 | "version": "5.51.0",
507 | "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.51.0.tgz",
508 | "integrity": "sha512-wcAwhEWm1RgNd7dxD/o+nnLW8oH+6RK1OGnmbmkj/GGoDPV1WWMVP0FXYQBivKHdwM1pwii3bt//RC62EriIUQ==",
509 | "dev": true,
510 | "peer": true,
511 | "dependencies": {
512 | "@typescript-eslint/scope-manager": "5.51.0",
513 | "@typescript-eslint/type-utils": "5.51.0",
514 | "@typescript-eslint/utils": "5.51.0",
515 | "debug": "^4.3.4",
516 | "grapheme-splitter": "^1.0.4",
517 | "ignore": "^5.2.0",
518 | "natural-compare-lite": "^1.4.0",
519 | "regexpp": "^3.2.0",
520 | "semver": "^7.3.7",
521 | "tsutils": "^3.21.0"
522 | },
523 | "engines": {
524 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
525 | },
526 | "funding": {
527 | "type": "opencollective",
528 | "url": "https://opencollective.com/typescript-eslint"
529 | },
530 | "peerDependencies": {
531 | "@typescript-eslint/parser": "^5.0.0",
532 | "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0"
533 | },
534 | "peerDependenciesMeta": {
535 | "typescript": {
536 | "optional": true
537 | }
538 | }
539 | },
540 | "node_modules/@typescript-eslint/parser": {
541 | "version": "5.51.0",
542 | "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.51.0.tgz",
543 | "integrity": "sha512-fEV0R9gGmfpDeRzJXn+fGQKcl0inIeYobmmUWijZh9zA7bxJ8clPhV9up2ZQzATxAiFAECqPQyMDB4o4B81AaA==",
544 | "dependencies": {
545 | "@typescript-eslint/scope-manager": "5.51.0",
546 | "@typescript-eslint/types": "5.51.0",
547 | "@typescript-eslint/typescript-estree": "5.51.0",
548 | "debug": "^4.3.4"
549 | },
550 | "engines": {
551 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
552 | },
553 | "funding": {
554 | "type": "opencollective",
555 | "url": "https://opencollective.com/typescript-eslint"
556 | },
557 | "peerDependencies": {
558 | "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0"
559 | },
560 | "peerDependenciesMeta": {
561 | "typescript": {
562 | "optional": true
563 | }
564 | }
565 | },
566 | "node_modules/@typescript-eslint/scope-manager": {
567 | "version": "5.51.0",
568 | "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.51.0.tgz",
569 | "integrity": "sha512-gNpxRdlx5qw3yaHA0SFuTjW4rxeYhpHxt491PEcKF8Z6zpq0kMhe0Tolxt0qjlojS+/wArSDlj/LtE69xUJphQ==",
570 | "dependencies": {
571 | "@typescript-eslint/types": "5.51.0",
572 | "@typescript-eslint/visitor-keys": "5.51.0"
573 | },
574 | "engines": {
575 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
576 | },
577 | "funding": {
578 | "type": "opencollective",
579 | "url": "https://opencollective.com/typescript-eslint"
580 | }
581 | },
582 | "node_modules/@typescript-eslint/type-utils": {
583 | "version": "5.51.0",
584 | "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.51.0.tgz",
585 | "integrity": "sha512-QHC5KKyfV8sNSyHqfNa0UbTbJ6caB8uhcx2hYcWVvJAZYJRBo5HyyZfzMdRx8nvS+GyMg56fugMzzWnojREuQQ==",
586 | "dev": true,
587 | "peer": true,
588 | "dependencies": {
589 | "@typescript-eslint/typescript-estree": "5.51.0",
590 | "@typescript-eslint/utils": "5.51.0",
591 | "debug": "^4.3.4",
592 | "tsutils": "^3.21.0"
593 | },
594 | "engines": {
595 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
596 | },
597 | "funding": {
598 | "type": "opencollective",
599 | "url": "https://opencollective.com/typescript-eslint"
600 | },
601 | "peerDependencies": {
602 | "eslint": "*"
603 | },
604 | "peerDependenciesMeta": {
605 | "typescript": {
606 | "optional": true
607 | }
608 | }
609 | },
610 | "node_modules/@typescript-eslint/types": {
611 | "version": "5.51.0",
612 | "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.51.0.tgz",
613 | "integrity": "sha512-SqOn0ANn/v6hFn0kjvLwiDi4AzR++CBZz0NV5AnusT2/3y32jdc0G4woXPWHCumWtUXZKPAS27/9vziSsC9jnw==",
614 | "engines": {
615 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
616 | },
617 | "funding": {
618 | "type": "opencollective",
619 | "url": "https://opencollective.com/typescript-eslint"
620 | }
621 | },
622 | "node_modules/@typescript-eslint/typescript-estree": {
623 | "version": "5.51.0",
624 | "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.51.0.tgz",
625 | "integrity": "sha512-TSkNupHvNRkoH9FMA3w7TazVFcBPveAAmb7Sz+kArY6sLT86PA5Vx80cKlYmd8m3Ha2SwofM1KwraF24lM9FvA==",
626 | "dependencies": {
627 | "@typescript-eslint/types": "5.51.0",
628 | "@typescript-eslint/visitor-keys": "5.51.0",
629 | "debug": "^4.3.4",
630 | "globby": "^11.1.0",
631 | "is-glob": "^4.0.3",
632 | "semver": "^7.3.7",
633 | "tsutils": "^3.21.0"
634 | },
635 | "engines": {
636 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
637 | },
638 | "funding": {
639 | "type": "opencollective",
640 | "url": "https://opencollective.com/typescript-eslint"
641 | },
642 | "peerDependenciesMeta": {
643 | "typescript": {
644 | "optional": true
645 | }
646 | }
647 | },
648 | "node_modules/@typescript-eslint/utils": {
649 | "version": "5.51.0",
650 | "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.51.0.tgz",
651 | "integrity": "sha512-76qs+5KWcaatmwtwsDJvBk4H76RJQBFe+Gext0EfJdC3Vd2kpY2Pf//OHHzHp84Ciw0/rYoGTDnIAr3uWhhJYw==",
652 | "dev": true,
653 | "peer": true,
654 | "dependencies": {
655 | "@types/json-schema": "^7.0.9",
656 | "@types/semver": "^7.3.12",
657 | "@typescript-eslint/scope-manager": "5.51.0",
658 | "@typescript-eslint/types": "5.51.0",
659 | "@typescript-eslint/typescript-estree": "5.51.0",
660 | "eslint-scope": "^5.1.1",
661 | "eslint-utils": "^3.0.0",
662 | "semver": "^7.3.7"
663 | },
664 | "engines": {
665 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
666 | },
667 | "funding": {
668 | "type": "opencollective",
669 | "url": "https://opencollective.com/typescript-eslint"
670 | },
671 | "peerDependencies": {
672 | "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0"
673 | }
674 | },
675 | "node_modules/@typescript-eslint/utils/node_modules/eslint-scope": {
676 | "version": "5.1.1",
677 | "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz",
678 | "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==",
679 | "dev": true,
680 | "peer": true,
681 | "dependencies": {
682 | "esrecurse": "^4.3.0",
683 | "estraverse": "^4.1.1"
684 | },
685 | "engines": {
686 | "node": ">=8.0.0"
687 | }
688 | },
689 | "node_modules/@typescript-eslint/utils/node_modules/estraverse": {
690 | "version": "4.3.0",
691 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz",
692 | "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==",
693 | "dev": true,
694 | "peer": true,
695 | "engines": {
696 | "node": ">=4.0"
697 | }
698 | },
699 | "node_modules/@typescript-eslint/visitor-keys": {
700 | "version": "5.51.0",
701 | "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.51.0.tgz",
702 | "integrity": "sha512-Oh2+eTdjHjOFjKA27sxESlA87YPSOJafGCR0md5oeMdh1ZcCfAGCIOL216uTBAkAIptvLIfKQhl7lHxMJet4GQ==",
703 | "dependencies": {
704 | "@typescript-eslint/types": "5.51.0",
705 | "eslint-visitor-keys": "^3.3.0"
706 | },
707 | "engines": {
708 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
709 | },
710 | "funding": {
711 | "type": "opencollective",
712 | "url": "https://opencollective.com/typescript-eslint"
713 | }
714 | },
715 | "node_modules/acorn": {
716 | "version": "8.8.2",
717 | "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.2.tgz",
718 | "integrity": "sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==",
719 | "bin": {
720 | "acorn": "bin/acorn"
721 | },
722 | "engines": {
723 | "node": ">=0.4.0"
724 | }
725 | },
726 | "node_modules/acorn-jsx": {
727 | "version": "5.3.2",
728 | "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz",
729 | "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==",
730 | "peerDependencies": {
731 | "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0"
732 | }
733 | },
734 | "node_modules/acorn-node": {
735 | "version": "1.8.2",
736 | "resolved": "https://registry.npmjs.org/acorn-node/-/acorn-node-1.8.2.tgz",
737 | "integrity": "sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A==",
738 | "dependencies": {
739 | "acorn": "^7.0.0",
740 | "acorn-walk": "^7.0.0",
741 | "xtend": "^4.0.2"
742 | }
743 | },
744 | "node_modules/acorn-node/node_modules/acorn": {
745 | "version": "7.4.1",
746 | "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz",
747 | "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==",
748 | "bin": {
749 | "acorn": "bin/acorn"
750 | },
751 | "engines": {
752 | "node": ">=0.4.0"
753 | }
754 | },
755 | "node_modules/acorn-walk": {
756 | "version": "7.2.0",
757 | "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz",
758 | "integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==",
759 | "engines": {
760 | "node": ">=0.4.0"
761 | }
762 | },
763 | "node_modules/ajv": {
764 | "version": "6.12.6",
765 | "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
766 | "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
767 | "dependencies": {
768 | "fast-deep-equal": "^3.1.1",
769 | "fast-json-stable-stringify": "^2.0.0",
770 | "json-schema-traverse": "^0.4.1",
771 | "uri-js": "^4.2.2"
772 | },
773 | "funding": {
774 | "type": "github",
775 | "url": "https://github.com/sponsors/epoberezkin"
776 | }
777 | },
778 | "node_modules/ansi-regex": {
779 | "version": "5.0.1",
780 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
781 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
782 | "engines": {
783 | "node": ">=8"
784 | }
785 | },
786 | "node_modules/ansi-styles": {
787 | "version": "4.3.0",
788 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
789 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
790 | "dependencies": {
791 | "color-convert": "^2.0.1"
792 | },
793 | "engines": {
794 | "node": ">=8"
795 | },
796 | "funding": {
797 | "url": "https://github.com/chalk/ansi-styles?sponsor=1"
798 | }
799 | },
800 | "node_modules/anymatch": {
801 | "version": "3.1.3",
802 | "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz",
803 | "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==",
804 | "dependencies": {
805 | "normalize-path": "^3.0.0",
806 | "picomatch": "^2.0.4"
807 | },
808 | "engines": {
809 | "node": ">= 8"
810 | }
811 | },
812 | "node_modules/arg": {
813 | "version": "5.0.2",
814 | "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz",
815 | "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg=="
816 | },
817 | "node_modules/argparse": {
818 | "version": "2.0.1",
819 | "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
820 | "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q=="
821 | },
822 | "node_modules/aria-query": {
823 | "version": "5.1.3",
824 | "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.1.3.tgz",
825 | "integrity": "sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==",
826 | "dependencies": {
827 | "deep-equal": "^2.0.5"
828 | }
829 | },
830 | "node_modules/array-includes": {
831 | "version": "3.1.6",
832 | "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.6.tgz",
833 | "integrity": "sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==",
834 | "dependencies": {
835 | "call-bind": "^1.0.2",
836 | "define-properties": "^1.1.4",
837 | "es-abstract": "^1.20.4",
838 | "get-intrinsic": "^1.1.3",
839 | "is-string": "^1.0.7"
840 | },
841 | "engines": {
842 | "node": ">= 0.4"
843 | },
844 | "funding": {
845 | "url": "https://github.com/sponsors/ljharb"
846 | }
847 | },
848 | "node_modules/array-union": {
849 | "version": "2.1.0",
850 | "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz",
851 | "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==",
852 | "engines": {
853 | "node": ">=8"
854 | }
855 | },
856 | "node_modules/array.prototype.flat": {
857 | "version": "1.3.1",
858 | "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.1.tgz",
859 | "integrity": "sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==",
860 | "dependencies": {
861 | "call-bind": "^1.0.2",
862 | "define-properties": "^1.1.4",
863 | "es-abstract": "^1.20.4",
864 | "es-shim-unscopables": "^1.0.0"
865 | },
866 | "engines": {
867 | "node": ">= 0.4"
868 | },
869 | "funding": {
870 | "url": "https://github.com/sponsors/ljharb"
871 | }
872 | },
873 | "node_modules/array.prototype.flatmap": {
874 | "version": "1.3.1",
875 | "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.1.tgz",
876 | "integrity": "sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==",
877 | "dependencies": {
878 | "call-bind": "^1.0.2",
879 | "define-properties": "^1.1.4",
880 | "es-abstract": "^1.20.4",
881 | "es-shim-unscopables": "^1.0.0"
882 | },
883 | "engines": {
884 | "node": ">= 0.4"
885 | },
886 | "funding": {
887 | "url": "https://github.com/sponsors/ljharb"
888 | }
889 | },
890 | "node_modules/array.prototype.tosorted": {
891 | "version": "1.1.1",
892 | "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.1.tgz",
893 | "integrity": "sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ==",
894 | "dependencies": {
895 | "call-bind": "^1.0.2",
896 | "define-properties": "^1.1.4",
897 | "es-abstract": "^1.20.4",
898 | "es-shim-unscopables": "^1.0.0",
899 | "get-intrinsic": "^1.1.3"
900 | }
901 | },
902 | "node_modules/ast-types-flow": {
903 | "version": "0.0.7",
904 | "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.7.tgz",
905 | "integrity": "sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag=="
906 | },
907 | "node_modules/autoprefixer": {
908 | "version": "10.4.13",
909 | "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.13.tgz",
910 | "integrity": "sha512-49vKpMqcZYsJjwotvt4+h/BCjJVnhGwcLpDt5xkcaOG3eLrG/HUYLagrihYsQ+qrIBgIzX1Rw7a6L8I/ZA1Atg==",
911 | "funding": [
912 | {
913 | "type": "opencollective",
914 | "url": "https://opencollective.com/postcss/"
915 | },
916 | {
917 | "type": "tidelift",
918 | "url": "https://tidelift.com/funding/github/npm/autoprefixer"
919 | }
920 | ],
921 | "dependencies": {
922 | "browserslist": "^4.21.4",
923 | "caniuse-lite": "^1.0.30001426",
924 | "fraction.js": "^4.2.0",
925 | "normalize-range": "^0.1.2",
926 | "picocolors": "^1.0.0",
927 | "postcss-value-parser": "^4.2.0"
928 | },
929 | "bin": {
930 | "autoprefixer": "bin/autoprefixer"
931 | },
932 | "engines": {
933 | "node": "^10 || ^12 || >=14"
934 | },
935 | "peerDependencies": {
936 | "postcss": "^8.1.0"
937 | }
938 | },
939 | "node_modules/available-typed-arrays": {
940 | "version": "1.0.5",
941 | "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz",
942 | "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==",
943 | "engines": {
944 | "node": ">= 0.4"
945 | },
946 | "funding": {
947 | "url": "https://github.com/sponsors/ljharb"
948 | }
949 | },
950 | "node_modules/axe-core": {
951 | "version": "4.6.3",
952 | "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.6.3.tgz",
953 | "integrity": "sha512-/BQzOX780JhsxDnPpH4ZiyrJAzcd8AfzFPkv+89veFSr1rcMjuq2JDCwypKaPeB6ljHp9KjXhPpjgCvQlWYuqg==",
954 | "engines": {
955 | "node": ">=4"
956 | }
957 | },
958 | "node_modules/axobject-query": {
959 | "version": "3.1.1",
960 | "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-3.1.1.tgz",
961 | "integrity": "sha512-goKlv8DZrK9hUh975fnHzhNIO4jUnFCfv/dszV5VwUGDFjI6vQ2VwoyjYjYNEbBE8AH87TduWP5uyDR1D+Iteg==",
962 | "dependencies": {
963 | "deep-equal": "^2.0.5"
964 | }
965 | },
966 | "node_modules/balanced-match": {
967 | "version": "1.0.2",
968 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
969 | "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="
970 | },
971 | "node_modules/binary-extensions": {
972 | "version": "2.2.0",
973 | "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz",
974 | "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==",
975 | "engines": {
976 | "node": ">=8"
977 | }
978 | },
979 | "node_modules/brace-expansion": {
980 | "version": "1.1.11",
981 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
982 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
983 | "dependencies": {
984 | "balanced-match": "^1.0.0",
985 | "concat-map": "0.0.1"
986 | }
987 | },
988 | "node_modules/braces": {
989 | "version": "3.0.2",
990 | "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
991 | "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
992 | "dependencies": {
993 | "fill-range": "^7.0.1"
994 | },
995 | "engines": {
996 | "node": ">=8"
997 | }
998 | },
999 | "node_modules/browserslist": {
1000 | "version": "4.21.5",
1001 | "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.5.tgz",
1002 | "integrity": "sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w==",
1003 | "funding": [
1004 | {
1005 | "type": "opencollective",
1006 | "url": "https://opencollective.com/browserslist"
1007 | },
1008 | {
1009 | "type": "tidelift",
1010 | "url": "https://tidelift.com/funding/github/npm/browserslist"
1011 | }
1012 | ],
1013 | "dependencies": {
1014 | "caniuse-lite": "^1.0.30001449",
1015 | "electron-to-chromium": "^1.4.284",
1016 | "node-releases": "^2.0.8",
1017 | "update-browserslist-db": "^1.0.10"
1018 | },
1019 | "bin": {
1020 | "browserslist": "cli.js"
1021 | },
1022 | "engines": {
1023 | "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7"
1024 | }
1025 | },
1026 | "node_modules/bson": {
1027 | "version": "5.0.1",
1028 | "resolved": "https://registry.npmjs.org/bson/-/bson-5.0.1.tgz",
1029 | "integrity": "sha512-y09gBGusgHtinMon/GVbv1J6FrXhnr/+6hqLlSmEFzkz6PodqF6TxjyvfvY3AfO+oG1mgUtbC86xSbOlwvM62Q==",
1030 | "engines": {
1031 | "node": ">=14.20.1"
1032 | }
1033 | },
1034 | "node_modules/call-bind": {
1035 | "version": "1.0.2",
1036 | "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz",
1037 | "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==",
1038 | "dependencies": {
1039 | "function-bind": "^1.1.1",
1040 | "get-intrinsic": "^1.0.2"
1041 | },
1042 | "funding": {
1043 | "url": "https://github.com/sponsors/ljharb"
1044 | }
1045 | },
1046 | "node_modules/callsites": {
1047 | "version": "3.1.0",
1048 | "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz",
1049 | "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==",
1050 | "engines": {
1051 | "node": ">=6"
1052 | }
1053 | },
1054 | "node_modules/camelcase-css": {
1055 | "version": "2.0.1",
1056 | "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz",
1057 | "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==",
1058 | "engines": {
1059 | "node": ">= 6"
1060 | }
1061 | },
1062 | "node_modules/caniuse-lite": {
1063 | "version": "1.0.30001450",
1064 | "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001450.tgz",
1065 | "integrity": "sha512-qMBmvmQmFXaSxexkjjfMvD5rnDL0+m+dUMZKoDYsGG8iZN29RuYh9eRoMvKsT6uMAWlyUUGDEQGJJYjzCIO9ew==",
1066 | "funding": [
1067 | {
1068 | "type": "opencollective",
1069 | "url": "https://opencollective.com/browserslist"
1070 | },
1071 | {
1072 | "type": "tidelift",
1073 | "url": "https://tidelift.com/funding/github/npm/caniuse-lite"
1074 | }
1075 | ]
1076 | },
1077 | "node_modules/chalk": {
1078 | "version": "4.1.2",
1079 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
1080 | "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
1081 | "dependencies": {
1082 | "ansi-styles": "^4.1.0",
1083 | "supports-color": "^7.1.0"
1084 | },
1085 | "engines": {
1086 | "node": ">=10"
1087 | },
1088 | "funding": {
1089 | "url": "https://github.com/chalk/chalk?sponsor=1"
1090 | }
1091 | },
1092 | "node_modules/chokidar": {
1093 | "version": "3.5.3",
1094 | "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz",
1095 | "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==",
1096 | "funding": [
1097 | {
1098 | "type": "individual",
1099 | "url": "https://paulmillr.com/funding/"
1100 | }
1101 | ],
1102 | "dependencies": {
1103 | "anymatch": "~3.1.2",
1104 | "braces": "~3.0.2",
1105 | "glob-parent": "~5.1.2",
1106 | "is-binary-path": "~2.1.0",
1107 | "is-glob": "~4.0.1",
1108 | "normalize-path": "~3.0.0",
1109 | "readdirp": "~3.6.0"
1110 | },
1111 | "engines": {
1112 | "node": ">= 8.10.0"
1113 | },
1114 | "optionalDependencies": {
1115 | "fsevents": "~2.3.2"
1116 | }
1117 | },
1118 | "node_modules/chokidar/node_modules/glob-parent": {
1119 | "version": "5.1.2",
1120 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
1121 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
1122 | "dependencies": {
1123 | "is-glob": "^4.0.1"
1124 | },
1125 | "engines": {
1126 | "node": ">= 6"
1127 | }
1128 | },
1129 | "node_modules/client-only": {
1130 | "version": "0.0.1",
1131 | "resolved": "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz",
1132 | "integrity": "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA=="
1133 | },
1134 | "node_modules/color": {
1135 | "version": "4.2.3",
1136 | "resolved": "https://registry.npmjs.org/color/-/color-4.2.3.tgz",
1137 | "integrity": "sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==",
1138 | "dependencies": {
1139 | "color-convert": "^2.0.1",
1140 | "color-string": "^1.9.0"
1141 | },
1142 | "engines": {
1143 | "node": ">=12.5.0"
1144 | }
1145 | },
1146 | "node_modules/color-convert": {
1147 | "version": "2.0.1",
1148 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
1149 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
1150 | "dependencies": {
1151 | "color-name": "~1.1.4"
1152 | },
1153 | "engines": {
1154 | "node": ">=7.0.0"
1155 | }
1156 | },
1157 | "node_modules/color-name": {
1158 | "version": "1.1.4",
1159 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
1160 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
1161 | },
1162 | "node_modules/color-string": {
1163 | "version": "1.9.1",
1164 | "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.9.1.tgz",
1165 | "integrity": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==",
1166 | "dependencies": {
1167 | "color-name": "^1.0.0",
1168 | "simple-swizzle": "^0.2.2"
1169 | }
1170 | },
1171 | "node_modules/concat-map": {
1172 | "version": "0.0.1",
1173 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
1174 | "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg=="
1175 | },
1176 | "node_modules/confusing-browser-globals": {
1177 | "version": "1.0.11",
1178 | "resolved": "https://registry.npmjs.org/confusing-browser-globals/-/confusing-browser-globals-1.0.11.tgz",
1179 | "integrity": "sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==",
1180 | "dev": true
1181 | },
1182 | "node_modules/cross-spawn": {
1183 | "version": "7.0.3",
1184 | "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz",
1185 | "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==",
1186 | "dependencies": {
1187 | "path-key": "^3.1.0",
1188 | "shebang-command": "^2.0.0",
1189 | "which": "^2.0.1"
1190 | },
1191 | "engines": {
1192 | "node": ">= 8"
1193 | }
1194 | },
1195 | "node_modules/css-selector-tokenizer": {
1196 | "version": "0.8.0",
1197 | "resolved": "https://registry.npmjs.org/css-selector-tokenizer/-/css-selector-tokenizer-0.8.0.tgz",
1198 | "integrity": "sha512-Jd6Ig3/pe62/qe5SBPTN8h8LeUg/pT4lLgtavPf7updwwHpvFzxvOQBHYj2LZDMjUnBzgvIUSjRcf6oT5HzHFg==",
1199 | "dependencies": {
1200 | "cssesc": "^3.0.0",
1201 | "fastparse": "^1.1.2"
1202 | }
1203 | },
1204 | "node_modules/cssesc": {
1205 | "version": "3.0.0",
1206 | "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz",
1207 | "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==",
1208 | "bin": {
1209 | "cssesc": "bin/cssesc"
1210 | },
1211 | "engines": {
1212 | "node": ">=4"
1213 | }
1214 | },
1215 | "node_modules/csstype": {
1216 | "version": "3.1.1",
1217 | "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.1.tgz",
1218 | "integrity": "sha512-DJR/VvkAvSZW9bTouZue2sSxDwdTN92uHjqeKVm+0dAqdfNykRzQ95tay8aXMBAAPpUiq4Qcug2L7neoRh2Egw=="
1219 | },
1220 | "node_modules/daisyui": {
1221 | "version": "2.51.3",
1222 | "resolved": "https://registry.npmjs.org/daisyui/-/daisyui-2.51.3.tgz",
1223 | "integrity": "sha512-AQa9exq/DsnvjyDi6bwOqHExQr9LJJag0iKRXNvRRtHXPo1gaAQ3ASJWylUB8J8KMH2M9zIpr7cvPHc7yGckyQ==",
1224 | "dependencies": {
1225 | "color": "^4.2",
1226 | "css-selector-tokenizer": "^0.8.0",
1227 | "postcss-js": "^4.0.0",
1228 | "tailwindcss": "^3"
1229 | },
1230 | "funding": {
1231 | "type": "opencollective",
1232 | "url": "https://opencollective.com/daisyui"
1233 | },
1234 | "peerDependencies": {
1235 | "autoprefixer": "^10.0.2",
1236 | "postcss": "^8.1.6"
1237 | }
1238 | },
1239 | "node_modules/damerau-levenshtein": {
1240 | "version": "1.0.8",
1241 | "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz",
1242 | "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA=="
1243 | },
1244 | "node_modules/date-fns": {
1245 | "version": "2.29.3",
1246 | "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.29.3.tgz",
1247 | "integrity": "sha512-dDCnyH2WnnKusqvZZ6+jA1O51Ibt8ZMRNkDZdyAyK4YfbDwa/cEmuztzG5pk6hqlp9aSBPYcjOlktquahGwGeA==",
1248 | "engines": {
1249 | "node": ">=0.11"
1250 | },
1251 | "funding": {
1252 | "type": "opencollective",
1253 | "url": "https://opencollective.com/date-fns"
1254 | }
1255 | },
1256 | "node_modules/debug": {
1257 | "version": "4.3.4",
1258 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz",
1259 | "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==",
1260 | "dependencies": {
1261 | "ms": "2.1.2"
1262 | },
1263 | "engines": {
1264 | "node": ">=6.0"
1265 | },
1266 | "peerDependenciesMeta": {
1267 | "supports-color": {
1268 | "optional": true
1269 | }
1270 | }
1271 | },
1272 | "node_modules/deep-equal": {
1273 | "version": "2.2.0",
1274 | "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-2.2.0.tgz",
1275 | "integrity": "sha512-RdpzE0Hv4lhowpIUKKMJfeH6C1pXdtT1/it80ubgWqwI3qpuxUBpC1S4hnHg+zjnuOoDkzUtUCEEkG+XG5l3Mw==",
1276 | "dependencies": {
1277 | "call-bind": "^1.0.2",
1278 | "es-get-iterator": "^1.1.2",
1279 | "get-intrinsic": "^1.1.3",
1280 | "is-arguments": "^1.1.1",
1281 | "is-array-buffer": "^3.0.1",
1282 | "is-date-object": "^1.0.5",
1283 | "is-regex": "^1.1.4",
1284 | "is-shared-array-buffer": "^1.0.2",
1285 | "isarray": "^2.0.5",
1286 | "object-is": "^1.1.5",
1287 | "object-keys": "^1.1.1",
1288 | "object.assign": "^4.1.4",
1289 | "regexp.prototype.flags": "^1.4.3",
1290 | "side-channel": "^1.0.4",
1291 | "which-boxed-primitive": "^1.0.2",
1292 | "which-collection": "^1.0.1",
1293 | "which-typed-array": "^1.1.9"
1294 | },
1295 | "funding": {
1296 | "url": "https://github.com/sponsors/ljharb"
1297 | }
1298 | },
1299 | "node_modules/deep-is": {
1300 | "version": "0.1.4",
1301 | "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz",
1302 | "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ=="
1303 | },
1304 | "node_modules/define-lazy-prop": {
1305 | "version": "2.0.0",
1306 | "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz",
1307 | "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==",
1308 | "engines": {
1309 | "node": ">=8"
1310 | }
1311 | },
1312 | "node_modules/define-properties": {
1313 | "version": "1.1.4",
1314 | "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.4.tgz",
1315 | "integrity": "sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA==",
1316 | "dependencies": {
1317 | "has-property-descriptors": "^1.0.0",
1318 | "object-keys": "^1.1.1"
1319 | },
1320 | "engines": {
1321 | "node": ">= 0.4"
1322 | },
1323 | "funding": {
1324 | "url": "https://github.com/sponsors/ljharb"
1325 | }
1326 | },
1327 | "node_modules/defined": {
1328 | "version": "1.0.1",
1329 | "resolved": "https://registry.npmjs.org/defined/-/defined-1.0.1.tgz",
1330 | "integrity": "sha512-hsBd2qSVCRE+5PmNdHt1uzyrFu5d3RwmFDKzyNZMFq/EwDNJF7Ee5+D5oEKF0hU6LhtoUF1macFvOe4AskQC1Q==",
1331 | "funding": {
1332 | "url": "https://github.com/sponsors/ljharb"
1333 | }
1334 | },
1335 | "node_modules/detective": {
1336 | "version": "5.2.1",
1337 | "resolved": "https://registry.npmjs.org/detective/-/detective-5.2.1.tgz",
1338 | "integrity": "sha512-v9XE1zRnz1wRtgurGu0Bs8uHKFSTdteYZNbIPFVhUZ39L/S79ppMpdmVOZAnoz1jfEFodc48n6MX483Xo3t1yw==",
1339 | "dependencies": {
1340 | "acorn-node": "^1.8.2",
1341 | "defined": "^1.0.0",
1342 | "minimist": "^1.2.6"
1343 | },
1344 | "bin": {
1345 | "detective": "bin/detective.js"
1346 | },
1347 | "engines": {
1348 | "node": ">=0.8.0"
1349 | }
1350 | },
1351 | "node_modules/didyoumean": {
1352 | "version": "1.2.2",
1353 | "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz",
1354 | "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw=="
1355 | },
1356 | "node_modules/dir-glob": {
1357 | "version": "3.0.1",
1358 | "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz",
1359 | "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==",
1360 | "dependencies": {
1361 | "path-type": "^4.0.0"
1362 | },
1363 | "engines": {
1364 | "node": ">=8"
1365 | }
1366 | },
1367 | "node_modules/dlv": {
1368 | "version": "1.1.3",
1369 | "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz",
1370 | "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA=="
1371 | },
1372 | "node_modules/doctrine": {
1373 | "version": "3.0.0",
1374 | "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz",
1375 | "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==",
1376 | "dependencies": {
1377 | "esutils": "^2.0.2"
1378 | },
1379 | "engines": {
1380 | "node": ">=6.0.0"
1381 | }
1382 | },
1383 | "node_modules/electron-to-chromium": {
1384 | "version": "1.4.286",
1385 | "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.286.tgz",
1386 | "integrity": "sha512-Vp3CVhmYpgf4iXNKAucoQUDcCrBQX3XLBtwgFqP9BUXuucgvAV9zWp1kYU7LL9j4++s9O+12cb3wMtN4SJy6UQ=="
1387 | },
1388 | "node_modules/emoji-regex": {
1389 | "version": "9.2.2",
1390 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz",
1391 | "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg=="
1392 | },
1393 | "node_modules/enhanced-resolve": {
1394 | "version": "5.12.0",
1395 | "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.12.0.tgz",
1396 | "integrity": "sha512-QHTXI/sZQmko1cbDoNAa3mJ5qhWUUNAq3vR0/YiD379fWQrcfuoX1+HW2S0MTt7XmoPLapdaDKUtelUSPic7hQ==",
1397 | "dependencies": {
1398 | "graceful-fs": "^4.2.4",
1399 | "tapable": "^2.2.0"
1400 | },
1401 | "engines": {
1402 | "node": ">=10.13.0"
1403 | }
1404 | },
1405 | "node_modules/es-abstract": {
1406 | "version": "1.21.1",
1407 | "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.21.1.tgz",
1408 | "integrity": "sha512-QudMsPOz86xYz/1dG1OuGBKOELjCh99IIWHLzy5znUB6j8xG2yMA7bfTV86VSqKF+Y/H08vQPR+9jyXpuC6hfg==",
1409 | "dependencies": {
1410 | "available-typed-arrays": "^1.0.5",
1411 | "call-bind": "^1.0.2",
1412 | "es-set-tostringtag": "^2.0.1",
1413 | "es-to-primitive": "^1.2.1",
1414 | "function-bind": "^1.1.1",
1415 | "function.prototype.name": "^1.1.5",
1416 | "get-intrinsic": "^1.1.3",
1417 | "get-symbol-description": "^1.0.0",
1418 | "globalthis": "^1.0.3",
1419 | "gopd": "^1.0.1",
1420 | "has": "^1.0.3",
1421 | "has-property-descriptors": "^1.0.0",
1422 | "has-proto": "^1.0.1",
1423 | "has-symbols": "^1.0.3",
1424 | "internal-slot": "^1.0.4",
1425 | "is-array-buffer": "^3.0.1",
1426 | "is-callable": "^1.2.7",
1427 | "is-negative-zero": "^2.0.2",
1428 | "is-regex": "^1.1.4",
1429 | "is-shared-array-buffer": "^1.0.2",
1430 | "is-string": "^1.0.7",
1431 | "is-typed-array": "^1.1.10",
1432 | "is-weakref": "^1.0.2",
1433 | "object-inspect": "^1.12.2",
1434 | "object-keys": "^1.1.1",
1435 | "object.assign": "^4.1.4",
1436 | "regexp.prototype.flags": "^1.4.3",
1437 | "safe-regex-test": "^1.0.0",
1438 | "string.prototype.trimend": "^1.0.6",
1439 | "string.prototype.trimstart": "^1.0.6",
1440 | "typed-array-length": "^1.0.4",
1441 | "unbox-primitive": "^1.0.2",
1442 | "which-typed-array": "^1.1.9"
1443 | },
1444 | "engines": {
1445 | "node": ">= 0.4"
1446 | },
1447 | "funding": {
1448 | "url": "https://github.com/sponsors/ljharb"
1449 | }
1450 | },
1451 | "node_modules/es-get-iterator": {
1452 | "version": "1.1.3",
1453 | "resolved": "https://registry.npmjs.org/es-get-iterator/-/es-get-iterator-1.1.3.tgz",
1454 | "integrity": "sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==",
1455 | "dependencies": {
1456 | "call-bind": "^1.0.2",
1457 | "get-intrinsic": "^1.1.3",
1458 | "has-symbols": "^1.0.3",
1459 | "is-arguments": "^1.1.1",
1460 | "is-map": "^2.0.2",
1461 | "is-set": "^2.0.2",
1462 | "is-string": "^1.0.7",
1463 | "isarray": "^2.0.5",
1464 | "stop-iteration-iterator": "^1.0.0"
1465 | },
1466 | "funding": {
1467 | "url": "https://github.com/sponsors/ljharb"
1468 | }
1469 | },
1470 | "node_modules/es-set-tostringtag": {
1471 | "version": "2.0.1",
1472 | "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz",
1473 | "integrity": "sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==",
1474 | "dependencies": {
1475 | "get-intrinsic": "^1.1.3",
1476 | "has": "^1.0.3",
1477 | "has-tostringtag": "^1.0.0"
1478 | },
1479 | "engines": {
1480 | "node": ">= 0.4"
1481 | }
1482 | },
1483 | "node_modules/es-shim-unscopables": {
1484 | "version": "1.0.0",
1485 | "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz",
1486 | "integrity": "sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==",
1487 | "dependencies": {
1488 | "has": "^1.0.3"
1489 | }
1490 | },
1491 | "node_modules/es-to-primitive": {
1492 | "version": "1.2.1",
1493 | "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz",
1494 | "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==",
1495 | "dependencies": {
1496 | "is-callable": "^1.1.4",
1497 | "is-date-object": "^1.0.1",
1498 | "is-symbol": "^1.0.2"
1499 | },
1500 | "engines": {
1501 | "node": ">= 0.4"
1502 | },
1503 | "funding": {
1504 | "url": "https://github.com/sponsors/ljharb"
1505 | }
1506 | },
1507 | "node_modules/escalade": {
1508 | "version": "3.1.1",
1509 | "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz",
1510 | "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==",
1511 | "engines": {
1512 | "node": ">=6"
1513 | }
1514 | },
1515 | "node_modules/escape-string-regexp": {
1516 | "version": "4.0.0",
1517 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz",
1518 | "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==",
1519 | "engines": {
1520 | "node": ">=10"
1521 | },
1522 | "funding": {
1523 | "url": "https://github.com/sponsors/sindresorhus"
1524 | }
1525 | },
1526 | "node_modules/eslint": {
1527 | "version": "8.35.0",
1528 | "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.35.0.tgz",
1529 | "integrity": "sha512-BxAf1fVL7w+JLRQhWl2pzGeSiGqbWumV4WNvc9Rhp6tiCtm4oHnyPBSEtMGZwrQgudFQ+otqzWoPB7x+hxoWsw==",
1530 | "dependencies": {
1531 | "@eslint/eslintrc": "^2.0.0",
1532 | "@eslint/js": "8.35.0",
1533 | "@humanwhocodes/config-array": "^0.11.8",
1534 | "@humanwhocodes/module-importer": "^1.0.1",
1535 | "@nodelib/fs.walk": "^1.2.8",
1536 | "ajv": "^6.10.0",
1537 | "chalk": "^4.0.0",
1538 | "cross-spawn": "^7.0.2",
1539 | "debug": "^4.3.2",
1540 | "doctrine": "^3.0.0",
1541 | "escape-string-regexp": "^4.0.0",
1542 | "eslint-scope": "^7.1.1",
1543 | "eslint-utils": "^3.0.0",
1544 | "eslint-visitor-keys": "^3.3.0",
1545 | "espree": "^9.4.0",
1546 | "esquery": "^1.4.2",
1547 | "esutils": "^2.0.2",
1548 | "fast-deep-equal": "^3.1.3",
1549 | "file-entry-cache": "^6.0.1",
1550 | "find-up": "^5.0.0",
1551 | "glob-parent": "^6.0.2",
1552 | "globals": "^13.19.0",
1553 | "grapheme-splitter": "^1.0.4",
1554 | "ignore": "^5.2.0",
1555 | "import-fresh": "^3.0.0",
1556 | "imurmurhash": "^0.1.4",
1557 | "is-glob": "^4.0.0",
1558 | "is-path-inside": "^3.0.3",
1559 | "js-sdsl": "^4.1.4",
1560 | "js-yaml": "^4.1.0",
1561 | "json-stable-stringify-without-jsonify": "^1.0.1",
1562 | "levn": "^0.4.1",
1563 | "lodash.merge": "^4.6.2",
1564 | "minimatch": "^3.1.2",
1565 | "natural-compare": "^1.4.0",
1566 | "optionator": "^0.9.1",
1567 | "regexpp": "^3.2.0",
1568 | "strip-ansi": "^6.0.1",
1569 | "strip-json-comments": "^3.1.0",
1570 | "text-table": "^0.2.0"
1571 | },
1572 | "bin": {
1573 | "eslint": "bin/eslint.js"
1574 | },
1575 | "engines": {
1576 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
1577 | },
1578 | "funding": {
1579 | "url": "https://opencollective.com/eslint"
1580 | }
1581 | },
1582 | "node_modules/eslint-config-airbnb-base": {
1583 | "version": "15.0.0",
1584 | "resolved": "https://registry.npmjs.org/eslint-config-airbnb-base/-/eslint-config-airbnb-base-15.0.0.tgz",
1585 | "integrity": "sha512-xaX3z4ZZIcFLvh2oUNvcX5oEofXda7giYmuplVxoOg5A7EXJMrUyqRgR+mhDhPK8LZ4PttFOBvCYDbX3sUoUig==",
1586 | "dev": true,
1587 | "dependencies": {
1588 | "confusing-browser-globals": "^1.0.10",
1589 | "object.assign": "^4.1.2",
1590 | "object.entries": "^1.1.5",
1591 | "semver": "^6.3.0"
1592 | },
1593 | "engines": {
1594 | "node": "^10.12.0 || >=12.0.0"
1595 | },
1596 | "peerDependencies": {
1597 | "eslint": "^7.32.0 || ^8.2.0",
1598 | "eslint-plugin-import": "^2.25.2"
1599 | }
1600 | },
1601 | "node_modules/eslint-config-airbnb-base/node_modules/semver": {
1602 | "version": "6.3.0",
1603 | "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
1604 | "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
1605 | "dev": true,
1606 | "bin": {
1607 | "semver": "bin/semver.js"
1608 | }
1609 | },
1610 | "node_modules/eslint-config-airbnb-typescript": {
1611 | "version": "17.0.0",
1612 | "resolved": "https://registry.npmjs.org/eslint-config-airbnb-typescript/-/eslint-config-airbnb-typescript-17.0.0.tgz",
1613 | "integrity": "sha512-elNiuzD0kPAPTXjFWg+lE24nMdHMtuxgYoD30OyMD6yrW1AhFZPAg27VX7d3tzOErw+dgJTNWfRSDqEcXb4V0g==",
1614 | "dev": true,
1615 | "dependencies": {
1616 | "eslint-config-airbnb-base": "^15.0.0"
1617 | },
1618 | "peerDependencies": {
1619 | "@typescript-eslint/eslint-plugin": "^5.13.0",
1620 | "@typescript-eslint/parser": "^5.0.0",
1621 | "eslint": "^7.32.0 || ^8.2.0",
1622 | "eslint-plugin-import": "^2.25.3"
1623 | }
1624 | },
1625 | "node_modules/eslint-config-next": {
1626 | "version": "13.2.3",
1627 | "resolved": "https://registry.npmjs.org/eslint-config-next/-/eslint-config-next-13.2.3.tgz",
1628 | "integrity": "sha512-kPulHiQEHGei9hIaaNGygHRc0UzlWM+3euOmYbxNkd2Nbhci5rrCDeMBMPSV8xgUssphDGmwDHWbk4VZz3rlZQ==",
1629 | "dependencies": {
1630 | "@next/eslint-plugin-next": "13.2.3",
1631 | "@rushstack/eslint-patch": "^1.1.3",
1632 | "@typescript-eslint/parser": "^5.42.0",
1633 | "eslint-import-resolver-node": "^0.3.6",
1634 | "eslint-import-resolver-typescript": "^3.5.2",
1635 | "eslint-plugin-import": "^2.26.0",
1636 | "eslint-plugin-jsx-a11y": "^6.5.1",
1637 | "eslint-plugin-react": "^7.31.7",
1638 | "eslint-plugin-react-hooks": "^4.5.0"
1639 | },
1640 | "peerDependencies": {
1641 | "eslint": "^7.23.0 || ^8.0.0",
1642 | "typescript": ">=3.3.1"
1643 | },
1644 | "peerDependenciesMeta": {
1645 | "typescript": {
1646 | "optional": true
1647 | }
1648 | }
1649 | },
1650 | "node_modules/eslint-config-prettier": {
1651 | "version": "8.7.0",
1652 | "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-8.7.0.tgz",
1653 | "integrity": "sha512-HHVXLSlVUhMSmyW4ZzEuvjpwqamgmlfkutD53cYXLikh4pt/modINRcCIApJ84czDxM4GZInwUrromsDdTImTA==",
1654 | "dev": true,
1655 | "bin": {
1656 | "eslint-config-prettier": "bin/cli.js"
1657 | },
1658 | "peerDependencies": {
1659 | "eslint": ">=7.0.0"
1660 | }
1661 | },
1662 | "node_modules/eslint-import-resolver-node": {
1663 | "version": "0.3.7",
1664 | "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.7.tgz",
1665 | "integrity": "sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA==",
1666 | "dependencies": {
1667 | "debug": "^3.2.7",
1668 | "is-core-module": "^2.11.0",
1669 | "resolve": "^1.22.1"
1670 | }
1671 | },
1672 | "node_modules/eslint-import-resolver-node/node_modules/debug": {
1673 | "version": "3.2.7",
1674 | "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz",
1675 | "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==",
1676 | "dependencies": {
1677 | "ms": "^2.1.1"
1678 | }
1679 | },
1680 | "node_modules/eslint-import-resolver-typescript": {
1681 | "version": "3.5.3",
1682 | "resolved": "https://registry.npmjs.org/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-3.5.3.tgz",
1683 | "integrity": "sha512-njRcKYBc3isE42LaTcJNVANR3R99H9bAxBDMNDr2W7yq5gYPxbU3MkdhsQukxZ/Xg9C2vcyLlDsbKfRDg0QvCQ==",
1684 | "dependencies": {
1685 | "debug": "^4.3.4",
1686 | "enhanced-resolve": "^5.10.0",
1687 | "get-tsconfig": "^4.2.0",
1688 | "globby": "^13.1.2",
1689 | "is-core-module": "^2.10.0",
1690 | "is-glob": "^4.0.3",
1691 | "synckit": "^0.8.4"
1692 | },
1693 | "engines": {
1694 | "node": "^14.18.0 || >=16.0.0"
1695 | },
1696 | "funding": {
1697 | "url": "https://opencollective.com/unts/projects/eslint-import-resolver-ts"
1698 | },
1699 | "peerDependencies": {
1700 | "eslint": "*",
1701 | "eslint-plugin-import": "*"
1702 | }
1703 | },
1704 | "node_modules/eslint-import-resolver-typescript/node_modules/globby": {
1705 | "version": "13.1.3",
1706 | "resolved": "https://registry.npmjs.org/globby/-/globby-13.1.3.tgz",
1707 | "integrity": "sha512-8krCNHXvlCgHDpegPzleMq07yMYTO2sXKASmZmquEYWEmCx6J5UTRbp5RwMJkTJGtcQ44YpiUYUiN0b9mzy8Bw==",
1708 | "dependencies": {
1709 | "dir-glob": "^3.0.1",
1710 | "fast-glob": "^3.2.11",
1711 | "ignore": "^5.2.0",
1712 | "merge2": "^1.4.1",
1713 | "slash": "^4.0.0"
1714 | },
1715 | "engines": {
1716 | "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
1717 | },
1718 | "funding": {
1719 | "url": "https://github.com/sponsors/sindresorhus"
1720 | }
1721 | },
1722 | "node_modules/eslint-import-resolver-typescript/node_modules/slash": {
1723 | "version": "4.0.0",
1724 | "resolved": "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz",
1725 | "integrity": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==",
1726 | "engines": {
1727 | "node": ">=12"
1728 | },
1729 | "funding": {
1730 | "url": "https://github.com/sponsors/sindresorhus"
1731 | }
1732 | },
1733 | "node_modules/eslint-module-utils": {
1734 | "version": "2.7.4",
1735 | "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.7.4.tgz",
1736 | "integrity": "sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA==",
1737 | "dependencies": {
1738 | "debug": "^3.2.7"
1739 | },
1740 | "engines": {
1741 | "node": ">=4"
1742 | },
1743 | "peerDependenciesMeta": {
1744 | "eslint": {
1745 | "optional": true
1746 | }
1747 | }
1748 | },
1749 | "node_modules/eslint-module-utils/node_modules/debug": {
1750 | "version": "3.2.7",
1751 | "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz",
1752 | "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==",
1753 | "dependencies": {
1754 | "ms": "^2.1.1"
1755 | }
1756 | },
1757 | "node_modules/eslint-plugin-import": {
1758 | "version": "2.27.5",
1759 | "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.27.5.tgz",
1760 | "integrity": "sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow==",
1761 | "dependencies": {
1762 | "array-includes": "^3.1.6",
1763 | "array.prototype.flat": "^1.3.1",
1764 | "array.prototype.flatmap": "^1.3.1",
1765 | "debug": "^3.2.7",
1766 | "doctrine": "^2.1.0",
1767 | "eslint-import-resolver-node": "^0.3.7",
1768 | "eslint-module-utils": "^2.7.4",
1769 | "has": "^1.0.3",
1770 | "is-core-module": "^2.11.0",
1771 | "is-glob": "^4.0.3",
1772 | "minimatch": "^3.1.2",
1773 | "object.values": "^1.1.6",
1774 | "resolve": "^1.22.1",
1775 | "semver": "^6.3.0",
1776 | "tsconfig-paths": "^3.14.1"
1777 | },
1778 | "engines": {
1779 | "node": ">=4"
1780 | },
1781 | "peerDependencies": {
1782 | "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8"
1783 | }
1784 | },
1785 | "node_modules/eslint-plugin-import/node_modules/debug": {
1786 | "version": "3.2.7",
1787 | "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz",
1788 | "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==",
1789 | "dependencies": {
1790 | "ms": "^2.1.1"
1791 | }
1792 | },
1793 | "node_modules/eslint-plugin-import/node_modules/doctrine": {
1794 | "version": "2.1.0",
1795 | "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz",
1796 | "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==",
1797 | "dependencies": {
1798 | "esutils": "^2.0.2"
1799 | },
1800 | "engines": {
1801 | "node": ">=0.10.0"
1802 | }
1803 | },
1804 | "node_modules/eslint-plugin-import/node_modules/semver": {
1805 | "version": "6.3.0",
1806 | "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
1807 | "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
1808 | "bin": {
1809 | "semver": "bin/semver.js"
1810 | }
1811 | },
1812 | "node_modules/eslint-plugin-jsx-a11y": {
1813 | "version": "6.7.1",
1814 | "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.7.1.tgz",
1815 | "integrity": "sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==",
1816 | "dependencies": {
1817 | "@babel/runtime": "^7.20.7",
1818 | "aria-query": "^5.1.3",
1819 | "array-includes": "^3.1.6",
1820 | "array.prototype.flatmap": "^1.3.1",
1821 | "ast-types-flow": "^0.0.7",
1822 | "axe-core": "^4.6.2",
1823 | "axobject-query": "^3.1.1",
1824 | "damerau-levenshtein": "^1.0.8",
1825 | "emoji-regex": "^9.2.2",
1826 | "has": "^1.0.3",
1827 | "jsx-ast-utils": "^3.3.3",
1828 | "language-tags": "=1.0.5",
1829 | "minimatch": "^3.1.2",
1830 | "object.entries": "^1.1.6",
1831 | "object.fromentries": "^2.0.6",
1832 | "semver": "^6.3.0"
1833 | },
1834 | "engines": {
1835 | "node": ">=4.0"
1836 | },
1837 | "peerDependencies": {
1838 | "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8"
1839 | }
1840 | },
1841 | "node_modules/eslint-plugin-jsx-a11y/node_modules/semver": {
1842 | "version": "6.3.0",
1843 | "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
1844 | "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
1845 | "bin": {
1846 | "semver": "bin/semver.js"
1847 | }
1848 | },
1849 | "node_modules/eslint-plugin-prettier": {
1850 | "version": "4.2.1",
1851 | "resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-4.2.1.tgz",
1852 | "integrity": "sha512-f/0rXLXUt0oFYs8ra4w49wYZBG5GKZpAYsJSm6rnYL5uVDjd+zowwMwVZHnAjf4edNrKpCDYfXDgmRE/Ak7QyQ==",
1853 | "dev": true,
1854 | "dependencies": {
1855 | "prettier-linter-helpers": "^1.0.0"
1856 | },
1857 | "engines": {
1858 | "node": ">=12.0.0"
1859 | },
1860 | "peerDependencies": {
1861 | "eslint": ">=7.28.0",
1862 | "prettier": ">=2.0.0"
1863 | },
1864 | "peerDependenciesMeta": {
1865 | "eslint-config-prettier": {
1866 | "optional": true
1867 | }
1868 | }
1869 | },
1870 | "node_modules/eslint-plugin-react": {
1871 | "version": "7.32.2",
1872 | "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.32.2.tgz",
1873 | "integrity": "sha512-t2fBMa+XzonrrNkyVirzKlvn5RXzzPwRHtMvLAtVZrt8oxgnTQaYbU6SXTOO1mwQgp1y5+toMSKInnzGr0Knqg==",
1874 | "dependencies": {
1875 | "array-includes": "^3.1.6",
1876 | "array.prototype.flatmap": "^1.3.1",
1877 | "array.prototype.tosorted": "^1.1.1",
1878 | "doctrine": "^2.1.0",
1879 | "estraverse": "^5.3.0",
1880 | "jsx-ast-utils": "^2.4.1 || ^3.0.0",
1881 | "minimatch": "^3.1.2",
1882 | "object.entries": "^1.1.6",
1883 | "object.fromentries": "^2.0.6",
1884 | "object.hasown": "^1.1.2",
1885 | "object.values": "^1.1.6",
1886 | "prop-types": "^15.8.1",
1887 | "resolve": "^2.0.0-next.4",
1888 | "semver": "^6.3.0",
1889 | "string.prototype.matchall": "^4.0.8"
1890 | },
1891 | "engines": {
1892 | "node": ">=4"
1893 | },
1894 | "peerDependencies": {
1895 | "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8"
1896 | }
1897 | },
1898 | "node_modules/eslint-plugin-react-hooks": {
1899 | "version": "4.6.0",
1900 | "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz",
1901 | "integrity": "sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==",
1902 | "engines": {
1903 | "node": ">=10"
1904 | },
1905 | "peerDependencies": {
1906 | "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0"
1907 | }
1908 | },
1909 | "node_modules/eslint-plugin-react/node_modules/doctrine": {
1910 | "version": "2.1.0",
1911 | "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz",
1912 | "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==",
1913 | "dependencies": {
1914 | "esutils": "^2.0.2"
1915 | },
1916 | "engines": {
1917 | "node": ">=0.10.0"
1918 | }
1919 | },
1920 | "node_modules/eslint-plugin-react/node_modules/resolve": {
1921 | "version": "2.0.0-next.4",
1922 | "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.4.tgz",
1923 | "integrity": "sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==",
1924 | "dependencies": {
1925 | "is-core-module": "^2.9.0",
1926 | "path-parse": "^1.0.7",
1927 | "supports-preserve-symlinks-flag": "^1.0.0"
1928 | },
1929 | "bin": {
1930 | "resolve": "bin/resolve"
1931 | },
1932 | "funding": {
1933 | "url": "https://github.com/sponsors/ljharb"
1934 | }
1935 | },
1936 | "node_modules/eslint-plugin-react/node_modules/semver": {
1937 | "version": "6.3.0",
1938 | "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
1939 | "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
1940 | "bin": {
1941 | "semver": "bin/semver.js"
1942 | }
1943 | },
1944 | "node_modules/eslint-scope": {
1945 | "version": "7.1.1",
1946 | "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.1.1.tgz",
1947 | "integrity": "sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==",
1948 | "dependencies": {
1949 | "esrecurse": "^4.3.0",
1950 | "estraverse": "^5.2.0"
1951 | },
1952 | "engines": {
1953 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
1954 | }
1955 | },
1956 | "node_modules/eslint-utils": {
1957 | "version": "3.0.0",
1958 | "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz",
1959 | "integrity": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==",
1960 | "dependencies": {
1961 | "eslint-visitor-keys": "^2.0.0"
1962 | },
1963 | "engines": {
1964 | "node": "^10.0.0 || ^12.0.0 || >= 14.0.0"
1965 | },
1966 | "funding": {
1967 | "url": "https://github.com/sponsors/mysticatea"
1968 | },
1969 | "peerDependencies": {
1970 | "eslint": ">=5"
1971 | }
1972 | },
1973 | "node_modules/eslint-utils/node_modules/eslint-visitor-keys": {
1974 | "version": "2.1.0",
1975 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz",
1976 | "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==",
1977 | "engines": {
1978 | "node": ">=10"
1979 | }
1980 | },
1981 | "node_modules/eslint-visitor-keys": {
1982 | "version": "3.3.0",
1983 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz",
1984 | "integrity": "sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==",
1985 | "engines": {
1986 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
1987 | }
1988 | },
1989 | "node_modules/espree": {
1990 | "version": "9.4.1",
1991 | "resolved": "https://registry.npmjs.org/espree/-/espree-9.4.1.tgz",
1992 | "integrity": "sha512-XwctdmTO6SIvCzd9810yyNzIrOrqNYV9Koizx4C/mRhf9uq0o4yHoCEU/670pOxOL/MSraektvSAji79kX90Vg==",
1993 | "dependencies": {
1994 | "acorn": "^8.8.0",
1995 | "acorn-jsx": "^5.3.2",
1996 | "eslint-visitor-keys": "^3.3.0"
1997 | },
1998 | "engines": {
1999 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
2000 | },
2001 | "funding": {
2002 | "url": "https://opencollective.com/eslint"
2003 | }
2004 | },
2005 | "node_modules/esquery": {
2006 | "version": "1.4.2",
2007 | "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.4.2.tgz",
2008 | "integrity": "sha512-JVSoLdTlTDkmjFmab7H/9SL9qGSyjElT3myyKp7krqjVFQCDLmj1QFaCLRFBszBKI0XVZaiiXvuPIX3ZwHe1Ng==",
2009 | "dependencies": {
2010 | "estraverse": "^5.1.0"
2011 | },
2012 | "engines": {
2013 | "node": ">=0.10"
2014 | }
2015 | },
2016 | "node_modules/esrecurse": {
2017 | "version": "4.3.0",
2018 | "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz",
2019 | "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==",
2020 | "dependencies": {
2021 | "estraverse": "^5.2.0"
2022 | },
2023 | "engines": {
2024 | "node": ">=4.0"
2025 | }
2026 | },
2027 | "node_modules/estraverse": {
2028 | "version": "5.3.0",
2029 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz",
2030 | "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==",
2031 | "engines": {
2032 | "node": ">=4.0"
2033 | }
2034 | },
2035 | "node_modules/esutils": {
2036 | "version": "2.0.3",
2037 | "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz",
2038 | "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==",
2039 | "engines": {
2040 | "node": ">=0.10.0"
2041 | }
2042 | },
2043 | "node_modules/fast-deep-equal": {
2044 | "version": "3.1.3",
2045 | "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
2046 | "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q=="
2047 | },
2048 | "node_modules/fast-diff": {
2049 | "version": "1.2.0",
2050 | "resolved": "https://registry.npmjs.org/fast-diff/-/fast-diff-1.2.0.tgz",
2051 | "integrity": "sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w==",
2052 | "dev": true
2053 | },
2054 | "node_modules/fast-glob": {
2055 | "version": "3.2.12",
2056 | "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.12.tgz",
2057 | "integrity": "sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==",
2058 | "dependencies": {
2059 | "@nodelib/fs.stat": "^2.0.2",
2060 | "@nodelib/fs.walk": "^1.2.3",
2061 | "glob-parent": "^5.1.2",
2062 | "merge2": "^1.3.0",
2063 | "micromatch": "^4.0.4"
2064 | },
2065 | "engines": {
2066 | "node": ">=8.6.0"
2067 | }
2068 | },
2069 | "node_modules/fast-glob/node_modules/glob-parent": {
2070 | "version": "5.1.2",
2071 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
2072 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
2073 | "dependencies": {
2074 | "is-glob": "^4.0.1"
2075 | },
2076 | "engines": {
2077 | "node": ">= 6"
2078 | }
2079 | },
2080 | "node_modules/fast-json-stable-stringify": {
2081 | "version": "2.1.0",
2082 | "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz",
2083 | "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw=="
2084 | },
2085 | "node_modules/fast-levenshtein": {
2086 | "version": "2.0.6",
2087 | "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz",
2088 | "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw=="
2089 | },
2090 | "node_modules/fastparse": {
2091 | "version": "1.1.2",
2092 | "resolved": "https://registry.npmjs.org/fastparse/-/fastparse-1.1.2.tgz",
2093 | "integrity": "sha512-483XLLxTVIwWK3QTrMGRqUfUpoOs/0hbQrl2oz4J0pAcm3A3bu84wxTFqGqkJzewCLdME38xJLJAxBABfQT8sQ=="
2094 | },
2095 | "node_modules/fastq": {
2096 | "version": "1.15.0",
2097 | "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz",
2098 | "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==",
2099 | "dependencies": {
2100 | "reusify": "^1.0.4"
2101 | }
2102 | },
2103 | "node_modules/file-entry-cache": {
2104 | "version": "6.0.1",
2105 | "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz",
2106 | "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==",
2107 | "dependencies": {
2108 | "flat-cache": "^3.0.4"
2109 | },
2110 | "engines": {
2111 | "node": "^10.12.0 || >=12.0.0"
2112 | }
2113 | },
2114 | "node_modules/fill-range": {
2115 | "version": "7.0.1",
2116 | "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
2117 | "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
2118 | "dependencies": {
2119 | "to-regex-range": "^5.0.1"
2120 | },
2121 | "engines": {
2122 | "node": ">=8"
2123 | }
2124 | },
2125 | "node_modules/find-up": {
2126 | "version": "5.0.0",
2127 | "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz",
2128 | "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==",
2129 | "dependencies": {
2130 | "locate-path": "^6.0.0",
2131 | "path-exists": "^4.0.0"
2132 | },
2133 | "engines": {
2134 | "node": ">=10"
2135 | },
2136 | "funding": {
2137 | "url": "https://github.com/sponsors/sindresorhus"
2138 | }
2139 | },
2140 | "node_modules/flat-cache": {
2141 | "version": "3.0.4",
2142 | "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz",
2143 | "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==",
2144 | "dependencies": {
2145 | "flatted": "^3.1.0",
2146 | "rimraf": "^3.0.2"
2147 | },
2148 | "engines": {
2149 | "node": "^10.12.0 || >=12.0.0"
2150 | }
2151 | },
2152 | "node_modules/flatted": {
2153 | "version": "3.2.7",
2154 | "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz",
2155 | "integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ=="
2156 | },
2157 | "node_modules/for-each": {
2158 | "version": "0.3.3",
2159 | "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz",
2160 | "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==",
2161 | "dependencies": {
2162 | "is-callable": "^1.1.3"
2163 | }
2164 | },
2165 | "node_modules/fraction.js": {
2166 | "version": "4.2.0",
2167 | "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.2.0.tgz",
2168 | "integrity": "sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==",
2169 | "engines": {
2170 | "node": "*"
2171 | },
2172 | "funding": {
2173 | "type": "patreon",
2174 | "url": "https://www.patreon.com/infusion"
2175 | }
2176 | },
2177 | "node_modules/fs.realpath": {
2178 | "version": "1.0.0",
2179 | "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
2180 | "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw=="
2181 | },
2182 | "node_modules/fsevents": {
2183 | "version": "2.3.2",
2184 | "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz",
2185 | "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==",
2186 | "hasInstallScript": true,
2187 | "optional": true,
2188 | "os": [
2189 | "darwin"
2190 | ],
2191 | "engines": {
2192 | "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
2193 | }
2194 | },
2195 | "node_modules/function-bind": {
2196 | "version": "1.1.1",
2197 | "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz",
2198 | "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A=="
2199 | },
2200 | "node_modules/function.prototype.name": {
2201 | "version": "1.1.5",
2202 | "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz",
2203 | "integrity": "sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==",
2204 | "dependencies": {
2205 | "call-bind": "^1.0.2",
2206 | "define-properties": "^1.1.3",
2207 | "es-abstract": "^1.19.0",
2208 | "functions-have-names": "^1.2.2"
2209 | },
2210 | "engines": {
2211 | "node": ">= 0.4"
2212 | },
2213 | "funding": {
2214 | "url": "https://github.com/sponsors/ljharb"
2215 | }
2216 | },
2217 | "node_modules/functions-have-names": {
2218 | "version": "1.2.3",
2219 | "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz",
2220 | "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==",
2221 | "funding": {
2222 | "url": "https://github.com/sponsors/ljharb"
2223 | }
2224 | },
2225 | "node_modules/get-intrinsic": {
2226 | "version": "1.2.0",
2227 | "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.0.tgz",
2228 | "integrity": "sha512-L049y6nFOuom5wGyRc3/gdTLO94dySVKRACj1RmJZBQXlbTMhtNIgkWkUHq+jYmZvKf14EW1EoJnnjbmoHij0Q==",
2229 | "dependencies": {
2230 | "function-bind": "^1.1.1",
2231 | "has": "^1.0.3",
2232 | "has-symbols": "^1.0.3"
2233 | },
2234 | "funding": {
2235 | "url": "https://github.com/sponsors/ljharb"
2236 | }
2237 | },
2238 | "node_modules/get-symbol-description": {
2239 | "version": "1.0.0",
2240 | "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz",
2241 | "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==",
2242 | "dependencies": {
2243 | "call-bind": "^1.0.2",
2244 | "get-intrinsic": "^1.1.1"
2245 | },
2246 | "engines": {
2247 | "node": ">= 0.4"
2248 | },
2249 | "funding": {
2250 | "url": "https://github.com/sponsors/ljharb"
2251 | }
2252 | },
2253 | "node_modules/get-tsconfig": {
2254 | "version": "4.4.0",
2255 | "resolved": "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.4.0.tgz",
2256 | "integrity": "sha512-0Gdjo/9+FzsYhXCEFueo2aY1z1tpXrxWZzP7k8ul9qt1U5o8rYJwTJYmaeHdrVosYIVYkOy2iwCJ9FdpocJhPQ==",
2257 | "funding": {
2258 | "url": "https://github.com/privatenumber/get-tsconfig?sponsor=1"
2259 | }
2260 | },
2261 | "node_modules/glob": {
2262 | "version": "7.1.7",
2263 | "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz",
2264 | "integrity": "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==",
2265 | "dependencies": {
2266 | "fs.realpath": "^1.0.0",
2267 | "inflight": "^1.0.4",
2268 | "inherits": "2",
2269 | "minimatch": "^3.0.4",
2270 | "once": "^1.3.0",
2271 | "path-is-absolute": "^1.0.0"
2272 | },
2273 | "engines": {
2274 | "node": "*"
2275 | },
2276 | "funding": {
2277 | "url": "https://github.com/sponsors/isaacs"
2278 | }
2279 | },
2280 | "node_modules/glob-parent": {
2281 | "version": "6.0.2",
2282 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz",
2283 | "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==",
2284 | "dependencies": {
2285 | "is-glob": "^4.0.3"
2286 | },
2287 | "engines": {
2288 | "node": ">=10.13.0"
2289 | }
2290 | },
2291 | "node_modules/globals": {
2292 | "version": "13.20.0",
2293 | "resolved": "https://registry.npmjs.org/globals/-/globals-13.20.0.tgz",
2294 | "integrity": "sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==",
2295 | "dependencies": {
2296 | "type-fest": "^0.20.2"
2297 | },
2298 | "engines": {
2299 | "node": ">=8"
2300 | },
2301 | "funding": {
2302 | "url": "https://github.com/sponsors/sindresorhus"
2303 | }
2304 | },
2305 | "node_modules/globalthis": {
2306 | "version": "1.0.3",
2307 | "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz",
2308 | "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==",
2309 | "dependencies": {
2310 | "define-properties": "^1.1.3"
2311 | },
2312 | "engines": {
2313 | "node": ">= 0.4"
2314 | },
2315 | "funding": {
2316 | "url": "https://github.com/sponsors/ljharb"
2317 | }
2318 | },
2319 | "node_modules/globalyzer": {
2320 | "version": "0.1.0",
2321 | "resolved": "https://registry.npmjs.org/globalyzer/-/globalyzer-0.1.0.tgz",
2322 | "integrity": "sha512-40oNTM9UfG6aBmuKxk/giHn5nQ8RVz/SS4Ir6zgzOv9/qC3kKZ9v4etGTcJbEl/NyVQH7FGU7d+X1egr57Md2Q=="
2323 | },
2324 | "node_modules/globby": {
2325 | "version": "11.1.0",
2326 | "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz",
2327 | "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==",
2328 | "dependencies": {
2329 | "array-union": "^2.1.0",
2330 | "dir-glob": "^3.0.1",
2331 | "fast-glob": "^3.2.9",
2332 | "ignore": "^5.2.0",
2333 | "merge2": "^1.4.1",
2334 | "slash": "^3.0.0"
2335 | },
2336 | "engines": {
2337 | "node": ">=10"
2338 | },
2339 | "funding": {
2340 | "url": "https://github.com/sponsors/sindresorhus"
2341 | }
2342 | },
2343 | "node_modules/globrex": {
2344 | "version": "0.1.2",
2345 | "resolved": "https://registry.npmjs.org/globrex/-/globrex-0.1.2.tgz",
2346 | "integrity": "sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg=="
2347 | },
2348 | "node_modules/gopd": {
2349 | "version": "1.0.1",
2350 | "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz",
2351 | "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==",
2352 | "dependencies": {
2353 | "get-intrinsic": "^1.1.3"
2354 | },
2355 | "funding": {
2356 | "url": "https://github.com/sponsors/ljharb"
2357 | }
2358 | },
2359 | "node_modules/graceful-fs": {
2360 | "version": "4.2.10",
2361 | "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz",
2362 | "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA=="
2363 | },
2364 | "node_modules/grapheme-splitter": {
2365 | "version": "1.0.4",
2366 | "resolved": "https://registry.npmjs.org/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz",
2367 | "integrity": "sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ=="
2368 | },
2369 | "node_modules/has": {
2370 | "version": "1.0.3",
2371 | "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz",
2372 | "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==",
2373 | "dependencies": {
2374 | "function-bind": "^1.1.1"
2375 | },
2376 | "engines": {
2377 | "node": ">= 0.4.0"
2378 | }
2379 | },
2380 | "node_modules/has-bigints": {
2381 | "version": "1.0.2",
2382 | "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz",
2383 | "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==",
2384 | "funding": {
2385 | "url": "https://github.com/sponsors/ljharb"
2386 | }
2387 | },
2388 | "node_modules/has-flag": {
2389 | "version": "4.0.0",
2390 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
2391 | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
2392 | "engines": {
2393 | "node": ">=8"
2394 | }
2395 | },
2396 | "node_modules/has-property-descriptors": {
2397 | "version": "1.0.0",
2398 | "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz",
2399 | "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==",
2400 | "dependencies": {
2401 | "get-intrinsic": "^1.1.1"
2402 | },
2403 | "funding": {
2404 | "url": "https://github.com/sponsors/ljharb"
2405 | }
2406 | },
2407 | "node_modules/has-proto": {
2408 | "version": "1.0.1",
2409 | "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz",
2410 | "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==",
2411 | "engines": {
2412 | "node": ">= 0.4"
2413 | },
2414 | "funding": {
2415 | "url": "https://github.com/sponsors/ljharb"
2416 | }
2417 | },
2418 | "node_modules/has-symbols": {
2419 | "version": "1.0.3",
2420 | "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz",
2421 | "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==",
2422 | "engines": {
2423 | "node": ">= 0.4"
2424 | },
2425 | "funding": {
2426 | "url": "https://github.com/sponsors/ljharb"
2427 | }
2428 | },
2429 | "node_modules/has-tostringtag": {
2430 | "version": "1.0.0",
2431 | "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz",
2432 | "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==",
2433 | "dependencies": {
2434 | "has-symbols": "^1.0.2"
2435 | },
2436 | "engines": {
2437 | "node": ">= 0.4"
2438 | },
2439 | "funding": {
2440 | "url": "https://github.com/sponsors/ljharb"
2441 | }
2442 | },
2443 | "node_modules/ignore": {
2444 | "version": "5.2.4",
2445 | "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz",
2446 | "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==",
2447 | "engines": {
2448 | "node": ">= 4"
2449 | }
2450 | },
2451 | "node_modules/import-fresh": {
2452 | "version": "3.3.0",
2453 | "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz",
2454 | "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==",
2455 | "dependencies": {
2456 | "parent-module": "^1.0.0",
2457 | "resolve-from": "^4.0.0"
2458 | },
2459 | "engines": {
2460 | "node": ">=6"
2461 | },
2462 | "funding": {
2463 | "url": "https://github.com/sponsors/sindresorhus"
2464 | }
2465 | },
2466 | "node_modules/imurmurhash": {
2467 | "version": "0.1.4",
2468 | "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz",
2469 | "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==",
2470 | "engines": {
2471 | "node": ">=0.8.19"
2472 | }
2473 | },
2474 | "node_modules/inflight": {
2475 | "version": "1.0.6",
2476 | "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz",
2477 | "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==",
2478 | "dependencies": {
2479 | "once": "^1.3.0",
2480 | "wrappy": "1"
2481 | }
2482 | },
2483 | "node_modules/inherits": {
2484 | "version": "2.0.4",
2485 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
2486 | "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="
2487 | },
2488 | "node_modules/internal-slot": {
2489 | "version": "1.0.4",
2490 | "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.4.tgz",
2491 | "integrity": "sha512-tA8URYccNzMo94s5MQZgH8NB/XTa6HsOo0MLfXTKKEnHVVdegzaQoFZ7Jp44bdvLvY2waT5dc+j5ICEswhi7UQ==",
2492 | "dependencies": {
2493 | "get-intrinsic": "^1.1.3",
2494 | "has": "^1.0.3",
2495 | "side-channel": "^1.0.4"
2496 | },
2497 | "engines": {
2498 | "node": ">= 0.4"
2499 | }
2500 | },
2501 | "node_modules/ip": {
2502 | "version": "2.0.0",
2503 | "resolved": "https://registry.npmjs.org/ip/-/ip-2.0.0.tgz",
2504 | "integrity": "sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ=="
2505 | },
2506 | "node_modules/is-arguments": {
2507 | "version": "1.1.1",
2508 | "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz",
2509 | "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==",
2510 | "dependencies": {
2511 | "call-bind": "^1.0.2",
2512 | "has-tostringtag": "^1.0.0"
2513 | },
2514 | "engines": {
2515 | "node": ">= 0.4"
2516 | },
2517 | "funding": {
2518 | "url": "https://github.com/sponsors/ljharb"
2519 | }
2520 | },
2521 | "node_modules/is-array-buffer": {
2522 | "version": "3.0.1",
2523 | "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.1.tgz",
2524 | "integrity": "sha512-ASfLknmY8Xa2XtB4wmbz13Wu202baeA18cJBCeCy0wXUHZF0IPyVEXqKEcd+t2fNSLLL1vC6k7lxZEojNbISXQ==",
2525 | "dependencies": {
2526 | "call-bind": "^1.0.2",
2527 | "get-intrinsic": "^1.1.3",
2528 | "is-typed-array": "^1.1.10"
2529 | },
2530 | "funding": {
2531 | "url": "https://github.com/sponsors/ljharb"
2532 | }
2533 | },
2534 | "node_modules/is-arrayish": {
2535 | "version": "0.3.2",
2536 | "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz",
2537 | "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ=="
2538 | },
2539 | "node_modules/is-bigint": {
2540 | "version": "1.0.4",
2541 | "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz",
2542 | "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==",
2543 | "dependencies": {
2544 | "has-bigints": "^1.0.1"
2545 | },
2546 | "funding": {
2547 | "url": "https://github.com/sponsors/ljharb"
2548 | }
2549 | },
2550 | "node_modules/is-binary-path": {
2551 | "version": "2.1.0",
2552 | "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz",
2553 | "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==",
2554 | "dependencies": {
2555 | "binary-extensions": "^2.0.0"
2556 | },
2557 | "engines": {
2558 | "node": ">=8"
2559 | }
2560 | },
2561 | "node_modules/is-boolean-object": {
2562 | "version": "1.1.2",
2563 | "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz",
2564 | "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==",
2565 | "dependencies": {
2566 | "call-bind": "^1.0.2",
2567 | "has-tostringtag": "^1.0.0"
2568 | },
2569 | "engines": {
2570 | "node": ">= 0.4"
2571 | },
2572 | "funding": {
2573 | "url": "https://github.com/sponsors/ljharb"
2574 | }
2575 | },
2576 | "node_modules/is-callable": {
2577 | "version": "1.2.7",
2578 | "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz",
2579 | "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==",
2580 | "engines": {
2581 | "node": ">= 0.4"
2582 | },
2583 | "funding": {
2584 | "url": "https://github.com/sponsors/ljharb"
2585 | }
2586 | },
2587 | "node_modules/is-core-module": {
2588 | "version": "2.11.0",
2589 | "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.11.0.tgz",
2590 | "integrity": "sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==",
2591 | "dependencies": {
2592 | "has": "^1.0.3"
2593 | },
2594 | "funding": {
2595 | "url": "https://github.com/sponsors/ljharb"
2596 | }
2597 | },
2598 | "node_modules/is-date-object": {
2599 | "version": "1.0.5",
2600 | "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz",
2601 | "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==",
2602 | "dependencies": {
2603 | "has-tostringtag": "^1.0.0"
2604 | },
2605 | "engines": {
2606 | "node": ">= 0.4"
2607 | },
2608 | "funding": {
2609 | "url": "https://github.com/sponsors/ljharb"
2610 | }
2611 | },
2612 | "node_modules/is-docker": {
2613 | "version": "2.2.1",
2614 | "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz",
2615 | "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==",
2616 | "bin": {
2617 | "is-docker": "cli.js"
2618 | },
2619 | "engines": {
2620 | "node": ">=8"
2621 | },
2622 | "funding": {
2623 | "url": "https://github.com/sponsors/sindresorhus"
2624 | }
2625 | },
2626 | "node_modules/is-extglob": {
2627 | "version": "2.1.1",
2628 | "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
2629 | "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
2630 | "engines": {
2631 | "node": ">=0.10.0"
2632 | }
2633 | },
2634 | "node_modules/is-glob": {
2635 | "version": "4.0.3",
2636 | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
2637 | "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
2638 | "dependencies": {
2639 | "is-extglob": "^2.1.1"
2640 | },
2641 | "engines": {
2642 | "node": ">=0.10.0"
2643 | }
2644 | },
2645 | "node_modules/is-map": {
2646 | "version": "2.0.2",
2647 | "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.2.tgz",
2648 | "integrity": "sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==",
2649 | "funding": {
2650 | "url": "https://github.com/sponsors/ljharb"
2651 | }
2652 | },
2653 | "node_modules/is-negative-zero": {
2654 | "version": "2.0.2",
2655 | "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz",
2656 | "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==",
2657 | "engines": {
2658 | "node": ">= 0.4"
2659 | },
2660 | "funding": {
2661 | "url": "https://github.com/sponsors/ljharb"
2662 | }
2663 | },
2664 | "node_modules/is-number": {
2665 | "version": "7.0.0",
2666 | "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
2667 | "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
2668 | "engines": {
2669 | "node": ">=0.12.0"
2670 | }
2671 | },
2672 | "node_modules/is-number-object": {
2673 | "version": "1.0.7",
2674 | "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz",
2675 | "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==",
2676 | "dependencies": {
2677 | "has-tostringtag": "^1.0.0"
2678 | },
2679 | "engines": {
2680 | "node": ">= 0.4"
2681 | },
2682 | "funding": {
2683 | "url": "https://github.com/sponsors/ljharb"
2684 | }
2685 | },
2686 | "node_modules/is-path-inside": {
2687 | "version": "3.0.3",
2688 | "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz",
2689 | "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==",
2690 | "engines": {
2691 | "node": ">=8"
2692 | }
2693 | },
2694 | "node_modules/is-regex": {
2695 | "version": "1.1.4",
2696 | "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz",
2697 | "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==",
2698 | "dependencies": {
2699 | "call-bind": "^1.0.2",
2700 | "has-tostringtag": "^1.0.0"
2701 | },
2702 | "engines": {
2703 | "node": ">= 0.4"
2704 | },
2705 | "funding": {
2706 | "url": "https://github.com/sponsors/ljharb"
2707 | }
2708 | },
2709 | "node_modules/is-set": {
2710 | "version": "2.0.2",
2711 | "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.2.tgz",
2712 | "integrity": "sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==",
2713 | "funding": {
2714 | "url": "https://github.com/sponsors/ljharb"
2715 | }
2716 | },
2717 | "node_modules/is-shared-array-buffer": {
2718 | "version": "1.0.2",
2719 | "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz",
2720 | "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==",
2721 | "dependencies": {
2722 | "call-bind": "^1.0.2"
2723 | },
2724 | "funding": {
2725 | "url": "https://github.com/sponsors/ljharb"
2726 | }
2727 | },
2728 | "node_modules/is-string": {
2729 | "version": "1.0.7",
2730 | "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz",
2731 | "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==",
2732 | "dependencies": {
2733 | "has-tostringtag": "^1.0.0"
2734 | },
2735 | "engines": {
2736 | "node": ">= 0.4"
2737 | },
2738 | "funding": {
2739 | "url": "https://github.com/sponsors/ljharb"
2740 | }
2741 | },
2742 | "node_modules/is-symbol": {
2743 | "version": "1.0.4",
2744 | "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz",
2745 | "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==",
2746 | "dependencies": {
2747 | "has-symbols": "^1.0.2"
2748 | },
2749 | "engines": {
2750 | "node": ">= 0.4"
2751 | },
2752 | "funding": {
2753 | "url": "https://github.com/sponsors/ljharb"
2754 | }
2755 | },
2756 | "node_modules/is-typed-array": {
2757 | "version": "1.1.10",
2758 | "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.10.tgz",
2759 | "integrity": "sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==",
2760 | "dependencies": {
2761 | "available-typed-arrays": "^1.0.5",
2762 | "call-bind": "^1.0.2",
2763 | "for-each": "^0.3.3",
2764 | "gopd": "^1.0.1",
2765 | "has-tostringtag": "^1.0.0"
2766 | },
2767 | "engines": {
2768 | "node": ">= 0.4"
2769 | },
2770 | "funding": {
2771 | "url": "https://github.com/sponsors/ljharb"
2772 | }
2773 | },
2774 | "node_modules/is-weakmap": {
2775 | "version": "2.0.1",
2776 | "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.1.tgz",
2777 | "integrity": "sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==",
2778 | "funding": {
2779 | "url": "https://github.com/sponsors/ljharb"
2780 | }
2781 | },
2782 | "node_modules/is-weakref": {
2783 | "version": "1.0.2",
2784 | "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz",
2785 | "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==",
2786 | "dependencies": {
2787 | "call-bind": "^1.0.2"
2788 | },
2789 | "funding": {
2790 | "url": "https://github.com/sponsors/ljharb"
2791 | }
2792 | },
2793 | "node_modules/is-weakset": {
2794 | "version": "2.0.2",
2795 | "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.2.tgz",
2796 | "integrity": "sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==",
2797 | "dependencies": {
2798 | "call-bind": "^1.0.2",
2799 | "get-intrinsic": "^1.1.1"
2800 | },
2801 | "funding": {
2802 | "url": "https://github.com/sponsors/ljharb"
2803 | }
2804 | },
2805 | "node_modules/is-wsl": {
2806 | "version": "2.2.0",
2807 | "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz",
2808 | "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==",
2809 | "dependencies": {
2810 | "is-docker": "^2.0.0"
2811 | },
2812 | "engines": {
2813 | "node": ">=8"
2814 | }
2815 | },
2816 | "node_modules/isarray": {
2817 | "version": "2.0.5",
2818 | "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz",
2819 | "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw=="
2820 | },
2821 | "node_modules/isexe": {
2822 | "version": "2.0.0",
2823 | "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
2824 | "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw=="
2825 | },
2826 | "node_modules/js-sdsl": {
2827 | "version": "4.3.0",
2828 | "resolved": "https://registry.npmjs.org/js-sdsl/-/js-sdsl-4.3.0.tgz",
2829 | "integrity": "sha512-mifzlm2+5nZ+lEcLJMoBK0/IH/bDg8XnJfd/Wq6IP+xoCjLZsTOnV2QpxlVbX9bMnkl5PdEjNtBJ9Cj1NjifhQ==",
2830 | "funding": {
2831 | "type": "opencollective",
2832 | "url": "https://opencollective.com/js-sdsl"
2833 | }
2834 | },
2835 | "node_modules/js-tokens": {
2836 | "version": "4.0.0",
2837 | "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
2838 | "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ=="
2839 | },
2840 | "node_modules/js-yaml": {
2841 | "version": "4.1.0",
2842 | "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz",
2843 | "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==",
2844 | "dependencies": {
2845 | "argparse": "^2.0.1"
2846 | },
2847 | "bin": {
2848 | "js-yaml": "bin/js-yaml.js"
2849 | }
2850 | },
2851 | "node_modules/json-schema-traverse": {
2852 | "version": "0.4.1",
2853 | "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
2854 | "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg=="
2855 | },
2856 | "node_modules/json-stable-stringify-without-jsonify": {
2857 | "version": "1.0.1",
2858 | "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz",
2859 | "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw=="
2860 | },
2861 | "node_modules/json5": {
2862 | "version": "1.0.2",
2863 | "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz",
2864 | "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==",
2865 | "dependencies": {
2866 | "minimist": "^1.2.0"
2867 | },
2868 | "bin": {
2869 | "json5": "lib/cli.js"
2870 | }
2871 | },
2872 | "node_modules/jsx-ast-utils": {
2873 | "version": "3.3.3",
2874 | "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.3.tgz",
2875 | "integrity": "sha512-fYQHZTZ8jSfmWZ0iyzfwiU4WDX4HpHbMCZ3gPlWYiCl3BoeOTsqKBqnTVfH2rYT7eP5c3sVbeSPHnnJOaTrWiw==",
2876 | "dependencies": {
2877 | "array-includes": "^3.1.5",
2878 | "object.assign": "^4.1.3"
2879 | },
2880 | "engines": {
2881 | "node": ">=4.0"
2882 | }
2883 | },
2884 | "node_modules/lambda-rate-limiter": {
2885 | "version": "3.0.1",
2886 | "resolved": "https://registry.npmjs.org/lambda-rate-limiter/-/lambda-rate-limiter-3.0.1.tgz",
2887 | "integrity": "sha512-1xm5KyqCV3WB1y/iBlvRn3cH53A88D+NP+zvY6HyAWj3W70IaiC+gGFu19TWBV9xjAEaRgWekP/gQP7RGn6LTg==",
2888 | "dependencies": {
2889 | "lru-cache": "6.0.0"
2890 | },
2891 | "engines": {
2892 | "node": ">= 12"
2893 | }
2894 | },
2895 | "node_modules/language-subtag-registry": {
2896 | "version": "0.3.22",
2897 | "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz",
2898 | "integrity": "sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w=="
2899 | },
2900 | "node_modules/language-tags": {
2901 | "version": "1.0.5",
2902 | "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.5.tgz",
2903 | "integrity": "sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==",
2904 | "dependencies": {
2905 | "language-subtag-registry": "~0.3.2"
2906 | }
2907 | },
2908 | "node_modules/leaflet": {
2909 | "version": "1.9.3",
2910 | "resolved": "https://registry.npmjs.org/leaflet/-/leaflet-1.9.3.tgz",
2911 | "integrity": "sha512-iB2cR9vAkDOu5l3HAay2obcUHZ7xwUBBjph8+PGtmW/2lYhbLizWtG7nTeYht36WfOslixQF9D/uSIzhZgGMfQ=="
2912 | },
2913 | "node_modules/levn": {
2914 | "version": "0.4.1",
2915 | "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz",
2916 | "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==",
2917 | "dependencies": {
2918 | "prelude-ls": "^1.2.1",
2919 | "type-check": "~0.4.0"
2920 | },
2921 | "engines": {
2922 | "node": ">= 0.8.0"
2923 | }
2924 | },
2925 | "node_modules/lilconfig": {
2926 | "version": "2.0.6",
2927 | "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.0.6.tgz",
2928 | "integrity": "sha512-9JROoBW7pobfsx+Sq2JsASvCo6Pfo6WWoUW79HuB1BCoBXD4PLWJPqDF6fNj67pqBYTbAHkE57M1kS/+L1neOg==",
2929 | "engines": {
2930 | "node": ">=10"
2931 | }
2932 | },
2933 | "node_modules/locate-path": {
2934 | "version": "6.0.0",
2935 | "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz",
2936 | "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==",
2937 | "dependencies": {
2938 | "p-locate": "^5.0.0"
2939 | },
2940 | "engines": {
2941 | "node": ">=10"
2942 | },
2943 | "funding": {
2944 | "url": "https://github.com/sponsors/sindresorhus"
2945 | }
2946 | },
2947 | "node_modules/lodash.merge": {
2948 | "version": "4.6.2",
2949 | "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz",
2950 | "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ=="
2951 | },
2952 | "node_modules/loose-envify": {
2953 | "version": "1.4.0",
2954 | "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz",
2955 | "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==",
2956 | "dependencies": {
2957 | "js-tokens": "^3.0.0 || ^4.0.0"
2958 | },
2959 | "bin": {
2960 | "loose-envify": "cli.js"
2961 | }
2962 | },
2963 | "node_modules/lru-cache": {
2964 | "version": "6.0.0",
2965 | "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz",
2966 | "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==",
2967 | "dependencies": {
2968 | "yallist": "^4.0.0"
2969 | },
2970 | "engines": {
2971 | "node": ">=10"
2972 | }
2973 | },
2974 | "node_modules/memory-pager": {
2975 | "version": "1.5.0",
2976 | "resolved": "https://registry.npmjs.org/memory-pager/-/memory-pager-1.5.0.tgz",
2977 | "integrity": "sha512-ZS4Bp4r/Zoeq6+NLJpP+0Zzm0pR8whtGPf1XExKLJBAczGMnSi3It14OiNCStjQjM6NU1okjQGSxgEZN8eBYKg==",
2978 | "optional": true
2979 | },
2980 | "node_modules/merge2": {
2981 | "version": "1.4.1",
2982 | "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz",
2983 | "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==",
2984 | "engines": {
2985 | "node": ">= 8"
2986 | }
2987 | },
2988 | "node_modules/micromatch": {
2989 | "version": "4.0.5",
2990 | "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz",
2991 | "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==",
2992 | "dependencies": {
2993 | "braces": "^3.0.2",
2994 | "picomatch": "^2.3.1"
2995 | },
2996 | "engines": {
2997 | "node": ">=8.6"
2998 | }
2999 | },
3000 | "node_modules/mini-svg-data-uri": {
3001 | "version": "1.4.4",
3002 | "resolved": "https://registry.npmjs.org/mini-svg-data-uri/-/mini-svg-data-uri-1.4.4.tgz",
3003 | "integrity": "sha512-r9deDe9p5FJUPZAk3A59wGH7Ii9YrjjWw0jmw/liSbHl2CHiyXj6FcDXDu2K3TjVAXqiJdaw3xxwlZZr9E6nHg==",
3004 | "dev": true,
3005 | "bin": {
3006 | "mini-svg-data-uri": "cli.js"
3007 | }
3008 | },
3009 | "node_modules/minimatch": {
3010 | "version": "3.1.2",
3011 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
3012 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
3013 | "dependencies": {
3014 | "brace-expansion": "^1.1.7"
3015 | },
3016 | "engines": {
3017 | "node": "*"
3018 | }
3019 | },
3020 | "node_modules/minimist": {
3021 | "version": "1.2.7",
3022 | "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.7.tgz",
3023 | "integrity": "sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g==",
3024 | "funding": {
3025 | "url": "https://github.com/sponsors/ljharb"
3026 | }
3027 | },
3028 | "node_modules/mongodb": {
3029 | "version": "5.1.0",
3030 | "resolved": "https://registry.npmjs.org/mongodb/-/mongodb-5.1.0.tgz",
3031 | "integrity": "sha512-qgKb7y+EI90y4weY3z5+lIgm8wmexbonz0GalHkSElQXVKtRuwqXuhXKccyvIjXCJVy9qPV82zsinY0W1FBnJw==",
3032 | "dependencies": {
3033 | "bson": "^5.0.1",
3034 | "mongodb-connection-string-url": "^2.6.0",
3035 | "socks": "^2.7.1"
3036 | },
3037 | "engines": {
3038 | "node": ">=14.20.1"
3039 | },
3040 | "optionalDependencies": {
3041 | "saslprep": "^1.0.3"
3042 | },
3043 | "peerDependencies": {
3044 | "@aws-sdk/credential-providers": "^3.201.0",
3045 | "mongodb-client-encryption": "^2.3.0",
3046 | "snappy": "^7.2.2"
3047 | },
3048 | "peerDependenciesMeta": {
3049 | "@aws-sdk/credential-providers": {
3050 | "optional": true
3051 | },
3052 | "mongodb-client-encryption": {
3053 | "optional": true
3054 | },
3055 | "snappy": {
3056 | "optional": true
3057 | }
3058 | }
3059 | },
3060 | "node_modules/mongodb-connection-string-url": {
3061 | "version": "2.6.0",
3062 | "resolved": "https://registry.npmjs.org/mongodb-connection-string-url/-/mongodb-connection-string-url-2.6.0.tgz",
3063 | "integrity": "sha512-WvTZlI9ab0QYtTYnuMLgobULWhokRjtC7db9LtcVfJ+Hsnyr5eo6ZtNAt3Ly24XZScGMelOcGtm7lSn0332tPQ==",
3064 | "dependencies": {
3065 | "@types/whatwg-url": "^8.2.1",
3066 | "whatwg-url": "^11.0.0"
3067 | }
3068 | },
3069 | "node_modules/ms": {
3070 | "version": "2.1.2",
3071 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
3072 | "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="
3073 | },
3074 | "node_modules/nanoid": {
3075 | "version": "3.3.4",
3076 | "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz",
3077 | "integrity": "sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==",
3078 | "bin": {
3079 | "nanoid": "bin/nanoid.cjs"
3080 | },
3081 | "engines": {
3082 | "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
3083 | }
3084 | },
3085 | "node_modules/natural-compare": {
3086 | "version": "1.4.0",
3087 | "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz",
3088 | "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw=="
3089 | },
3090 | "node_modules/natural-compare-lite": {
3091 | "version": "1.4.0",
3092 | "resolved": "https://registry.npmjs.org/natural-compare-lite/-/natural-compare-lite-1.4.0.tgz",
3093 | "integrity": "sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==",
3094 | "dev": true,
3095 | "peer": true
3096 | },
3097 | "node_modules/next": {
3098 | "version": "13.2.3",
3099 | "resolved": "https://registry.npmjs.org/next/-/next-13.2.3.tgz",
3100 | "integrity": "sha512-nKFJC6upCPN7DWRx4+0S/1PIOT7vNlCT157w9AzbXEgKy6zkiPKEt5YyRUsRZkmpEqBVrGgOqNfwecTociyg+w==",
3101 | "dependencies": {
3102 | "@next/env": "13.2.3",
3103 | "@swc/helpers": "0.4.14",
3104 | "caniuse-lite": "^1.0.30001406",
3105 | "postcss": "8.4.14",
3106 | "styled-jsx": "5.1.1"
3107 | },
3108 | "bin": {
3109 | "next": "dist/bin/next"
3110 | },
3111 | "engines": {
3112 | "node": ">=14.6.0"
3113 | },
3114 | "optionalDependencies": {
3115 | "@next/swc-android-arm-eabi": "13.2.3",
3116 | "@next/swc-android-arm64": "13.2.3",
3117 | "@next/swc-darwin-arm64": "13.2.3",
3118 | "@next/swc-darwin-x64": "13.2.3",
3119 | "@next/swc-freebsd-x64": "13.2.3",
3120 | "@next/swc-linux-arm-gnueabihf": "13.2.3",
3121 | "@next/swc-linux-arm64-gnu": "13.2.3",
3122 | "@next/swc-linux-arm64-musl": "13.2.3",
3123 | "@next/swc-linux-x64-gnu": "13.2.3",
3124 | "@next/swc-linux-x64-musl": "13.2.3",
3125 | "@next/swc-win32-arm64-msvc": "13.2.3",
3126 | "@next/swc-win32-ia32-msvc": "13.2.3",
3127 | "@next/swc-win32-x64-msvc": "13.2.3"
3128 | },
3129 | "peerDependencies": {
3130 | "@opentelemetry/api": "^1.4.0",
3131 | "fibers": ">= 3.1.0",
3132 | "node-sass": "^6.0.0 || ^7.0.0",
3133 | "react": "^18.2.0",
3134 | "react-dom": "^18.2.0",
3135 | "sass": "^1.3.0"
3136 | },
3137 | "peerDependenciesMeta": {
3138 | "@opentelemetry/api": {
3139 | "optional": true
3140 | },
3141 | "fibers": {
3142 | "optional": true
3143 | },
3144 | "node-sass": {
3145 | "optional": true
3146 | },
3147 | "sass": {
3148 | "optional": true
3149 | }
3150 | }
3151 | },
3152 | "node_modules/next/node_modules/postcss": {
3153 | "version": "8.4.14",
3154 | "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.14.tgz",
3155 | "integrity": "sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==",
3156 | "funding": [
3157 | {
3158 | "type": "opencollective",
3159 | "url": "https://opencollective.com/postcss/"
3160 | },
3161 | {
3162 | "type": "tidelift",
3163 | "url": "https://tidelift.com/funding/github/npm/postcss"
3164 | }
3165 | ],
3166 | "dependencies": {
3167 | "nanoid": "^3.3.4",
3168 | "picocolors": "^1.0.0",
3169 | "source-map-js": "^1.0.2"
3170 | },
3171 | "engines": {
3172 | "node": "^10 || ^12 || >=14"
3173 | }
3174 | },
3175 | "node_modules/node-releases": {
3176 | "version": "2.0.10",
3177 | "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.10.tgz",
3178 | "integrity": "sha512-5GFldHPXVG/YZmFzJvKK2zDSzPKhEp0+ZR5SVaoSag9fsL5YgHbUHDfnG5494ISANDcK4KwPXAx2xqVEydmd7w=="
3179 | },
3180 | "node_modules/normalize-path": {
3181 | "version": "3.0.0",
3182 | "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
3183 | "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==",
3184 | "engines": {
3185 | "node": ">=0.10.0"
3186 | }
3187 | },
3188 | "node_modules/normalize-range": {
3189 | "version": "0.1.2",
3190 | "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz",
3191 | "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==",
3192 | "engines": {
3193 | "node": ">=0.10.0"
3194 | }
3195 | },
3196 | "node_modules/object-assign": {
3197 | "version": "4.1.1",
3198 | "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
3199 | "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==",
3200 | "engines": {
3201 | "node": ">=0.10.0"
3202 | }
3203 | },
3204 | "node_modules/object-hash": {
3205 | "version": "3.0.0",
3206 | "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz",
3207 | "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==",
3208 | "engines": {
3209 | "node": ">= 6"
3210 | }
3211 | },
3212 | "node_modules/object-inspect": {
3213 | "version": "1.12.3",
3214 | "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz",
3215 | "integrity": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==",
3216 | "funding": {
3217 | "url": "https://github.com/sponsors/ljharb"
3218 | }
3219 | },
3220 | "node_modules/object-is": {
3221 | "version": "1.1.5",
3222 | "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz",
3223 | "integrity": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==",
3224 | "dependencies": {
3225 | "call-bind": "^1.0.2",
3226 | "define-properties": "^1.1.3"
3227 | },
3228 | "engines": {
3229 | "node": ">= 0.4"
3230 | },
3231 | "funding": {
3232 | "url": "https://github.com/sponsors/ljharb"
3233 | }
3234 | },
3235 | "node_modules/object-keys": {
3236 | "version": "1.1.1",
3237 | "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz",
3238 | "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==",
3239 | "engines": {
3240 | "node": ">= 0.4"
3241 | }
3242 | },
3243 | "node_modules/object.assign": {
3244 | "version": "4.1.4",
3245 | "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz",
3246 | "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==",
3247 | "dependencies": {
3248 | "call-bind": "^1.0.2",
3249 | "define-properties": "^1.1.4",
3250 | "has-symbols": "^1.0.3",
3251 | "object-keys": "^1.1.1"
3252 | },
3253 | "engines": {
3254 | "node": ">= 0.4"
3255 | },
3256 | "funding": {
3257 | "url": "https://github.com/sponsors/ljharb"
3258 | }
3259 | },
3260 | "node_modules/object.entries": {
3261 | "version": "1.1.6",
3262 | "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.6.tgz",
3263 | "integrity": "sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==",
3264 | "dependencies": {
3265 | "call-bind": "^1.0.2",
3266 | "define-properties": "^1.1.4",
3267 | "es-abstract": "^1.20.4"
3268 | },
3269 | "engines": {
3270 | "node": ">= 0.4"
3271 | }
3272 | },
3273 | "node_modules/object.fromentries": {
3274 | "version": "2.0.6",
3275 | "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.6.tgz",
3276 | "integrity": "sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==",
3277 | "dependencies": {
3278 | "call-bind": "^1.0.2",
3279 | "define-properties": "^1.1.4",
3280 | "es-abstract": "^1.20.4"
3281 | },
3282 | "engines": {
3283 | "node": ">= 0.4"
3284 | },
3285 | "funding": {
3286 | "url": "https://github.com/sponsors/ljharb"
3287 | }
3288 | },
3289 | "node_modules/object.hasown": {
3290 | "version": "1.1.2",
3291 | "resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.2.tgz",
3292 | "integrity": "sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==",
3293 | "dependencies": {
3294 | "define-properties": "^1.1.4",
3295 | "es-abstract": "^1.20.4"
3296 | },
3297 | "funding": {
3298 | "url": "https://github.com/sponsors/ljharb"
3299 | }
3300 | },
3301 | "node_modules/object.values": {
3302 | "version": "1.1.6",
3303 | "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.6.tgz",
3304 | "integrity": "sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==",
3305 | "dependencies": {
3306 | "call-bind": "^1.0.2",
3307 | "define-properties": "^1.1.4",
3308 | "es-abstract": "^1.20.4"
3309 | },
3310 | "engines": {
3311 | "node": ">= 0.4"
3312 | },
3313 | "funding": {
3314 | "url": "https://github.com/sponsors/ljharb"
3315 | }
3316 | },
3317 | "node_modules/once": {
3318 | "version": "1.4.0",
3319 | "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
3320 | "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==",
3321 | "dependencies": {
3322 | "wrappy": "1"
3323 | }
3324 | },
3325 | "node_modules/open": {
3326 | "version": "8.4.0",
3327 | "resolved": "https://registry.npmjs.org/open/-/open-8.4.0.tgz",
3328 | "integrity": "sha512-XgFPPM+B28FtCCgSb9I+s9szOC1vZRSwgWsRUA5ylIxRTgKozqjOCrVOqGsYABPYK5qnfqClxZTFBa8PKt2v6Q==",
3329 | "dependencies": {
3330 | "define-lazy-prop": "^2.0.0",
3331 | "is-docker": "^2.1.1",
3332 | "is-wsl": "^2.2.0"
3333 | },
3334 | "engines": {
3335 | "node": ">=12"
3336 | },
3337 | "funding": {
3338 | "url": "https://github.com/sponsors/sindresorhus"
3339 | }
3340 | },
3341 | "node_modules/optionator": {
3342 | "version": "0.9.1",
3343 | "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz",
3344 | "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==",
3345 | "dependencies": {
3346 | "deep-is": "^0.1.3",
3347 | "fast-levenshtein": "^2.0.6",
3348 | "levn": "^0.4.1",
3349 | "prelude-ls": "^1.2.1",
3350 | "type-check": "^0.4.0",
3351 | "word-wrap": "^1.2.3"
3352 | },
3353 | "engines": {
3354 | "node": ">= 0.8.0"
3355 | }
3356 | },
3357 | "node_modules/p-limit": {
3358 | "version": "3.1.0",
3359 | "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz",
3360 | "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==",
3361 | "dependencies": {
3362 | "yocto-queue": "^0.1.0"
3363 | },
3364 | "engines": {
3365 | "node": ">=10"
3366 | },
3367 | "funding": {
3368 | "url": "https://github.com/sponsors/sindresorhus"
3369 | }
3370 | },
3371 | "node_modules/p-locate": {
3372 | "version": "5.0.0",
3373 | "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz",
3374 | "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==",
3375 | "dependencies": {
3376 | "p-limit": "^3.0.2"
3377 | },
3378 | "engines": {
3379 | "node": ">=10"
3380 | },
3381 | "funding": {
3382 | "url": "https://github.com/sponsors/sindresorhus"
3383 | }
3384 | },
3385 | "node_modules/parent-module": {
3386 | "version": "1.0.1",
3387 | "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz",
3388 | "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==",
3389 | "dependencies": {
3390 | "callsites": "^3.0.0"
3391 | },
3392 | "engines": {
3393 | "node": ">=6"
3394 | }
3395 | },
3396 | "node_modules/path-exists": {
3397 | "version": "4.0.0",
3398 | "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
3399 | "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
3400 | "engines": {
3401 | "node": ">=8"
3402 | }
3403 | },
3404 | "node_modules/path-is-absolute": {
3405 | "version": "1.0.1",
3406 | "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
3407 | "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==",
3408 | "engines": {
3409 | "node": ">=0.10.0"
3410 | }
3411 | },
3412 | "node_modules/path-key": {
3413 | "version": "3.1.1",
3414 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
3415 | "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
3416 | "engines": {
3417 | "node": ">=8"
3418 | }
3419 | },
3420 | "node_modules/path-parse": {
3421 | "version": "1.0.7",
3422 | "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz",
3423 | "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw=="
3424 | },
3425 | "node_modules/path-type": {
3426 | "version": "4.0.0",
3427 | "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz",
3428 | "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==",
3429 | "engines": {
3430 | "node": ">=8"
3431 | }
3432 | },
3433 | "node_modules/picocolors": {
3434 | "version": "1.0.0",
3435 | "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz",
3436 | "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ=="
3437 | },
3438 | "node_modules/picomatch": {
3439 | "version": "2.3.1",
3440 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
3441 | "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
3442 | "engines": {
3443 | "node": ">=8.6"
3444 | },
3445 | "funding": {
3446 | "url": "https://github.com/sponsors/jonschlinkert"
3447 | }
3448 | },
3449 | "node_modules/pify": {
3450 | "version": "2.3.0",
3451 | "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz",
3452 | "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==",
3453 | "engines": {
3454 | "node": ">=0.10.0"
3455 | }
3456 | },
3457 | "node_modules/postcss": {
3458 | "version": "8.4.21",
3459 | "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.21.tgz",
3460 | "integrity": "sha512-tP7u/Sn/dVxK2NnruI4H9BG+x+Wxz6oeZ1cJ8P6G/PZY0IKk4k/63TDsQf2kQq3+qoJeLm2kIBUNlZe3zgb4Zg==",
3461 | "funding": [
3462 | {
3463 | "type": "opencollective",
3464 | "url": "https://opencollective.com/postcss/"
3465 | },
3466 | {
3467 | "type": "tidelift",
3468 | "url": "https://tidelift.com/funding/github/npm/postcss"
3469 | }
3470 | ],
3471 | "dependencies": {
3472 | "nanoid": "^3.3.4",
3473 | "picocolors": "^1.0.0",
3474 | "source-map-js": "^1.0.2"
3475 | },
3476 | "engines": {
3477 | "node": "^10 || ^12 || >=14"
3478 | }
3479 | },
3480 | "node_modules/postcss-import": {
3481 | "version": "14.1.0",
3482 | "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-14.1.0.tgz",
3483 | "integrity": "sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==",
3484 | "dependencies": {
3485 | "postcss-value-parser": "^4.0.0",
3486 | "read-cache": "^1.0.0",
3487 | "resolve": "^1.1.7"
3488 | },
3489 | "engines": {
3490 | "node": ">=10.0.0"
3491 | },
3492 | "peerDependencies": {
3493 | "postcss": "^8.0.0"
3494 | }
3495 | },
3496 | "node_modules/postcss-js": {
3497 | "version": "4.0.0",
3498 | "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.0.tgz",
3499 | "integrity": "sha512-77QESFBwgX4irogGVPgQ5s07vLvFqWr228qZY+w6lW599cRlK/HmnlivnnVUxkjHnCu4J16PDMHcH+e+2HbvTQ==",
3500 | "dependencies": {
3501 | "camelcase-css": "^2.0.1"
3502 | },
3503 | "engines": {
3504 | "node": "^12 || ^14 || >= 16"
3505 | },
3506 | "funding": {
3507 | "type": "opencollective",
3508 | "url": "https://opencollective.com/postcss/"
3509 | },
3510 | "peerDependencies": {
3511 | "postcss": "^8.3.3"
3512 | }
3513 | },
3514 | "node_modules/postcss-load-config": {
3515 | "version": "3.1.4",
3516 | "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-3.1.4.tgz",
3517 | "integrity": "sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==",
3518 | "dependencies": {
3519 | "lilconfig": "^2.0.5",
3520 | "yaml": "^1.10.2"
3521 | },
3522 | "engines": {
3523 | "node": ">= 10"
3524 | },
3525 | "funding": {
3526 | "type": "opencollective",
3527 | "url": "https://opencollective.com/postcss/"
3528 | },
3529 | "peerDependencies": {
3530 | "postcss": ">=8.0.9",
3531 | "ts-node": ">=9.0.0"
3532 | },
3533 | "peerDependenciesMeta": {
3534 | "postcss": {
3535 | "optional": true
3536 | },
3537 | "ts-node": {
3538 | "optional": true
3539 | }
3540 | }
3541 | },
3542 | "node_modules/postcss-nested": {
3543 | "version": "6.0.0",
3544 | "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.0.0.tgz",
3545 | "integrity": "sha512-0DkamqrPcmkBDsLn+vQDIrtkSbNkv5AD/M322ySo9kqFkCIYklym2xEmWkwo+Y3/qZo34tzEPNUw4y7yMCdv5w==",
3546 | "dependencies": {
3547 | "postcss-selector-parser": "^6.0.10"
3548 | },
3549 | "engines": {
3550 | "node": ">=12.0"
3551 | },
3552 | "funding": {
3553 | "type": "opencollective",
3554 | "url": "https://opencollective.com/postcss/"
3555 | },
3556 | "peerDependencies": {
3557 | "postcss": "^8.2.14"
3558 | }
3559 | },
3560 | "node_modules/postcss-selector-parser": {
3561 | "version": "6.0.11",
3562 | "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.11.tgz",
3563 | "integrity": "sha512-zbARubNdogI9j7WY4nQJBiNqQf3sLS3wCP4WfOidu+p28LofJqDH1tcXypGrcmMHhDk2t9wGhCsYe/+szLTy1g==",
3564 | "dependencies": {
3565 | "cssesc": "^3.0.0",
3566 | "util-deprecate": "^1.0.2"
3567 | },
3568 | "engines": {
3569 | "node": ">=4"
3570 | }
3571 | },
3572 | "node_modules/postcss-value-parser": {
3573 | "version": "4.2.0",
3574 | "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz",
3575 | "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ=="
3576 | },
3577 | "node_modules/prelude-ls": {
3578 | "version": "1.2.1",
3579 | "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz",
3580 | "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==",
3581 | "engines": {
3582 | "node": ">= 0.8.0"
3583 | }
3584 | },
3585 | "node_modules/prettier": {
3586 | "version": "2.8.3",
3587 | "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.8.3.tgz",
3588 | "integrity": "sha512-tJ/oJ4amDihPoufT5sM0Z1SKEuKay8LfVAMlbbhnnkvt6BUserZylqo2PN+p9KeljLr0OHa2rXHU1T8reeoTrw==",
3589 | "dev": true,
3590 | "peer": true,
3591 | "bin": {
3592 | "prettier": "bin-prettier.js"
3593 | },
3594 | "engines": {
3595 | "node": ">=10.13.0"
3596 | },
3597 | "funding": {
3598 | "url": "https://github.com/prettier/prettier?sponsor=1"
3599 | }
3600 | },
3601 | "node_modules/prettier-linter-helpers": {
3602 | "version": "1.0.0",
3603 | "resolved": "https://registry.npmjs.org/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz",
3604 | "integrity": "sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==",
3605 | "dev": true,
3606 | "dependencies": {
3607 | "fast-diff": "^1.1.2"
3608 | },
3609 | "engines": {
3610 | "node": ">=6.0.0"
3611 | }
3612 | },
3613 | "node_modules/prop-types": {
3614 | "version": "15.8.1",
3615 | "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz",
3616 | "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==",
3617 | "dependencies": {
3618 | "loose-envify": "^1.4.0",
3619 | "object-assign": "^4.1.1",
3620 | "react-is": "^16.13.1"
3621 | }
3622 | },
3623 | "node_modules/punycode": {
3624 | "version": "2.3.0",
3625 | "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz",
3626 | "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==",
3627 | "engines": {
3628 | "node": ">=6"
3629 | }
3630 | },
3631 | "node_modules/queue-microtask": {
3632 | "version": "1.2.3",
3633 | "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz",
3634 | "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==",
3635 | "funding": [
3636 | {
3637 | "type": "github",
3638 | "url": "https://github.com/sponsors/feross"
3639 | },
3640 | {
3641 | "type": "patreon",
3642 | "url": "https://www.patreon.com/feross"
3643 | },
3644 | {
3645 | "type": "consulting",
3646 | "url": "https://feross.org/support"
3647 | }
3648 | ]
3649 | },
3650 | "node_modules/quick-lru": {
3651 | "version": "5.1.1",
3652 | "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz",
3653 | "integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==",
3654 | "engines": {
3655 | "node": ">=10"
3656 | },
3657 | "funding": {
3658 | "url": "https://github.com/sponsors/sindresorhus"
3659 | }
3660 | },
3661 | "node_modules/react": {
3662 | "version": "18.2.0",
3663 | "resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz",
3664 | "integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==",
3665 | "dependencies": {
3666 | "loose-envify": "^1.1.0"
3667 | },
3668 | "engines": {
3669 | "node": ">=0.10.0"
3670 | }
3671 | },
3672 | "node_modules/react-dom": {
3673 | "version": "18.2.0",
3674 | "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz",
3675 | "integrity": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==",
3676 | "dependencies": {
3677 | "loose-envify": "^1.1.0",
3678 | "scheduler": "^0.23.0"
3679 | },
3680 | "peerDependencies": {
3681 | "react": "^18.2.0"
3682 | }
3683 | },
3684 | "node_modules/react-hook-form": {
3685 | "version": "7.43.5",
3686 | "resolved": "https://registry.npmjs.org/react-hook-form/-/react-hook-form-7.43.5.tgz",
3687 | "integrity": "sha512-YcaXhuFHoOPipu5pC7ckxrLrialiOcU91pKu8P+isAcXZyMgByUK9PkI9j5fENO4+6XU5PwWXRGMIFlk9u9UBQ==",
3688 | "engines": {
3689 | "node": ">=12.22.0"
3690 | },
3691 | "funding": {
3692 | "type": "opencollective",
3693 | "url": "https://opencollective.com/react-hook-form"
3694 | },
3695 | "peerDependencies": {
3696 | "react": "^16.8.0 || ^17 || ^18"
3697 | }
3698 | },
3699 | "node_modules/react-is": {
3700 | "version": "16.13.1",
3701 | "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz",
3702 | "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ=="
3703 | },
3704 | "node_modules/react-leaflet": {
3705 | "version": "4.2.1",
3706 | "resolved": "https://registry.npmjs.org/react-leaflet/-/react-leaflet-4.2.1.tgz",
3707 | "integrity": "sha512-p9chkvhcKrWn/H/1FFeVSqLdReGwn2qmiobOQGO3BifX+/vV/39qhY8dGqbdcPh1e6jxh/QHriLXr7a4eLFK4Q==",
3708 | "dependencies": {
3709 | "@react-leaflet/core": "^2.1.0"
3710 | },
3711 | "peerDependencies": {
3712 | "leaflet": "^1.9.0",
3713 | "react": "^18.0.0",
3714 | "react-dom": "^18.0.0"
3715 | }
3716 | },
3717 | "node_modules/read-cache": {
3718 | "version": "1.0.0",
3719 | "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz",
3720 | "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==",
3721 | "dependencies": {
3722 | "pify": "^2.3.0"
3723 | }
3724 | },
3725 | "node_modules/readdirp": {
3726 | "version": "3.6.0",
3727 | "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz",
3728 | "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==",
3729 | "dependencies": {
3730 | "picomatch": "^2.2.1"
3731 | },
3732 | "engines": {
3733 | "node": ">=8.10.0"
3734 | }
3735 | },
3736 | "node_modules/regenerator-runtime": {
3737 | "version": "0.13.11",
3738 | "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz",
3739 | "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg=="
3740 | },
3741 | "node_modules/regexp.prototype.flags": {
3742 | "version": "1.4.3",
3743 | "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz",
3744 | "integrity": "sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==",
3745 | "dependencies": {
3746 | "call-bind": "^1.0.2",
3747 | "define-properties": "^1.1.3",
3748 | "functions-have-names": "^1.2.2"
3749 | },
3750 | "engines": {
3751 | "node": ">= 0.4"
3752 | },
3753 | "funding": {
3754 | "url": "https://github.com/sponsors/ljharb"
3755 | }
3756 | },
3757 | "node_modules/regexpp": {
3758 | "version": "3.2.0",
3759 | "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz",
3760 | "integrity": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==",
3761 | "engines": {
3762 | "node": ">=8"
3763 | },
3764 | "funding": {
3765 | "url": "https://github.com/sponsors/mysticatea"
3766 | }
3767 | },
3768 | "node_modules/resolve": {
3769 | "version": "1.22.1",
3770 | "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz",
3771 | "integrity": "sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==",
3772 | "dependencies": {
3773 | "is-core-module": "^2.9.0",
3774 | "path-parse": "^1.0.7",
3775 | "supports-preserve-symlinks-flag": "^1.0.0"
3776 | },
3777 | "bin": {
3778 | "resolve": "bin/resolve"
3779 | },
3780 | "funding": {
3781 | "url": "https://github.com/sponsors/ljharb"
3782 | }
3783 | },
3784 | "node_modules/resolve-from": {
3785 | "version": "4.0.0",
3786 | "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz",
3787 | "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==",
3788 | "engines": {
3789 | "node": ">=4"
3790 | }
3791 | },
3792 | "node_modules/reusify": {
3793 | "version": "1.0.4",
3794 | "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz",
3795 | "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==",
3796 | "engines": {
3797 | "iojs": ">=1.0.0",
3798 | "node": ">=0.10.0"
3799 | }
3800 | },
3801 | "node_modules/rimraf": {
3802 | "version": "3.0.2",
3803 | "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz",
3804 | "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==",
3805 | "dependencies": {
3806 | "glob": "^7.1.3"
3807 | },
3808 | "bin": {
3809 | "rimraf": "bin.js"
3810 | },
3811 | "funding": {
3812 | "url": "https://github.com/sponsors/isaacs"
3813 | }
3814 | },
3815 | "node_modules/run-parallel": {
3816 | "version": "1.2.0",
3817 | "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz",
3818 | "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==",
3819 | "funding": [
3820 | {
3821 | "type": "github",
3822 | "url": "https://github.com/sponsors/feross"
3823 | },
3824 | {
3825 | "type": "patreon",
3826 | "url": "https://www.patreon.com/feross"
3827 | },
3828 | {
3829 | "type": "consulting",
3830 | "url": "https://feross.org/support"
3831 | }
3832 | ],
3833 | "dependencies": {
3834 | "queue-microtask": "^1.2.2"
3835 | }
3836 | },
3837 | "node_modules/safe-regex-test": {
3838 | "version": "1.0.0",
3839 | "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz",
3840 | "integrity": "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==",
3841 | "dependencies": {
3842 | "call-bind": "^1.0.2",
3843 | "get-intrinsic": "^1.1.3",
3844 | "is-regex": "^1.1.4"
3845 | },
3846 | "funding": {
3847 | "url": "https://github.com/sponsors/ljharb"
3848 | }
3849 | },
3850 | "node_modules/saslprep": {
3851 | "version": "1.0.3",
3852 | "resolved": "https://registry.npmjs.org/saslprep/-/saslprep-1.0.3.tgz",
3853 | "integrity": "sha512-/MY/PEMbk2SuY5sScONwhUDsV2p77Znkb/q3nSVstq/yQzYJOH/Azh29p9oJLsl3LnQwSvZDKagDGBsBwSooag==",
3854 | "optional": true,
3855 | "dependencies": {
3856 | "sparse-bitfield": "^3.0.3"
3857 | },
3858 | "engines": {
3859 | "node": ">=6"
3860 | }
3861 | },
3862 | "node_modules/scheduler": {
3863 | "version": "0.23.0",
3864 | "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.0.tgz",
3865 | "integrity": "sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==",
3866 | "dependencies": {
3867 | "loose-envify": "^1.1.0"
3868 | }
3869 | },
3870 | "node_modules/semver": {
3871 | "version": "7.3.8",
3872 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz",
3873 | "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==",
3874 | "dependencies": {
3875 | "lru-cache": "^6.0.0"
3876 | },
3877 | "bin": {
3878 | "semver": "bin/semver.js"
3879 | },
3880 | "engines": {
3881 | "node": ">=10"
3882 | }
3883 | },
3884 | "node_modules/shebang-command": {
3885 | "version": "2.0.0",
3886 | "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
3887 | "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
3888 | "dependencies": {
3889 | "shebang-regex": "^3.0.0"
3890 | },
3891 | "engines": {
3892 | "node": ">=8"
3893 | }
3894 | },
3895 | "node_modules/shebang-regex": {
3896 | "version": "3.0.0",
3897 | "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
3898 | "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
3899 | "engines": {
3900 | "node": ">=8"
3901 | }
3902 | },
3903 | "node_modules/side-channel": {
3904 | "version": "1.0.4",
3905 | "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz",
3906 | "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==",
3907 | "dependencies": {
3908 | "call-bind": "^1.0.0",
3909 | "get-intrinsic": "^1.0.2",
3910 | "object-inspect": "^1.9.0"
3911 | },
3912 | "funding": {
3913 | "url": "https://github.com/sponsors/ljharb"
3914 | }
3915 | },
3916 | "node_modules/simple-swizzle": {
3917 | "version": "0.2.2",
3918 | "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz",
3919 | "integrity": "sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==",
3920 | "dependencies": {
3921 | "is-arrayish": "^0.3.1"
3922 | }
3923 | },
3924 | "node_modules/slash": {
3925 | "version": "3.0.0",
3926 | "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz",
3927 | "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==",
3928 | "engines": {
3929 | "node": ">=8"
3930 | }
3931 | },
3932 | "node_modules/smart-buffer": {
3933 | "version": "4.2.0",
3934 | "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz",
3935 | "integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==",
3936 | "engines": {
3937 | "node": ">= 6.0.0",
3938 | "npm": ">= 3.0.0"
3939 | }
3940 | },
3941 | "node_modules/socks": {
3942 | "version": "2.7.1",
3943 | "resolved": "https://registry.npmjs.org/socks/-/socks-2.7.1.tgz",
3944 | "integrity": "sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ==",
3945 | "dependencies": {
3946 | "ip": "^2.0.0",
3947 | "smart-buffer": "^4.2.0"
3948 | },
3949 | "engines": {
3950 | "node": ">= 10.13.0",
3951 | "npm": ">= 3.0.0"
3952 | }
3953 | },
3954 | "node_modules/source-map-js": {
3955 | "version": "1.0.2",
3956 | "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz",
3957 | "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==",
3958 | "engines": {
3959 | "node": ">=0.10.0"
3960 | }
3961 | },
3962 | "node_modules/sparse-bitfield": {
3963 | "version": "3.0.3",
3964 | "resolved": "https://registry.npmjs.org/sparse-bitfield/-/sparse-bitfield-3.0.3.tgz",
3965 | "integrity": "sha512-kvzhi7vqKTfkh0PZU+2D2PIllw2ymqJKujUcyPMd9Y75Nv4nPbGJZXNhxsgdQab2BmlDct1YnfQCguEvHr7VsQ==",
3966 | "optional": true,
3967 | "dependencies": {
3968 | "memory-pager": "^1.0.2"
3969 | }
3970 | },
3971 | "node_modules/stop-iteration-iterator": {
3972 | "version": "1.0.0",
3973 | "resolved": "https://registry.npmjs.org/stop-iteration-iterator/-/stop-iteration-iterator-1.0.0.tgz",
3974 | "integrity": "sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==",
3975 | "dependencies": {
3976 | "internal-slot": "^1.0.4"
3977 | },
3978 | "engines": {
3979 | "node": ">= 0.4"
3980 | }
3981 | },
3982 | "node_modules/string.prototype.matchall": {
3983 | "version": "4.0.8",
3984 | "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.8.tgz",
3985 | "integrity": "sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==",
3986 | "dependencies": {
3987 | "call-bind": "^1.0.2",
3988 | "define-properties": "^1.1.4",
3989 | "es-abstract": "^1.20.4",
3990 | "get-intrinsic": "^1.1.3",
3991 | "has-symbols": "^1.0.3",
3992 | "internal-slot": "^1.0.3",
3993 | "regexp.prototype.flags": "^1.4.3",
3994 | "side-channel": "^1.0.4"
3995 | },
3996 | "funding": {
3997 | "url": "https://github.com/sponsors/ljharb"
3998 | }
3999 | },
4000 | "node_modules/string.prototype.trimend": {
4001 | "version": "1.0.6",
4002 | "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz",
4003 | "integrity": "sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==",
4004 | "dependencies": {
4005 | "call-bind": "^1.0.2",
4006 | "define-properties": "^1.1.4",
4007 | "es-abstract": "^1.20.4"
4008 | },
4009 | "funding": {
4010 | "url": "https://github.com/sponsors/ljharb"
4011 | }
4012 | },
4013 | "node_modules/string.prototype.trimstart": {
4014 | "version": "1.0.6",
4015 | "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz",
4016 | "integrity": "sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==",
4017 | "dependencies": {
4018 | "call-bind": "^1.0.2",
4019 | "define-properties": "^1.1.4",
4020 | "es-abstract": "^1.20.4"
4021 | },
4022 | "funding": {
4023 | "url": "https://github.com/sponsors/ljharb"
4024 | }
4025 | },
4026 | "node_modules/strip-ansi": {
4027 | "version": "6.0.1",
4028 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
4029 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
4030 | "dependencies": {
4031 | "ansi-regex": "^5.0.1"
4032 | },
4033 | "engines": {
4034 | "node": ">=8"
4035 | }
4036 | },
4037 | "node_modules/strip-bom": {
4038 | "version": "3.0.0",
4039 | "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz",
4040 | "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==",
4041 | "engines": {
4042 | "node": ">=4"
4043 | }
4044 | },
4045 | "node_modules/strip-json-comments": {
4046 | "version": "3.1.1",
4047 | "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz",
4048 | "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==",
4049 | "engines": {
4050 | "node": ">=8"
4051 | },
4052 | "funding": {
4053 | "url": "https://github.com/sponsors/sindresorhus"
4054 | }
4055 | },
4056 | "node_modules/styled-jsx": {
4057 | "version": "5.1.1",
4058 | "resolved": "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.1.1.tgz",
4059 | "integrity": "sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==",
4060 | "dependencies": {
4061 | "client-only": "0.0.1"
4062 | },
4063 | "engines": {
4064 | "node": ">= 12.0.0"
4065 | },
4066 | "peerDependencies": {
4067 | "react": ">= 16.8.0 || 17.x.x || ^18.0.0-0"
4068 | },
4069 | "peerDependenciesMeta": {
4070 | "@babel/core": {
4071 | "optional": true
4072 | },
4073 | "babel-plugin-macros": {
4074 | "optional": true
4075 | }
4076 | }
4077 | },
4078 | "node_modules/supports-color": {
4079 | "version": "7.2.0",
4080 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
4081 | "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
4082 | "dependencies": {
4083 | "has-flag": "^4.0.0"
4084 | },
4085 | "engines": {
4086 | "node": ">=8"
4087 | }
4088 | },
4089 | "node_modules/supports-preserve-symlinks-flag": {
4090 | "version": "1.0.0",
4091 | "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz",
4092 | "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==",
4093 | "engines": {
4094 | "node": ">= 0.4"
4095 | },
4096 | "funding": {
4097 | "url": "https://github.com/sponsors/ljharb"
4098 | }
4099 | },
4100 | "node_modules/synckit": {
4101 | "version": "0.8.5",
4102 | "resolved": "https://registry.npmjs.org/synckit/-/synckit-0.8.5.tgz",
4103 | "integrity": "sha512-L1dapNV6vu2s/4Sputv8xGsCdAVlb5nRDMFU/E27D44l5U6cw1g0dGd45uLc+OXjNMmF4ntiMdCimzcjFKQI8Q==",
4104 | "dependencies": {
4105 | "@pkgr/utils": "^2.3.1",
4106 | "tslib": "^2.5.0"
4107 | },
4108 | "engines": {
4109 | "node": "^14.18.0 || >=16.0.0"
4110 | },
4111 | "funding": {
4112 | "url": "https://opencollective.com/unts"
4113 | }
4114 | },
4115 | "node_modules/tailwindcss": {
4116 | "version": "3.2.7",
4117 | "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.2.7.tgz",
4118 | "integrity": "sha512-B6DLqJzc21x7wntlH/GsZwEXTBttVSl1FtCzC8WP4oBc/NKef7kaax5jeihkkCEWc831/5NDJ9gRNDK6NEioQQ==",
4119 | "dependencies": {
4120 | "arg": "^5.0.2",
4121 | "chokidar": "^3.5.3",
4122 | "color-name": "^1.1.4",
4123 | "detective": "^5.2.1",
4124 | "didyoumean": "^1.2.2",
4125 | "dlv": "^1.1.3",
4126 | "fast-glob": "^3.2.12",
4127 | "glob-parent": "^6.0.2",
4128 | "is-glob": "^4.0.3",
4129 | "lilconfig": "^2.0.6",
4130 | "micromatch": "^4.0.5",
4131 | "normalize-path": "^3.0.0",
4132 | "object-hash": "^3.0.0",
4133 | "picocolors": "^1.0.0",
4134 | "postcss": "^8.0.9",
4135 | "postcss-import": "^14.1.0",
4136 | "postcss-js": "^4.0.0",
4137 | "postcss-load-config": "^3.1.4",
4138 | "postcss-nested": "6.0.0",
4139 | "postcss-selector-parser": "^6.0.11",
4140 | "postcss-value-parser": "^4.2.0",
4141 | "quick-lru": "^5.1.1",
4142 | "resolve": "^1.22.1"
4143 | },
4144 | "bin": {
4145 | "tailwind": "lib/cli.js",
4146 | "tailwindcss": "lib/cli.js"
4147 | },
4148 | "engines": {
4149 | "node": ">=12.13.0"
4150 | },
4151 | "peerDependencies": {
4152 | "postcss": "^8.0.9"
4153 | }
4154 | },
4155 | "node_modules/tapable": {
4156 | "version": "2.2.1",
4157 | "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz",
4158 | "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==",
4159 | "engines": {
4160 | "node": ">=6"
4161 | }
4162 | },
4163 | "node_modules/text-table": {
4164 | "version": "0.2.0",
4165 | "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz",
4166 | "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw=="
4167 | },
4168 | "node_modules/tiny-glob": {
4169 | "version": "0.2.9",
4170 | "resolved": "https://registry.npmjs.org/tiny-glob/-/tiny-glob-0.2.9.tgz",
4171 | "integrity": "sha512-g/55ssRPUjShh+xkfx9UPDXqhckHEsHr4Vd9zX55oSdGZc/MD0m3sferOkwWtp98bv+kcVfEHtRJgBVJzelrzg==",
4172 | "dependencies": {
4173 | "globalyzer": "0.1.0",
4174 | "globrex": "^0.1.2"
4175 | }
4176 | },
4177 | "node_modules/to-regex-range": {
4178 | "version": "5.0.1",
4179 | "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
4180 | "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
4181 | "dependencies": {
4182 | "is-number": "^7.0.0"
4183 | },
4184 | "engines": {
4185 | "node": ">=8.0"
4186 | }
4187 | },
4188 | "node_modules/tr46": {
4189 | "version": "3.0.0",
4190 | "resolved": "https://registry.npmjs.org/tr46/-/tr46-3.0.0.tgz",
4191 | "integrity": "sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==",
4192 | "dependencies": {
4193 | "punycode": "^2.1.1"
4194 | },
4195 | "engines": {
4196 | "node": ">=12"
4197 | }
4198 | },
4199 | "node_modules/tsconfig-paths": {
4200 | "version": "3.14.1",
4201 | "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.1.tgz",
4202 | "integrity": "sha512-fxDhWnFSLt3VuTwtvJt5fpwxBHg5AdKWMsgcPOOIilyjymcYVZoCQF8fvFRezCNfblEXmi+PcM1eYHeOAgXCOQ==",
4203 | "dependencies": {
4204 | "@types/json5": "^0.0.29",
4205 | "json5": "^1.0.1",
4206 | "minimist": "^1.2.6",
4207 | "strip-bom": "^3.0.0"
4208 | }
4209 | },
4210 | "node_modules/tslib": {
4211 | "version": "2.5.0",
4212 | "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz",
4213 | "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg=="
4214 | },
4215 | "node_modules/tsutils": {
4216 | "version": "3.21.0",
4217 | "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz",
4218 | "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==",
4219 | "dependencies": {
4220 | "tslib": "^1.8.1"
4221 | },
4222 | "engines": {
4223 | "node": ">= 6"
4224 | },
4225 | "peerDependencies": {
4226 | "typescript": ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta"
4227 | }
4228 | },
4229 | "node_modules/tsutils/node_modules/tslib": {
4230 | "version": "1.14.1",
4231 | "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
4232 | "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
4233 | },
4234 | "node_modules/type-check": {
4235 | "version": "0.4.0",
4236 | "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz",
4237 | "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==",
4238 | "dependencies": {
4239 | "prelude-ls": "^1.2.1"
4240 | },
4241 | "engines": {
4242 | "node": ">= 0.8.0"
4243 | }
4244 | },
4245 | "node_modules/type-fest": {
4246 | "version": "0.20.2",
4247 | "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz",
4248 | "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==",
4249 | "engines": {
4250 | "node": ">=10"
4251 | },
4252 | "funding": {
4253 | "url": "https://github.com/sponsors/sindresorhus"
4254 | }
4255 | },
4256 | "node_modules/typed-array-length": {
4257 | "version": "1.0.4",
4258 | "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.4.tgz",
4259 | "integrity": "sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==",
4260 | "dependencies": {
4261 | "call-bind": "^1.0.2",
4262 | "for-each": "^0.3.3",
4263 | "is-typed-array": "^1.1.9"
4264 | },
4265 | "funding": {
4266 | "url": "https://github.com/sponsors/ljharb"
4267 | }
4268 | },
4269 | "node_modules/typescript": {
4270 | "version": "4.9.5",
4271 | "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.9.5.tgz",
4272 | "integrity": "sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==",
4273 | "bin": {
4274 | "tsc": "bin/tsc",
4275 | "tsserver": "bin/tsserver"
4276 | },
4277 | "engines": {
4278 | "node": ">=4.2.0"
4279 | }
4280 | },
4281 | "node_modules/unbox-primitive": {
4282 | "version": "1.0.2",
4283 | "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz",
4284 | "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==",
4285 | "dependencies": {
4286 | "call-bind": "^1.0.2",
4287 | "has-bigints": "^1.0.2",
4288 | "has-symbols": "^1.0.3",
4289 | "which-boxed-primitive": "^1.0.2"
4290 | },
4291 | "funding": {
4292 | "url": "https://github.com/sponsors/ljharb"
4293 | }
4294 | },
4295 | "node_modules/update-browserslist-db": {
4296 | "version": "1.0.10",
4297 | "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.10.tgz",
4298 | "integrity": "sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ==",
4299 | "funding": [
4300 | {
4301 | "type": "opencollective",
4302 | "url": "https://opencollective.com/browserslist"
4303 | },
4304 | {
4305 | "type": "tidelift",
4306 | "url": "https://tidelift.com/funding/github/npm/browserslist"
4307 | }
4308 | ],
4309 | "dependencies": {
4310 | "escalade": "^3.1.1",
4311 | "picocolors": "^1.0.0"
4312 | },
4313 | "bin": {
4314 | "browserslist-lint": "cli.js"
4315 | },
4316 | "peerDependencies": {
4317 | "browserslist": ">= 4.21.0"
4318 | }
4319 | },
4320 | "node_modules/uri-js": {
4321 | "version": "4.4.1",
4322 | "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz",
4323 | "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==",
4324 | "dependencies": {
4325 | "punycode": "^2.1.0"
4326 | }
4327 | },
4328 | "node_modules/util-deprecate": {
4329 | "version": "1.0.2",
4330 | "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
4331 | "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw=="
4332 | },
4333 | "node_modules/webidl-conversions": {
4334 | "version": "7.0.0",
4335 | "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz",
4336 | "integrity": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==",
4337 | "engines": {
4338 | "node": ">=12"
4339 | }
4340 | },
4341 | "node_modules/whatwg-url": {
4342 | "version": "11.0.0",
4343 | "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-11.0.0.tgz",
4344 | "integrity": "sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==",
4345 | "dependencies": {
4346 | "tr46": "^3.0.0",
4347 | "webidl-conversions": "^7.0.0"
4348 | },
4349 | "engines": {
4350 | "node": ">=12"
4351 | }
4352 | },
4353 | "node_modules/which": {
4354 | "version": "2.0.2",
4355 | "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
4356 | "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
4357 | "dependencies": {
4358 | "isexe": "^2.0.0"
4359 | },
4360 | "bin": {
4361 | "node-which": "bin/node-which"
4362 | },
4363 | "engines": {
4364 | "node": ">= 8"
4365 | }
4366 | },
4367 | "node_modules/which-boxed-primitive": {
4368 | "version": "1.0.2",
4369 | "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz",
4370 | "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==",
4371 | "dependencies": {
4372 | "is-bigint": "^1.0.1",
4373 | "is-boolean-object": "^1.1.0",
4374 | "is-number-object": "^1.0.4",
4375 | "is-string": "^1.0.5",
4376 | "is-symbol": "^1.0.3"
4377 | },
4378 | "funding": {
4379 | "url": "https://github.com/sponsors/ljharb"
4380 | }
4381 | },
4382 | "node_modules/which-collection": {
4383 | "version": "1.0.1",
4384 | "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.1.tgz",
4385 | "integrity": "sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==",
4386 | "dependencies": {
4387 | "is-map": "^2.0.1",
4388 | "is-set": "^2.0.1",
4389 | "is-weakmap": "^2.0.1",
4390 | "is-weakset": "^2.0.1"
4391 | },
4392 | "funding": {
4393 | "url": "https://github.com/sponsors/ljharb"
4394 | }
4395 | },
4396 | "node_modules/which-typed-array": {
4397 | "version": "1.1.9",
4398 | "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.9.tgz",
4399 | "integrity": "sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==",
4400 | "dependencies": {
4401 | "available-typed-arrays": "^1.0.5",
4402 | "call-bind": "^1.0.2",
4403 | "for-each": "^0.3.3",
4404 | "gopd": "^1.0.1",
4405 | "has-tostringtag": "^1.0.0",
4406 | "is-typed-array": "^1.1.10"
4407 | },
4408 | "engines": {
4409 | "node": ">= 0.4"
4410 | },
4411 | "funding": {
4412 | "url": "https://github.com/sponsors/ljharb"
4413 | }
4414 | },
4415 | "node_modules/word-wrap": {
4416 | "version": "1.2.3",
4417 | "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz",
4418 | "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==",
4419 | "engines": {
4420 | "node": ">=0.10.0"
4421 | }
4422 | },
4423 | "node_modules/wrappy": {
4424 | "version": "1.0.2",
4425 | "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
4426 | "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ=="
4427 | },
4428 | "node_modules/xtend": {
4429 | "version": "4.0.2",
4430 | "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz",
4431 | "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==",
4432 | "engines": {
4433 | "node": ">=0.4"
4434 | }
4435 | },
4436 | "node_modules/yallist": {
4437 | "version": "4.0.0",
4438 | "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
4439 | "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A=="
4440 | },
4441 | "node_modules/yaml": {
4442 | "version": "1.10.2",
4443 | "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz",
4444 | "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==",
4445 | "engines": {
4446 | "node": ">= 6"
4447 | }
4448 | },
4449 | "node_modules/yocto-queue": {
4450 | "version": "0.1.0",
4451 | "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz",
4452 | "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==",
4453 | "engines": {
4454 | "node": ">=10"
4455 | },
4456 | "funding": {
4457 | "url": "https://github.com/sponsors/sindresorhus"
4458 | }
4459 | },
4460 | "node_modules/zod": {
4461 | "version": "3.21.4",
4462 | "resolved": "https://registry.npmjs.org/zod/-/zod-3.21.4.tgz",
4463 | "integrity": "sha512-m46AKbrzKVzOzs/DZgVnG5H55N1sv1M8qZU3A8RIKbs3mrACDNeIOeilDymVb2HdmP8uwshOCF4uJ8uM9rCqJw==",
4464 | "funding": {
4465 | "url": "https://github.com/sponsors/colinhacks"
4466 | }
4467 | }
4468 | }
4469 | }
4470 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "next-travel-log",
3 | "version": "0.1.0",
4 | "private": true,
5 | "scripts": {
6 | "dev": "next dev",
7 | "build": "next build",
8 | "start": "next start",
9 | "lint": "next lint"
10 | },
11 | "dependencies": {
12 | "@hookform/resolvers": "^2.9.11",
13 | "@types/node": "18.14.6",
14 | "@types/react": "18.0.28",
15 | "@types/react-dom": "18.0.11",
16 | "daisyui": "^2.51.3",
17 | "date-fns": "^2.29.3",
18 | "eslint": "8.35.0",
19 | "eslint-config-next": "13.2.3",
20 | "lambda-rate-limiter": "^3.0.1",
21 | "leaflet": "^1.9.3",
22 | "mongodb": "^5.1.0",
23 | "next": "13.2.3",
24 | "react": "18.2.0",
25 | "react-dom": "18.2.0",
26 | "react-hook-form": "^7.43.5",
27 | "react-leaflet": "^4.2.1",
28 | "typescript": "4.9.5",
29 | "zod": "^3.21.4"
30 | },
31 | "devDependencies": {
32 | "@tailwindcss/forms": "^0.5.3",
33 | "@types/lambda-rate-limiter": "^3.0.0",
34 | "@types/leaflet": "^1.9.1",
35 | "autoprefixer": "^10.4.13",
36 | "eslint-config-airbnb-base": "^15.0.0",
37 | "eslint-config-airbnb-typescript": "^17.0.0",
38 | "eslint-config-prettier": "^8.7.0",
39 | "eslint-plugin-import": "^2.27.5",
40 | "eslint-plugin-prettier": "^4.2.1",
41 | "postcss": "^8.4.21",
42 | "tailwindcss": "^3.2.7"
43 | },
44 | "license": "MIT"
45 | }
46 |
--------------------------------------------------------------------------------
/postcss.config.cjs:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | plugins: {
3 | tailwindcss: {},
4 | autoprefixer: {},
5 | },
6 | };
7 |
--------------------------------------------------------------------------------
/public/android-chrome-192x192.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CodingGarden/next-travel-log/0f4006809694c8706d0d260b0a35f0caa36c0220/public/android-chrome-192x192.png
--------------------------------------------------------------------------------
/public/android-chrome-512x512.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CodingGarden/next-travel-log/0f4006809694c8706d0d260b0a35f0caa36c0220/public/android-chrome-512x512.png
--------------------------------------------------------------------------------
/public/apple-touch-icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CodingGarden/next-travel-log/0f4006809694c8706d0d260b0a35f0caa36c0220/public/apple-touch-icon.png
--------------------------------------------------------------------------------
/public/favicon-16x16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CodingGarden/next-travel-log/0f4006809694c8706d0d260b0a35f0caa36c0220/public/favicon-16x16.png
--------------------------------------------------------------------------------
/public/favicon-32x32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CodingGarden/next-travel-log/0f4006809694c8706d0d260b0a35f0caa36c0220/public/favicon-32x32.png
--------------------------------------------------------------------------------
/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CodingGarden/next-travel-log/0f4006809694c8706d0d260b0a35f0caa36c0220/public/favicon.ico
--------------------------------------------------------------------------------
/public/favicon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/CodingGarden/next-travel-log/0f4006809694c8706d0d260b0a35f0caa36c0220/public/favicon.png
--------------------------------------------------------------------------------
/public/favicon.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/public/site.webmanifest:
--------------------------------------------------------------------------------
1 | {"name":"","short_name":"","icons":[{"src":"/android-chrome-192x192.png","sizes":"192x192","type":"image/png"},{"src":"/android-chrome-512x512.png","sizes":"512x512","type":"image/png"}],"theme_color":"#ffffff","background_color":"#ffffff","display":"standalone"}
--------------------------------------------------------------------------------
/src/TravelLogContext.ts:
--------------------------------------------------------------------------------
1 | 'use client';
2 |
3 | import { createContext } from 'react';
4 | import {
5 | TravelLogState,
6 | TravelLogDispatch,
7 | } from '@/types/TravelLogProviderTypes';
8 | import TravelLogInitialState from '@/TravelLogInitialState';
9 |
10 | interface TravelLogContext {
11 | state: TravelLogState;
12 | dispatch: TravelLogDispatch;
13 | }
14 |
15 | export default createContext
{log.title}
116 |{log.description}
122 |123 | {new Date(log.visitDate).toLocaleDateString(undefined, { 124 | timeZone: 'UTC', 125 | })} 126 |
127 |