├── .babelrc ├── .env.example ├── .gitIgnore ├── README.md ├── client ├── app.jsx ├── components │ ├── ImageInput.jsx │ ├── Output.jsx │ ├── TopNav.jsx │ └── index.js └── helpers.js ├── package-lock.json ├── package.json ├── public └── index.html ├── server ├── cloudinary.js ├── middlewares.js ├── routes.js └── server.js └── webpack.config.js /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [ 3 | "@babel/preset-env" 4 | ] 5 | } 6 | -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- 1 | # To get this app running, create a .env file in the root folder. 2 | # And all these config variables to it replacing the dummy values with an actual values. 3 | 4 | CLOUDINARY_CLOUD_NAME= # replace with the actual cloud name. 5 | 6 | CLOUDINARY_API_KEY= # replace with your actual api-key. 7 | 8 | CLOUDINARY_API_SERCRET= # replace with your actual api-secret. 9 | 10 | CLOUDINARY_CLOUD_FOLDER= (optional) # replace with the actual folder name. 11 | # this is optional, remove it if you are not going to use it. 12 | 13 | 14 | # You can get all these config variables from your cloudinary dashboard https://cloudinary.com/console 15 | -------------------------------------------------------------------------------- /.gitIgnore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | public/bundle.js 3 | .env -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Node-React-Cloudinary 2 | This is a simple web application to explain how to upload images to cloudinary from the server part of an application. This application uses [Node](https://nodejs.org/en/) for the server and [React](https://reactjs.org/) for the client. 3 | 4 | 5 | ## Why uploading images from the server? 6 | You can actually upload an image to cloudinary from the client part of your application, but doing it from the server is better if you consider the following: 7 | 8 | - Server-side validations: Most times, you would want to validate some information before performing an image upload. For example, when a user is creating a profile, you would want to validate the user details from the server(never trust client-side validation!) before uploading the profile image. 9 | - Security: As of when this project is created, uploading images to cloudinary from the client part of an application is less secure. A malicious user can go into your source code, duplicate you upload configuration, use it to upload all sort of stupid and dirty images to your cloud. 10 | More details on client-upload security [here](https://support.cloudinary.com/hc/en-us/articles/208335975-How-safe-secure-is-it-to-use-unsigned-upload-from-web-browsers-or-mobile-clients-). 11 | 12 | 13 | ## Why is it challenging? 14 | Uploading an image to cloudinary from the client side of an application is pretty easy and there is a very good [documentation](https://cloudinary.com/blog/direct_upload_made_easy_from_browser_or_mobile_app_to_the_cloud) on how to do that. However, uploading from the server can be really challenging and that is because you are not just uploading the image alone, you have to think about all of these: 15 | 16 | - How does the image get to the server 17 | - How to handle image(files) in the server 18 | - The actual upload itself 19 | 20 | ## Why study with this repo? 21 | - This application is fully functional, as soon as you clone it and configure the cloudinary SDK, you can start experimenting with it straight away. 22 | - All the logic used in this application is very well explained with inline/block comments. 23 | 24 | 25 | ## Getting Started 26 | These instructions would get you a copy of this project up and running on your local machine. 27 | 28 | #### Prerequisite 29 | - [Git](https://git-scm.com/downloads) 30 | - [Node](https://nodejs.org/en/download/) 31 | - A [Cloudinary](https://cloudinary.com/users/register/free) account 32 | 33 | #### Installation 34 | - Clone this git repository `$ git clone https://github.com/IAMOTZ/node-react-cloudinary.git` 35 | - Change into the directory of the project 36 | - Use `$ npm install` to install all required dependency packages. 37 | - Create a `.env` file in the root folder to provide all the needed environment variables as specified in `.env.example` 38 | - Run `npm start` to start the application 39 | - Run `npm run server:dev` to start the server for development 40 | - Run `npm run client:dev` to start `webpack-dev-server` for client development(make sure to start the server first) 41 | 42 | ## Contributing 43 | The aim of this project is to ensure that uploading images from the server is a breeze. Any form of contribution that aligns with this goal would be highly appreciated. 44 | To contribute to this project: 45 | 46 | - Fork the repository. 47 | - Create a new branch for your contribution 48 | - Commits your changes with detailed commit messages 49 | - Raise a pull request against the master branch 50 | 51 | #### Any other form of contribution is also allowed, as long as it makes this project get better. 52 | 53 | ## Feedback 54 | - Your feedback can make this project a lot better. If you figure out that something is not working correctly, something can be done better, or just anything, make sure to reach out here: ogunniyitunmise@gmail.com 55 | 56 | ## Useful links 57 | - [Cloudinary](https://cloudinary.com/) 58 | - [React Dropzozne](https://github.com/react-dropzone/react-dropzone) 59 | - [Multer](https://github.com/expressjs/multer) 60 | 61 | ## Author 62 | * **Ogunniyi Tunmise** 63 | 64 | 65 | -------------------------------------------------------------------------------- /client/app.jsx: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import ReactDOM from 'react-dom'; 3 | import { sendImageToServer } from './helpers'; 4 | import { TopNav, ImageInput, Output } from './components'; 5 | 6 | class App extends React.Component { 7 | constructor() { 8 | super(); 9 | this.state = { 10 | image: null, 11 | imageUrl: null, 12 | uploading: false, 13 | error: null, 14 | } 15 | } 16 | 17 | /** 18 | * This method is called immediately a user uploads an image. 19 | * Though it is called with an array, the user would be able to upload just one image. 20 | * This is because of the option set in the ImageInput component "multiple={flase}" 21 | * @param {Array} files An array of all the files uploaded 22 | */ 23 | handleFileDrop = (files) => { 24 | this.setState({ 25 | imageUrl: null, 26 | image: files[0], 27 | }); 28 | } 29 | 30 | /** 31 | * This method sends the image to the server. 32 | * If the server upload is sucessful, it update the state accordingly. 33 | * If the server upload failed, it update the state and also log the error to console. 34 | */ 35 | sendImage = () => { 36 | if (this.state.image) { /* If there is an actual image */ 37 | const data = new FormData(); /* Create a form data */ 38 | data.append('image', this.state.image); /* Append the image file as "image" */ 39 | 40 | this.setState({ uploading: true }); /* Change the uploading state to true */ 41 | 42 | sendImageToServer(data) /* Send the image to the server */ 43 | .then((response) => { /* If successful */ 44 | this.setState({ /* Update the state with the link to the image and change uploading state to false */ 45 | uploading: false, 46 | imageUrl: response.data.imageCloudData.url, 47 | }); 48 | }) 49 | .catch((error) => { /* If there was an error */ 50 | this.setState({ /* Update the state with the error message and change uploading state to false */ 51 | uploading: false, 52 | error: error.response.data 53 | }); 54 | console.log(`Error uploading image: ${error.response.data}`); 55 | }); 56 | } else { /* If there is no image */ 57 | /* Don't do anything */ 58 | } 59 | } 60 | 61 | render() { 62 | return ( 63 |
64 | 65 |
66 | 72 | 73 |
74 |
75 | ); 76 | } 77 | } 78 | 79 | const container = document.getElementById('container'); 80 | 81 | ReactDOM.render(, container); 82 | -------------------------------------------------------------------------------- /client/components/ImageInput.jsx: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import PropTypes from 'prop-types'; 3 | import Dropzone from 'react-dropzone'; 4 | 5 | /** 6 | * A react component to accept image input. 7 | * @param {Object} props The props to pass to this component. 8 | * @returns {JSX} The ImageInput markup in JSX. 9 | */ 10 | const ImageInput = (props) => { 11 | if (props.uploading) { /* When the image is uploading, it displays a spinning icon. */ 12 | return ( /* It displays a spinning icon */ 13 |
14 | 15 | 16 |
17 | ); 18 | } else if (props.image) { /* If an image is selected */ 19 | return ( /* It displays a priview of that image */ 20 |
21 | 25 | {props.image.name} 26 | 27 | 30 |
31 | ) 32 | } else { /* If nothing has been done */ 33 | return (/* It tells the user to select an image */ 34 |
35 | 39 |

Drop an image or click to select an image to upload

40 |
41 | 44 |
45 | ); 46 | } 47 | }; 48 | 49 | ImageInput.propTypes = { 50 | image: PropTypes.object, 51 | uploading: PropTypes.bool.isRequired, 52 | onDrop: PropTypes.func.isRequired, 53 | onSend: PropTypes.func.isRequired, 54 | }; 55 | 56 | ImageInput.defaultProps = { 57 | uploading: false, 58 | } 59 | 60 | export default ImageInput; 61 | -------------------------------------------------------------------------------- /client/components/Output.jsx: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import PropTypes from 'prop-types'; 3 | 4 | /** 5 | * Displays the output after uploading an image. 6 | * It simply displays a text and a link to the uploaded image. 7 | * @param {Object} props The props to pass to this component. 8 | * @return {JSX} The Output markup in JSX. 9 | */ 10 | const Output = (props) => { 11 | if (props.imageUrl) { /* If the image URL is passed as props */ 12 | return ( /* It displays the link to that image */ 13 |
14 |

Image uploaded!

15 |
16 | Url:  17 | {props.imageUrl} 18 |
19 |
20 | ); 21 | } else { /* If there is no image URL */ 22 | return null; /* It displays nothing */ 23 | } 24 | } 25 | 26 | Output.propTypes = { imageUrl: PropTypes.string }; 27 | 28 | export default Output; 29 | -------------------------------------------------------------------------------- /client/components/TopNav.jsx: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import PropTypes from 'prop-types'; 3 | 4 | /** 5 | * A simple Top Navigation react component. 6 | * @param {Object} props The props to pass to this component. 7 | * @return {JSX} The Top Navigation markup in JSX 8 | */ 9 | const TopNav = (props) => { 10 | return ( 11 | 16 | ); 17 | } 18 | 19 | TopNav.propTypes = { title: PropTypes.string.isRequired }; 20 | 21 | export default TopNav; 22 | -------------------------------------------------------------------------------- /client/components/index.js: -------------------------------------------------------------------------------- 1 | import TopNav from './TopNav'; 2 | import ImageInput from './ImageInput'; 3 | import Output from './Output'; 4 | 5 | export { TopNav, ImageInput, Output }; 6 | -------------------------------------------------------------------------------- /client/helpers.js: -------------------------------------------------------------------------------- 1 | import axios from 'axios'; 2 | 3 | /** 4 | * Handles the asynchronous action of sending an image to the server. 5 | * @param {File} image The image to send to the server. 6 | * @returns {Promise} A promise that resolves the resposne from the server. 7 | */ 8 | export const sendImageToServer = (image) => { 9 | const config = { 10 | headers: { 11 | 'Content-type': 'multipart/form-data', /* This content-type must be set when sending form-data */ 12 | }, 13 | }; 14 | return axios.post(`http://localhost:3000/image`, image, config); 15 | } 16 | -------------------------------------------------------------------------------- /package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "node-react-cloudinary", 3 | "version": "1.0.0", 4 | "lockfileVersion": 3, 5 | "requires": true, 6 | "packages": { 7 | "": { 8 | "name": "node-react-cloudinary", 9 | "version": "1.0.0", 10 | "license": "ISC", 11 | "dependencies": { 12 | "axios": "^1.7.7", 13 | "cloudinary": "^1.9.1", 14 | "express": "^4.21.0", 15 | "morgan": "^1.9.0", 16 | "multer": "^1.4.5-lts.1", 17 | "prop-types": "^15.6.1", 18 | "react": "^16.1.1", 19 | "react-dom": "^16.1.1", 20 | "react-dropzone": "^4.2.3" 21 | }, 22 | "devDependencies": { 23 | "@babel/cli": "^7.25.7", 24 | "@babel/core": "^7.25.7", 25 | "@babel/node": "^7.25.7", 26 | "@babel/plugin-transform-class-properties": "^7.25.7", 27 | "@babel/preset-env": "^7.25.7", 28 | "@babel/preset-react": "^7.25.7", 29 | "@babel/register": "^7.25.7", 30 | "babel-loader": "^9.2.1", 31 | "dotenv": "^16.4.5", 32 | "nodemon": "^3.1.7", 33 | "webpack": "^5.95.0", 34 | "webpack-cli": "^5.1.4", 35 | "webpack-dev-server": "^5.1.0" 36 | } 37 | }, 38 | "node_modules/@ampproject/remapping": { 39 | "version": "2.3.0", 40 | "dev": true, 41 | "license": "Apache-2.0", 42 | "dependencies": { 43 | "@jridgewell/gen-mapping": "^0.3.5", 44 | "@jridgewell/trace-mapping": "^0.3.24" 45 | }, 46 | "engines": { 47 | "node": ">=6.0.0" 48 | } 49 | }, 50 | "node_modules/@babel/cli": { 51 | "version": "7.25.7", 52 | "dev": true, 53 | "license": "MIT", 54 | "dependencies": { 55 | "@jridgewell/trace-mapping": "^0.3.25", 56 | "commander": "^6.2.0", 57 | "convert-source-map": "^2.0.0", 58 | "fs-readdir-recursive": "^1.1.0", 59 | "glob": "^7.2.0", 60 | "make-dir": "^2.1.0", 61 | "slash": "^2.0.0" 62 | }, 63 | "bin": { 64 | "babel": "bin/babel.js", 65 | "babel-external-helpers": "bin/babel-external-helpers.js" 66 | }, 67 | "engines": { 68 | "node": ">=6.9.0" 69 | }, 70 | "optionalDependencies": { 71 | "@nicolo-ribaudo/chokidar-2": "2.1.8-no-fsevents.3", 72 | "chokidar": "^3.6.0" 73 | }, 74 | "peerDependencies": { 75 | "@babel/core": "^7.0.0-0" 76 | } 77 | }, 78 | "node_modules/@babel/code-frame": { 79 | "version": "7.25.7", 80 | "dev": true, 81 | "license": "MIT", 82 | "dependencies": { 83 | "@babel/highlight": "^7.25.7", 84 | "picocolors": "^1.0.0" 85 | }, 86 | "engines": { 87 | "node": ">=6.9.0" 88 | } 89 | }, 90 | "node_modules/@babel/compat-data": { 91 | "version": "7.25.7", 92 | "dev": true, 93 | "license": "MIT", 94 | "engines": { 95 | "node": ">=6.9.0" 96 | } 97 | }, 98 | "node_modules/@babel/core": { 99 | "version": "7.25.7", 100 | "dev": true, 101 | "license": "MIT", 102 | "dependencies": { 103 | "@ampproject/remapping": "^2.2.0", 104 | "@babel/code-frame": "^7.25.7", 105 | "@babel/generator": "^7.25.7", 106 | "@babel/helper-compilation-targets": "^7.25.7", 107 | "@babel/helper-module-transforms": "^7.25.7", 108 | "@babel/helpers": "^7.25.7", 109 | "@babel/parser": "^7.25.7", 110 | "@babel/template": "^7.25.7", 111 | "@babel/traverse": "^7.25.7", 112 | "@babel/types": "^7.25.7", 113 | "convert-source-map": "^2.0.0", 114 | "debug": "^4.1.0", 115 | "gensync": "^1.0.0-beta.2", 116 | "json5": "^2.2.3", 117 | "semver": "^6.3.1" 118 | }, 119 | "engines": { 120 | "node": ">=6.9.0" 121 | }, 122 | "funding": { 123 | "type": "opencollective", 124 | "url": "https://opencollective.com/babel" 125 | } 126 | }, 127 | "node_modules/@babel/core/node_modules/debug": { 128 | "version": "4.3.7", 129 | "dev": true, 130 | "license": "MIT", 131 | "dependencies": { 132 | "ms": "^2.1.3" 133 | }, 134 | "engines": { 135 | "node": ">=6.0" 136 | }, 137 | "peerDependenciesMeta": { 138 | "supports-color": { 139 | "optional": true 140 | } 141 | } 142 | }, 143 | "node_modules/@babel/generator": { 144 | "version": "7.25.7", 145 | "dev": true, 146 | "license": "MIT", 147 | "dependencies": { 148 | "@babel/types": "^7.25.7", 149 | "@jridgewell/gen-mapping": "^0.3.5", 150 | "@jridgewell/trace-mapping": "^0.3.25", 151 | "jsesc": "^3.0.2" 152 | }, 153 | "engines": { 154 | "node": ">=6.9.0" 155 | } 156 | }, 157 | "node_modules/@babel/helper-annotate-as-pure": { 158 | "version": "7.25.7", 159 | "dev": true, 160 | "license": "MIT", 161 | "dependencies": { 162 | "@babel/types": "^7.25.7" 163 | }, 164 | "engines": { 165 | "node": ">=6.9.0" 166 | } 167 | }, 168 | "node_modules/@babel/helper-builder-binary-assignment-operator-visitor": { 169 | "version": "7.25.7", 170 | "dev": true, 171 | "license": "MIT", 172 | "dependencies": { 173 | "@babel/traverse": "^7.25.7", 174 | "@babel/types": "^7.25.7" 175 | }, 176 | "engines": { 177 | "node": ">=6.9.0" 178 | } 179 | }, 180 | "node_modules/@babel/helper-compilation-targets": { 181 | "version": "7.25.7", 182 | "dev": true, 183 | "license": "MIT", 184 | "dependencies": { 185 | "@babel/compat-data": "^7.25.7", 186 | "@babel/helper-validator-option": "^7.25.7", 187 | "browserslist": "^4.24.0", 188 | "lru-cache": "^5.1.1", 189 | "semver": "^6.3.1" 190 | }, 191 | "engines": { 192 | "node": ">=6.9.0" 193 | } 194 | }, 195 | "node_modules/@babel/helper-create-class-features-plugin": { 196 | "version": "7.25.7", 197 | "dev": true, 198 | "license": "MIT", 199 | "dependencies": { 200 | "@babel/helper-annotate-as-pure": "^7.25.7", 201 | "@babel/helper-member-expression-to-functions": "^7.25.7", 202 | "@babel/helper-optimise-call-expression": "^7.25.7", 203 | "@babel/helper-replace-supers": "^7.25.7", 204 | "@babel/helper-skip-transparent-expression-wrappers": "^7.25.7", 205 | "@babel/traverse": "^7.25.7", 206 | "semver": "^6.3.1" 207 | }, 208 | "engines": { 209 | "node": ">=6.9.0" 210 | }, 211 | "peerDependencies": { 212 | "@babel/core": "^7.0.0" 213 | } 214 | }, 215 | "node_modules/@babel/helper-create-regexp-features-plugin": { 216 | "version": "7.25.7", 217 | "dev": true, 218 | "license": "MIT", 219 | "dependencies": { 220 | "@babel/helper-annotate-as-pure": "^7.25.7", 221 | "regexpu-core": "^6.1.1", 222 | "semver": "^6.3.1" 223 | }, 224 | "engines": { 225 | "node": ">=6.9.0" 226 | }, 227 | "peerDependencies": { 228 | "@babel/core": "^7.0.0" 229 | } 230 | }, 231 | "node_modules/@babel/helper-define-polyfill-provider": { 232 | "version": "0.6.2", 233 | "dev": true, 234 | "license": "MIT", 235 | "dependencies": { 236 | "@babel/helper-compilation-targets": "^7.22.6", 237 | "@babel/helper-plugin-utils": "^7.22.5", 238 | "debug": "^4.1.1", 239 | "lodash.debounce": "^4.0.8", 240 | "resolve": "^1.14.2" 241 | }, 242 | "peerDependencies": { 243 | "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" 244 | } 245 | }, 246 | "node_modules/@babel/helper-define-polyfill-provider/node_modules/debug": { 247 | "version": "4.3.7", 248 | "dev": true, 249 | "license": "MIT", 250 | "dependencies": { 251 | "ms": "^2.1.3" 252 | }, 253 | "engines": { 254 | "node": ">=6.0" 255 | }, 256 | "peerDependenciesMeta": { 257 | "supports-color": { 258 | "optional": true 259 | } 260 | } 261 | }, 262 | "node_modules/@babel/helper-member-expression-to-functions": { 263 | "version": "7.25.7", 264 | "dev": true, 265 | "license": "MIT", 266 | "dependencies": { 267 | "@babel/traverse": "^7.25.7", 268 | "@babel/types": "^7.25.7" 269 | }, 270 | "engines": { 271 | "node": ">=6.9.0" 272 | } 273 | }, 274 | "node_modules/@babel/helper-module-imports": { 275 | "version": "7.25.7", 276 | "dev": true, 277 | "license": "MIT", 278 | "dependencies": { 279 | "@babel/traverse": "^7.25.7", 280 | "@babel/types": "^7.25.7" 281 | }, 282 | "engines": { 283 | "node": ">=6.9.0" 284 | } 285 | }, 286 | "node_modules/@babel/helper-module-transforms": { 287 | "version": "7.25.7", 288 | "dev": true, 289 | "license": "MIT", 290 | "dependencies": { 291 | "@babel/helper-module-imports": "^7.25.7", 292 | "@babel/helper-simple-access": "^7.25.7", 293 | "@babel/helper-validator-identifier": "^7.25.7", 294 | "@babel/traverse": "^7.25.7" 295 | }, 296 | "engines": { 297 | "node": ">=6.9.0" 298 | }, 299 | "peerDependencies": { 300 | "@babel/core": "^7.0.0" 301 | } 302 | }, 303 | "node_modules/@babel/helper-optimise-call-expression": { 304 | "version": "7.25.7", 305 | "dev": true, 306 | "license": "MIT", 307 | "dependencies": { 308 | "@babel/types": "^7.25.7" 309 | }, 310 | "engines": { 311 | "node": ">=6.9.0" 312 | } 313 | }, 314 | "node_modules/@babel/helper-plugin-utils": { 315 | "version": "7.25.7", 316 | "dev": true, 317 | "license": "MIT", 318 | "engines": { 319 | "node": ">=6.9.0" 320 | } 321 | }, 322 | "node_modules/@babel/helper-remap-async-to-generator": { 323 | "version": "7.25.7", 324 | "dev": true, 325 | "license": "MIT", 326 | "dependencies": { 327 | "@babel/helper-annotate-as-pure": "^7.25.7", 328 | "@babel/helper-wrap-function": "^7.25.7", 329 | "@babel/traverse": "^7.25.7" 330 | }, 331 | "engines": { 332 | "node": ">=6.9.0" 333 | }, 334 | "peerDependencies": { 335 | "@babel/core": "^7.0.0" 336 | } 337 | }, 338 | "node_modules/@babel/helper-replace-supers": { 339 | "version": "7.25.7", 340 | "dev": true, 341 | "license": "MIT", 342 | "dependencies": { 343 | "@babel/helper-member-expression-to-functions": "^7.25.7", 344 | "@babel/helper-optimise-call-expression": "^7.25.7", 345 | "@babel/traverse": "^7.25.7" 346 | }, 347 | "engines": { 348 | "node": ">=6.9.0" 349 | }, 350 | "peerDependencies": { 351 | "@babel/core": "^7.0.0" 352 | } 353 | }, 354 | "node_modules/@babel/helper-simple-access": { 355 | "version": "7.25.7", 356 | "dev": true, 357 | "license": "MIT", 358 | "dependencies": { 359 | "@babel/traverse": "^7.25.7", 360 | "@babel/types": "^7.25.7" 361 | }, 362 | "engines": { 363 | "node": ">=6.9.0" 364 | } 365 | }, 366 | "node_modules/@babel/helper-skip-transparent-expression-wrappers": { 367 | "version": "7.25.7", 368 | "dev": true, 369 | "license": "MIT", 370 | "dependencies": { 371 | "@babel/traverse": "^7.25.7", 372 | "@babel/types": "^7.25.7" 373 | }, 374 | "engines": { 375 | "node": ">=6.9.0" 376 | } 377 | }, 378 | "node_modules/@babel/helper-string-parser": { 379 | "version": "7.25.7", 380 | "dev": true, 381 | "license": "MIT", 382 | "engines": { 383 | "node": ">=6.9.0" 384 | } 385 | }, 386 | "node_modules/@babel/helper-validator-identifier": { 387 | "version": "7.25.7", 388 | "dev": true, 389 | "license": "MIT", 390 | "engines": { 391 | "node": ">=6.9.0" 392 | } 393 | }, 394 | "node_modules/@babel/helper-validator-option": { 395 | "version": "7.25.7", 396 | "dev": true, 397 | "license": "MIT", 398 | "engines": { 399 | "node": ">=6.9.0" 400 | } 401 | }, 402 | "node_modules/@babel/helper-wrap-function": { 403 | "version": "7.25.7", 404 | "dev": true, 405 | "license": "MIT", 406 | "dependencies": { 407 | "@babel/template": "^7.25.7", 408 | "@babel/traverse": "^7.25.7", 409 | "@babel/types": "^7.25.7" 410 | }, 411 | "engines": { 412 | "node": ">=6.9.0" 413 | } 414 | }, 415 | "node_modules/@babel/helpers": { 416 | "version": "7.25.7", 417 | "dev": true, 418 | "license": "MIT", 419 | "dependencies": { 420 | "@babel/template": "^7.25.7", 421 | "@babel/types": "^7.25.7" 422 | }, 423 | "engines": { 424 | "node": ">=6.9.0" 425 | } 426 | }, 427 | "node_modules/@babel/highlight": { 428 | "version": "7.25.7", 429 | "dev": true, 430 | "license": "MIT", 431 | "dependencies": { 432 | "@babel/helper-validator-identifier": "^7.25.7", 433 | "chalk": "^2.4.2", 434 | "js-tokens": "^4.0.0", 435 | "picocolors": "^1.0.0" 436 | }, 437 | "engines": { 438 | "node": ">=6.9.0" 439 | } 440 | }, 441 | "node_modules/@babel/node": { 442 | "version": "7.25.7", 443 | "dev": true, 444 | "license": "MIT", 445 | "dependencies": { 446 | "@babel/register": "^7.25.7", 447 | "commander": "^6.2.0", 448 | "core-js": "^3.30.2", 449 | "node-environment-flags": "^1.0.5", 450 | "regenerator-runtime": "^0.14.0", 451 | "v8flags": "^3.1.1" 452 | }, 453 | "bin": { 454 | "babel-node": "bin/babel-node.js" 455 | }, 456 | "engines": { 457 | "node": ">=6.9.0" 458 | }, 459 | "peerDependencies": { 460 | "@babel/core": "^7.0.0-0" 461 | } 462 | }, 463 | "node_modules/@babel/parser": { 464 | "version": "7.25.7", 465 | "dev": true, 466 | "license": "MIT", 467 | "dependencies": { 468 | "@babel/types": "^7.25.7" 469 | }, 470 | "bin": { 471 | "parser": "bin/babel-parser.js" 472 | }, 473 | "engines": { 474 | "node": ">=6.0.0" 475 | } 476 | }, 477 | "node_modules/@babel/plugin-bugfix-firefox-class-in-computed-class-key": { 478 | "version": "7.25.7", 479 | "dev": true, 480 | "license": "MIT", 481 | "dependencies": { 482 | "@babel/helper-plugin-utils": "^7.25.7", 483 | "@babel/traverse": "^7.25.7" 484 | }, 485 | "engines": { 486 | "node": ">=6.9.0" 487 | }, 488 | "peerDependencies": { 489 | "@babel/core": "^7.0.0" 490 | } 491 | }, 492 | "node_modules/@babel/plugin-bugfix-safari-class-field-initializer-scope": { 493 | "version": "7.25.7", 494 | "dev": true, 495 | "license": "MIT", 496 | "dependencies": { 497 | "@babel/helper-plugin-utils": "^7.25.7" 498 | }, 499 | "engines": { 500 | "node": ">=6.9.0" 501 | }, 502 | "peerDependencies": { 503 | "@babel/core": "^7.0.0" 504 | } 505 | }, 506 | "node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { 507 | "version": "7.25.7", 508 | "dev": true, 509 | "license": "MIT", 510 | "dependencies": { 511 | "@babel/helper-plugin-utils": "^7.25.7" 512 | }, 513 | "engines": { 514 | "node": ">=6.9.0" 515 | }, 516 | "peerDependencies": { 517 | "@babel/core": "^7.0.0" 518 | } 519 | }, 520 | "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { 521 | "version": "7.25.7", 522 | "dev": true, 523 | "license": "MIT", 524 | "dependencies": { 525 | "@babel/helper-plugin-utils": "^7.25.7", 526 | "@babel/helper-skip-transparent-expression-wrappers": "^7.25.7", 527 | "@babel/plugin-transform-optional-chaining": "^7.25.7" 528 | }, 529 | "engines": { 530 | "node": ">=6.9.0" 531 | }, 532 | "peerDependencies": { 533 | "@babel/core": "^7.13.0" 534 | } 535 | }, 536 | "node_modules/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": { 537 | "version": "7.25.7", 538 | "dev": true, 539 | "license": "MIT", 540 | "dependencies": { 541 | "@babel/helper-plugin-utils": "^7.25.7", 542 | "@babel/traverse": "^7.25.7" 543 | }, 544 | "engines": { 545 | "node": ">=6.9.0" 546 | }, 547 | "peerDependencies": { 548 | "@babel/core": "^7.0.0" 549 | } 550 | }, 551 | "node_modules/@babel/plugin-proposal-private-property-in-object": { 552 | "version": "7.21.0-placeholder-for-preset-env.2", 553 | "dev": true, 554 | "license": "MIT", 555 | "engines": { 556 | "node": ">=6.9.0" 557 | }, 558 | "peerDependencies": { 559 | "@babel/core": "^7.0.0-0" 560 | } 561 | }, 562 | "node_modules/@babel/plugin-syntax-async-generators": { 563 | "version": "7.8.4", 564 | "dev": true, 565 | "license": "MIT", 566 | "dependencies": { 567 | "@babel/helper-plugin-utils": "^7.8.0" 568 | }, 569 | "peerDependencies": { 570 | "@babel/core": "^7.0.0-0" 571 | } 572 | }, 573 | "node_modules/@babel/plugin-syntax-class-properties": { 574 | "version": "7.12.13", 575 | "dev": true, 576 | "license": "MIT", 577 | "dependencies": { 578 | "@babel/helper-plugin-utils": "^7.12.13" 579 | }, 580 | "peerDependencies": { 581 | "@babel/core": "^7.0.0-0" 582 | } 583 | }, 584 | "node_modules/@babel/plugin-syntax-class-static-block": { 585 | "version": "7.14.5", 586 | "dev": true, 587 | "license": "MIT", 588 | "dependencies": { 589 | "@babel/helper-plugin-utils": "^7.14.5" 590 | }, 591 | "engines": { 592 | "node": ">=6.9.0" 593 | }, 594 | "peerDependencies": { 595 | "@babel/core": "^7.0.0-0" 596 | } 597 | }, 598 | "node_modules/@babel/plugin-syntax-dynamic-import": { 599 | "version": "7.8.3", 600 | "dev": true, 601 | "license": "MIT", 602 | "dependencies": { 603 | "@babel/helper-plugin-utils": "^7.8.0" 604 | }, 605 | "peerDependencies": { 606 | "@babel/core": "^7.0.0-0" 607 | } 608 | }, 609 | "node_modules/@babel/plugin-syntax-export-namespace-from": { 610 | "version": "7.8.3", 611 | "dev": true, 612 | "license": "MIT", 613 | "dependencies": { 614 | "@babel/helper-plugin-utils": "^7.8.3" 615 | }, 616 | "peerDependencies": { 617 | "@babel/core": "^7.0.0-0" 618 | } 619 | }, 620 | "node_modules/@babel/plugin-syntax-import-assertions": { 621 | "version": "7.25.7", 622 | "dev": true, 623 | "license": "MIT", 624 | "dependencies": { 625 | "@babel/helper-plugin-utils": "^7.25.7" 626 | }, 627 | "engines": { 628 | "node": ">=6.9.0" 629 | }, 630 | "peerDependencies": { 631 | "@babel/core": "^7.0.0-0" 632 | } 633 | }, 634 | "node_modules/@babel/plugin-syntax-import-attributes": { 635 | "version": "7.25.7", 636 | "dev": true, 637 | "license": "MIT", 638 | "dependencies": { 639 | "@babel/helper-plugin-utils": "^7.25.7" 640 | }, 641 | "engines": { 642 | "node": ">=6.9.0" 643 | }, 644 | "peerDependencies": { 645 | "@babel/core": "^7.0.0-0" 646 | } 647 | }, 648 | "node_modules/@babel/plugin-syntax-import-meta": { 649 | "version": "7.10.4", 650 | "dev": true, 651 | "license": "MIT", 652 | "dependencies": { 653 | "@babel/helper-plugin-utils": "^7.10.4" 654 | }, 655 | "peerDependencies": { 656 | "@babel/core": "^7.0.0-0" 657 | } 658 | }, 659 | "node_modules/@babel/plugin-syntax-json-strings": { 660 | "version": "7.8.3", 661 | "dev": true, 662 | "license": "MIT", 663 | "dependencies": { 664 | "@babel/helper-plugin-utils": "^7.8.0" 665 | }, 666 | "peerDependencies": { 667 | "@babel/core": "^7.0.0-0" 668 | } 669 | }, 670 | "node_modules/@babel/plugin-syntax-jsx": { 671 | "version": "7.25.7", 672 | "dev": true, 673 | "license": "MIT", 674 | "dependencies": { 675 | "@babel/helper-plugin-utils": "^7.25.7" 676 | }, 677 | "engines": { 678 | "node": ">=6.9.0" 679 | }, 680 | "peerDependencies": { 681 | "@babel/core": "^7.0.0-0" 682 | } 683 | }, 684 | "node_modules/@babel/plugin-syntax-logical-assignment-operators": { 685 | "version": "7.10.4", 686 | "dev": true, 687 | "license": "MIT", 688 | "dependencies": { 689 | "@babel/helper-plugin-utils": "^7.10.4" 690 | }, 691 | "peerDependencies": { 692 | "@babel/core": "^7.0.0-0" 693 | } 694 | }, 695 | "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": { 696 | "version": "7.8.3", 697 | "dev": true, 698 | "license": "MIT", 699 | "dependencies": { 700 | "@babel/helper-plugin-utils": "^7.8.0" 701 | }, 702 | "peerDependencies": { 703 | "@babel/core": "^7.0.0-0" 704 | } 705 | }, 706 | "node_modules/@babel/plugin-syntax-numeric-separator": { 707 | "version": "7.10.4", 708 | "dev": true, 709 | "license": "MIT", 710 | "dependencies": { 711 | "@babel/helper-plugin-utils": "^7.10.4" 712 | }, 713 | "peerDependencies": { 714 | "@babel/core": "^7.0.0-0" 715 | } 716 | }, 717 | "node_modules/@babel/plugin-syntax-object-rest-spread": { 718 | "version": "7.8.3", 719 | "dev": true, 720 | "license": "MIT", 721 | "dependencies": { 722 | "@babel/helper-plugin-utils": "^7.8.0" 723 | }, 724 | "peerDependencies": { 725 | "@babel/core": "^7.0.0-0" 726 | } 727 | }, 728 | "node_modules/@babel/plugin-syntax-optional-catch-binding": { 729 | "version": "7.8.3", 730 | "dev": true, 731 | "license": "MIT", 732 | "dependencies": { 733 | "@babel/helper-plugin-utils": "^7.8.0" 734 | }, 735 | "peerDependencies": { 736 | "@babel/core": "^7.0.0-0" 737 | } 738 | }, 739 | "node_modules/@babel/plugin-syntax-optional-chaining": { 740 | "version": "7.8.3", 741 | "dev": true, 742 | "license": "MIT", 743 | "dependencies": { 744 | "@babel/helper-plugin-utils": "^7.8.0" 745 | }, 746 | "peerDependencies": { 747 | "@babel/core": "^7.0.0-0" 748 | } 749 | }, 750 | "node_modules/@babel/plugin-syntax-private-property-in-object": { 751 | "version": "7.14.5", 752 | "dev": true, 753 | "license": "MIT", 754 | "dependencies": { 755 | "@babel/helper-plugin-utils": "^7.14.5" 756 | }, 757 | "engines": { 758 | "node": ">=6.9.0" 759 | }, 760 | "peerDependencies": { 761 | "@babel/core": "^7.0.0-0" 762 | } 763 | }, 764 | "node_modules/@babel/plugin-syntax-top-level-await": { 765 | "version": "7.14.5", 766 | "dev": true, 767 | "license": "MIT", 768 | "dependencies": { 769 | "@babel/helper-plugin-utils": "^7.14.5" 770 | }, 771 | "engines": { 772 | "node": ">=6.9.0" 773 | }, 774 | "peerDependencies": { 775 | "@babel/core": "^7.0.0-0" 776 | } 777 | }, 778 | "node_modules/@babel/plugin-syntax-unicode-sets-regex": { 779 | "version": "7.18.6", 780 | "dev": true, 781 | "license": "MIT", 782 | "dependencies": { 783 | "@babel/helper-create-regexp-features-plugin": "^7.18.6", 784 | "@babel/helper-plugin-utils": "^7.18.6" 785 | }, 786 | "engines": { 787 | "node": ">=6.9.0" 788 | }, 789 | "peerDependencies": { 790 | "@babel/core": "^7.0.0" 791 | } 792 | }, 793 | "node_modules/@babel/plugin-transform-arrow-functions": { 794 | "version": "7.25.7", 795 | "dev": true, 796 | "license": "MIT", 797 | "dependencies": { 798 | "@babel/helper-plugin-utils": "^7.25.7" 799 | }, 800 | "engines": { 801 | "node": ">=6.9.0" 802 | }, 803 | "peerDependencies": { 804 | "@babel/core": "^7.0.0-0" 805 | } 806 | }, 807 | "node_modules/@babel/plugin-transform-async-generator-functions": { 808 | "version": "7.25.7", 809 | "dev": true, 810 | "license": "MIT", 811 | "dependencies": { 812 | "@babel/helper-plugin-utils": "^7.25.7", 813 | "@babel/helper-remap-async-to-generator": "^7.25.7", 814 | "@babel/plugin-syntax-async-generators": "^7.8.4", 815 | "@babel/traverse": "^7.25.7" 816 | }, 817 | "engines": { 818 | "node": ">=6.9.0" 819 | }, 820 | "peerDependencies": { 821 | "@babel/core": "^7.0.0-0" 822 | } 823 | }, 824 | "node_modules/@babel/plugin-transform-async-to-generator": { 825 | "version": "7.25.7", 826 | "dev": true, 827 | "license": "MIT", 828 | "dependencies": { 829 | "@babel/helper-module-imports": "^7.25.7", 830 | "@babel/helper-plugin-utils": "^7.25.7", 831 | "@babel/helper-remap-async-to-generator": "^7.25.7" 832 | }, 833 | "engines": { 834 | "node": ">=6.9.0" 835 | }, 836 | "peerDependencies": { 837 | "@babel/core": "^7.0.0-0" 838 | } 839 | }, 840 | "node_modules/@babel/plugin-transform-block-scoped-functions": { 841 | "version": "7.25.7", 842 | "dev": true, 843 | "license": "MIT", 844 | "dependencies": { 845 | "@babel/helper-plugin-utils": "^7.25.7" 846 | }, 847 | "engines": { 848 | "node": ">=6.9.0" 849 | }, 850 | "peerDependencies": { 851 | "@babel/core": "^7.0.0-0" 852 | } 853 | }, 854 | "node_modules/@babel/plugin-transform-block-scoping": { 855 | "version": "7.25.7", 856 | "dev": true, 857 | "license": "MIT", 858 | "dependencies": { 859 | "@babel/helper-plugin-utils": "^7.25.7" 860 | }, 861 | "engines": { 862 | "node": ">=6.9.0" 863 | }, 864 | "peerDependencies": { 865 | "@babel/core": "^7.0.0-0" 866 | } 867 | }, 868 | "node_modules/@babel/plugin-transform-class-properties": { 869 | "version": "7.25.7", 870 | "dev": true, 871 | "license": "MIT", 872 | "dependencies": { 873 | "@babel/helper-create-class-features-plugin": "^7.25.7", 874 | "@babel/helper-plugin-utils": "^7.25.7" 875 | }, 876 | "engines": { 877 | "node": ">=6.9.0" 878 | }, 879 | "peerDependencies": { 880 | "@babel/core": "^7.0.0-0" 881 | } 882 | }, 883 | "node_modules/@babel/plugin-transform-class-static-block": { 884 | "version": "7.25.7", 885 | "dev": true, 886 | "license": "MIT", 887 | "dependencies": { 888 | "@babel/helper-create-class-features-plugin": "^7.25.7", 889 | "@babel/helper-plugin-utils": "^7.25.7", 890 | "@babel/plugin-syntax-class-static-block": "^7.14.5" 891 | }, 892 | "engines": { 893 | "node": ">=6.9.0" 894 | }, 895 | "peerDependencies": { 896 | "@babel/core": "^7.12.0" 897 | } 898 | }, 899 | "node_modules/@babel/plugin-transform-classes": { 900 | "version": "7.25.7", 901 | "dev": true, 902 | "license": "MIT", 903 | "dependencies": { 904 | "@babel/helper-annotate-as-pure": "^7.25.7", 905 | "@babel/helper-compilation-targets": "^7.25.7", 906 | "@babel/helper-plugin-utils": "^7.25.7", 907 | "@babel/helper-replace-supers": "^7.25.7", 908 | "@babel/traverse": "^7.25.7", 909 | "globals": "^11.1.0" 910 | }, 911 | "engines": { 912 | "node": ">=6.9.0" 913 | }, 914 | "peerDependencies": { 915 | "@babel/core": "^7.0.0-0" 916 | } 917 | }, 918 | "node_modules/@babel/plugin-transform-computed-properties": { 919 | "version": "7.25.7", 920 | "dev": true, 921 | "license": "MIT", 922 | "dependencies": { 923 | "@babel/helper-plugin-utils": "^7.25.7", 924 | "@babel/template": "^7.25.7" 925 | }, 926 | "engines": { 927 | "node": ">=6.9.0" 928 | }, 929 | "peerDependencies": { 930 | "@babel/core": "^7.0.0-0" 931 | } 932 | }, 933 | "node_modules/@babel/plugin-transform-destructuring": { 934 | "version": "7.25.7", 935 | "dev": true, 936 | "license": "MIT", 937 | "dependencies": { 938 | "@babel/helper-plugin-utils": "^7.25.7" 939 | }, 940 | "engines": { 941 | "node": ">=6.9.0" 942 | }, 943 | "peerDependencies": { 944 | "@babel/core": "^7.0.0-0" 945 | } 946 | }, 947 | "node_modules/@babel/plugin-transform-dotall-regex": { 948 | "version": "7.25.7", 949 | "dev": true, 950 | "license": "MIT", 951 | "dependencies": { 952 | "@babel/helper-create-regexp-features-plugin": "^7.25.7", 953 | "@babel/helper-plugin-utils": "^7.25.7" 954 | }, 955 | "engines": { 956 | "node": ">=6.9.0" 957 | }, 958 | "peerDependencies": { 959 | "@babel/core": "^7.0.0-0" 960 | } 961 | }, 962 | "node_modules/@babel/plugin-transform-duplicate-keys": { 963 | "version": "7.25.7", 964 | "dev": true, 965 | "license": "MIT", 966 | "dependencies": { 967 | "@babel/helper-plugin-utils": "^7.25.7" 968 | }, 969 | "engines": { 970 | "node": ">=6.9.0" 971 | }, 972 | "peerDependencies": { 973 | "@babel/core": "^7.0.0-0" 974 | } 975 | }, 976 | "node_modules/@babel/plugin-transform-duplicate-named-capturing-groups-regex": { 977 | "version": "7.25.7", 978 | "dev": true, 979 | "license": "MIT", 980 | "dependencies": { 981 | "@babel/helper-create-regexp-features-plugin": "^7.25.7", 982 | "@babel/helper-plugin-utils": "^7.25.7" 983 | }, 984 | "engines": { 985 | "node": ">=6.9.0" 986 | }, 987 | "peerDependencies": { 988 | "@babel/core": "^7.0.0" 989 | } 990 | }, 991 | "node_modules/@babel/plugin-transform-dynamic-import": { 992 | "version": "7.25.7", 993 | "dev": true, 994 | "license": "MIT", 995 | "dependencies": { 996 | "@babel/helper-plugin-utils": "^7.25.7", 997 | "@babel/plugin-syntax-dynamic-import": "^7.8.3" 998 | }, 999 | "engines": { 1000 | "node": ">=6.9.0" 1001 | }, 1002 | "peerDependencies": { 1003 | "@babel/core": "^7.0.0-0" 1004 | } 1005 | }, 1006 | "node_modules/@babel/plugin-transform-exponentiation-operator": { 1007 | "version": "7.25.7", 1008 | "dev": true, 1009 | "license": "MIT", 1010 | "dependencies": { 1011 | "@babel/helper-builder-binary-assignment-operator-visitor": "^7.25.7", 1012 | "@babel/helper-plugin-utils": "^7.25.7" 1013 | }, 1014 | "engines": { 1015 | "node": ">=6.9.0" 1016 | }, 1017 | "peerDependencies": { 1018 | "@babel/core": "^7.0.0-0" 1019 | } 1020 | }, 1021 | "node_modules/@babel/plugin-transform-export-namespace-from": { 1022 | "version": "7.25.7", 1023 | "dev": true, 1024 | "license": "MIT", 1025 | "dependencies": { 1026 | "@babel/helper-plugin-utils": "^7.25.7", 1027 | "@babel/plugin-syntax-export-namespace-from": "^7.8.3" 1028 | }, 1029 | "engines": { 1030 | "node": ">=6.9.0" 1031 | }, 1032 | "peerDependencies": { 1033 | "@babel/core": "^7.0.0-0" 1034 | } 1035 | }, 1036 | "node_modules/@babel/plugin-transform-for-of": { 1037 | "version": "7.25.7", 1038 | "dev": true, 1039 | "license": "MIT", 1040 | "dependencies": { 1041 | "@babel/helper-plugin-utils": "^7.25.7", 1042 | "@babel/helper-skip-transparent-expression-wrappers": "^7.25.7" 1043 | }, 1044 | "engines": { 1045 | "node": ">=6.9.0" 1046 | }, 1047 | "peerDependencies": { 1048 | "@babel/core": "^7.0.0-0" 1049 | } 1050 | }, 1051 | "node_modules/@babel/plugin-transform-function-name": { 1052 | "version": "7.25.7", 1053 | "dev": true, 1054 | "license": "MIT", 1055 | "dependencies": { 1056 | "@babel/helper-compilation-targets": "^7.25.7", 1057 | "@babel/helper-plugin-utils": "^7.25.7", 1058 | "@babel/traverse": "^7.25.7" 1059 | }, 1060 | "engines": { 1061 | "node": ">=6.9.0" 1062 | }, 1063 | "peerDependencies": { 1064 | "@babel/core": "^7.0.0-0" 1065 | } 1066 | }, 1067 | "node_modules/@babel/plugin-transform-json-strings": { 1068 | "version": "7.25.7", 1069 | "dev": true, 1070 | "license": "MIT", 1071 | "dependencies": { 1072 | "@babel/helper-plugin-utils": "^7.25.7", 1073 | "@babel/plugin-syntax-json-strings": "^7.8.3" 1074 | }, 1075 | "engines": { 1076 | "node": ">=6.9.0" 1077 | }, 1078 | "peerDependencies": { 1079 | "@babel/core": "^7.0.0-0" 1080 | } 1081 | }, 1082 | "node_modules/@babel/plugin-transform-literals": { 1083 | "version": "7.25.7", 1084 | "dev": true, 1085 | "license": "MIT", 1086 | "dependencies": { 1087 | "@babel/helper-plugin-utils": "^7.25.7" 1088 | }, 1089 | "engines": { 1090 | "node": ">=6.9.0" 1091 | }, 1092 | "peerDependencies": { 1093 | "@babel/core": "^7.0.0-0" 1094 | } 1095 | }, 1096 | "node_modules/@babel/plugin-transform-logical-assignment-operators": { 1097 | "version": "7.25.7", 1098 | "dev": true, 1099 | "license": "MIT", 1100 | "dependencies": { 1101 | "@babel/helper-plugin-utils": "^7.25.7", 1102 | "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" 1103 | }, 1104 | "engines": { 1105 | "node": ">=6.9.0" 1106 | }, 1107 | "peerDependencies": { 1108 | "@babel/core": "^7.0.0-0" 1109 | } 1110 | }, 1111 | "node_modules/@babel/plugin-transform-member-expression-literals": { 1112 | "version": "7.25.7", 1113 | "dev": true, 1114 | "license": "MIT", 1115 | "dependencies": { 1116 | "@babel/helper-plugin-utils": "^7.25.7" 1117 | }, 1118 | "engines": { 1119 | "node": ">=6.9.0" 1120 | }, 1121 | "peerDependencies": { 1122 | "@babel/core": "^7.0.0-0" 1123 | } 1124 | }, 1125 | "node_modules/@babel/plugin-transform-modules-amd": { 1126 | "version": "7.25.7", 1127 | "dev": true, 1128 | "license": "MIT", 1129 | "dependencies": { 1130 | "@babel/helper-module-transforms": "^7.25.7", 1131 | "@babel/helper-plugin-utils": "^7.25.7" 1132 | }, 1133 | "engines": { 1134 | "node": ">=6.9.0" 1135 | }, 1136 | "peerDependencies": { 1137 | "@babel/core": "^7.0.0-0" 1138 | } 1139 | }, 1140 | "node_modules/@babel/plugin-transform-modules-commonjs": { 1141 | "version": "7.25.7", 1142 | "dev": true, 1143 | "license": "MIT", 1144 | "dependencies": { 1145 | "@babel/helper-module-transforms": "^7.25.7", 1146 | "@babel/helper-plugin-utils": "^7.25.7", 1147 | "@babel/helper-simple-access": "^7.25.7" 1148 | }, 1149 | "engines": { 1150 | "node": ">=6.9.0" 1151 | }, 1152 | "peerDependencies": { 1153 | "@babel/core": "^7.0.0-0" 1154 | } 1155 | }, 1156 | "node_modules/@babel/plugin-transform-modules-systemjs": { 1157 | "version": "7.25.7", 1158 | "dev": true, 1159 | "license": "MIT", 1160 | "dependencies": { 1161 | "@babel/helper-module-transforms": "^7.25.7", 1162 | "@babel/helper-plugin-utils": "^7.25.7", 1163 | "@babel/helper-validator-identifier": "^7.25.7", 1164 | "@babel/traverse": "^7.25.7" 1165 | }, 1166 | "engines": { 1167 | "node": ">=6.9.0" 1168 | }, 1169 | "peerDependencies": { 1170 | "@babel/core": "^7.0.0-0" 1171 | } 1172 | }, 1173 | "node_modules/@babel/plugin-transform-modules-umd": { 1174 | "version": "7.25.7", 1175 | "dev": true, 1176 | "license": "MIT", 1177 | "dependencies": { 1178 | "@babel/helper-module-transforms": "^7.25.7", 1179 | "@babel/helper-plugin-utils": "^7.25.7" 1180 | }, 1181 | "engines": { 1182 | "node": ">=6.9.0" 1183 | }, 1184 | "peerDependencies": { 1185 | "@babel/core": "^7.0.0-0" 1186 | } 1187 | }, 1188 | "node_modules/@babel/plugin-transform-named-capturing-groups-regex": { 1189 | "version": "7.25.7", 1190 | "dev": true, 1191 | "license": "MIT", 1192 | "dependencies": { 1193 | "@babel/helper-create-regexp-features-plugin": "^7.25.7", 1194 | "@babel/helper-plugin-utils": "^7.25.7" 1195 | }, 1196 | "engines": { 1197 | "node": ">=6.9.0" 1198 | }, 1199 | "peerDependencies": { 1200 | "@babel/core": "^7.0.0" 1201 | } 1202 | }, 1203 | "node_modules/@babel/plugin-transform-new-target": { 1204 | "version": "7.25.7", 1205 | "dev": true, 1206 | "license": "MIT", 1207 | "dependencies": { 1208 | "@babel/helper-plugin-utils": "^7.25.7" 1209 | }, 1210 | "engines": { 1211 | "node": ">=6.9.0" 1212 | }, 1213 | "peerDependencies": { 1214 | "@babel/core": "^7.0.0-0" 1215 | } 1216 | }, 1217 | "node_modules/@babel/plugin-transform-nullish-coalescing-operator": { 1218 | "version": "7.25.7", 1219 | "dev": true, 1220 | "license": "MIT", 1221 | "dependencies": { 1222 | "@babel/helper-plugin-utils": "^7.25.7", 1223 | "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" 1224 | }, 1225 | "engines": { 1226 | "node": ">=6.9.0" 1227 | }, 1228 | "peerDependencies": { 1229 | "@babel/core": "^7.0.0-0" 1230 | } 1231 | }, 1232 | "node_modules/@babel/plugin-transform-numeric-separator": { 1233 | "version": "7.25.7", 1234 | "dev": true, 1235 | "license": "MIT", 1236 | "dependencies": { 1237 | "@babel/helper-plugin-utils": "^7.25.7", 1238 | "@babel/plugin-syntax-numeric-separator": "^7.10.4" 1239 | }, 1240 | "engines": { 1241 | "node": ">=6.9.0" 1242 | }, 1243 | "peerDependencies": { 1244 | "@babel/core": "^7.0.0-0" 1245 | } 1246 | }, 1247 | "node_modules/@babel/plugin-transform-object-rest-spread": { 1248 | "version": "7.25.7", 1249 | "dev": true, 1250 | "license": "MIT", 1251 | "dependencies": { 1252 | "@babel/helper-compilation-targets": "^7.25.7", 1253 | "@babel/helper-plugin-utils": "^7.25.7", 1254 | "@babel/plugin-syntax-object-rest-spread": "^7.8.3", 1255 | "@babel/plugin-transform-parameters": "^7.25.7" 1256 | }, 1257 | "engines": { 1258 | "node": ">=6.9.0" 1259 | }, 1260 | "peerDependencies": { 1261 | "@babel/core": "^7.0.0-0" 1262 | } 1263 | }, 1264 | "node_modules/@babel/plugin-transform-object-super": { 1265 | "version": "7.25.7", 1266 | "dev": true, 1267 | "license": "MIT", 1268 | "dependencies": { 1269 | "@babel/helper-plugin-utils": "^7.25.7", 1270 | "@babel/helper-replace-supers": "^7.25.7" 1271 | }, 1272 | "engines": { 1273 | "node": ">=6.9.0" 1274 | }, 1275 | "peerDependencies": { 1276 | "@babel/core": "^7.0.0-0" 1277 | } 1278 | }, 1279 | "node_modules/@babel/plugin-transform-optional-catch-binding": { 1280 | "version": "7.25.7", 1281 | "dev": true, 1282 | "license": "MIT", 1283 | "dependencies": { 1284 | "@babel/helper-plugin-utils": "^7.25.7", 1285 | "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" 1286 | }, 1287 | "engines": { 1288 | "node": ">=6.9.0" 1289 | }, 1290 | "peerDependencies": { 1291 | "@babel/core": "^7.0.0-0" 1292 | } 1293 | }, 1294 | "node_modules/@babel/plugin-transform-optional-chaining": { 1295 | "version": "7.25.7", 1296 | "dev": true, 1297 | "license": "MIT", 1298 | "dependencies": { 1299 | "@babel/helper-plugin-utils": "^7.25.7", 1300 | "@babel/helper-skip-transparent-expression-wrappers": "^7.25.7", 1301 | "@babel/plugin-syntax-optional-chaining": "^7.8.3" 1302 | }, 1303 | "engines": { 1304 | "node": ">=6.9.0" 1305 | }, 1306 | "peerDependencies": { 1307 | "@babel/core": "^7.0.0-0" 1308 | } 1309 | }, 1310 | "node_modules/@babel/plugin-transform-parameters": { 1311 | "version": "7.25.7", 1312 | "dev": true, 1313 | "license": "MIT", 1314 | "dependencies": { 1315 | "@babel/helper-plugin-utils": "^7.25.7" 1316 | }, 1317 | "engines": { 1318 | "node": ">=6.9.0" 1319 | }, 1320 | "peerDependencies": { 1321 | "@babel/core": "^7.0.0-0" 1322 | } 1323 | }, 1324 | "node_modules/@babel/plugin-transform-private-methods": { 1325 | "version": "7.25.7", 1326 | "dev": true, 1327 | "license": "MIT", 1328 | "dependencies": { 1329 | "@babel/helper-create-class-features-plugin": "^7.25.7", 1330 | "@babel/helper-plugin-utils": "^7.25.7" 1331 | }, 1332 | "engines": { 1333 | "node": ">=6.9.0" 1334 | }, 1335 | "peerDependencies": { 1336 | "@babel/core": "^7.0.0-0" 1337 | } 1338 | }, 1339 | "node_modules/@babel/plugin-transform-private-property-in-object": { 1340 | "version": "7.25.7", 1341 | "dev": true, 1342 | "license": "MIT", 1343 | "dependencies": { 1344 | "@babel/helper-annotate-as-pure": "^7.25.7", 1345 | "@babel/helper-create-class-features-plugin": "^7.25.7", 1346 | "@babel/helper-plugin-utils": "^7.25.7", 1347 | "@babel/plugin-syntax-private-property-in-object": "^7.14.5" 1348 | }, 1349 | "engines": { 1350 | "node": ">=6.9.0" 1351 | }, 1352 | "peerDependencies": { 1353 | "@babel/core": "^7.0.0-0" 1354 | } 1355 | }, 1356 | "node_modules/@babel/plugin-transform-property-literals": { 1357 | "version": "7.25.7", 1358 | "dev": true, 1359 | "license": "MIT", 1360 | "dependencies": { 1361 | "@babel/helper-plugin-utils": "^7.25.7" 1362 | }, 1363 | "engines": { 1364 | "node": ">=6.9.0" 1365 | }, 1366 | "peerDependencies": { 1367 | "@babel/core": "^7.0.0-0" 1368 | } 1369 | }, 1370 | "node_modules/@babel/plugin-transform-react-display-name": { 1371 | "version": "7.25.7", 1372 | "dev": true, 1373 | "license": "MIT", 1374 | "dependencies": { 1375 | "@babel/helper-plugin-utils": "^7.25.7" 1376 | }, 1377 | "engines": { 1378 | "node": ">=6.9.0" 1379 | }, 1380 | "peerDependencies": { 1381 | "@babel/core": "^7.0.0-0" 1382 | } 1383 | }, 1384 | "node_modules/@babel/plugin-transform-react-jsx": { 1385 | "version": "7.25.7", 1386 | "dev": true, 1387 | "license": "MIT", 1388 | "dependencies": { 1389 | "@babel/helper-annotate-as-pure": "^7.25.7", 1390 | "@babel/helper-module-imports": "^7.25.7", 1391 | "@babel/helper-plugin-utils": "^7.25.7", 1392 | "@babel/plugin-syntax-jsx": "^7.25.7", 1393 | "@babel/types": "^7.25.7" 1394 | }, 1395 | "engines": { 1396 | "node": ">=6.9.0" 1397 | }, 1398 | "peerDependencies": { 1399 | "@babel/core": "^7.0.0-0" 1400 | } 1401 | }, 1402 | "node_modules/@babel/plugin-transform-react-jsx-development": { 1403 | "version": "7.25.7", 1404 | "dev": true, 1405 | "license": "MIT", 1406 | "dependencies": { 1407 | "@babel/plugin-transform-react-jsx": "^7.25.7" 1408 | }, 1409 | "engines": { 1410 | "node": ">=6.9.0" 1411 | }, 1412 | "peerDependencies": { 1413 | "@babel/core": "^7.0.0-0" 1414 | } 1415 | }, 1416 | "node_modules/@babel/plugin-transform-react-pure-annotations": { 1417 | "version": "7.25.7", 1418 | "dev": true, 1419 | "license": "MIT", 1420 | "dependencies": { 1421 | "@babel/helper-annotate-as-pure": "^7.25.7", 1422 | "@babel/helper-plugin-utils": "^7.25.7" 1423 | }, 1424 | "engines": { 1425 | "node": ">=6.9.0" 1426 | }, 1427 | "peerDependencies": { 1428 | "@babel/core": "^7.0.0-0" 1429 | } 1430 | }, 1431 | "node_modules/@babel/plugin-transform-regenerator": { 1432 | "version": "7.25.7", 1433 | "dev": true, 1434 | "license": "MIT", 1435 | "dependencies": { 1436 | "@babel/helper-plugin-utils": "^7.25.7", 1437 | "regenerator-transform": "^0.15.2" 1438 | }, 1439 | "engines": { 1440 | "node": ">=6.9.0" 1441 | }, 1442 | "peerDependencies": { 1443 | "@babel/core": "^7.0.0-0" 1444 | } 1445 | }, 1446 | "node_modules/@babel/plugin-transform-reserved-words": { 1447 | "version": "7.25.7", 1448 | "dev": true, 1449 | "license": "MIT", 1450 | "dependencies": { 1451 | "@babel/helper-plugin-utils": "^7.25.7" 1452 | }, 1453 | "engines": { 1454 | "node": ">=6.9.0" 1455 | }, 1456 | "peerDependencies": { 1457 | "@babel/core": "^7.0.0-0" 1458 | } 1459 | }, 1460 | "node_modules/@babel/plugin-transform-shorthand-properties": { 1461 | "version": "7.25.7", 1462 | "dev": true, 1463 | "license": "MIT", 1464 | "dependencies": { 1465 | "@babel/helper-plugin-utils": "^7.25.7" 1466 | }, 1467 | "engines": { 1468 | "node": ">=6.9.0" 1469 | }, 1470 | "peerDependencies": { 1471 | "@babel/core": "^7.0.0-0" 1472 | } 1473 | }, 1474 | "node_modules/@babel/plugin-transform-spread": { 1475 | "version": "7.25.7", 1476 | "dev": true, 1477 | "license": "MIT", 1478 | "dependencies": { 1479 | "@babel/helper-plugin-utils": "^7.25.7", 1480 | "@babel/helper-skip-transparent-expression-wrappers": "^7.25.7" 1481 | }, 1482 | "engines": { 1483 | "node": ">=6.9.0" 1484 | }, 1485 | "peerDependencies": { 1486 | "@babel/core": "^7.0.0-0" 1487 | } 1488 | }, 1489 | "node_modules/@babel/plugin-transform-sticky-regex": { 1490 | "version": "7.25.7", 1491 | "dev": true, 1492 | "license": "MIT", 1493 | "dependencies": { 1494 | "@babel/helper-plugin-utils": "^7.25.7" 1495 | }, 1496 | "engines": { 1497 | "node": ">=6.9.0" 1498 | }, 1499 | "peerDependencies": { 1500 | "@babel/core": "^7.0.0-0" 1501 | } 1502 | }, 1503 | "node_modules/@babel/plugin-transform-template-literals": { 1504 | "version": "7.25.7", 1505 | "dev": true, 1506 | "license": "MIT", 1507 | "dependencies": { 1508 | "@babel/helper-plugin-utils": "^7.25.7" 1509 | }, 1510 | "engines": { 1511 | "node": ">=6.9.0" 1512 | }, 1513 | "peerDependencies": { 1514 | "@babel/core": "^7.0.0-0" 1515 | } 1516 | }, 1517 | "node_modules/@babel/plugin-transform-typeof-symbol": { 1518 | "version": "7.25.7", 1519 | "dev": true, 1520 | "license": "MIT", 1521 | "dependencies": { 1522 | "@babel/helper-plugin-utils": "^7.25.7" 1523 | }, 1524 | "engines": { 1525 | "node": ">=6.9.0" 1526 | }, 1527 | "peerDependencies": { 1528 | "@babel/core": "^7.0.0-0" 1529 | } 1530 | }, 1531 | "node_modules/@babel/plugin-transform-unicode-escapes": { 1532 | "version": "7.25.7", 1533 | "dev": true, 1534 | "license": "MIT", 1535 | "dependencies": { 1536 | "@babel/helper-plugin-utils": "^7.25.7" 1537 | }, 1538 | "engines": { 1539 | "node": ">=6.9.0" 1540 | }, 1541 | "peerDependencies": { 1542 | "@babel/core": "^7.0.0-0" 1543 | } 1544 | }, 1545 | "node_modules/@babel/plugin-transform-unicode-property-regex": { 1546 | "version": "7.25.7", 1547 | "dev": true, 1548 | "license": "MIT", 1549 | "dependencies": { 1550 | "@babel/helper-create-regexp-features-plugin": "^7.25.7", 1551 | "@babel/helper-plugin-utils": "^7.25.7" 1552 | }, 1553 | "engines": { 1554 | "node": ">=6.9.0" 1555 | }, 1556 | "peerDependencies": { 1557 | "@babel/core": "^7.0.0-0" 1558 | } 1559 | }, 1560 | "node_modules/@babel/plugin-transform-unicode-regex": { 1561 | "version": "7.25.7", 1562 | "dev": true, 1563 | "license": "MIT", 1564 | "dependencies": { 1565 | "@babel/helper-create-regexp-features-plugin": "^7.25.7", 1566 | "@babel/helper-plugin-utils": "^7.25.7" 1567 | }, 1568 | "engines": { 1569 | "node": ">=6.9.0" 1570 | }, 1571 | "peerDependencies": { 1572 | "@babel/core": "^7.0.0-0" 1573 | } 1574 | }, 1575 | "node_modules/@babel/plugin-transform-unicode-sets-regex": { 1576 | "version": "7.25.7", 1577 | "dev": true, 1578 | "license": "MIT", 1579 | "dependencies": { 1580 | "@babel/helper-create-regexp-features-plugin": "^7.25.7", 1581 | "@babel/helper-plugin-utils": "^7.25.7" 1582 | }, 1583 | "engines": { 1584 | "node": ">=6.9.0" 1585 | }, 1586 | "peerDependencies": { 1587 | "@babel/core": "^7.0.0" 1588 | } 1589 | }, 1590 | "node_modules/@babel/preset-env": { 1591 | "version": "7.25.7", 1592 | "dev": true, 1593 | "license": "MIT", 1594 | "dependencies": { 1595 | "@babel/compat-data": "^7.25.7", 1596 | "@babel/helper-compilation-targets": "^7.25.7", 1597 | "@babel/helper-plugin-utils": "^7.25.7", 1598 | "@babel/helper-validator-option": "^7.25.7", 1599 | "@babel/plugin-bugfix-firefox-class-in-computed-class-key": "^7.25.7", 1600 | "@babel/plugin-bugfix-safari-class-field-initializer-scope": "^7.25.7", 1601 | "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.25.7", 1602 | "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.25.7", 1603 | "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "^7.25.7", 1604 | "@babel/plugin-proposal-private-property-in-object": "7.21.0-placeholder-for-preset-env.2", 1605 | "@babel/plugin-syntax-async-generators": "^7.8.4", 1606 | "@babel/plugin-syntax-class-properties": "^7.12.13", 1607 | "@babel/plugin-syntax-class-static-block": "^7.14.5", 1608 | "@babel/plugin-syntax-dynamic-import": "^7.8.3", 1609 | "@babel/plugin-syntax-export-namespace-from": "^7.8.3", 1610 | "@babel/plugin-syntax-import-assertions": "^7.25.7", 1611 | "@babel/plugin-syntax-import-attributes": "^7.25.7", 1612 | "@babel/plugin-syntax-import-meta": "^7.10.4", 1613 | "@babel/plugin-syntax-json-strings": "^7.8.3", 1614 | "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", 1615 | "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", 1616 | "@babel/plugin-syntax-numeric-separator": "^7.10.4", 1617 | "@babel/plugin-syntax-object-rest-spread": "^7.8.3", 1618 | "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", 1619 | "@babel/plugin-syntax-optional-chaining": "^7.8.3", 1620 | "@babel/plugin-syntax-private-property-in-object": "^7.14.5", 1621 | "@babel/plugin-syntax-top-level-await": "^7.14.5", 1622 | "@babel/plugin-syntax-unicode-sets-regex": "^7.18.6", 1623 | "@babel/plugin-transform-arrow-functions": "^7.25.7", 1624 | "@babel/plugin-transform-async-generator-functions": "^7.25.7", 1625 | "@babel/plugin-transform-async-to-generator": "^7.25.7", 1626 | "@babel/plugin-transform-block-scoped-functions": "^7.25.7", 1627 | "@babel/plugin-transform-block-scoping": "^7.25.7", 1628 | "@babel/plugin-transform-class-properties": "^7.25.7", 1629 | "@babel/plugin-transform-class-static-block": "^7.25.7", 1630 | "@babel/plugin-transform-classes": "^7.25.7", 1631 | "@babel/plugin-transform-computed-properties": "^7.25.7", 1632 | "@babel/plugin-transform-destructuring": "^7.25.7", 1633 | "@babel/plugin-transform-dotall-regex": "^7.25.7", 1634 | "@babel/plugin-transform-duplicate-keys": "^7.25.7", 1635 | "@babel/plugin-transform-duplicate-named-capturing-groups-regex": "^7.25.7", 1636 | "@babel/plugin-transform-dynamic-import": "^7.25.7", 1637 | "@babel/plugin-transform-exponentiation-operator": "^7.25.7", 1638 | "@babel/plugin-transform-export-namespace-from": "^7.25.7", 1639 | "@babel/plugin-transform-for-of": "^7.25.7", 1640 | "@babel/plugin-transform-function-name": "^7.25.7", 1641 | "@babel/plugin-transform-json-strings": "^7.25.7", 1642 | "@babel/plugin-transform-literals": "^7.25.7", 1643 | "@babel/plugin-transform-logical-assignment-operators": "^7.25.7", 1644 | "@babel/plugin-transform-member-expression-literals": "^7.25.7", 1645 | "@babel/plugin-transform-modules-amd": "^7.25.7", 1646 | "@babel/plugin-transform-modules-commonjs": "^7.25.7", 1647 | "@babel/plugin-transform-modules-systemjs": "^7.25.7", 1648 | "@babel/plugin-transform-modules-umd": "^7.25.7", 1649 | "@babel/plugin-transform-named-capturing-groups-regex": "^7.25.7", 1650 | "@babel/plugin-transform-new-target": "^7.25.7", 1651 | "@babel/plugin-transform-nullish-coalescing-operator": "^7.25.7", 1652 | "@babel/plugin-transform-numeric-separator": "^7.25.7", 1653 | "@babel/plugin-transform-object-rest-spread": "^7.25.7", 1654 | "@babel/plugin-transform-object-super": "^7.25.7", 1655 | "@babel/plugin-transform-optional-catch-binding": "^7.25.7", 1656 | "@babel/plugin-transform-optional-chaining": "^7.25.7", 1657 | "@babel/plugin-transform-parameters": "^7.25.7", 1658 | "@babel/plugin-transform-private-methods": "^7.25.7", 1659 | "@babel/plugin-transform-private-property-in-object": "^7.25.7", 1660 | "@babel/plugin-transform-property-literals": "^7.25.7", 1661 | "@babel/plugin-transform-regenerator": "^7.25.7", 1662 | "@babel/plugin-transform-reserved-words": "^7.25.7", 1663 | "@babel/plugin-transform-shorthand-properties": "^7.25.7", 1664 | "@babel/plugin-transform-spread": "^7.25.7", 1665 | "@babel/plugin-transform-sticky-regex": "^7.25.7", 1666 | "@babel/plugin-transform-template-literals": "^7.25.7", 1667 | "@babel/plugin-transform-typeof-symbol": "^7.25.7", 1668 | "@babel/plugin-transform-unicode-escapes": "^7.25.7", 1669 | "@babel/plugin-transform-unicode-property-regex": "^7.25.7", 1670 | "@babel/plugin-transform-unicode-regex": "^7.25.7", 1671 | "@babel/plugin-transform-unicode-sets-regex": "^7.25.7", 1672 | "@babel/preset-modules": "0.1.6-no-external-plugins", 1673 | "babel-plugin-polyfill-corejs2": "^0.4.10", 1674 | "babel-plugin-polyfill-corejs3": "^0.10.6", 1675 | "babel-plugin-polyfill-regenerator": "^0.6.1", 1676 | "core-js-compat": "^3.38.1", 1677 | "semver": "^6.3.1" 1678 | }, 1679 | "engines": { 1680 | "node": ">=6.9.0" 1681 | }, 1682 | "peerDependencies": { 1683 | "@babel/core": "^7.0.0-0" 1684 | } 1685 | }, 1686 | "node_modules/@babel/preset-modules": { 1687 | "version": "0.1.6-no-external-plugins", 1688 | "dev": true, 1689 | "license": "MIT", 1690 | "dependencies": { 1691 | "@babel/helper-plugin-utils": "^7.0.0", 1692 | "@babel/types": "^7.4.4", 1693 | "esutils": "^2.0.2" 1694 | }, 1695 | "peerDependencies": { 1696 | "@babel/core": "^7.0.0-0 || ^8.0.0-0 <8.0.0" 1697 | } 1698 | }, 1699 | "node_modules/@babel/preset-react": { 1700 | "version": "7.25.7", 1701 | "dev": true, 1702 | "license": "MIT", 1703 | "dependencies": { 1704 | "@babel/helper-plugin-utils": "^7.25.7", 1705 | "@babel/helper-validator-option": "^7.25.7", 1706 | "@babel/plugin-transform-react-display-name": "^7.25.7", 1707 | "@babel/plugin-transform-react-jsx": "^7.25.7", 1708 | "@babel/plugin-transform-react-jsx-development": "^7.25.7", 1709 | "@babel/plugin-transform-react-pure-annotations": "^7.25.7" 1710 | }, 1711 | "engines": { 1712 | "node": ">=6.9.0" 1713 | }, 1714 | "peerDependencies": { 1715 | "@babel/core": "^7.0.0-0" 1716 | } 1717 | }, 1718 | "node_modules/@babel/register": { 1719 | "version": "7.25.7", 1720 | "dev": true, 1721 | "license": "MIT", 1722 | "dependencies": { 1723 | "clone-deep": "^4.0.1", 1724 | "find-cache-dir": "^2.0.0", 1725 | "make-dir": "^2.1.0", 1726 | "pirates": "^4.0.6", 1727 | "source-map-support": "^0.5.16" 1728 | }, 1729 | "engines": { 1730 | "node": ">=6.9.0" 1731 | }, 1732 | "peerDependencies": { 1733 | "@babel/core": "^7.0.0-0" 1734 | } 1735 | }, 1736 | "node_modules/@babel/runtime": { 1737 | "version": "7.25.7", 1738 | "dev": true, 1739 | "license": "MIT", 1740 | "dependencies": { 1741 | "regenerator-runtime": "^0.14.0" 1742 | }, 1743 | "engines": { 1744 | "node": ">=6.9.0" 1745 | } 1746 | }, 1747 | "node_modules/@babel/template": { 1748 | "version": "7.25.7", 1749 | "dev": true, 1750 | "license": "MIT", 1751 | "dependencies": { 1752 | "@babel/code-frame": "^7.25.7", 1753 | "@babel/parser": "^7.25.7", 1754 | "@babel/types": "^7.25.7" 1755 | }, 1756 | "engines": { 1757 | "node": ">=6.9.0" 1758 | } 1759 | }, 1760 | "node_modules/@babel/traverse": { 1761 | "version": "7.25.7", 1762 | "dev": true, 1763 | "license": "MIT", 1764 | "dependencies": { 1765 | "@babel/code-frame": "^7.25.7", 1766 | "@babel/generator": "^7.25.7", 1767 | "@babel/parser": "^7.25.7", 1768 | "@babel/template": "^7.25.7", 1769 | "@babel/types": "^7.25.7", 1770 | "debug": "^4.3.1", 1771 | "globals": "^11.1.0" 1772 | }, 1773 | "engines": { 1774 | "node": ">=6.9.0" 1775 | } 1776 | }, 1777 | "node_modules/@babel/traverse/node_modules/debug": { 1778 | "version": "4.3.7", 1779 | "dev": true, 1780 | "license": "MIT", 1781 | "dependencies": { 1782 | "ms": "^2.1.3" 1783 | }, 1784 | "engines": { 1785 | "node": ">=6.0" 1786 | }, 1787 | "peerDependenciesMeta": { 1788 | "supports-color": { 1789 | "optional": true 1790 | } 1791 | } 1792 | }, 1793 | "node_modules/@babel/types": { 1794 | "version": "7.25.7", 1795 | "dev": true, 1796 | "license": "MIT", 1797 | "dependencies": { 1798 | "@babel/helper-string-parser": "^7.25.7", 1799 | "@babel/helper-validator-identifier": "^7.25.7", 1800 | "to-fast-properties": "^2.0.0" 1801 | }, 1802 | "engines": { 1803 | "node": ">=6.9.0" 1804 | } 1805 | }, 1806 | "node_modules/@discoveryjs/json-ext": { 1807 | "version": "0.5.7", 1808 | "dev": true, 1809 | "license": "MIT", 1810 | "engines": { 1811 | "node": ">=10.0.0" 1812 | } 1813 | }, 1814 | "node_modules/@jridgewell/gen-mapping": { 1815 | "version": "0.3.5", 1816 | "dev": true, 1817 | "license": "MIT", 1818 | "dependencies": { 1819 | "@jridgewell/set-array": "^1.2.1", 1820 | "@jridgewell/sourcemap-codec": "^1.4.10", 1821 | "@jridgewell/trace-mapping": "^0.3.24" 1822 | }, 1823 | "engines": { 1824 | "node": ">=6.0.0" 1825 | } 1826 | }, 1827 | "node_modules/@jridgewell/resolve-uri": { 1828 | "version": "3.1.2", 1829 | "dev": true, 1830 | "license": "MIT", 1831 | "engines": { 1832 | "node": ">=6.0.0" 1833 | } 1834 | }, 1835 | "node_modules/@jridgewell/set-array": { 1836 | "version": "1.2.1", 1837 | "dev": true, 1838 | "license": "MIT", 1839 | "engines": { 1840 | "node": ">=6.0.0" 1841 | } 1842 | }, 1843 | "node_modules/@jridgewell/source-map": { 1844 | "version": "0.3.6", 1845 | "dev": true, 1846 | "license": "MIT", 1847 | "dependencies": { 1848 | "@jridgewell/gen-mapping": "^0.3.5", 1849 | "@jridgewell/trace-mapping": "^0.3.25" 1850 | } 1851 | }, 1852 | "node_modules/@jridgewell/sourcemap-codec": { 1853 | "version": "1.5.0", 1854 | "dev": true, 1855 | "license": "MIT" 1856 | }, 1857 | "node_modules/@jridgewell/trace-mapping": { 1858 | "version": "0.3.25", 1859 | "dev": true, 1860 | "license": "MIT", 1861 | "dependencies": { 1862 | "@jridgewell/resolve-uri": "^3.1.0", 1863 | "@jridgewell/sourcemap-codec": "^1.4.14" 1864 | } 1865 | }, 1866 | "node_modules/@jsonjoy.com/base64": { 1867 | "version": "1.1.2", 1868 | "dev": true, 1869 | "license": "Apache-2.0", 1870 | "engines": { 1871 | "node": ">=10.0" 1872 | }, 1873 | "funding": { 1874 | "type": "github", 1875 | "url": "https://github.com/sponsors/streamich" 1876 | }, 1877 | "peerDependencies": { 1878 | "tslib": "2" 1879 | } 1880 | }, 1881 | "node_modules/@jsonjoy.com/json-pack": { 1882 | "version": "1.1.0", 1883 | "dev": true, 1884 | "license": "Apache-2.0", 1885 | "dependencies": { 1886 | "@jsonjoy.com/base64": "^1.1.1", 1887 | "@jsonjoy.com/util": "^1.1.2", 1888 | "hyperdyperid": "^1.2.0", 1889 | "thingies": "^1.20.0" 1890 | }, 1891 | "engines": { 1892 | "node": ">=10.0" 1893 | }, 1894 | "funding": { 1895 | "type": "github", 1896 | "url": "https://github.com/sponsors/streamich" 1897 | }, 1898 | "peerDependencies": { 1899 | "tslib": "2" 1900 | } 1901 | }, 1902 | "node_modules/@jsonjoy.com/util": { 1903 | "version": "1.5.0", 1904 | "dev": true, 1905 | "license": "Apache-2.0", 1906 | "engines": { 1907 | "node": ">=10.0" 1908 | }, 1909 | "funding": { 1910 | "type": "github", 1911 | "url": "https://github.com/sponsors/streamich" 1912 | }, 1913 | "peerDependencies": { 1914 | "tslib": "2" 1915 | } 1916 | }, 1917 | "node_modules/@leichtgewicht/ip-codec": { 1918 | "version": "2.0.5", 1919 | "dev": true, 1920 | "license": "MIT" 1921 | }, 1922 | "node_modules/@nicolo-ribaudo/chokidar-2": { 1923 | "version": "2.1.8-no-fsevents.3", 1924 | "dev": true, 1925 | "license": "MIT", 1926 | "optional": true 1927 | }, 1928 | "node_modules/@types/body-parser": { 1929 | "version": "1.19.5", 1930 | "dev": true, 1931 | "license": "MIT", 1932 | "dependencies": { 1933 | "@types/connect": "*", 1934 | "@types/node": "*" 1935 | } 1936 | }, 1937 | "node_modules/@types/bonjour": { 1938 | "version": "3.5.13", 1939 | "dev": true, 1940 | "license": "MIT", 1941 | "dependencies": { 1942 | "@types/node": "*" 1943 | } 1944 | }, 1945 | "node_modules/@types/connect": { 1946 | "version": "3.4.38", 1947 | "dev": true, 1948 | "license": "MIT", 1949 | "dependencies": { 1950 | "@types/node": "*" 1951 | } 1952 | }, 1953 | "node_modules/@types/connect-history-api-fallback": { 1954 | "version": "1.5.4", 1955 | "dev": true, 1956 | "license": "MIT", 1957 | "dependencies": { 1958 | "@types/express-serve-static-core": "*", 1959 | "@types/node": "*" 1960 | } 1961 | }, 1962 | "node_modules/@types/estree": { 1963 | "version": "1.0.6", 1964 | "dev": true, 1965 | "license": "MIT" 1966 | }, 1967 | "node_modules/@types/express": { 1968 | "version": "4.17.21", 1969 | "dev": true, 1970 | "license": "MIT", 1971 | "dependencies": { 1972 | "@types/body-parser": "*", 1973 | "@types/express-serve-static-core": "^4.17.33", 1974 | "@types/qs": "*", 1975 | "@types/serve-static": "*" 1976 | } 1977 | }, 1978 | "node_modules/@types/express-serve-static-core": { 1979 | "version": "5.0.0", 1980 | "dev": true, 1981 | "license": "MIT", 1982 | "dependencies": { 1983 | "@types/node": "*", 1984 | "@types/qs": "*", 1985 | "@types/range-parser": "*", 1986 | "@types/send": "*" 1987 | } 1988 | }, 1989 | "node_modules/@types/express/node_modules/@types/express-serve-static-core": { 1990 | "version": "4.19.6", 1991 | "dev": true, 1992 | "license": "MIT", 1993 | "dependencies": { 1994 | "@types/node": "*", 1995 | "@types/qs": "*", 1996 | "@types/range-parser": "*", 1997 | "@types/send": "*" 1998 | } 1999 | }, 2000 | "node_modules/@types/http-errors": { 2001 | "version": "2.0.4", 2002 | "dev": true, 2003 | "license": "MIT" 2004 | }, 2005 | "node_modules/@types/http-proxy": { 2006 | "version": "1.17.15", 2007 | "dev": true, 2008 | "license": "MIT", 2009 | "dependencies": { 2010 | "@types/node": "*" 2011 | } 2012 | }, 2013 | "node_modules/@types/json-schema": { 2014 | "version": "7.0.15", 2015 | "dev": true, 2016 | "license": "MIT" 2017 | }, 2018 | "node_modules/@types/mime": { 2019 | "version": "1.3.5", 2020 | "dev": true, 2021 | "license": "MIT" 2022 | }, 2023 | "node_modules/@types/node": { 2024 | "version": "22.7.4", 2025 | "dev": true, 2026 | "license": "MIT", 2027 | "dependencies": { 2028 | "undici-types": "~6.19.2" 2029 | } 2030 | }, 2031 | "node_modules/@types/node-forge": { 2032 | "version": "1.3.11", 2033 | "dev": true, 2034 | "license": "MIT", 2035 | "dependencies": { 2036 | "@types/node": "*" 2037 | } 2038 | }, 2039 | "node_modules/@types/qs": { 2040 | "version": "6.9.16", 2041 | "dev": true, 2042 | "license": "MIT" 2043 | }, 2044 | "node_modules/@types/range-parser": { 2045 | "version": "1.2.7", 2046 | "dev": true, 2047 | "license": "MIT" 2048 | }, 2049 | "node_modules/@types/retry": { 2050 | "version": "0.12.2", 2051 | "dev": true, 2052 | "license": "MIT" 2053 | }, 2054 | "node_modules/@types/send": { 2055 | "version": "0.17.4", 2056 | "dev": true, 2057 | "license": "MIT", 2058 | "dependencies": { 2059 | "@types/mime": "^1", 2060 | "@types/node": "*" 2061 | } 2062 | }, 2063 | "node_modules/@types/serve-index": { 2064 | "version": "1.9.4", 2065 | "dev": true, 2066 | "license": "MIT", 2067 | "dependencies": { 2068 | "@types/express": "*" 2069 | } 2070 | }, 2071 | "node_modules/@types/serve-index/node_modules/@types/express": { 2072 | "version": "5.0.0", 2073 | "dev": true, 2074 | "license": "MIT", 2075 | "dependencies": { 2076 | "@types/body-parser": "*", 2077 | "@types/express-serve-static-core": "^5.0.0", 2078 | "@types/qs": "*", 2079 | "@types/serve-static": "*" 2080 | } 2081 | }, 2082 | "node_modules/@types/serve-static": { 2083 | "version": "1.15.7", 2084 | "dev": true, 2085 | "license": "MIT", 2086 | "dependencies": { 2087 | "@types/http-errors": "*", 2088 | "@types/node": "*", 2089 | "@types/send": "*" 2090 | } 2091 | }, 2092 | "node_modules/@types/sockjs": { 2093 | "version": "0.3.36", 2094 | "dev": true, 2095 | "license": "MIT", 2096 | "dependencies": { 2097 | "@types/node": "*" 2098 | } 2099 | }, 2100 | "node_modules/@types/ws": { 2101 | "version": "8.5.12", 2102 | "dev": true, 2103 | "license": "MIT", 2104 | "dependencies": { 2105 | "@types/node": "*" 2106 | } 2107 | }, 2108 | "node_modules/@webassemblyjs/ast": { 2109 | "version": "1.12.1", 2110 | "dev": true, 2111 | "license": "MIT", 2112 | "dependencies": { 2113 | "@webassemblyjs/helper-numbers": "1.11.6", 2114 | "@webassemblyjs/helper-wasm-bytecode": "1.11.6" 2115 | } 2116 | }, 2117 | "node_modules/@webassemblyjs/floating-point-hex-parser": { 2118 | "version": "1.11.6", 2119 | "dev": true, 2120 | "license": "MIT" 2121 | }, 2122 | "node_modules/@webassemblyjs/helper-api-error": { 2123 | "version": "1.11.6", 2124 | "dev": true, 2125 | "license": "MIT" 2126 | }, 2127 | "node_modules/@webassemblyjs/helper-buffer": { 2128 | "version": "1.12.1", 2129 | "dev": true, 2130 | "license": "MIT" 2131 | }, 2132 | "node_modules/@webassemblyjs/helper-numbers": { 2133 | "version": "1.11.6", 2134 | "dev": true, 2135 | "license": "MIT", 2136 | "dependencies": { 2137 | "@webassemblyjs/floating-point-hex-parser": "1.11.6", 2138 | "@webassemblyjs/helper-api-error": "1.11.6", 2139 | "@xtuc/long": "4.2.2" 2140 | } 2141 | }, 2142 | "node_modules/@webassemblyjs/helper-wasm-bytecode": { 2143 | "version": "1.11.6", 2144 | "dev": true, 2145 | "license": "MIT" 2146 | }, 2147 | "node_modules/@webassemblyjs/helper-wasm-section": { 2148 | "version": "1.12.1", 2149 | "dev": true, 2150 | "license": "MIT", 2151 | "dependencies": { 2152 | "@webassemblyjs/ast": "1.12.1", 2153 | "@webassemblyjs/helper-buffer": "1.12.1", 2154 | "@webassemblyjs/helper-wasm-bytecode": "1.11.6", 2155 | "@webassemblyjs/wasm-gen": "1.12.1" 2156 | } 2157 | }, 2158 | "node_modules/@webassemblyjs/ieee754": { 2159 | "version": "1.11.6", 2160 | "dev": true, 2161 | "license": "MIT", 2162 | "dependencies": { 2163 | "@xtuc/ieee754": "^1.2.0" 2164 | } 2165 | }, 2166 | "node_modules/@webassemblyjs/leb128": { 2167 | "version": "1.11.6", 2168 | "dev": true, 2169 | "license": "Apache-2.0", 2170 | "dependencies": { 2171 | "@xtuc/long": "4.2.2" 2172 | } 2173 | }, 2174 | "node_modules/@webassemblyjs/utf8": { 2175 | "version": "1.11.6", 2176 | "dev": true, 2177 | "license": "MIT" 2178 | }, 2179 | "node_modules/@webassemblyjs/wasm-edit": { 2180 | "version": "1.12.1", 2181 | "dev": true, 2182 | "license": "MIT", 2183 | "dependencies": { 2184 | "@webassemblyjs/ast": "1.12.1", 2185 | "@webassemblyjs/helper-buffer": "1.12.1", 2186 | "@webassemblyjs/helper-wasm-bytecode": "1.11.6", 2187 | "@webassemblyjs/helper-wasm-section": "1.12.1", 2188 | "@webassemblyjs/wasm-gen": "1.12.1", 2189 | "@webassemblyjs/wasm-opt": "1.12.1", 2190 | "@webassemblyjs/wasm-parser": "1.12.1", 2191 | "@webassemblyjs/wast-printer": "1.12.1" 2192 | } 2193 | }, 2194 | "node_modules/@webassemblyjs/wasm-gen": { 2195 | "version": "1.12.1", 2196 | "dev": true, 2197 | "license": "MIT", 2198 | "dependencies": { 2199 | "@webassemblyjs/ast": "1.12.1", 2200 | "@webassemblyjs/helper-wasm-bytecode": "1.11.6", 2201 | "@webassemblyjs/ieee754": "1.11.6", 2202 | "@webassemblyjs/leb128": "1.11.6", 2203 | "@webassemblyjs/utf8": "1.11.6" 2204 | } 2205 | }, 2206 | "node_modules/@webassemblyjs/wasm-opt": { 2207 | "version": "1.12.1", 2208 | "dev": true, 2209 | "license": "MIT", 2210 | "dependencies": { 2211 | "@webassemblyjs/ast": "1.12.1", 2212 | "@webassemblyjs/helper-buffer": "1.12.1", 2213 | "@webassemblyjs/wasm-gen": "1.12.1", 2214 | "@webassemblyjs/wasm-parser": "1.12.1" 2215 | } 2216 | }, 2217 | "node_modules/@webassemblyjs/wasm-parser": { 2218 | "version": "1.12.1", 2219 | "dev": true, 2220 | "license": "MIT", 2221 | "dependencies": { 2222 | "@webassemblyjs/ast": "1.12.1", 2223 | "@webassemblyjs/helper-api-error": "1.11.6", 2224 | "@webassemblyjs/helper-wasm-bytecode": "1.11.6", 2225 | "@webassemblyjs/ieee754": "1.11.6", 2226 | "@webassemblyjs/leb128": "1.11.6", 2227 | "@webassemblyjs/utf8": "1.11.6" 2228 | } 2229 | }, 2230 | "node_modules/@webassemblyjs/wast-printer": { 2231 | "version": "1.12.1", 2232 | "dev": true, 2233 | "license": "MIT", 2234 | "dependencies": { 2235 | "@webassemblyjs/ast": "1.12.1", 2236 | "@xtuc/long": "4.2.2" 2237 | } 2238 | }, 2239 | "node_modules/@webpack-cli/configtest": { 2240 | "version": "2.1.1", 2241 | "dev": true, 2242 | "license": "MIT", 2243 | "engines": { 2244 | "node": ">=14.15.0" 2245 | }, 2246 | "peerDependencies": { 2247 | "webpack": "5.x.x", 2248 | "webpack-cli": "5.x.x" 2249 | } 2250 | }, 2251 | "node_modules/@webpack-cli/info": { 2252 | "version": "2.0.2", 2253 | "dev": true, 2254 | "license": "MIT", 2255 | "engines": { 2256 | "node": ">=14.15.0" 2257 | }, 2258 | "peerDependencies": { 2259 | "webpack": "5.x.x", 2260 | "webpack-cli": "5.x.x" 2261 | } 2262 | }, 2263 | "node_modules/@webpack-cli/serve": { 2264 | "version": "2.0.5", 2265 | "dev": true, 2266 | "license": "MIT", 2267 | "engines": { 2268 | "node": ">=14.15.0" 2269 | }, 2270 | "peerDependencies": { 2271 | "webpack": "5.x.x", 2272 | "webpack-cli": "5.x.x" 2273 | }, 2274 | "peerDependenciesMeta": { 2275 | "webpack-dev-server": { 2276 | "optional": true 2277 | } 2278 | } 2279 | }, 2280 | "node_modules/@xtuc/ieee754": { 2281 | "version": "1.2.0", 2282 | "dev": true, 2283 | "license": "BSD-3-Clause" 2284 | }, 2285 | "node_modules/@xtuc/long": { 2286 | "version": "4.2.2", 2287 | "dev": true, 2288 | "license": "Apache-2.0" 2289 | }, 2290 | "node_modules/accepts": { 2291 | "version": "1.3.8", 2292 | "license": "MIT", 2293 | "dependencies": { 2294 | "mime-types": "~2.1.34", 2295 | "negotiator": "0.6.3" 2296 | }, 2297 | "engines": { 2298 | "node": ">= 0.6" 2299 | } 2300 | }, 2301 | "node_modules/acorn": { 2302 | "version": "8.12.1", 2303 | "dev": true, 2304 | "license": "MIT", 2305 | "bin": { 2306 | "acorn": "bin/acorn" 2307 | }, 2308 | "engines": { 2309 | "node": ">=0.4.0" 2310 | } 2311 | }, 2312 | "node_modules/acorn-import-attributes": { 2313 | "version": "1.9.5", 2314 | "dev": true, 2315 | "license": "MIT", 2316 | "peerDependencies": { 2317 | "acorn": "^8" 2318 | } 2319 | }, 2320 | "node_modules/ajv": { 2321 | "version": "8.17.1", 2322 | "dev": true, 2323 | "license": "MIT", 2324 | "dependencies": { 2325 | "fast-deep-equal": "^3.1.3", 2326 | "fast-uri": "^3.0.1", 2327 | "json-schema-traverse": "^1.0.0", 2328 | "require-from-string": "^2.0.2" 2329 | }, 2330 | "funding": { 2331 | "type": "github", 2332 | "url": "https://github.com/sponsors/epoberezkin" 2333 | } 2334 | }, 2335 | "node_modules/ajv-formats": { 2336 | "version": "2.1.1", 2337 | "dev": true, 2338 | "license": "MIT", 2339 | "dependencies": { 2340 | "ajv": "^8.0.0" 2341 | }, 2342 | "peerDependencies": { 2343 | "ajv": "^8.0.0" 2344 | }, 2345 | "peerDependenciesMeta": { 2346 | "ajv": { 2347 | "optional": true 2348 | } 2349 | } 2350 | }, 2351 | "node_modules/ajv-keywords": { 2352 | "version": "5.1.0", 2353 | "dev": true, 2354 | "license": "MIT", 2355 | "dependencies": { 2356 | "fast-deep-equal": "^3.1.3" 2357 | }, 2358 | "peerDependencies": { 2359 | "ajv": "^8.8.2" 2360 | } 2361 | }, 2362 | "node_modules/ansi-html-community": { 2363 | "version": "0.0.8", 2364 | "dev": true, 2365 | "engines": [ 2366 | "node >= 0.8.0" 2367 | ], 2368 | "license": "Apache-2.0", 2369 | "bin": { 2370 | "ansi-html": "bin/ansi-html" 2371 | } 2372 | }, 2373 | "node_modules/ansi-styles": { 2374 | "version": "3.2.1", 2375 | "dev": true, 2376 | "license": "MIT", 2377 | "dependencies": { 2378 | "color-convert": "^1.9.0" 2379 | }, 2380 | "engines": { 2381 | "node": ">=4" 2382 | } 2383 | }, 2384 | "node_modules/anymatch": { 2385 | "version": "3.1.3", 2386 | "dev": true, 2387 | "license": "ISC", 2388 | "dependencies": { 2389 | "normalize-path": "^3.0.0", 2390 | "picomatch": "^2.0.4" 2391 | }, 2392 | "engines": { 2393 | "node": ">= 8" 2394 | } 2395 | }, 2396 | "node_modules/append-field": { 2397 | "version": "1.0.0", 2398 | "license": "MIT" 2399 | }, 2400 | "node_modules/array-buffer-byte-length": { 2401 | "version": "1.0.1", 2402 | "dev": true, 2403 | "license": "MIT", 2404 | "dependencies": { 2405 | "call-bind": "^1.0.5", 2406 | "is-array-buffer": "^3.0.4" 2407 | }, 2408 | "engines": { 2409 | "node": ">= 0.4" 2410 | }, 2411 | "funding": { 2412 | "url": "https://github.com/sponsors/ljharb" 2413 | } 2414 | }, 2415 | "node_modules/array-flatten": { 2416 | "version": "1.1.1", 2417 | "license": "MIT" 2418 | }, 2419 | "node_modules/array.prototype.reduce": { 2420 | "version": "1.0.7", 2421 | "dev": true, 2422 | "license": "MIT", 2423 | "dependencies": { 2424 | "call-bind": "^1.0.7", 2425 | "define-properties": "^1.2.1", 2426 | "es-abstract": "^1.23.2", 2427 | "es-array-method-boxes-properly": "^1.0.0", 2428 | "es-errors": "^1.3.0", 2429 | "es-object-atoms": "^1.0.0", 2430 | "is-string": "^1.0.7" 2431 | }, 2432 | "engines": { 2433 | "node": ">= 0.4" 2434 | }, 2435 | "funding": { 2436 | "url": "https://github.com/sponsors/ljharb" 2437 | } 2438 | }, 2439 | "node_modules/arraybuffer.prototype.slice": { 2440 | "version": "1.0.3", 2441 | "dev": true, 2442 | "license": "MIT", 2443 | "dependencies": { 2444 | "array-buffer-byte-length": "^1.0.1", 2445 | "call-bind": "^1.0.5", 2446 | "define-properties": "^1.2.1", 2447 | "es-abstract": "^1.22.3", 2448 | "es-errors": "^1.2.1", 2449 | "get-intrinsic": "^1.2.3", 2450 | "is-array-buffer": "^3.0.4", 2451 | "is-shared-array-buffer": "^1.0.2" 2452 | }, 2453 | "engines": { 2454 | "node": ">= 0.4" 2455 | }, 2456 | "funding": { 2457 | "url": "https://github.com/sponsors/ljharb" 2458 | } 2459 | }, 2460 | "node_modules/asynckit": { 2461 | "version": "0.4.0", 2462 | "license": "MIT" 2463 | }, 2464 | "node_modules/attr-accept": { 2465 | "version": "1.1.3", 2466 | "license": "MIT", 2467 | "dependencies": { 2468 | "core-js": "^2.5.0" 2469 | }, 2470 | "engines": { 2471 | "node": ">=4" 2472 | } 2473 | }, 2474 | "node_modules/attr-accept/node_modules/core-js": { 2475 | "version": "2.6.12", 2476 | "hasInstallScript": true, 2477 | "license": "MIT" 2478 | }, 2479 | "node_modules/available-typed-arrays": { 2480 | "version": "1.0.7", 2481 | "dev": true, 2482 | "license": "MIT", 2483 | "dependencies": { 2484 | "possible-typed-array-names": "^1.0.0" 2485 | }, 2486 | "engines": { 2487 | "node": ">= 0.4" 2488 | }, 2489 | "funding": { 2490 | "url": "https://github.com/sponsors/ljharb" 2491 | } 2492 | }, 2493 | "node_modules/axios": { 2494 | "version": "1.7.7", 2495 | "license": "MIT", 2496 | "dependencies": { 2497 | "follow-redirects": "^1.15.6", 2498 | "form-data": "^4.0.0", 2499 | "proxy-from-env": "^1.1.0" 2500 | } 2501 | }, 2502 | "node_modules/babel-loader": { 2503 | "version": "9.2.1", 2504 | "dev": true, 2505 | "license": "MIT", 2506 | "dependencies": { 2507 | "find-cache-dir": "^4.0.0", 2508 | "schema-utils": "^4.0.0" 2509 | }, 2510 | "engines": { 2511 | "node": ">= 14.15.0" 2512 | }, 2513 | "peerDependencies": { 2514 | "@babel/core": "^7.12.0", 2515 | "webpack": ">=5" 2516 | } 2517 | }, 2518 | "node_modules/babel-loader/node_modules/find-cache-dir": { 2519 | "version": "4.0.0", 2520 | "dev": true, 2521 | "license": "MIT", 2522 | "dependencies": { 2523 | "common-path-prefix": "^3.0.0", 2524 | "pkg-dir": "^7.0.0" 2525 | }, 2526 | "engines": { 2527 | "node": ">=14.16" 2528 | }, 2529 | "funding": { 2530 | "url": "https://github.com/sponsors/sindresorhus" 2531 | } 2532 | }, 2533 | "node_modules/babel-loader/node_modules/find-up": { 2534 | "version": "6.3.0", 2535 | "dev": true, 2536 | "license": "MIT", 2537 | "dependencies": { 2538 | "locate-path": "^7.1.0", 2539 | "path-exists": "^5.0.0" 2540 | }, 2541 | "engines": { 2542 | "node": "^12.20.0 || ^14.13.1 || >=16.0.0" 2543 | }, 2544 | "funding": { 2545 | "url": "https://github.com/sponsors/sindresorhus" 2546 | } 2547 | }, 2548 | "node_modules/babel-loader/node_modules/locate-path": { 2549 | "version": "7.2.0", 2550 | "dev": true, 2551 | "license": "MIT", 2552 | "dependencies": { 2553 | "p-locate": "^6.0.0" 2554 | }, 2555 | "engines": { 2556 | "node": "^12.20.0 || ^14.13.1 || >=16.0.0" 2557 | }, 2558 | "funding": { 2559 | "url": "https://github.com/sponsors/sindresorhus" 2560 | } 2561 | }, 2562 | "node_modules/babel-loader/node_modules/p-limit": { 2563 | "version": "4.0.0", 2564 | "dev": true, 2565 | "license": "MIT", 2566 | "dependencies": { 2567 | "yocto-queue": "^1.0.0" 2568 | }, 2569 | "engines": { 2570 | "node": "^12.20.0 || ^14.13.1 || >=16.0.0" 2571 | }, 2572 | "funding": { 2573 | "url": "https://github.com/sponsors/sindresorhus" 2574 | } 2575 | }, 2576 | "node_modules/babel-loader/node_modules/p-locate": { 2577 | "version": "6.0.0", 2578 | "dev": true, 2579 | "license": "MIT", 2580 | "dependencies": { 2581 | "p-limit": "^4.0.0" 2582 | }, 2583 | "engines": { 2584 | "node": "^12.20.0 || ^14.13.1 || >=16.0.0" 2585 | }, 2586 | "funding": { 2587 | "url": "https://github.com/sponsors/sindresorhus" 2588 | } 2589 | }, 2590 | "node_modules/babel-loader/node_modules/path-exists": { 2591 | "version": "5.0.0", 2592 | "dev": true, 2593 | "license": "MIT", 2594 | "engines": { 2595 | "node": "^12.20.0 || ^14.13.1 || >=16.0.0" 2596 | } 2597 | }, 2598 | "node_modules/babel-loader/node_modules/pkg-dir": { 2599 | "version": "7.0.0", 2600 | "dev": true, 2601 | "license": "MIT", 2602 | "dependencies": { 2603 | "find-up": "^6.3.0" 2604 | }, 2605 | "engines": { 2606 | "node": ">=14.16" 2607 | }, 2608 | "funding": { 2609 | "url": "https://github.com/sponsors/sindresorhus" 2610 | } 2611 | }, 2612 | "node_modules/babel-plugin-polyfill-corejs2": { 2613 | "version": "0.4.11", 2614 | "dev": true, 2615 | "license": "MIT", 2616 | "dependencies": { 2617 | "@babel/compat-data": "^7.22.6", 2618 | "@babel/helper-define-polyfill-provider": "^0.6.2", 2619 | "semver": "^6.3.1" 2620 | }, 2621 | "peerDependencies": { 2622 | "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" 2623 | } 2624 | }, 2625 | "node_modules/babel-plugin-polyfill-corejs3": { 2626 | "version": "0.10.6", 2627 | "dev": true, 2628 | "license": "MIT", 2629 | "dependencies": { 2630 | "@babel/helper-define-polyfill-provider": "^0.6.2", 2631 | "core-js-compat": "^3.38.0" 2632 | }, 2633 | "peerDependencies": { 2634 | "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" 2635 | } 2636 | }, 2637 | "node_modules/babel-plugin-polyfill-regenerator": { 2638 | "version": "0.6.2", 2639 | "dev": true, 2640 | "license": "MIT", 2641 | "dependencies": { 2642 | "@babel/helper-define-polyfill-provider": "^0.6.2" 2643 | }, 2644 | "peerDependencies": { 2645 | "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" 2646 | } 2647 | }, 2648 | "node_modules/balanced-match": { 2649 | "version": "1.0.2", 2650 | "dev": true, 2651 | "license": "MIT" 2652 | }, 2653 | "node_modules/basic-auth": { 2654 | "version": "2.0.1", 2655 | "license": "MIT", 2656 | "dependencies": { 2657 | "safe-buffer": "5.1.2" 2658 | }, 2659 | "engines": { 2660 | "node": ">= 0.8" 2661 | } 2662 | }, 2663 | "node_modules/basic-auth/node_modules/safe-buffer": { 2664 | "version": "5.1.2", 2665 | "license": "MIT" 2666 | }, 2667 | "node_modules/batch": { 2668 | "version": "0.6.1", 2669 | "dev": true, 2670 | "license": "MIT" 2671 | }, 2672 | "node_modules/binary-extensions": { 2673 | "version": "2.3.0", 2674 | "dev": true, 2675 | "license": "MIT", 2676 | "engines": { 2677 | "node": ">=8" 2678 | }, 2679 | "funding": { 2680 | "url": "https://github.com/sponsors/sindresorhus" 2681 | } 2682 | }, 2683 | "node_modules/body-parser": { 2684 | "version": "1.20.3", 2685 | "license": "MIT", 2686 | "dependencies": { 2687 | "bytes": "3.1.2", 2688 | "content-type": "~1.0.5", 2689 | "debug": "2.6.9", 2690 | "depd": "2.0.0", 2691 | "destroy": "1.2.0", 2692 | "http-errors": "2.0.0", 2693 | "iconv-lite": "0.4.24", 2694 | "on-finished": "2.4.1", 2695 | "qs": "6.13.0", 2696 | "raw-body": "2.5.2", 2697 | "type-is": "~1.6.18", 2698 | "unpipe": "1.0.0" 2699 | }, 2700 | "engines": { 2701 | "node": ">= 0.8", 2702 | "npm": "1.2.8000 || >= 1.4.16" 2703 | } 2704 | }, 2705 | "node_modules/bonjour-service": { 2706 | "version": "1.2.1", 2707 | "dev": true, 2708 | "license": "MIT", 2709 | "dependencies": { 2710 | "fast-deep-equal": "^3.1.3", 2711 | "multicast-dns": "^7.2.5" 2712 | } 2713 | }, 2714 | "node_modules/brace-expansion": { 2715 | "version": "1.1.11", 2716 | "dev": true, 2717 | "license": "MIT", 2718 | "dependencies": { 2719 | "balanced-match": "^1.0.0", 2720 | "concat-map": "0.0.1" 2721 | } 2722 | }, 2723 | "node_modules/browserslist": { 2724 | "version": "4.24.0", 2725 | "dev": true, 2726 | "funding": [ 2727 | { 2728 | "type": "opencollective", 2729 | "url": "https://opencollective.com/browserslist" 2730 | }, 2731 | { 2732 | "type": "tidelift", 2733 | "url": "https://tidelift.com/funding/github/npm/browserslist" 2734 | }, 2735 | { 2736 | "type": "github", 2737 | "url": "https://github.com/sponsors/ai" 2738 | } 2739 | ], 2740 | "license": "MIT", 2741 | "dependencies": { 2742 | "caniuse-lite": "^1.0.30001663", 2743 | "electron-to-chromium": "^1.5.28", 2744 | "node-releases": "^2.0.18", 2745 | "update-browserslist-db": "^1.1.0" 2746 | }, 2747 | "bin": { 2748 | "browserslist": "cli.js" 2749 | }, 2750 | "engines": { 2751 | "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" 2752 | } 2753 | }, 2754 | "node_modules/buffer-from": { 2755 | "version": "1.1.2", 2756 | "license": "MIT" 2757 | }, 2758 | "node_modules/bundle-name": { 2759 | "version": "4.1.0", 2760 | "dev": true, 2761 | "license": "MIT", 2762 | "dependencies": { 2763 | "run-applescript": "^7.0.0" 2764 | }, 2765 | "engines": { 2766 | "node": ">=18" 2767 | }, 2768 | "funding": { 2769 | "url": "https://github.com/sponsors/sindresorhus" 2770 | } 2771 | }, 2772 | "node_modules/busboy": { 2773 | "version": "1.6.0", 2774 | "dependencies": { 2775 | "streamsearch": "^1.1.0" 2776 | }, 2777 | "engines": { 2778 | "node": ">=10.16.0" 2779 | } 2780 | }, 2781 | "node_modules/bytes": { 2782 | "version": "3.1.2", 2783 | "license": "MIT", 2784 | "engines": { 2785 | "node": ">= 0.8" 2786 | } 2787 | }, 2788 | "node_modules/call-bind": { 2789 | "version": "1.0.7", 2790 | "license": "MIT", 2791 | "dependencies": { 2792 | "es-define-property": "^1.0.0", 2793 | "es-errors": "^1.3.0", 2794 | "function-bind": "^1.1.2", 2795 | "get-intrinsic": "^1.2.4", 2796 | "set-function-length": "^1.2.1" 2797 | }, 2798 | "engines": { 2799 | "node": ">= 0.4" 2800 | }, 2801 | "funding": { 2802 | "url": "https://github.com/sponsors/ljharb" 2803 | } 2804 | }, 2805 | "node_modules/caniuse-lite": { 2806 | "version": "1.0.30001667", 2807 | "dev": true, 2808 | "funding": [ 2809 | { 2810 | "type": "opencollective", 2811 | "url": "https://opencollective.com/browserslist" 2812 | }, 2813 | { 2814 | "type": "tidelift", 2815 | "url": "https://tidelift.com/funding/github/npm/caniuse-lite" 2816 | }, 2817 | { 2818 | "type": "github", 2819 | "url": "https://github.com/sponsors/ai" 2820 | } 2821 | ], 2822 | "license": "CC-BY-4.0" 2823 | }, 2824 | "node_modules/chalk": { 2825 | "version": "2.4.2", 2826 | "dev": true, 2827 | "license": "MIT", 2828 | "dependencies": { 2829 | "ansi-styles": "^3.2.1", 2830 | "escape-string-regexp": "^1.0.5", 2831 | "supports-color": "^5.3.0" 2832 | }, 2833 | "engines": { 2834 | "node": ">=4" 2835 | } 2836 | }, 2837 | "node_modules/chokidar": { 2838 | "version": "3.6.0", 2839 | "dev": true, 2840 | "license": "MIT", 2841 | "dependencies": { 2842 | "anymatch": "~3.1.2", 2843 | "braces": "~3.0.2", 2844 | "glob-parent": "~5.1.2", 2845 | "is-binary-path": "~2.1.0", 2846 | "is-glob": "~4.0.1", 2847 | "normalize-path": "~3.0.0", 2848 | "readdirp": "~3.6.0" 2849 | }, 2850 | "engines": { 2851 | "node": ">= 8.10.0" 2852 | }, 2853 | "funding": { 2854 | "url": "https://paulmillr.com/funding/" 2855 | }, 2856 | "optionalDependencies": { 2857 | "fsevents": "~2.3.2" 2858 | } 2859 | }, 2860 | "node_modules/chokidar/node_modules/braces": { 2861 | "version": "3.0.3", 2862 | "dev": true, 2863 | "license": "MIT", 2864 | "dependencies": { 2865 | "fill-range": "^7.1.1" 2866 | }, 2867 | "engines": { 2868 | "node": ">=8" 2869 | } 2870 | }, 2871 | "node_modules/chokidar/node_modules/fill-range": { 2872 | "version": "7.1.1", 2873 | "dev": true, 2874 | "license": "MIT", 2875 | "dependencies": { 2876 | "to-regex-range": "^5.0.1" 2877 | }, 2878 | "engines": { 2879 | "node": ">=8" 2880 | } 2881 | }, 2882 | "node_modules/chokidar/node_modules/is-number": { 2883 | "version": "7.0.0", 2884 | "dev": true, 2885 | "license": "MIT", 2886 | "engines": { 2887 | "node": ">=0.12.0" 2888 | } 2889 | }, 2890 | "node_modules/chokidar/node_modules/to-regex-range": { 2891 | "version": "5.0.1", 2892 | "dev": true, 2893 | "license": "MIT", 2894 | "dependencies": { 2895 | "is-number": "^7.0.0" 2896 | }, 2897 | "engines": { 2898 | "node": ">=8.0" 2899 | } 2900 | }, 2901 | "node_modules/chrome-trace-event": { 2902 | "version": "1.0.4", 2903 | "dev": true, 2904 | "license": "MIT", 2905 | "engines": { 2906 | "node": ">=6.0" 2907 | } 2908 | }, 2909 | "node_modules/clone-deep": { 2910 | "version": "4.0.1", 2911 | "dev": true, 2912 | "license": "MIT", 2913 | "dependencies": { 2914 | "is-plain-object": "^2.0.4", 2915 | "kind-of": "^6.0.2", 2916 | "shallow-clone": "^3.0.0" 2917 | }, 2918 | "engines": { 2919 | "node": ">=6" 2920 | } 2921 | }, 2922 | "node_modules/clone-deep/node_modules/kind-of": { 2923 | "version": "6.0.3", 2924 | "dev": true, 2925 | "license": "MIT", 2926 | "engines": { 2927 | "node": ">=0.10.0" 2928 | } 2929 | }, 2930 | "node_modules/cloudinary": { 2931 | "version": "1.41.3", 2932 | "license": "MIT", 2933 | "dependencies": { 2934 | "cloudinary-core": "^2.13.0", 2935 | "core-js": "^3.30.1", 2936 | "lodash": "^4.17.21", 2937 | "q": "^1.5.1" 2938 | }, 2939 | "engines": { 2940 | "node": ">=0.6" 2941 | } 2942 | }, 2943 | "node_modules/cloudinary-core": { 2944 | "version": "2.13.1", 2945 | "license": "MIT", 2946 | "peerDependencies": { 2947 | "lodash": ">=4.0" 2948 | } 2949 | }, 2950 | "node_modules/color-convert": { 2951 | "version": "1.9.3", 2952 | "dev": true, 2953 | "license": "MIT", 2954 | "dependencies": { 2955 | "color-name": "1.1.3" 2956 | } 2957 | }, 2958 | "node_modules/color-name": { 2959 | "version": "1.1.3", 2960 | "dev": true, 2961 | "license": "MIT" 2962 | }, 2963 | "node_modules/colorette": { 2964 | "version": "2.0.20", 2965 | "dev": true, 2966 | "license": "MIT" 2967 | }, 2968 | "node_modules/combined-stream": { 2969 | "version": "1.0.8", 2970 | "license": "MIT", 2971 | "dependencies": { 2972 | "delayed-stream": "~1.0.0" 2973 | }, 2974 | "engines": { 2975 | "node": ">= 0.8" 2976 | } 2977 | }, 2978 | "node_modules/commander": { 2979 | "version": "6.2.1", 2980 | "dev": true, 2981 | "license": "MIT", 2982 | "engines": { 2983 | "node": ">= 6" 2984 | } 2985 | }, 2986 | "node_modules/common-path-prefix": { 2987 | "version": "3.0.0", 2988 | "dev": true, 2989 | "license": "ISC" 2990 | }, 2991 | "node_modules/commondir": { 2992 | "version": "1.0.1", 2993 | "dev": true, 2994 | "license": "MIT" 2995 | }, 2996 | "node_modules/compressible": { 2997 | "version": "2.0.18", 2998 | "dev": true, 2999 | "license": "MIT", 3000 | "dependencies": { 3001 | "mime-db": ">= 1.43.0 < 2" 3002 | }, 3003 | "engines": { 3004 | "node": ">= 0.6" 3005 | } 3006 | }, 3007 | "node_modules/compressible/node_modules/mime-db": { 3008 | "version": "1.53.0", 3009 | "dev": true, 3010 | "license": "MIT", 3011 | "engines": { 3012 | "node": ">= 0.6" 3013 | } 3014 | }, 3015 | "node_modules/compression": { 3016 | "version": "1.7.4", 3017 | "dev": true, 3018 | "license": "MIT", 3019 | "dependencies": { 3020 | "accepts": "~1.3.5", 3021 | "bytes": "3.0.0", 3022 | "compressible": "~2.0.16", 3023 | "debug": "2.6.9", 3024 | "on-headers": "~1.0.2", 3025 | "safe-buffer": "5.1.2", 3026 | "vary": "~1.1.2" 3027 | }, 3028 | "engines": { 3029 | "node": ">= 0.8.0" 3030 | } 3031 | }, 3032 | "node_modules/compression/node_modules/bytes": { 3033 | "version": "3.0.0", 3034 | "dev": true, 3035 | "license": "MIT", 3036 | "engines": { 3037 | "node": ">= 0.8" 3038 | } 3039 | }, 3040 | "node_modules/compression/node_modules/safe-buffer": { 3041 | "version": "5.1.2", 3042 | "dev": true, 3043 | "license": "MIT" 3044 | }, 3045 | "node_modules/concat-map": { 3046 | "version": "0.0.1", 3047 | "dev": true, 3048 | "license": "MIT" 3049 | }, 3050 | "node_modules/concat-stream": { 3051 | "version": "1.6.2", 3052 | "engines": [ 3053 | "node >= 0.8" 3054 | ], 3055 | "license": "MIT", 3056 | "dependencies": { 3057 | "buffer-from": "^1.0.0", 3058 | "inherits": "^2.0.3", 3059 | "readable-stream": "^2.2.2", 3060 | "typedarray": "^0.0.6" 3061 | } 3062 | }, 3063 | "node_modules/connect-history-api-fallback": { 3064 | "version": "2.0.0", 3065 | "dev": true, 3066 | "license": "MIT", 3067 | "engines": { 3068 | "node": ">=0.8" 3069 | } 3070 | }, 3071 | "node_modules/content-disposition": { 3072 | "version": "0.5.4", 3073 | "license": "MIT", 3074 | "dependencies": { 3075 | "safe-buffer": "5.2.1" 3076 | }, 3077 | "engines": { 3078 | "node": ">= 0.6" 3079 | } 3080 | }, 3081 | "node_modules/content-type": { 3082 | "version": "1.0.5", 3083 | "license": "MIT", 3084 | "engines": { 3085 | "node": ">= 0.6" 3086 | } 3087 | }, 3088 | "node_modules/convert-source-map": { 3089 | "version": "2.0.0", 3090 | "dev": true, 3091 | "license": "MIT" 3092 | }, 3093 | "node_modules/cookie": { 3094 | "version": "0.6.0", 3095 | "license": "MIT", 3096 | "engines": { 3097 | "node": ">= 0.6" 3098 | } 3099 | }, 3100 | "node_modules/cookie-signature": { 3101 | "version": "1.0.6", 3102 | "license": "MIT" 3103 | }, 3104 | "node_modules/core-js": { 3105 | "version": "3.38.1", 3106 | "hasInstallScript": true, 3107 | "license": "MIT", 3108 | "funding": { 3109 | "type": "opencollective", 3110 | "url": "https://opencollective.com/core-js" 3111 | } 3112 | }, 3113 | "node_modules/core-js-compat": { 3114 | "version": "3.38.1", 3115 | "dev": true, 3116 | "license": "MIT", 3117 | "dependencies": { 3118 | "browserslist": "^4.23.3" 3119 | }, 3120 | "funding": { 3121 | "type": "opencollective", 3122 | "url": "https://opencollective.com/core-js" 3123 | } 3124 | }, 3125 | "node_modules/core-util-is": { 3126 | "version": "1.0.3", 3127 | "license": "MIT" 3128 | }, 3129 | "node_modules/cross-spawn": { 3130 | "version": "7.0.3", 3131 | "dev": true, 3132 | "license": "MIT", 3133 | "dependencies": { 3134 | "path-key": "^3.1.0", 3135 | "shebang-command": "^2.0.0", 3136 | "which": "^2.0.1" 3137 | }, 3138 | "engines": { 3139 | "node": ">= 8" 3140 | } 3141 | }, 3142 | "node_modules/data-view-buffer": { 3143 | "version": "1.0.1", 3144 | "dev": true, 3145 | "license": "MIT", 3146 | "dependencies": { 3147 | "call-bind": "^1.0.6", 3148 | "es-errors": "^1.3.0", 3149 | "is-data-view": "^1.0.1" 3150 | }, 3151 | "engines": { 3152 | "node": ">= 0.4" 3153 | }, 3154 | "funding": { 3155 | "url": "https://github.com/sponsors/ljharb" 3156 | } 3157 | }, 3158 | "node_modules/data-view-byte-length": { 3159 | "version": "1.0.1", 3160 | "dev": true, 3161 | "license": "MIT", 3162 | "dependencies": { 3163 | "call-bind": "^1.0.7", 3164 | "es-errors": "^1.3.0", 3165 | "is-data-view": "^1.0.1" 3166 | }, 3167 | "engines": { 3168 | "node": ">= 0.4" 3169 | }, 3170 | "funding": { 3171 | "url": "https://github.com/sponsors/ljharb" 3172 | } 3173 | }, 3174 | "node_modules/data-view-byte-offset": { 3175 | "version": "1.0.0", 3176 | "dev": true, 3177 | "license": "MIT", 3178 | "dependencies": { 3179 | "call-bind": "^1.0.6", 3180 | "es-errors": "^1.3.0", 3181 | "is-data-view": "^1.0.1" 3182 | }, 3183 | "engines": { 3184 | "node": ">= 0.4" 3185 | }, 3186 | "funding": { 3187 | "url": "https://github.com/sponsors/ljharb" 3188 | } 3189 | }, 3190 | "node_modules/debug": { 3191 | "version": "2.6.9", 3192 | "license": "MIT", 3193 | "dependencies": { 3194 | "ms": "2.0.0" 3195 | } 3196 | }, 3197 | "node_modules/debug/node_modules/ms": { 3198 | "version": "2.0.0", 3199 | "license": "MIT" 3200 | }, 3201 | "node_modules/default-browser": { 3202 | "version": "5.2.1", 3203 | "dev": true, 3204 | "license": "MIT", 3205 | "dependencies": { 3206 | "bundle-name": "^4.1.0", 3207 | "default-browser-id": "^5.0.0" 3208 | }, 3209 | "engines": { 3210 | "node": ">=18" 3211 | }, 3212 | "funding": { 3213 | "url": "https://github.com/sponsors/sindresorhus" 3214 | } 3215 | }, 3216 | "node_modules/default-browser-id": { 3217 | "version": "5.0.0", 3218 | "dev": true, 3219 | "license": "MIT", 3220 | "engines": { 3221 | "node": ">=18" 3222 | }, 3223 | "funding": { 3224 | "url": "https://github.com/sponsors/sindresorhus" 3225 | } 3226 | }, 3227 | "node_modules/define-data-property": { 3228 | "version": "1.1.4", 3229 | "license": "MIT", 3230 | "dependencies": { 3231 | "es-define-property": "^1.0.0", 3232 | "es-errors": "^1.3.0", 3233 | "gopd": "^1.0.1" 3234 | }, 3235 | "engines": { 3236 | "node": ">= 0.4" 3237 | }, 3238 | "funding": { 3239 | "url": "https://github.com/sponsors/ljharb" 3240 | } 3241 | }, 3242 | "node_modules/define-lazy-prop": { 3243 | "version": "3.0.0", 3244 | "dev": true, 3245 | "license": "MIT", 3246 | "engines": { 3247 | "node": ">=12" 3248 | }, 3249 | "funding": { 3250 | "url": "https://github.com/sponsors/sindresorhus" 3251 | } 3252 | }, 3253 | "node_modules/define-properties": { 3254 | "version": "1.2.1", 3255 | "dev": true, 3256 | "license": "MIT", 3257 | "dependencies": { 3258 | "define-data-property": "^1.0.1", 3259 | "has-property-descriptors": "^1.0.0", 3260 | "object-keys": "^1.1.1" 3261 | }, 3262 | "engines": { 3263 | "node": ">= 0.4" 3264 | }, 3265 | "funding": { 3266 | "url": "https://github.com/sponsors/ljharb" 3267 | } 3268 | }, 3269 | "node_modules/delayed-stream": { 3270 | "version": "1.0.0", 3271 | "license": "MIT", 3272 | "engines": { 3273 | "node": ">=0.4.0" 3274 | } 3275 | }, 3276 | "node_modules/depd": { 3277 | "version": "2.0.0", 3278 | "license": "MIT", 3279 | "engines": { 3280 | "node": ">= 0.8" 3281 | } 3282 | }, 3283 | "node_modules/destroy": { 3284 | "version": "1.2.0", 3285 | "license": "MIT", 3286 | "engines": { 3287 | "node": ">= 0.8", 3288 | "npm": "1.2.8000 || >= 1.4.16" 3289 | } 3290 | }, 3291 | "node_modules/detect-node": { 3292 | "version": "2.1.0", 3293 | "dev": true, 3294 | "license": "MIT" 3295 | }, 3296 | "node_modules/dns-packet": { 3297 | "version": "5.6.1", 3298 | "dev": true, 3299 | "license": "MIT", 3300 | "dependencies": { 3301 | "@leichtgewicht/ip-codec": "^2.0.1" 3302 | }, 3303 | "engines": { 3304 | "node": ">=6" 3305 | } 3306 | }, 3307 | "node_modules/dotenv": { 3308 | "version": "16.4.5", 3309 | "dev": true, 3310 | "license": "BSD-2-Clause", 3311 | "engines": { 3312 | "node": ">=12" 3313 | }, 3314 | "funding": { 3315 | "url": "https://dotenvx.com" 3316 | } 3317 | }, 3318 | "node_modules/ee-first": { 3319 | "version": "1.1.1", 3320 | "license": "MIT" 3321 | }, 3322 | "node_modules/electron-to-chromium": { 3323 | "version": "1.5.32", 3324 | "dev": true, 3325 | "license": "ISC" 3326 | }, 3327 | "node_modules/encodeurl": { 3328 | "version": "2.0.0", 3329 | "license": "MIT", 3330 | "engines": { 3331 | "node": ">= 0.8" 3332 | } 3333 | }, 3334 | "node_modules/enhanced-resolve": { 3335 | "version": "5.17.1", 3336 | "dev": true, 3337 | "license": "MIT", 3338 | "dependencies": { 3339 | "graceful-fs": "^4.2.4", 3340 | "tapable": "^2.2.0" 3341 | }, 3342 | "engines": { 3343 | "node": ">=10.13.0" 3344 | } 3345 | }, 3346 | "node_modules/envinfo": { 3347 | "version": "7.14.0", 3348 | "dev": true, 3349 | "license": "MIT", 3350 | "bin": { 3351 | "envinfo": "dist/cli.js" 3352 | }, 3353 | "engines": { 3354 | "node": ">=4" 3355 | } 3356 | }, 3357 | "node_modules/es-abstract": { 3358 | "version": "1.23.3", 3359 | "dev": true, 3360 | "license": "MIT", 3361 | "dependencies": { 3362 | "array-buffer-byte-length": "^1.0.1", 3363 | "arraybuffer.prototype.slice": "^1.0.3", 3364 | "available-typed-arrays": "^1.0.7", 3365 | "call-bind": "^1.0.7", 3366 | "data-view-buffer": "^1.0.1", 3367 | "data-view-byte-length": "^1.0.1", 3368 | "data-view-byte-offset": "^1.0.0", 3369 | "es-define-property": "^1.0.0", 3370 | "es-errors": "^1.3.0", 3371 | "es-object-atoms": "^1.0.0", 3372 | "es-set-tostringtag": "^2.0.3", 3373 | "es-to-primitive": "^1.2.1", 3374 | "function.prototype.name": "^1.1.6", 3375 | "get-intrinsic": "^1.2.4", 3376 | "get-symbol-description": "^1.0.2", 3377 | "globalthis": "^1.0.3", 3378 | "gopd": "^1.0.1", 3379 | "has-property-descriptors": "^1.0.2", 3380 | "has-proto": "^1.0.3", 3381 | "has-symbols": "^1.0.3", 3382 | "hasown": "^2.0.2", 3383 | "internal-slot": "^1.0.7", 3384 | "is-array-buffer": "^3.0.4", 3385 | "is-callable": "^1.2.7", 3386 | "is-data-view": "^1.0.1", 3387 | "is-negative-zero": "^2.0.3", 3388 | "is-regex": "^1.1.4", 3389 | "is-shared-array-buffer": "^1.0.3", 3390 | "is-string": "^1.0.7", 3391 | "is-typed-array": "^1.1.13", 3392 | "is-weakref": "^1.0.2", 3393 | "object-inspect": "^1.13.1", 3394 | "object-keys": "^1.1.1", 3395 | "object.assign": "^4.1.5", 3396 | "regexp.prototype.flags": "^1.5.2", 3397 | "safe-array-concat": "^1.1.2", 3398 | "safe-regex-test": "^1.0.3", 3399 | "string.prototype.trim": "^1.2.9", 3400 | "string.prototype.trimend": "^1.0.8", 3401 | "string.prototype.trimstart": "^1.0.8", 3402 | "typed-array-buffer": "^1.0.2", 3403 | "typed-array-byte-length": "^1.0.1", 3404 | "typed-array-byte-offset": "^1.0.2", 3405 | "typed-array-length": "^1.0.6", 3406 | "unbox-primitive": "^1.0.2", 3407 | "which-typed-array": "^1.1.15" 3408 | }, 3409 | "engines": { 3410 | "node": ">= 0.4" 3411 | }, 3412 | "funding": { 3413 | "url": "https://github.com/sponsors/ljharb" 3414 | } 3415 | }, 3416 | "node_modules/es-array-method-boxes-properly": { 3417 | "version": "1.0.0", 3418 | "dev": true, 3419 | "license": "MIT" 3420 | }, 3421 | "node_modules/es-define-property": { 3422 | "version": "1.0.0", 3423 | "license": "MIT", 3424 | "dependencies": { 3425 | "get-intrinsic": "^1.2.4" 3426 | }, 3427 | "engines": { 3428 | "node": ">= 0.4" 3429 | } 3430 | }, 3431 | "node_modules/es-errors": { 3432 | "version": "1.3.0", 3433 | "license": "MIT", 3434 | "engines": { 3435 | "node": ">= 0.4" 3436 | } 3437 | }, 3438 | "node_modules/es-module-lexer": { 3439 | "version": "1.5.4", 3440 | "dev": true, 3441 | "license": "MIT" 3442 | }, 3443 | "node_modules/es-object-atoms": { 3444 | "version": "1.0.0", 3445 | "dev": true, 3446 | "license": "MIT", 3447 | "dependencies": { 3448 | "es-errors": "^1.3.0" 3449 | }, 3450 | "engines": { 3451 | "node": ">= 0.4" 3452 | } 3453 | }, 3454 | "node_modules/es-set-tostringtag": { 3455 | "version": "2.0.3", 3456 | "dev": true, 3457 | "license": "MIT", 3458 | "dependencies": { 3459 | "get-intrinsic": "^1.2.4", 3460 | "has-tostringtag": "^1.0.2", 3461 | "hasown": "^2.0.1" 3462 | }, 3463 | "engines": { 3464 | "node": ">= 0.4" 3465 | } 3466 | }, 3467 | "node_modules/es-to-primitive": { 3468 | "version": "1.2.1", 3469 | "dev": true, 3470 | "license": "MIT", 3471 | "dependencies": { 3472 | "is-callable": "^1.1.4", 3473 | "is-date-object": "^1.0.1", 3474 | "is-symbol": "^1.0.2" 3475 | }, 3476 | "engines": { 3477 | "node": ">= 0.4" 3478 | }, 3479 | "funding": { 3480 | "url": "https://github.com/sponsors/ljharb" 3481 | } 3482 | }, 3483 | "node_modules/escalade": { 3484 | "version": "3.2.0", 3485 | "dev": true, 3486 | "license": "MIT", 3487 | "engines": { 3488 | "node": ">=6" 3489 | } 3490 | }, 3491 | "node_modules/escape-html": { 3492 | "version": "1.0.3", 3493 | "license": "MIT" 3494 | }, 3495 | "node_modules/escape-string-regexp": { 3496 | "version": "1.0.5", 3497 | "dev": true, 3498 | "license": "MIT", 3499 | "engines": { 3500 | "node": ">=0.8.0" 3501 | } 3502 | }, 3503 | "node_modules/eslint-scope": { 3504 | "version": "5.1.1", 3505 | "dev": true, 3506 | "license": "BSD-2-Clause", 3507 | "dependencies": { 3508 | "esrecurse": "^4.3.0", 3509 | "estraverse": "^4.1.1" 3510 | }, 3511 | "engines": { 3512 | "node": ">=8.0.0" 3513 | } 3514 | }, 3515 | "node_modules/esrecurse": { 3516 | "version": "4.3.0", 3517 | "dev": true, 3518 | "license": "BSD-2-Clause", 3519 | "dependencies": { 3520 | "estraverse": "^5.2.0" 3521 | }, 3522 | "engines": { 3523 | "node": ">=4.0" 3524 | } 3525 | }, 3526 | "node_modules/esrecurse/node_modules/estraverse": { 3527 | "version": "5.3.0", 3528 | "dev": true, 3529 | "license": "BSD-2-Clause", 3530 | "engines": { 3531 | "node": ">=4.0" 3532 | } 3533 | }, 3534 | "node_modules/estraverse": { 3535 | "version": "4.3.0", 3536 | "dev": true, 3537 | "license": "BSD-2-Clause", 3538 | "engines": { 3539 | "node": ">=4.0" 3540 | } 3541 | }, 3542 | "node_modules/esutils": { 3543 | "version": "2.0.3", 3544 | "dev": true, 3545 | "license": "BSD-2-Clause", 3546 | "engines": { 3547 | "node": ">=0.10.0" 3548 | } 3549 | }, 3550 | "node_modules/etag": { 3551 | "version": "1.8.1", 3552 | "license": "MIT", 3553 | "engines": { 3554 | "node": ">= 0.6" 3555 | } 3556 | }, 3557 | "node_modules/eventemitter3": { 3558 | "version": "4.0.7", 3559 | "dev": true, 3560 | "license": "MIT" 3561 | }, 3562 | "node_modules/events": { 3563 | "version": "3.3.0", 3564 | "dev": true, 3565 | "license": "MIT", 3566 | "engines": { 3567 | "node": ">=0.8.x" 3568 | } 3569 | }, 3570 | "node_modules/express": { 3571 | "version": "4.21.0", 3572 | "license": "MIT", 3573 | "dependencies": { 3574 | "accepts": "~1.3.8", 3575 | "array-flatten": "1.1.1", 3576 | "body-parser": "1.20.3", 3577 | "content-disposition": "0.5.4", 3578 | "content-type": "~1.0.4", 3579 | "cookie": "0.6.0", 3580 | "cookie-signature": "1.0.6", 3581 | "debug": "2.6.9", 3582 | "depd": "2.0.0", 3583 | "encodeurl": "~2.0.0", 3584 | "escape-html": "~1.0.3", 3585 | "etag": "~1.8.1", 3586 | "finalhandler": "1.3.1", 3587 | "fresh": "0.5.2", 3588 | "http-errors": "2.0.0", 3589 | "merge-descriptors": "1.0.3", 3590 | "methods": "~1.1.2", 3591 | "on-finished": "2.4.1", 3592 | "parseurl": "~1.3.3", 3593 | "path-to-regexp": "0.1.10", 3594 | "proxy-addr": "~2.0.7", 3595 | "qs": "6.13.0", 3596 | "range-parser": "~1.2.1", 3597 | "safe-buffer": "5.2.1", 3598 | "send": "0.19.0", 3599 | "serve-static": "1.16.2", 3600 | "setprototypeof": "1.2.0", 3601 | "statuses": "2.0.1", 3602 | "type-is": "~1.6.18", 3603 | "utils-merge": "1.0.1", 3604 | "vary": "~1.1.2" 3605 | }, 3606 | "engines": { 3607 | "node": ">= 0.10.0" 3608 | } 3609 | }, 3610 | "node_modules/fast-deep-equal": { 3611 | "version": "3.1.3", 3612 | "dev": true, 3613 | "license": "MIT" 3614 | }, 3615 | "node_modules/fast-json-stable-stringify": { 3616 | "version": "2.1.0", 3617 | "dev": true, 3618 | "license": "MIT" 3619 | }, 3620 | "node_modules/fast-uri": { 3621 | "version": "3.0.2", 3622 | "dev": true, 3623 | "license": "MIT" 3624 | }, 3625 | "node_modules/fastest-levenshtein": { 3626 | "version": "1.0.16", 3627 | "dev": true, 3628 | "license": "MIT", 3629 | "engines": { 3630 | "node": ">= 4.9.1" 3631 | } 3632 | }, 3633 | "node_modules/faye-websocket": { 3634 | "version": "0.11.4", 3635 | "dev": true, 3636 | "license": "Apache-2.0", 3637 | "dependencies": { 3638 | "websocket-driver": ">=0.5.1" 3639 | }, 3640 | "engines": { 3641 | "node": ">=0.8.0" 3642 | } 3643 | }, 3644 | "node_modules/finalhandler": { 3645 | "version": "1.3.1", 3646 | "license": "MIT", 3647 | "dependencies": { 3648 | "debug": "2.6.9", 3649 | "encodeurl": "~2.0.0", 3650 | "escape-html": "~1.0.3", 3651 | "on-finished": "2.4.1", 3652 | "parseurl": "~1.3.3", 3653 | "statuses": "2.0.1", 3654 | "unpipe": "~1.0.0" 3655 | }, 3656 | "engines": { 3657 | "node": ">= 0.8" 3658 | } 3659 | }, 3660 | "node_modules/find-cache-dir": { 3661 | "version": "2.1.0", 3662 | "dev": true, 3663 | "license": "MIT", 3664 | "dependencies": { 3665 | "commondir": "^1.0.1", 3666 | "make-dir": "^2.0.0", 3667 | "pkg-dir": "^3.0.0" 3668 | }, 3669 | "engines": { 3670 | "node": ">=6" 3671 | } 3672 | }, 3673 | "node_modules/find-up": { 3674 | "version": "3.0.0", 3675 | "dev": true, 3676 | "license": "MIT", 3677 | "dependencies": { 3678 | "locate-path": "^3.0.0" 3679 | }, 3680 | "engines": { 3681 | "node": ">=6" 3682 | } 3683 | }, 3684 | "node_modules/flat": { 3685 | "version": "5.0.2", 3686 | "dev": true, 3687 | "license": "BSD-3-Clause", 3688 | "bin": { 3689 | "flat": "cli.js" 3690 | } 3691 | }, 3692 | "node_modules/follow-redirects": { 3693 | "version": "1.15.9", 3694 | "funding": [ 3695 | { 3696 | "type": "individual", 3697 | "url": "https://github.com/sponsors/RubenVerborgh" 3698 | } 3699 | ], 3700 | "license": "MIT", 3701 | "engines": { 3702 | "node": ">=4.0" 3703 | }, 3704 | "peerDependenciesMeta": { 3705 | "debug": { 3706 | "optional": true 3707 | } 3708 | } 3709 | }, 3710 | "node_modules/for-each": { 3711 | "version": "0.3.3", 3712 | "dev": true, 3713 | "license": "MIT", 3714 | "dependencies": { 3715 | "is-callable": "^1.1.3" 3716 | } 3717 | }, 3718 | "node_modules/form-data": { 3719 | "version": "4.0.0", 3720 | "license": "MIT", 3721 | "dependencies": { 3722 | "asynckit": "^0.4.0", 3723 | "combined-stream": "^1.0.8", 3724 | "mime-types": "^2.1.12" 3725 | }, 3726 | "engines": { 3727 | "node": ">= 6" 3728 | } 3729 | }, 3730 | "node_modules/forwarded": { 3731 | "version": "0.2.0", 3732 | "license": "MIT", 3733 | "engines": { 3734 | "node": ">= 0.6" 3735 | } 3736 | }, 3737 | "node_modules/fresh": { 3738 | "version": "0.5.2", 3739 | "license": "MIT", 3740 | "engines": { 3741 | "node": ">= 0.6" 3742 | } 3743 | }, 3744 | "node_modules/fs-readdir-recursive": { 3745 | "version": "1.1.0", 3746 | "dev": true, 3747 | "license": "MIT" 3748 | }, 3749 | "node_modules/fs.realpath": { 3750 | "version": "1.0.0", 3751 | "dev": true, 3752 | "license": "ISC" 3753 | }, 3754 | "node_modules/fsevents": { 3755 | "version": "2.3.3", 3756 | "dev": true, 3757 | "license": "MIT", 3758 | "optional": true, 3759 | "os": [ 3760 | "darwin" 3761 | ], 3762 | "engines": { 3763 | "node": "^8.16.0 || ^10.6.0 || >=11.0.0" 3764 | } 3765 | }, 3766 | "node_modules/function-bind": { 3767 | "version": "1.1.2", 3768 | "license": "MIT", 3769 | "funding": { 3770 | "url": "https://github.com/sponsors/ljharb" 3771 | } 3772 | }, 3773 | "node_modules/function.prototype.name": { 3774 | "version": "1.1.6", 3775 | "dev": true, 3776 | "license": "MIT", 3777 | "dependencies": { 3778 | "call-bind": "^1.0.2", 3779 | "define-properties": "^1.2.0", 3780 | "es-abstract": "^1.22.1", 3781 | "functions-have-names": "^1.2.3" 3782 | }, 3783 | "engines": { 3784 | "node": ">= 0.4" 3785 | }, 3786 | "funding": { 3787 | "url": "https://github.com/sponsors/ljharb" 3788 | } 3789 | }, 3790 | "node_modules/functions-have-names": { 3791 | "version": "1.2.3", 3792 | "dev": true, 3793 | "license": "MIT", 3794 | "funding": { 3795 | "url": "https://github.com/sponsors/ljharb" 3796 | } 3797 | }, 3798 | "node_modules/gensync": { 3799 | "version": "1.0.0-beta.2", 3800 | "dev": true, 3801 | "license": "MIT", 3802 | "engines": { 3803 | "node": ">=6.9.0" 3804 | } 3805 | }, 3806 | "node_modules/get-intrinsic": { 3807 | "version": "1.2.4", 3808 | "license": "MIT", 3809 | "dependencies": { 3810 | "es-errors": "^1.3.0", 3811 | "function-bind": "^1.1.2", 3812 | "has-proto": "^1.0.1", 3813 | "has-symbols": "^1.0.3", 3814 | "hasown": "^2.0.0" 3815 | }, 3816 | "engines": { 3817 | "node": ">= 0.4" 3818 | }, 3819 | "funding": { 3820 | "url": "https://github.com/sponsors/ljharb" 3821 | } 3822 | }, 3823 | "node_modules/get-symbol-description": { 3824 | "version": "1.0.2", 3825 | "dev": true, 3826 | "license": "MIT", 3827 | "dependencies": { 3828 | "call-bind": "^1.0.5", 3829 | "es-errors": "^1.3.0", 3830 | "get-intrinsic": "^1.2.4" 3831 | }, 3832 | "engines": { 3833 | "node": ">= 0.4" 3834 | }, 3835 | "funding": { 3836 | "url": "https://github.com/sponsors/ljharb" 3837 | } 3838 | }, 3839 | "node_modules/glob": { 3840 | "version": "7.2.3", 3841 | "dev": true, 3842 | "license": "ISC", 3843 | "dependencies": { 3844 | "fs.realpath": "^1.0.0", 3845 | "inflight": "^1.0.4", 3846 | "inherits": "2", 3847 | "minimatch": "^3.1.1", 3848 | "once": "^1.3.0", 3849 | "path-is-absolute": "^1.0.0" 3850 | }, 3851 | "engines": { 3852 | "node": "*" 3853 | }, 3854 | "funding": { 3855 | "url": "https://github.com/sponsors/isaacs" 3856 | } 3857 | }, 3858 | "node_modules/glob-parent": { 3859 | "version": "5.1.2", 3860 | "dev": true, 3861 | "license": "ISC", 3862 | "dependencies": { 3863 | "is-glob": "^4.0.1" 3864 | }, 3865 | "engines": { 3866 | "node": ">= 6" 3867 | } 3868 | }, 3869 | "node_modules/glob-to-regexp": { 3870 | "version": "0.4.1", 3871 | "dev": true, 3872 | "license": "BSD-2-Clause" 3873 | }, 3874 | "node_modules/globals": { 3875 | "version": "11.12.0", 3876 | "dev": true, 3877 | "license": "MIT", 3878 | "engines": { 3879 | "node": ">=4" 3880 | } 3881 | }, 3882 | "node_modules/globalthis": { 3883 | "version": "1.0.4", 3884 | "dev": true, 3885 | "license": "MIT", 3886 | "dependencies": { 3887 | "define-properties": "^1.2.1", 3888 | "gopd": "^1.0.1" 3889 | }, 3890 | "engines": { 3891 | "node": ">= 0.4" 3892 | }, 3893 | "funding": { 3894 | "url": "https://github.com/sponsors/ljharb" 3895 | } 3896 | }, 3897 | "node_modules/gopd": { 3898 | "version": "1.0.1", 3899 | "license": "MIT", 3900 | "dependencies": { 3901 | "get-intrinsic": "^1.1.3" 3902 | }, 3903 | "funding": { 3904 | "url": "https://github.com/sponsors/ljharb" 3905 | } 3906 | }, 3907 | "node_modules/graceful-fs": { 3908 | "version": "4.2.11", 3909 | "dev": true, 3910 | "license": "ISC" 3911 | }, 3912 | "node_modules/handle-thing": { 3913 | "version": "2.0.1", 3914 | "dev": true, 3915 | "license": "MIT" 3916 | }, 3917 | "node_modules/has-bigints": { 3918 | "version": "1.0.2", 3919 | "dev": true, 3920 | "license": "MIT", 3921 | "funding": { 3922 | "url": "https://github.com/sponsors/ljharb" 3923 | } 3924 | }, 3925 | "node_modules/has-flag": { 3926 | "version": "3.0.0", 3927 | "dev": true, 3928 | "license": "MIT", 3929 | "engines": { 3930 | "node": ">=4" 3931 | } 3932 | }, 3933 | "node_modules/has-property-descriptors": { 3934 | "version": "1.0.2", 3935 | "license": "MIT", 3936 | "dependencies": { 3937 | "es-define-property": "^1.0.0" 3938 | }, 3939 | "funding": { 3940 | "url": "https://github.com/sponsors/ljharb" 3941 | } 3942 | }, 3943 | "node_modules/has-proto": { 3944 | "version": "1.0.3", 3945 | "license": "MIT", 3946 | "engines": { 3947 | "node": ">= 0.4" 3948 | }, 3949 | "funding": { 3950 | "url": "https://github.com/sponsors/ljharb" 3951 | } 3952 | }, 3953 | "node_modules/has-symbols": { 3954 | "version": "1.0.3", 3955 | "license": "MIT", 3956 | "engines": { 3957 | "node": ">= 0.4" 3958 | }, 3959 | "funding": { 3960 | "url": "https://github.com/sponsors/ljharb" 3961 | } 3962 | }, 3963 | "node_modules/has-tostringtag": { 3964 | "version": "1.0.2", 3965 | "dev": true, 3966 | "license": "MIT", 3967 | "dependencies": { 3968 | "has-symbols": "^1.0.3" 3969 | }, 3970 | "engines": { 3971 | "node": ">= 0.4" 3972 | }, 3973 | "funding": { 3974 | "url": "https://github.com/sponsors/ljharb" 3975 | } 3976 | }, 3977 | "node_modules/hasown": { 3978 | "version": "2.0.2", 3979 | "license": "MIT", 3980 | "dependencies": { 3981 | "function-bind": "^1.1.2" 3982 | }, 3983 | "engines": { 3984 | "node": ">= 0.4" 3985 | } 3986 | }, 3987 | "node_modules/homedir-polyfill": { 3988 | "version": "1.0.3", 3989 | "dev": true, 3990 | "license": "MIT", 3991 | "dependencies": { 3992 | "parse-passwd": "^1.0.0" 3993 | }, 3994 | "engines": { 3995 | "node": ">=0.10.0" 3996 | } 3997 | }, 3998 | "node_modules/hpack.js": { 3999 | "version": "2.1.6", 4000 | "dev": true, 4001 | "license": "MIT", 4002 | "dependencies": { 4003 | "inherits": "^2.0.1", 4004 | "obuf": "^1.0.0", 4005 | "readable-stream": "^2.0.1", 4006 | "wbuf": "^1.1.0" 4007 | } 4008 | }, 4009 | "node_modules/html-entities": { 4010 | "version": "2.5.2", 4011 | "dev": true, 4012 | "funding": [ 4013 | { 4014 | "type": "github", 4015 | "url": "https://github.com/sponsors/mdevils" 4016 | }, 4017 | { 4018 | "type": "patreon", 4019 | "url": "https://patreon.com/mdevils" 4020 | } 4021 | ], 4022 | "license": "MIT" 4023 | }, 4024 | "node_modules/http-deceiver": { 4025 | "version": "1.2.7", 4026 | "dev": true, 4027 | "license": "MIT" 4028 | }, 4029 | "node_modules/http-errors": { 4030 | "version": "2.0.0", 4031 | "license": "MIT", 4032 | "dependencies": { 4033 | "depd": "2.0.0", 4034 | "inherits": "2.0.4", 4035 | "setprototypeof": "1.2.0", 4036 | "statuses": "2.0.1", 4037 | "toidentifier": "1.0.1" 4038 | }, 4039 | "engines": { 4040 | "node": ">= 0.8" 4041 | } 4042 | }, 4043 | "node_modules/http-parser-js": { 4044 | "version": "0.5.8", 4045 | "dev": true, 4046 | "license": "MIT" 4047 | }, 4048 | "node_modules/http-proxy": { 4049 | "version": "1.18.1", 4050 | "dev": true, 4051 | "license": "MIT", 4052 | "dependencies": { 4053 | "eventemitter3": "^4.0.0", 4054 | "follow-redirects": "^1.0.0", 4055 | "requires-port": "^1.0.0" 4056 | }, 4057 | "engines": { 4058 | "node": ">=8.0.0" 4059 | } 4060 | }, 4061 | "node_modules/http-proxy-middleware": { 4062 | "version": "2.0.7", 4063 | "dev": true, 4064 | "license": "MIT", 4065 | "dependencies": { 4066 | "@types/http-proxy": "^1.17.8", 4067 | "http-proxy": "^1.18.1", 4068 | "is-glob": "^4.0.1", 4069 | "is-plain-obj": "^3.0.0", 4070 | "micromatch": "^4.0.2" 4071 | }, 4072 | "engines": { 4073 | "node": ">=12.0.0" 4074 | }, 4075 | "peerDependencies": { 4076 | "@types/express": "^4.17.13" 4077 | }, 4078 | "peerDependenciesMeta": { 4079 | "@types/express": { 4080 | "optional": true 4081 | } 4082 | } 4083 | }, 4084 | "node_modules/http-proxy-middleware/node_modules/braces": { 4085 | "version": "3.0.3", 4086 | "dev": true, 4087 | "license": "MIT", 4088 | "dependencies": { 4089 | "fill-range": "^7.1.1" 4090 | }, 4091 | "engines": { 4092 | "node": ">=8" 4093 | } 4094 | }, 4095 | "node_modules/http-proxy-middleware/node_modules/fill-range": { 4096 | "version": "7.1.1", 4097 | "dev": true, 4098 | "license": "MIT", 4099 | "dependencies": { 4100 | "to-regex-range": "^5.0.1" 4101 | }, 4102 | "engines": { 4103 | "node": ">=8" 4104 | } 4105 | }, 4106 | "node_modules/http-proxy-middleware/node_modules/is-number": { 4107 | "version": "7.0.0", 4108 | "dev": true, 4109 | "license": "MIT", 4110 | "engines": { 4111 | "node": ">=0.12.0" 4112 | } 4113 | }, 4114 | "node_modules/http-proxy-middleware/node_modules/micromatch": { 4115 | "version": "4.0.8", 4116 | "dev": true, 4117 | "license": "MIT", 4118 | "dependencies": { 4119 | "braces": "^3.0.3", 4120 | "picomatch": "^2.3.1" 4121 | }, 4122 | "engines": { 4123 | "node": ">=8.6" 4124 | } 4125 | }, 4126 | "node_modules/http-proxy-middleware/node_modules/to-regex-range": { 4127 | "version": "5.0.1", 4128 | "dev": true, 4129 | "license": "MIT", 4130 | "dependencies": { 4131 | "is-number": "^7.0.0" 4132 | }, 4133 | "engines": { 4134 | "node": ">=8.0" 4135 | } 4136 | }, 4137 | "node_modules/hyperdyperid": { 4138 | "version": "1.2.0", 4139 | "dev": true, 4140 | "license": "MIT", 4141 | "engines": { 4142 | "node": ">=10.18" 4143 | } 4144 | }, 4145 | "node_modules/iconv-lite": { 4146 | "version": "0.4.24", 4147 | "license": "MIT", 4148 | "dependencies": { 4149 | "safer-buffer": ">= 2.1.2 < 3" 4150 | }, 4151 | "engines": { 4152 | "node": ">=0.10.0" 4153 | } 4154 | }, 4155 | "node_modules/ignore-by-default": { 4156 | "version": "1.0.1", 4157 | "dev": true, 4158 | "license": "ISC" 4159 | }, 4160 | "node_modules/import-local": { 4161 | "version": "3.2.0", 4162 | "dev": true, 4163 | "license": "MIT", 4164 | "dependencies": { 4165 | "pkg-dir": "^4.2.0", 4166 | "resolve-cwd": "^3.0.0" 4167 | }, 4168 | "bin": { 4169 | "import-local-fixture": "fixtures/cli.js" 4170 | }, 4171 | "engines": { 4172 | "node": ">=8" 4173 | }, 4174 | "funding": { 4175 | "url": "https://github.com/sponsors/sindresorhus" 4176 | } 4177 | }, 4178 | "node_modules/import-local/node_modules/find-up": { 4179 | "version": "4.1.0", 4180 | "dev": true, 4181 | "license": "MIT", 4182 | "dependencies": { 4183 | "locate-path": "^5.0.0", 4184 | "path-exists": "^4.0.0" 4185 | }, 4186 | "engines": { 4187 | "node": ">=8" 4188 | } 4189 | }, 4190 | "node_modules/import-local/node_modules/locate-path": { 4191 | "version": "5.0.0", 4192 | "dev": true, 4193 | "license": "MIT", 4194 | "dependencies": { 4195 | "p-locate": "^4.1.0" 4196 | }, 4197 | "engines": { 4198 | "node": ">=8" 4199 | } 4200 | }, 4201 | "node_modules/import-local/node_modules/p-locate": { 4202 | "version": "4.1.0", 4203 | "dev": true, 4204 | "license": "MIT", 4205 | "dependencies": { 4206 | "p-limit": "^2.2.0" 4207 | }, 4208 | "engines": { 4209 | "node": ">=8" 4210 | } 4211 | }, 4212 | "node_modules/import-local/node_modules/pkg-dir": { 4213 | "version": "4.2.0", 4214 | "dev": true, 4215 | "license": "MIT", 4216 | "dependencies": { 4217 | "find-up": "^4.0.0" 4218 | }, 4219 | "engines": { 4220 | "node": ">=8" 4221 | } 4222 | }, 4223 | "node_modules/inflight": { 4224 | "version": "1.0.6", 4225 | "dev": true, 4226 | "license": "ISC", 4227 | "dependencies": { 4228 | "once": "^1.3.0", 4229 | "wrappy": "1" 4230 | } 4231 | }, 4232 | "node_modules/inherits": { 4233 | "version": "2.0.4", 4234 | "license": "ISC" 4235 | }, 4236 | "node_modules/internal-slot": { 4237 | "version": "1.0.7", 4238 | "dev": true, 4239 | "license": "MIT", 4240 | "dependencies": { 4241 | "es-errors": "^1.3.0", 4242 | "hasown": "^2.0.0", 4243 | "side-channel": "^1.0.4" 4244 | }, 4245 | "engines": { 4246 | "node": ">= 0.4" 4247 | } 4248 | }, 4249 | "node_modules/interpret": { 4250 | "version": "3.1.1", 4251 | "dev": true, 4252 | "license": "MIT", 4253 | "engines": { 4254 | "node": ">=10.13.0" 4255 | } 4256 | }, 4257 | "node_modules/ipaddr.js": { 4258 | "version": "2.2.0", 4259 | "dev": true, 4260 | "license": "MIT", 4261 | "engines": { 4262 | "node": ">= 10" 4263 | } 4264 | }, 4265 | "node_modules/is-array-buffer": { 4266 | "version": "3.0.4", 4267 | "dev": true, 4268 | "license": "MIT", 4269 | "dependencies": { 4270 | "call-bind": "^1.0.2", 4271 | "get-intrinsic": "^1.2.1" 4272 | }, 4273 | "engines": { 4274 | "node": ">= 0.4" 4275 | }, 4276 | "funding": { 4277 | "url": "https://github.com/sponsors/ljharb" 4278 | } 4279 | }, 4280 | "node_modules/is-bigint": { 4281 | "version": "1.0.4", 4282 | "dev": true, 4283 | "license": "MIT", 4284 | "dependencies": { 4285 | "has-bigints": "^1.0.1" 4286 | }, 4287 | "funding": { 4288 | "url": "https://github.com/sponsors/ljharb" 4289 | } 4290 | }, 4291 | "node_modules/is-binary-path": { 4292 | "version": "2.1.0", 4293 | "dev": true, 4294 | "license": "MIT", 4295 | "dependencies": { 4296 | "binary-extensions": "^2.0.0" 4297 | }, 4298 | "engines": { 4299 | "node": ">=8" 4300 | } 4301 | }, 4302 | "node_modules/is-boolean-object": { 4303 | "version": "1.1.2", 4304 | "dev": true, 4305 | "license": "MIT", 4306 | "dependencies": { 4307 | "call-bind": "^1.0.2", 4308 | "has-tostringtag": "^1.0.0" 4309 | }, 4310 | "engines": { 4311 | "node": ">= 0.4" 4312 | }, 4313 | "funding": { 4314 | "url": "https://github.com/sponsors/ljharb" 4315 | } 4316 | }, 4317 | "node_modules/is-callable": { 4318 | "version": "1.2.7", 4319 | "dev": true, 4320 | "license": "MIT", 4321 | "engines": { 4322 | "node": ">= 0.4" 4323 | }, 4324 | "funding": { 4325 | "url": "https://github.com/sponsors/ljharb" 4326 | } 4327 | }, 4328 | "node_modules/is-core-module": { 4329 | "version": "2.15.1", 4330 | "dev": true, 4331 | "license": "MIT", 4332 | "dependencies": { 4333 | "hasown": "^2.0.2" 4334 | }, 4335 | "engines": { 4336 | "node": ">= 0.4" 4337 | }, 4338 | "funding": { 4339 | "url": "https://github.com/sponsors/ljharb" 4340 | } 4341 | }, 4342 | "node_modules/is-data-view": { 4343 | "version": "1.0.1", 4344 | "dev": true, 4345 | "license": "MIT", 4346 | "dependencies": { 4347 | "is-typed-array": "^1.1.13" 4348 | }, 4349 | "engines": { 4350 | "node": ">= 0.4" 4351 | }, 4352 | "funding": { 4353 | "url": "https://github.com/sponsors/ljharb" 4354 | } 4355 | }, 4356 | "node_modules/is-date-object": { 4357 | "version": "1.0.5", 4358 | "dev": true, 4359 | "license": "MIT", 4360 | "dependencies": { 4361 | "has-tostringtag": "^1.0.0" 4362 | }, 4363 | "engines": { 4364 | "node": ">= 0.4" 4365 | }, 4366 | "funding": { 4367 | "url": "https://github.com/sponsors/ljharb" 4368 | } 4369 | }, 4370 | "node_modules/is-docker": { 4371 | "version": "3.0.0", 4372 | "dev": true, 4373 | "license": "MIT", 4374 | "bin": { 4375 | "is-docker": "cli.js" 4376 | }, 4377 | "engines": { 4378 | "node": "^12.20.0 || ^14.13.1 || >=16.0.0" 4379 | }, 4380 | "funding": { 4381 | "url": "https://github.com/sponsors/sindresorhus" 4382 | } 4383 | }, 4384 | "node_modules/is-extglob": { 4385 | "version": "2.1.1", 4386 | "dev": true, 4387 | "license": "MIT", 4388 | "engines": { 4389 | "node": ">=0.10.0" 4390 | } 4391 | }, 4392 | "node_modules/is-glob": { 4393 | "version": "4.0.3", 4394 | "dev": true, 4395 | "license": "MIT", 4396 | "dependencies": { 4397 | "is-extglob": "^2.1.1" 4398 | }, 4399 | "engines": { 4400 | "node": ">=0.10.0" 4401 | } 4402 | }, 4403 | "node_modules/is-inside-container": { 4404 | "version": "1.0.0", 4405 | "dev": true, 4406 | "license": "MIT", 4407 | "dependencies": { 4408 | "is-docker": "^3.0.0" 4409 | }, 4410 | "bin": { 4411 | "is-inside-container": "cli.js" 4412 | }, 4413 | "engines": { 4414 | "node": ">=14.16" 4415 | }, 4416 | "funding": { 4417 | "url": "https://github.com/sponsors/sindresorhus" 4418 | } 4419 | }, 4420 | "node_modules/is-negative-zero": { 4421 | "version": "2.0.3", 4422 | "dev": true, 4423 | "license": "MIT", 4424 | "engines": { 4425 | "node": ">= 0.4" 4426 | }, 4427 | "funding": { 4428 | "url": "https://github.com/sponsors/ljharb" 4429 | } 4430 | }, 4431 | "node_modules/is-network-error": { 4432 | "version": "1.1.0", 4433 | "dev": true, 4434 | "license": "MIT", 4435 | "engines": { 4436 | "node": ">=16" 4437 | }, 4438 | "funding": { 4439 | "url": "https://github.com/sponsors/sindresorhus" 4440 | } 4441 | }, 4442 | "node_modules/is-number-object": { 4443 | "version": "1.0.7", 4444 | "dev": true, 4445 | "license": "MIT", 4446 | "dependencies": { 4447 | "has-tostringtag": "^1.0.0" 4448 | }, 4449 | "engines": { 4450 | "node": ">= 0.4" 4451 | }, 4452 | "funding": { 4453 | "url": "https://github.com/sponsors/ljharb" 4454 | } 4455 | }, 4456 | "node_modules/is-plain-obj": { 4457 | "version": "3.0.0", 4458 | "dev": true, 4459 | "license": "MIT", 4460 | "engines": { 4461 | "node": ">=10" 4462 | }, 4463 | "funding": { 4464 | "url": "https://github.com/sponsors/sindresorhus" 4465 | } 4466 | }, 4467 | "node_modules/is-plain-object": { 4468 | "version": "2.0.4", 4469 | "dev": true, 4470 | "license": "MIT", 4471 | "dependencies": { 4472 | "isobject": "^3.0.1" 4473 | }, 4474 | "engines": { 4475 | "node": ">=0.10.0" 4476 | } 4477 | }, 4478 | "node_modules/is-regex": { 4479 | "version": "1.1.4", 4480 | "dev": true, 4481 | "license": "MIT", 4482 | "dependencies": { 4483 | "call-bind": "^1.0.2", 4484 | "has-tostringtag": "^1.0.0" 4485 | }, 4486 | "engines": { 4487 | "node": ">= 0.4" 4488 | }, 4489 | "funding": { 4490 | "url": "https://github.com/sponsors/ljharb" 4491 | } 4492 | }, 4493 | "node_modules/is-shared-array-buffer": { 4494 | "version": "1.0.3", 4495 | "dev": true, 4496 | "license": "MIT", 4497 | "dependencies": { 4498 | "call-bind": "^1.0.7" 4499 | }, 4500 | "engines": { 4501 | "node": ">= 0.4" 4502 | }, 4503 | "funding": { 4504 | "url": "https://github.com/sponsors/ljharb" 4505 | } 4506 | }, 4507 | "node_modules/is-string": { 4508 | "version": "1.0.7", 4509 | "dev": true, 4510 | "license": "MIT", 4511 | "dependencies": { 4512 | "has-tostringtag": "^1.0.0" 4513 | }, 4514 | "engines": { 4515 | "node": ">= 0.4" 4516 | }, 4517 | "funding": { 4518 | "url": "https://github.com/sponsors/ljharb" 4519 | } 4520 | }, 4521 | "node_modules/is-symbol": { 4522 | "version": "1.0.4", 4523 | "dev": true, 4524 | "license": "MIT", 4525 | "dependencies": { 4526 | "has-symbols": "^1.0.2" 4527 | }, 4528 | "engines": { 4529 | "node": ">= 0.4" 4530 | }, 4531 | "funding": { 4532 | "url": "https://github.com/sponsors/ljharb" 4533 | } 4534 | }, 4535 | "node_modules/is-typed-array": { 4536 | "version": "1.1.13", 4537 | "dev": true, 4538 | "license": "MIT", 4539 | "dependencies": { 4540 | "which-typed-array": "^1.1.14" 4541 | }, 4542 | "engines": { 4543 | "node": ">= 0.4" 4544 | }, 4545 | "funding": { 4546 | "url": "https://github.com/sponsors/ljharb" 4547 | } 4548 | }, 4549 | "node_modules/is-weakref": { 4550 | "version": "1.0.2", 4551 | "dev": true, 4552 | "license": "MIT", 4553 | "dependencies": { 4554 | "call-bind": "^1.0.2" 4555 | }, 4556 | "funding": { 4557 | "url": "https://github.com/sponsors/ljharb" 4558 | } 4559 | }, 4560 | "node_modules/is-wsl": { 4561 | "version": "3.1.0", 4562 | "dev": true, 4563 | "license": "MIT", 4564 | "dependencies": { 4565 | "is-inside-container": "^1.0.0" 4566 | }, 4567 | "engines": { 4568 | "node": ">=16" 4569 | }, 4570 | "funding": { 4571 | "url": "https://github.com/sponsors/sindresorhus" 4572 | } 4573 | }, 4574 | "node_modules/isarray": { 4575 | "version": "1.0.0", 4576 | "license": "MIT" 4577 | }, 4578 | "node_modules/isexe": { 4579 | "version": "2.0.0", 4580 | "dev": true, 4581 | "license": "ISC" 4582 | }, 4583 | "node_modules/isobject": { 4584 | "version": "3.0.1", 4585 | "dev": true, 4586 | "license": "MIT", 4587 | "engines": { 4588 | "node": ">=0.10.0" 4589 | } 4590 | }, 4591 | "node_modules/jest-worker": { 4592 | "version": "27.5.1", 4593 | "dev": true, 4594 | "license": "MIT", 4595 | "dependencies": { 4596 | "@types/node": "*", 4597 | "merge-stream": "^2.0.0", 4598 | "supports-color": "^8.0.0" 4599 | }, 4600 | "engines": { 4601 | "node": ">= 10.13.0" 4602 | } 4603 | }, 4604 | "node_modules/jest-worker/node_modules/has-flag": { 4605 | "version": "4.0.0", 4606 | "dev": true, 4607 | "license": "MIT", 4608 | "engines": { 4609 | "node": ">=8" 4610 | } 4611 | }, 4612 | "node_modules/jest-worker/node_modules/supports-color": { 4613 | "version": "8.1.1", 4614 | "dev": true, 4615 | "license": "MIT", 4616 | "dependencies": { 4617 | "has-flag": "^4.0.0" 4618 | }, 4619 | "engines": { 4620 | "node": ">=10" 4621 | }, 4622 | "funding": { 4623 | "url": "https://github.com/chalk/supports-color?sponsor=1" 4624 | } 4625 | }, 4626 | "node_modules/js-tokens": { 4627 | "version": "4.0.0", 4628 | "license": "MIT" 4629 | }, 4630 | "node_modules/jsesc": { 4631 | "version": "3.0.2", 4632 | "dev": true, 4633 | "license": "MIT", 4634 | "bin": { 4635 | "jsesc": "bin/jsesc" 4636 | }, 4637 | "engines": { 4638 | "node": ">=6" 4639 | } 4640 | }, 4641 | "node_modules/json-parse-even-better-errors": { 4642 | "version": "2.3.1", 4643 | "dev": true, 4644 | "license": "MIT" 4645 | }, 4646 | "node_modules/json-schema-traverse": { 4647 | "version": "1.0.0", 4648 | "dev": true, 4649 | "license": "MIT" 4650 | }, 4651 | "node_modules/json5": { 4652 | "version": "2.2.3", 4653 | "dev": true, 4654 | "license": "MIT", 4655 | "bin": { 4656 | "json5": "lib/cli.js" 4657 | }, 4658 | "engines": { 4659 | "node": ">=6" 4660 | } 4661 | }, 4662 | "node_modules/launch-editor": { 4663 | "version": "2.9.1", 4664 | "dev": true, 4665 | "license": "MIT", 4666 | "dependencies": { 4667 | "picocolors": "^1.0.0", 4668 | "shell-quote": "^1.8.1" 4669 | } 4670 | }, 4671 | "node_modules/loader-runner": { 4672 | "version": "4.3.0", 4673 | "dev": true, 4674 | "license": "MIT", 4675 | "engines": { 4676 | "node": ">=6.11.5" 4677 | } 4678 | }, 4679 | "node_modules/locate-path": { 4680 | "version": "3.0.0", 4681 | "dev": true, 4682 | "license": "MIT", 4683 | "dependencies": { 4684 | "p-locate": "^3.0.0", 4685 | "path-exists": "^3.0.0" 4686 | }, 4687 | "engines": { 4688 | "node": ">=6" 4689 | } 4690 | }, 4691 | "node_modules/locate-path/node_modules/path-exists": { 4692 | "version": "3.0.0", 4693 | "dev": true, 4694 | "license": "MIT", 4695 | "engines": { 4696 | "node": ">=4" 4697 | } 4698 | }, 4699 | "node_modules/lodash": { 4700 | "version": "4.17.21", 4701 | "license": "MIT" 4702 | }, 4703 | "node_modules/lodash.debounce": { 4704 | "version": "4.0.8", 4705 | "dev": true, 4706 | "license": "MIT" 4707 | }, 4708 | "node_modules/loose-envify": { 4709 | "version": "1.4.0", 4710 | "license": "MIT", 4711 | "dependencies": { 4712 | "js-tokens": "^3.0.0 || ^4.0.0" 4713 | }, 4714 | "bin": { 4715 | "loose-envify": "cli.js" 4716 | } 4717 | }, 4718 | "node_modules/lru-cache": { 4719 | "version": "5.1.1", 4720 | "dev": true, 4721 | "license": "ISC", 4722 | "dependencies": { 4723 | "yallist": "^3.0.2" 4724 | } 4725 | }, 4726 | "node_modules/make-dir": { 4727 | "version": "2.1.0", 4728 | "dev": true, 4729 | "license": "MIT", 4730 | "dependencies": { 4731 | "pify": "^4.0.1", 4732 | "semver": "^5.6.0" 4733 | }, 4734 | "engines": { 4735 | "node": ">=6" 4736 | } 4737 | }, 4738 | "node_modules/make-dir/node_modules/semver": { 4739 | "version": "5.7.2", 4740 | "dev": true, 4741 | "license": "ISC", 4742 | "bin": { 4743 | "semver": "bin/semver" 4744 | } 4745 | }, 4746 | "node_modules/media-typer": { 4747 | "version": "0.3.0", 4748 | "license": "MIT", 4749 | "engines": { 4750 | "node": ">= 0.6" 4751 | } 4752 | }, 4753 | "node_modules/memfs": { 4754 | "version": "4.12.0", 4755 | "dev": true, 4756 | "license": "Apache-2.0", 4757 | "dependencies": { 4758 | "@jsonjoy.com/json-pack": "^1.0.3", 4759 | "@jsonjoy.com/util": "^1.3.0", 4760 | "tree-dump": "^1.0.1", 4761 | "tslib": "^2.0.0" 4762 | }, 4763 | "engines": { 4764 | "node": ">= 4.0.0" 4765 | }, 4766 | "funding": { 4767 | "type": "github", 4768 | "url": "https://github.com/sponsors/streamich" 4769 | } 4770 | }, 4771 | "node_modules/merge-descriptors": { 4772 | "version": "1.0.3", 4773 | "license": "MIT", 4774 | "funding": { 4775 | "url": "https://github.com/sponsors/sindresorhus" 4776 | } 4777 | }, 4778 | "node_modules/merge-stream": { 4779 | "version": "2.0.0", 4780 | "dev": true, 4781 | "license": "MIT" 4782 | }, 4783 | "node_modules/methods": { 4784 | "version": "1.1.2", 4785 | "license": "MIT", 4786 | "engines": { 4787 | "node": ">= 0.6" 4788 | } 4789 | }, 4790 | "node_modules/mime": { 4791 | "version": "1.6.0", 4792 | "license": "MIT", 4793 | "bin": { 4794 | "mime": "cli.js" 4795 | }, 4796 | "engines": { 4797 | "node": ">=4" 4798 | } 4799 | }, 4800 | "node_modules/mime-db": { 4801 | "version": "1.52.0", 4802 | "license": "MIT", 4803 | "engines": { 4804 | "node": ">= 0.6" 4805 | } 4806 | }, 4807 | "node_modules/mime-types": { 4808 | "version": "2.1.35", 4809 | "license": "MIT", 4810 | "dependencies": { 4811 | "mime-db": "1.52.0" 4812 | }, 4813 | "engines": { 4814 | "node": ">= 0.6" 4815 | } 4816 | }, 4817 | "node_modules/minimalistic-assert": { 4818 | "version": "1.0.1", 4819 | "dev": true, 4820 | "license": "ISC" 4821 | }, 4822 | "node_modules/minimatch": { 4823 | "version": "3.1.2", 4824 | "dev": true, 4825 | "license": "ISC", 4826 | "dependencies": { 4827 | "brace-expansion": "^1.1.7" 4828 | }, 4829 | "engines": { 4830 | "node": "*" 4831 | } 4832 | }, 4833 | "node_modules/minimist": { 4834 | "version": "1.2.8", 4835 | "license": "MIT", 4836 | "funding": { 4837 | "url": "https://github.com/sponsors/ljharb" 4838 | } 4839 | }, 4840 | "node_modules/mkdirp": { 4841 | "version": "0.5.6", 4842 | "license": "MIT", 4843 | "dependencies": { 4844 | "minimist": "^1.2.6" 4845 | }, 4846 | "bin": { 4847 | "mkdirp": "bin/cmd.js" 4848 | } 4849 | }, 4850 | "node_modules/morgan": { 4851 | "version": "1.10.0", 4852 | "license": "MIT", 4853 | "dependencies": { 4854 | "basic-auth": "~2.0.1", 4855 | "debug": "2.6.9", 4856 | "depd": "~2.0.0", 4857 | "on-finished": "~2.3.0", 4858 | "on-headers": "~1.0.2" 4859 | }, 4860 | "engines": { 4861 | "node": ">= 0.8.0" 4862 | } 4863 | }, 4864 | "node_modules/morgan/node_modules/on-finished": { 4865 | "version": "2.3.0", 4866 | "license": "MIT", 4867 | "dependencies": { 4868 | "ee-first": "1.1.1" 4869 | }, 4870 | "engines": { 4871 | "node": ">= 0.8" 4872 | } 4873 | }, 4874 | "node_modules/ms": { 4875 | "version": "2.1.3", 4876 | "license": "MIT" 4877 | }, 4878 | "node_modules/multer": { 4879 | "version": "1.4.5-lts.1", 4880 | "license": "MIT", 4881 | "dependencies": { 4882 | "append-field": "^1.0.0", 4883 | "busboy": "^1.0.0", 4884 | "concat-stream": "^1.5.2", 4885 | "mkdirp": "^0.5.4", 4886 | "object-assign": "^4.1.1", 4887 | "type-is": "^1.6.4", 4888 | "xtend": "^4.0.0" 4889 | }, 4890 | "engines": { 4891 | "node": ">= 6.0.0" 4892 | } 4893 | }, 4894 | "node_modules/multicast-dns": { 4895 | "version": "7.2.5", 4896 | "dev": true, 4897 | "license": "MIT", 4898 | "dependencies": { 4899 | "dns-packet": "^5.2.2", 4900 | "thunky": "^1.0.2" 4901 | }, 4902 | "bin": { 4903 | "multicast-dns": "cli.js" 4904 | } 4905 | }, 4906 | "node_modules/negotiator": { 4907 | "version": "0.6.3", 4908 | "license": "MIT", 4909 | "engines": { 4910 | "node": ">= 0.6" 4911 | } 4912 | }, 4913 | "node_modules/neo-async": { 4914 | "version": "2.6.2", 4915 | "dev": true, 4916 | "license": "MIT" 4917 | }, 4918 | "node_modules/node-environment-flags": { 4919 | "version": "1.0.6", 4920 | "dev": true, 4921 | "license": "Apache-2.0", 4922 | "dependencies": { 4923 | "object.getownpropertydescriptors": "^2.0.3", 4924 | "semver": "^5.7.0" 4925 | } 4926 | }, 4927 | "node_modules/node-environment-flags/node_modules/semver": { 4928 | "version": "5.7.2", 4929 | "dev": true, 4930 | "license": "ISC", 4931 | "bin": { 4932 | "semver": "bin/semver" 4933 | } 4934 | }, 4935 | "node_modules/node-forge": { 4936 | "version": "1.3.1", 4937 | "dev": true, 4938 | "license": "(BSD-3-Clause OR GPL-2.0)", 4939 | "engines": { 4940 | "node": ">= 6.13.0" 4941 | } 4942 | }, 4943 | "node_modules/node-releases": { 4944 | "version": "2.0.18", 4945 | "dev": true, 4946 | "license": "MIT" 4947 | }, 4948 | "node_modules/nodemon": { 4949 | "version": "3.1.7", 4950 | "resolved": "https://registry.npmjs.org/nodemon/-/nodemon-3.1.7.tgz", 4951 | "integrity": "sha512-hLj7fuMow6f0lbB0cD14Lz2xNjwsyruH251Pk4t/yIitCFJbmY1myuLlHm/q06aST4jg6EgAh74PIBBrRqpVAQ==", 4952 | "dev": true, 4953 | "dependencies": { 4954 | "chokidar": "^3.5.2", 4955 | "debug": "^4", 4956 | "ignore-by-default": "^1.0.1", 4957 | "minimatch": "^3.1.2", 4958 | "pstree.remy": "^1.1.8", 4959 | "semver": "^7.5.3", 4960 | "simple-update-notifier": "^2.0.0", 4961 | "supports-color": "^5.5.0", 4962 | "touch": "^3.1.0", 4963 | "undefsafe": "^2.0.5" 4964 | }, 4965 | "bin": { 4966 | "nodemon": "bin/nodemon.js" 4967 | }, 4968 | "engines": { 4969 | "node": ">=10" 4970 | }, 4971 | "funding": { 4972 | "type": "opencollective", 4973 | "url": "https://opencollective.com/nodemon" 4974 | } 4975 | }, 4976 | "node_modules/nodemon/node_modules/debug": { 4977 | "version": "4.3.7", 4978 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz", 4979 | "integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==", 4980 | "dev": true, 4981 | "dependencies": { 4982 | "ms": "^2.1.3" 4983 | }, 4984 | "engines": { 4985 | "node": ">=6.0" 4986 | }, 4987 | "peerDependenciesMeta": { 4988 | "supports-color": { 4989 | "optional": true 4990 | } 4991 | } 4992 | }, 4993 | "node_modules/nodemon/node_modules/semver": { 4994 | "version": "7.6.3", 4995 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", 4996 | "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", 4997 | "dev": true, 4998 | "bin": { 4999 | "semver": "bin/semver.js" 5000 | }, 5001 | "engines": { 5002 | "node": ">=10" 5003 | } 5004 | }, 5005 | "node_modules/normalize-path": { 5006 | "version": "3.0.0", 5007 | "dev": true, 5008 | "license": "MIT", 5009 | "engines": { 5010 | "node": ">=0.10.0" 5011 | } 5012 | }, 5013 | "node_modules/object-assign": { 5014 | "version": "4.1.1", 5015 | "license": "MIT", 5016 | "engines": { 5017 | "node": ">=0.10.0" 5018 | } 5019 | }, 5020 | "node_modules/object-inspect": { 5021 | "version": "1.13.2", 5022 | "license": "MIT", 5023 | "engines": { 5024 | "node": ">= 0.4" 5025 | }, 5026 | "funding": { 5027 | "url": "https://github.com/sponsors/ljharb" 5028 | } 5029 | }, 5030 | "node_modules/object-keys": { 5031 | "version": "1.1.1", 5032 | "dev": true, 5033 | "license": "MIT", 5034 | "engines": { 5035 | "node": ">= 0.4" 5036 | } 5037 | }, 5038 | "node_modules/object.assign": { 5039 | "version": "4.1.5", 5040 | "dev": true, 5041 | "license": "MIT", 5042 | "dependencies": { 5043 | "call-bind": "^1.0.5", 5044 | "define-properties": "^1.2.1", 5045 | "has-symbols": "^1.0.3", 5046 | "object-keys": "^1.1.1" 5047 | }, 5048 | "engines": { 5049 | "node": ">= 0.4" 5050 | }, 5051 | "funding": { 5052 | "url": "https://github.com/sponsors/ljharb" 5053 | } 5054 | }, 5055 | "node_modules/object.getownpropertydescriptors": { 5056 | "version": "2.1.8", 5057 | "dev": true, 5058 | "license": "MIT", 5059 | "dependencies": { 5060 | "array.prototype.reduce": "^1.0.6", 5061 | "call-bind": "^1.0.7", 5062 | "define-properties": "^1.2.1", 5063 | "es-abstract": "^1.23.2", 5064 | "es-object-atoms": "^1.0.0", 5065 | "gopd": "^1.0.1", 5066 | "safe-array-concat": "^1.1.2" 5067 | }, 5068 | "engines": { 5069 | "node": ">= 0.8" 5070 | }, 5071 | "funding": { 5072 | "url": "https://github.com/sponsors/ljharb" 5073 | } 5074 | }, 5075 | "node_modules/obuf": { 5076 | "version": "1.1.2", 5077 | "dev": true, 5078 | "license": "MIT" 5079 | }, 5080 | "node_modules/on-finished": { 5081 | "version": "2.4.1", 5082 | "license": "MIT", 5083 | "dependencies": { 5084 | "ee-first": "1.1.1" 5085 | }, 5086 | "engines": { 5087 | "node": ">= 0.8" 5088 | } 5089 | }, 5090 | "node_modules/on-headers": { 5091 | "version": "1.0.2", 5092 | "license": "MIT", 5093 | "engines": { 5094 | "node": ">= 0.8" 5095 | } 5096 | }, 5097 | "node_modules/once": { 5098 | "version": "1.4.0", 5099 | "dev": true, 5100 | "license": "ISC", 5101 | "dependencies": { 5102 | "wrappy": "1" 5103 | } 5104 | }, 5105 | "node_modules/open": { 5106 | "version": "10.1.0", 5107 | "dev": true, 5108 | "license": "MIT", 5109 | "dependencies": { 5110 | "default-browser": "^5.2.1", 5111 | "define-lazy-prop": "^3.0.0", 5112 | "is-inside-container": "^1.0.0", 5113 | "is-wsl": "^3.1.0" 5114 | }, 5115 | "engines": { 5116 | "node": ">=18" 5117 | }, 5118 | "funding": { 5119 | "url": "https://github.com/sponsors/sindresorhus" 5120 | } 5121 | }, 5122 | "node_modules/p-limit": { 5123 | "version": "2.3.0", 5124 | "dev": true, 5125 | "license": "MIT", 5126 | "dependencies": { 5127 | "p-try": "^2.0.0" 5128 | }, 5129 | "engines": { 5130 | "node": ">=6" 5131 | }, 5132 | "funding": { 5133 | "url": "https://github.com/sponsors/sindresorhus" 5134 | } 5135 | }, 5136 | "node_modules/p-locate": { 5137 | "version": "3.0.0", 5138 | "dev": true, 5139 | "license": "MIT", 5140 | "dependencies": { 5141 | "p-limit": "^2.0.0" 5142 | }, 5143 | "engines": { 5144 | "node": ">=6" 5145 | } 5146 | }, 5147 | "node_modules/p-retry": { 5148 | "version": "6.2.0", 5149 | "dev": true, 5150 | "license": "MIT", 5151 | "dependencies": { 5152 | "@types/retry": "0.12.2", 5153 | "is-network-error": "^1.0.0", 5154 | "retry": "^0.13.1" 5155 | }, 5156 | "engines": { 5157 | "node": ">=16.17" 5158 | }, 5159 | "funding": { 5160 | "url": "https://github.com/sponsors/sindresorhus" 5161 | } 5162 | }, 5163 | "node_modules/p-try": { 5164 | "version": "2.2.0", 5165 | "dev": true, 5166 | "license": "MIT", 5167 | "engines": { 5168 | "node": ">=6" 5169 | } 5170 | }, 5171 | "node_modules/parse-passwd": { 5172 | "version": "1.0.0", 5173 | "dev": true, 5174 | "license": "MIT", 5175 | "engines": { 5176 | "node": ">=0.10.0" 5177 | } 5178 | }, 5179 | "node_modules/parseurl": { 5180 | "version": "1.3.3", 5181 | "license": "MIT", 5182 | "engines": { 5183 | "node": ">= 0.8" 5184 | } 5185 | }, 5186 | "node_modules/path-exists": { 5187 | "version": "4.0.0", 5188 | "dev": true, 5189 | "license": "MIT", 5190 | "engines": { 5191 | "node": ">=8" 5192 | } 5193 | }, 5194 | "node_modules/path-is-absolute": { 5195 | "version": "1.0.1", 5196 | "dev": true, 5197 | "license": "MIT", 5198 | "engines": { 5199 | "node": ">=0.10.0" 5200 | } 5201 | }, 5202 | "node_modules/path-key": { 5203 | "version": "3.1.1", 5204 | "dev": true, 5205 | "license": "MIT", 5206 | "engines": { 5207 | "node": ">=8" 5208 | } 5209 | }, 5210 | "node_modules/path-parse": { 5211 | "version": "1.0.7", 5212 | "dev": true, 5213 | "license": "MIT" 5214 | }, 5215 | "node_modules/path-to-regexp": { 5216 | "version": "0.1.10", 5217 | "license": "MIT" 5218 | }, 5219 | "node_modules/picocolors": { 5220 | "version": "1.1.0", 5221 | "dev": true, 5222 | "license": "ISC" 5223 | }, 5224 | "node_modules/picomatch": { 5225 | "version": "2.3.1", 5226 | "dev": true, 5227 | "license": "MIT", 5228 | "engines": { 5229 | "node": ">=8.6" 5230 | }, 5231 | "funding": { 5232 | "url": "https://github.com/sponsors/jonschlinkert" 5233 | } 5234 | }, 5235 | "node_modules/pify": { 5236 | "version": "4.0.1", 5237 | "dev": true, 5238 | "license": "MIT", 5239 | "engines": { 5240 | "node": ">=6" 5241 | } 5242 | }, 5243 | "node_modules/pirates": { 5244 | "version": "4.0.6", 5245 | "dev": true, 5246 | "license": "MIT", 5247 | "engines": { 5248 | "node": ">= 6" 5249 | } 5250 | }, 5251 | "node_modules/pkg-dir": { 5252 | "version": "3.0.0", 5253 | "dev": true, 5254 | "license": "MIT", 5255 | "dependencies": { 5256 | "find-up": "^3.0.0" 5257 | }, 5258 | "engines": { 5259 | "node": ">=6" 5260 | } 5261 | }, 5262 | "node_modules/possible-typed-array-names": { 5263 | "version": "1.0.0", 5264 | "dev": true, 5265 | "license": "MIT", 5266 | "engines": { 5267 | "node": ">= 0.4" 5268 | } 5269 | }, 5270 | "node_modules/process-nextick-args": { 5271 | "version": "2.0.1", 5272 | "license": "MIT" 5273 | }, 5274 | "node_modules/prop-types": { 5275 | "version": "15.8.1", 5276 | "license": "MIT", 5277 | "dependencies": { 5278 | "loose-envify": "^1.4.0", 5279 | "object-assign": "^4.1.1", 5280 | "react-is": "^16.13.1" 5281 | } 5282 | }, 5283 | "node_modules/proxy-addr": { 5284 | "version": "2.0.7", 5285 | "license": "MIT", 5286 | "dependencies": { 5287 | "forwarded": "0.2.0", 5288 | "ipaddr.js": "1.9.1" 5289 | }, 5290 | "engines": { 5291 | "node": ">= 0.10" 5292 | } 5293 | }, 5294 | "node_modules/proxy-addr/node_modules/ipaddr.js": { 5295 | "version": "1.9.1", 5296 | "license": "MIT", 5297 | "engines": { 5298 | "node": ">= 0.10" 5299 | } 5300 | }, 5301 | "node_modules/proxy-from-env": { 5302 | "version": "1.1.0", 5303 | "license": "MIT" 5304 | }, 5305 | "node_modules/pstree.remy": { 5306 | "version": "1.1.8", 5307 | "dev": true, 5308 | "license": "MIT" 5309 | }, 5310 | "node_modules/punycode": { 5311 | "version": "2.3.1", 5312 | "dev": true, 5313 | "license": "MIT", 5314 | "engines": { 5315 | "node": ">=6" 5316 | } 5317 | }, 5318 | "node_modules/q": { 5319 | "version": "1.5.1", 5320 | "license": "MIT", 5321 | "engines": { 5322 | "node": ">=0.6.0", 5323 | "teleport": ">=0.2.0" 5324 | } 5325 | }, 5326 | "node_modules/qs": { 5327 | "version": "6.13.0", 5328 | "license": "BSD-3-Clause", 5329 | "dependencies": { 5330 | "side-channel": "^1.0.6" 5331 | }, 5332 | "engines": { 5333 | "node": ">=0.6" 5334 | }, 5335 | "funding": { 5336 | "url": "https://github.com/sponsors/ljharb" 5337 | } 5338 | }, 5339 | "node_modules/randombytes": { 5340 | "version": "2.1.0", 5341 | "dev": true, 5342 | "license": "MIT", 5343 | "dependencies": { 5344 | "safe-buffer": "^5.1.0" 5345 | } 5346 | }, 5347 | "node_modules/range-parser": { 5348 | "version": "1.2.1", 5349 | "license": "MIT", 5350 | "engines": { 5351 | "node": ">= 0.6" 5352 | } 5353 | }, 5354 | "node_modules/raw-body": { 5355 | "version": "2.5.2", 5356 | "license": "MIT", 5357 | "dependencies": { 5358 | "bytes": "3.1.2", 5359 | "http-errors": "2.0.0", 5360 | "iconv-lite": "0.4.24", 5361 | "unpipe": "1.0.0" 5362 | }, 5363 | "engines": { 5364 | "node": ">= 0.8" 5365 | } 5366 | }, 5367 | "node_modules/react": { 5368 | "version": "16.14.0", 5369 | "license": "MIT", 5370 | "dependencies": { 5371 | "loose-envify": "^1.1.0", 5372 | "object-assign": "^4.1.1", 5373 | "prop-types": "^15.6.2" 5374 | }, 5375 | "engines": { 5376 | "node": ">=0.10.0" 5377 | } 5378 | }, 5379 | "node_modules/react-dom": { 5380 | "version": "16.14.0", 5381 | "license": "MIT", 5382 | "dependencies": { 5383 | "loose-envify": "^1.1.0", 5384 | "object-assign": "^4.1.1", 5385 | "prop-types": "^15.6.2", 5386 | "scheduler": "^0.19.1" 5387 | }, 5388 | "peerDependencies": { 5389 | "react": "^16.14.0" 5390 | } 5391 | }, 5392 | "node_modules/react-dropzone": { 5393 | "version": "4.3.0", 5394 | "license": "MIT", 5395 | "dependencies": { 5396 | "attr-accept": "^1.1.3", 5397 | "prop-types": "^15.5.7" 5398 | }, 5399 | "peerDependencies": { 5400 | "react": ">=0.14.0" 5401 | } 5402 | }, 5403 | "node_modules/react-is": { 5404 | "version": "16.13.1", 5405 | "license": "MIT" 5406 | }, 5407 | "node_modules/readable-stream": { 5408 | "version": "2.3.8", 5409 | "license": "MIT", 5410 | "dependencies": { 5411 | "core-util-is": "~1.0.0", 5412 | "inherits": "~2.0.3", 5413 | "isarray": "~1.0.0", 5414 | "process-nextick-args": "~2.0.0", 5415 | "safe-buffer": "~5.1.1", 5416 | "string_decoder": "~1.1.1", 5417 | "util-deprecate": "~1.0.1" 5418 | } 5419 | }, 5420 | "node_modules/readable-stream/node_modules/safe-buffer": { 5421 | "version": "5.1.2", 5422 | "license": "MIT" 5423 | }, 5424 | "node_modules/readdirp": { 5425 | "version": "3.6.0", 5426 | "dev": true, 5427 | "license": "MIT", 5428 | "dependencies": { 5429 | "picomatch": "^2.2.1" 5430 | }, 5431 | "engines": { 5432 | "node": ">=8.10.0" 5433 | } 5434 | }, 5435 | "node_modules/rechoir": { 5436 | "version": "0.8.0", 5437 | "dev": true, 5438 | "license": "MIT", 5439 | "dependencies": { 5440 | "resolve": "^1.20.0" 5441 | }, 5442 | "engines": { 5443 | "node": ">= 10.13.0" 5444 | } 5445 | }, 5446 | "node_modules/regenerate": { 5447 | "version": "1.4.2", 5448 | "dev": true, 5449 | "license": "MIT" 5450 | }, 5451 | "node_modules/regenerate-unicode-properties": { 5452 | "version": "10.2.0", 5453 | "dev": true, 5454 | "license": "MIT", 5455 | "dependencies": { 5456 | "regenerate": "^1.4.2" 5457 | }, 5458 | "engines": { 5459 | "node": ">=4" 5460 | } 5461 | }, 5462 | "node_modules/regenerator-runtime": { 5463 | "version": "0.14.1", 5464 | "dev": true, 5465 | "license": "MIT" 5466 | }, 5467 | "node_modules/regenerator-transform": { 5468 | "version": "0.15.2", 5469 | "dev": true, 5470 | "license": "MIT", 5471 | "dependencies": { 5472 | "@babel/runtime": "^7.8.4" 5473 | } 5474 | }, 5475 | "node_modules/regexp.prototype.flags": { 5476 | "version": "1.5.3", 5477 | "dev": true, 5478 | "license": "MIT", 5479 | "dependencies": { 5480 | "call-bind": "^1.0.7", 5481 | "define-properties": "^1.2.1", 5482 | "es-errors": "^1.3.0", 5483 | "set-function-name": "^2.0.2" 5484 | }, 5485 | "engines": { 5486 | "node": ">= 0.4" 5487 | }, 5488 | "funding": { 5489 | "url": "https://github.com/sponsors/ljharb" 5490 | } 5491 | }, 5492 | "node_modules/regexpu-core": { 5493 | "version": "6.1.1", 5494 | "dev": true, 5495 | "license": "MIT", 5496 | "dependencies": { 5497 | "regenerate": "^1.4.2", 5498 | "regenerate-unicode-properties": "^10.2.0", 5499 | "regjsgen": "^0.8.0", 5500 | "regjsparser": "^0.11.0", 5501 | "unicode-match-property-ecmascript": "^2.0.0", 5502 | "unicode-match-property-value-ecmascript": "^2.1.0" 5503 | }, 5504 | "engines": { 5505 | "node": ">=4" 5506 | } 5507 | }, 5508 | "node_modules/regjsgen": { 5509 | "version": "0.8.0", 5510 | "dev": true, 5511 | "license": "MIT" 5512 | }, 5513 | "node_modules/regjsparser": { 5514 | "version": "0.11.1", 5515 | "dev": true, 5516 | "license": "BSD-2-Clause", 5517 | "dependencies": { 5518 | "jsesc": "~3.0.2" 5519 | }, 5520 | "bin": { 5521 | "regjsparser": "bin/parser" 5522 | } 5523 | }, 5524 | "node_modules/require-from-string": { 5525 | "version": "2.0.2", 5526 | "dev": true, 5527 | "license": "MIT", 5528 | "engines": { 5529 | "node": ">=0.10.0" 5530 | } 5531 | }, 5532 | "node_modules/requires-port": { 5533 | "version": "1.0.0", 5534 | "dev": true, 5535 | "license": "MIT" 5536 | }, 5537 | "node_modules/resolve": { 5538 | "version": "1.22.8", 5539 | "dev": true, 5540 | "license": "MIT", 5541 | "dependencies": { 5542 | "is-core-module": "^2.13.0", 5543 | "path-parse": "^1.0.7", 5544 | "supports-preserve-symlinks-flag": "^1.0.0" 5545 | }, 5546 | "bin": { 5547 | "resolve": "bin/resolve" 5548 | }, 5549 | "funding": { 5550 | "url": "https://github.com/sponsors/ljharb" 5551 | } 5552 | }, 5553 | "node_modules/resolve-cwd": { 5554 | "version": "3.0.0", 5555 | "dev": true, 5556 | "license": "MIT", 5557 | "dependencies": { 5558 | "resolve-from": "^5.0.0" 5559 | }, 5560 | "engines": { 5561 | "node": ">=8" 5562 | } 5563 | }, 5564 | "node_modules/resolve-from": { 5565 | "version": "5.0.0", 5566 | "dev": true, 5567 | "license": "MIT", 5568 | "engines": { 5569 | "node": ">=8" 5570 | } 5571 | }, 5572 | "node_modules/retry": { 5573 | "version": "0.13.1", 5574 | "dev": true, 5575 | "license": "MIT", 5576 | "engines": { 5577 | "node": ">= 4" 5578 | } 5579 | }, 5580 | "node_modules/run-applescript": { 5581 | "version": "7.0.0", 5582 | "dev": true, 5583 | "license": "MIT", 5584 | "engines": { 5585 | "node": ">=18" 5586 | }, 5587 | "funding": { 5588 | "url": "https://github.com/sponsors/sindresorhus" 5589 | } 5590 | }, 5591 | "node_modules/safe-array-concat": { 5592 | "version": "1.1.2", 5593 | "dev": true, 5594 | "license": "MIT", 5595 | "dependencies": { 5596 | "call-bind": "^1.0.7", 5597 | "get-intrinsic": "^1.2.4", 5598 | "has-symbols": "^1.0.3", 5599 | "isarray": "^2.0.5" 5600 | }, 5601 | "engines": { 5602 | "node": ">=0.4" 5603 | }, 5604 | "funding": { 5605 | "url": "https://github.com/sponsors/ljharb" 5606 | } 5607 | }, 5608 | "node_modules/safe-array-concat/node_modules/isarray": { 5609 | "version": "2.0.5", 5610 | "dev": true, 5611 | "license": "MIT" 5612 | }, 5613 | "node_modules/safe-buffer": { 5614 | "version": "5.2.1", 5615 | "funding": [ 5616 | { 5617 | "type": "github", 5618 | "url": "https://github.com/sponsors/feross" 5619 | }, 5620 | { 5621 | "type": "patreon", 5622 | "url": "https://www.patreon.com/feross" 5623 | }, 5624 | { 5625 | "type": "consulting", 5626 | "url": "https://feross.org/support" 5627 | } 5628 | ], 5629 | "license": "MIT" 5630 | }, 5631 | "node_modules/safe-regex-test": { 5632 | "version": "1.0.3", 5633 | "dev": true, 5634 | "license": "MIT", 5635 | "dependencies": { 5636 | "call-bind": "^1.0.6", 5637 | "es-errors": "^1.3.0", 5638 | "is-regex": "^1.1.4" 5639 | }, 5640 | "engines": { 5641 | "node": ">= 0.4" 5642 | }, 5643 | "funding": { 5644 | "url": "https://github.com/sponsors/ljharb" 5645 | } 5646 | }, 5647 | "node_modules/safer-buffer": { 5648 | "version": "2.1.2", 5649 | "license": "MIT" 5650 | }, 5651 | "node_modules/scheduler": { 5652 | "version": "0.19.1", 5653 | "license": "MIT", 5654 | "dependencies": { 5655 | "loose-envify": "^1.1.0", 5656 | "object-assign": "^4.1.1" 5657 | } 5658 | }, 5659 | "node_modules/schema-utils": { 5660 | "version": "4.2.0", 5661 | "dev": true, 5662 | "license": "MIT", 5663 | "dependencies": { 5664 | "@types/json-schema": "^7.0.9", 5665 | "ajv": "^8.9.0", 5666 | "ajv-formats": "^2.1.1", 5667 | "ajv-keywords": "^5.1.0" 5668 | }, 5669 | "engines": { 5670 | "node": ">= 12.13.0" 5671 | }, 5672 | "funding": { 5673 | "type": "opencollective", 5674 | "url": "https://opencollective.com/webpack" 5675 | } 5676 | }, 5677 | "node_modules/select-hose": { 5678 | "version": "2.0.0", 5679 | "dev": true, 5680 | "license": "MIT" 5681 | }, 5682 | "node_modules/selfsigned": { 5683 | "version": "2.4.1", 5684 | "dev": true, 5685 | "license": "MIT", 5686 | "dependencies": { 5687 | "@types/node-forge": "^1.3.0", 5688 | "node-forge": "^1" 5689 | }, 5690 | "engines": { 5691 | "node": ">=10" 5692 | } 5693 | }, 5694 | "node_modules/semver": { 5695 | "version": "6.3.1", 5696 | "dev": true, 5697 | "license": "ISC", 5698 | "bin": { 5699 | "semver": "bin/semver.js" 5700 | } 5701 | }, 5702 | "node_modules/send": { 5703 | "version": "0.19.0", 5704 | "license": "MIT", 5705 | "dependencies": { 5706 | "debug": "2.6.9", 5707 | "depd": "2.0.0", 5708 | "destroy": "1.2.0", 5709 | "encodeurl": "~1.0.2", 5710 | "escape-html": "~1.0.3", 5711 | "etag": "~1.8.1", 5712 | "fresh": "0.5.2", 5713 | "http-errors": "2.0.0", 5714 | "mime": "1.6.0", 5715 | "ms": "2.1.3", 5716 | "on-finished": "2.4.1", 5717 | "range-parser": "~1.2.1", 5718 | "statuses": "2.0.1" 5719 | }, 5720 | "engines": { 5721 | "node": ">= 0.8.0" 5722 | } 5723 | }, 5724 | "node_modules/send/node_modules/encodeurl": { 5725 | "version": "1.0.2", 5726 | "license": "MIT", 5727 | "engines": { 5728 | "node": ">= 0.8" 5729 | } 5730 | }, 5731 | "node_modules/serialize-javascript": { 5732 | "version": "6.0.2", 5733 | "dev": true, 5734 | "license": "BSD-3-Clause", 5735 | "dependencies": { 5736 | "randombytes": "^2.1.0" 5737 | } 5738 | }, 5739 | "node_modules/serve-index": { 5740 | "version": "1.9.1", 5741 | "dev": true, 5742 | "license": "MIT", 5743 | "dependencies": { 5744 | "accepts": "~1.3.4", 5745 | "batch": "0.6.1", 5746 | "debug": "2.6.9", 5747 | "escape-html": "~1.0.3", 5748 | "http-errors": "~1.6.2", 5749 | "mime-types": "~2.1.17", 5750 | "parseurl": "~1.3.2" 5751 | }, 5752 | "engines": { 5753 | "node": ">= 0.8.0" 5754 | } 5755 | }, 5756 | "node_modules/serve-index/node_modules/depd": { 5757 | "version": "1.1.2", 5758 | "dev": true, 5759 | "license": "MIT", 5760 | "engines": { 5761 | "node": ">= 0.6" 5762 | } 5763 | }, 5764 | "node_modules/serve-index/node_modules/http-errors": { 5765 | "version": "1.6.3", 5766 | "dev": true, 5767 | "license": "MIT", 5768 | "dependencies": { 5769 | "depd": "~1.1.2", 5770 | "inherits": "2.0.3", 5771 | "setprototypeof": "1.1.0", 5772 | "statuses": ">= 1.4.0 < 2" 5773 | }, 5774 | "engines": { 5775 | "node": ">= 0.6" 5776 | } 5777 | }, 5778 | "node_modules/serve-index/node_modules/inherits": { 5779 | "version": "2.0.3", 5780 | "dev": true, 5781 | "license": "ISC" 5782 | }, 5783 | "node_modules/serve-index/node_modules/setprototypeof": { 5784 | "version": "1.1.0", 5785 | "dev": true, 5786 | "license": "ISC" 5787 | }, 5788 | "node_modules/serve-index/node_modules/statuses": { 5789 | "version": "1.5.0", 5790 | "dev": true, 5791 | "license": "MIT", 5792 | "engines": { 5793 | "node": ">= 0.6" 5794 | } 5795 | }, 5796 | "node_modules/serve-static": { 5797 | "version": "1.16.2", 5798 | "license": "MIT", 5799 | "dependencies": { 5800 | "encodeurl": "~2.0.0", 5801 | "escape-html": "~1.0.3", 5802 | "parseurl": "~1.3.3", 5803 | "send": "0.19.0" 5804 | }, 5805 | "engines": { 5806 | "node": ">= 0.8.0" 5807 | } 5808 | }, 5809 | "node_modules/set-function-length": { 5810 | "version": "1.2.2", 5811 | "license": "MIT", 5812 | "dependencies": { 5813 | "define-data-property": "^1.1.4", 5814 | "es-errors": "^1.3.0", 5815 | "function-bind": "^1.1.2", 5816 | "get-intrinsic": "^1.2.4", 5817 | "gopd": "^1.0.1", 5818 | "has-property-descriptors": "^1.0.2" 5819 | }, 5820 | "engines": { 5821 | "node": ">= 0.4" 5822 | } 5823 | }, 5824 | "node_modules/set-function-name": { 5825 | "version": "2.0.2", 5826 | "dev": true, 5827 | "license": "MIT", 5828 | "dependencies": { 5829 | "define-data-property": "^1.1.4", 5830 | "es-errors": "^1.3.0", 5831 | "functions-have-names": "^1.2.3", 5832 | "has-property-descriptors": "^1.0.2" 5833 | }, 5834 | "engines": { 5835 | "node": ">= 0.4" 5836 | } 5837 | }, 5838 | "node_modules/setprototypeof": { 5839 | "version": "1.2.0", 5840 | "license": "ISC" 5841 | }, 5842 | "node_modules/shallow-clone": { 5843 | "version": "3.0.1", 5844 | "dev": true, 5845 | "license": "MIT", 5846 | "dependencies": { 5847 | "kind-of": "^6.0.2" 5848 | }, 5849 | "engines": { 5850 | "node": ">=8" 5851 | } 5852 | }, 5853 | "node_modules/shallow-clone/node_modules/kind-of": { 5854 | "version": "6.0.3", 5855 | "dev": true, 5856 | "license": "MIT", 5857 | "engines": { 5858 | "node": ">=0.10.0" 5859 | } 5860 | }, 5861 | "node_modules/shebang-command": { 5862 | "version": "2.0.0", 5863 | "dev": true, 5864 | "license": "MIT", 5865 | "dependencies": { 5866 | "shebang-regex": "^3.0.0" 5867 | }, 5868 | "engines": { 5869 | "node": ">=8" 5870 | } 5871 | }, 5872 | "node_modules/shebang-regex": { 5873 | "version": "3.0.0", 5874 | "dev": true, 5875 | "license": "MIT", 5876 | "engines": { 5877 | "node": ">=8" 5878 | } 5879 | }, 5880 | "node_modules/shell-quote": { 5881 | "version": "1.8.1", 5882 | "dev": true, 5883 | "license": "MIT", 5884 | "funding": { 5885 | "url": "https://github.com/sponsors/ljharb" 5886 | } 5887 | }, 5888 | "node_modules/side-channel": { 5889 | "version": "1.0.6", 5890 | "license": "MIT", 5891 | "dependencies": { 5892 | "call-bind": "^1.0.7", 5893 | "es-errors": "^1.3.0", 5894 | "get-intrinsic": "^1.2.4", 5895 | "object-inspect": "^1.13.1" 5896 | }, 5897 | "engines": { 5898 | "node": ">= 0.4" 5899 | }, 5900 | "funding": { 5901 | "url": "https://github.com/sponsors/ljharb" 5902 | } 5903 | }, 5904 | "node_modules/simple-update-notifier": { 5905 | "version": "2.0.0", 5906 | "resolved": "https://registry.npmjs.org/simple-update-notifier/-/simple-update-notifier-2.0.0.tgz", 5907 | "integrity": "sha512-a2B9Y0KlNXl9u/vsW6sTIu9vGEpfKu2wRV6l1H3XEas/0gUIzGzBoP/IouTcUQbm9JWZLH3COxyn03TYlFax6w==", 5908 | "dev": true, 5909 | "dependencies": { 5910 | "semver": "^7.5.3" 5911 | }, 5912 | "engines": { 5913 | "node": ">=10" 5914 | } 5915 | }, 5916 | "node_modules/simple-update-notifier/node_modules/semver": { 5917 | "version": "7.6.3", 5918 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", 5919 | "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", 5920 | "dev": true, 5921 | "bin": { 5922 | "semver": "bin/semver.js" 5923 | }, 5924 | "engines": { 5925 | "node": ">=10" 5926 | } 5927 | }, 5928 | "node_modules/slash": { 5929 | "version": "2.0.0", 5930 | "dev": true, 5931 | "license": "MIT", 5932 | "engines": { 5933 | "node": ">=6" 5934 | } 5935 | }, 5936 | "node_modules/sockjs": { 5937 | "version": "0.3.24", 5938 | "dev": true, 5939 | "license": "MIT", 5940 | "dependencies": { 5941 | "faye-websocket": "^0.11.3", 5942 | "uuid": "^8.3.2", 5943 | "websocket-driver": "^0.7.4" 5944 | } 5945 | }, 5946 | "node_modules/source-map-support": { 5947 | "version": "0.5.21", 5948 | "dev": true, 5949 | "license": "MIT", 5950 | "dependencies": { 5951 | "buffer-from": "^1.0.0", 5952 | "source-map": "^0.6.0" 5953 | } 5954 | }, 5955 | "node_modules/source-map-support/node_modules/source-map": { 5956 | "version": "0.6.1", 5957 | "dev": true, 5958 | "license": "BSD-3-Clause", 5959 | "engines": { 5960 | "node": ">=0.10.0" 5961 | } 5962 | }, 5963 | "node_modules/spdy": { 5964 | "version": "4.0.2", 5965 | "dev": true, 5966 | "license": "MIT", 5967 | "dependencies": { 5968 | "debug": "^4.1.0", 5969 | "handle-thing": "^2.0.0", 5970 | "http-deceiver": "^1.2.7", 5971 | "select-hose": "^2.0.0", 5972 | "spdy-transport": "^3.0.0" 5973 | }, 5974 | "engines": { 5975 | "node": ">=6.0.0" 5976 | } 5977 | }, 5978 | "node_modules/spdy-transport": { 5979 | "version": "3.0.0", 5980 | "dev": true, 5981 | "license": "MIT", 5982 | "dependencies": { 5983 | "debug": "^4.1.0", 5984 | "detect-node": "^2.0.4", 5985 | "hpack.js": "^2.1.6", 5986 | "obuf": "^1.1.2", 5987 | "readable-stream": "^3.0.6", 5988 | "wbuf": "^1.7.3" 5989 | } 5990 | }, 5991 | "node_modules/spdy-transport/node_modules/debug": { 5992 | "version": "4.3.7", 5993 | "dev": true, 5994 | "license": "MIT", 5995 | "dependencies": { 5996 | "ms": "^2.1.3" 5997 | }, 5998 | "engines": { 5999 | "node": ">=6.0" 6000 | }, 6001 | "peerDependenciesMeta": { 6002 | "supports-color": { 6003 | "optional": true 6004 | } 6005 | } 6006 | }, 6007 | "node_modules/spdy-transport/node_modules/readable-stream": { 6008 | "version": "3.6.2", 6009 | "dev": true, 6010 | "license": "MIT", 6011 | "dependencies": { 6012 | "inherits": "^2.0.3", 6013 | "string_decoder": "^1.1.1", 6014 | "util-deprecate": "^1.0.1" 6015 | }, 6016 | "engines": { 6017 | "node": ">= 6" 6018 | } 6019 | }, 6020 | "node_modules/spdy-transport/node_modules/string_decoder": { 6021 | "version": "1.3.0", 6022 | "dev": true, 6023 | "license": "MIT", 6024 | "dependencies": { 6025 | "safe-buffer": "~5.2.0" 6026 | } 6027 | }, 6028 | "node_modules/spdy/node_modules/debug": { 6029 | "version": "4.3.7", 6030 | "dev": true, 6031 | "license": "MIT", 6032 | "dependencies": { 6033 | "ms": "^2.1.3" 6034 | }, 6035 | "engines": { 6036 | "node": ">=6.0" 6037 | }, 6038 | "peerDependenciesMeta": { 6039 | "supports-color": { 6040 | "optional": true 6041 | } 6042 | } 6043 | }, 6044 | "node_modules/statuses": { 6045 | "version": "2.0.1", 6046 | "license": "MIT", 6047 | "engines": { 6048 | "node": ">= 0.8" 6049 | } 6050 | }, 6051 | "node_modules/streamsearch": { 6052 | "version": "1.1.0", 6053 | "engines": { 6054 | "node": ">=10.0.0" 6055 | } 6056 | }, 6057 | "node_modules/string_decoder": { 6058 | "version": "1.1.1", 6059 | "license": "MIT", 6060 | "dependencies": { 6061 | "safe-buffer": "~5.1.0" 6062 | } 6063 | }, 6064 | "node_modules/string_decoder/node_modules/safe-buffer": { 6065 | "version": "5.1.2", 6066 | "license": "MIT" 6067 | }, 6068 | "node_modules/string.prototype.trim": { 6069 | "version": "1.2.9", 6070 | "dev": true, 6071 | "license": "MIT", 6072 | "dependencies": { 6073 | "call-bind": "^1.0.7", 6074 | "define-properties": "^1.2.1", 6075 | "es-abstract": "^1.23.0", 6076 | "es-object-atoms": "^1.0.0" 6077 | }, 6078 | "engines": { 6079 | "node": ">= 0.4" 6080 | }, 6081 | "funding": { 6082 | "url": "https://github.com/sponsors/ljharb" 6083 | } 6084 | }, 6085 | "node_modules/string.prototype.trimend": { 6086 | "version": "1.0.8", 6087 | "dev": true, 6088 | "license": "MIT", 6089 | "dependencies": { 6090 | "call-bind": "^1.0.7", 6091 | "define-properties": "^1.2.1", 6092 | "es-object-atoms": "^1.0.0" 6093 | }, 6094 | "funding": { 6095 | "url": "https://github.com/sponsors/ljharb" 6096 | } 6097 | }, 6098 | "node_modules/string.prototype.trimstart": { 6099 | "version": "1.0.8", 6100 | "dev": true, 6101 | "license": "MIT", 6102 | "dependencies": { 6103 | "call-bind": "^1.0.7", 6104 | "define-properties": "^1.2.1", 6105 | "es-object-atoms": "^1.0.0" 6106 | }, 6107 | "engines": { 6108 | "node": ">= 0.4" 6109 | }, 6110 | "funding": { 6111 | "url": "https://github.com/sponsors/ljharb" 6112 | } 6113 | }, 6114 | "node_modules/supports-color": { 6115 | "version": "5.5.0", 6116 | "dev": true, 6117 | "license": "MIT", 6118 | "dependencies": { 6119 | "has-flag": "^3.0.0" 6120 | }, 6121 | "engines": { 6122 | "node": ">=4" 6123 | } 6124 | }, 6125 | "node_modules/supports-preserve-symlinks-flag": { 6126 | "version": "1.0.0", 6127 | "dev": true, 6128 | "license": "MIT", 6129 | "engines": { 6130 | "node": ">= 0.4" 6131 | }, 6132 | "funding": { 6133 | "url": "https://github.com/sponsors/ljharb" 6134 | } 6135 | }, 6136 | "node_modules/tapable": { 6137 | "version": "2.2.1", 6138 | "dev": true, 6139 | "license": "MIT", 6140 | "engines": { 6141 | "node": ">=6" 6142 | } 6143 | }, 6144 | "node_modules/terser": { 6145 | "version": "5.34.1", 6146 | "dev": true, 6147 | "license": "BSD-2-Clause", 6148 | "dependencies": { 6149 | "@jridgewell/source-map": "^0.3.3", 6150 | "acorn": "^8.8.2", 6151 | "commander": "^2.20.0", 6152 | "source-map-support": "~0.5.20" 6153 | }, 6154 | "bin": { 6155 | "terser": "bin/terser" 6156 | }, 6157 | "engines": { 6158 | "node": ">=10" 6159 | } 6160 | }, 6161 | "node_modules/terser-webpack-plugin": { 6162 | "version": "5.3.10", 6163 | "dev": true, 6164 | "license": "MIT", 6165 | "dependencies": { 6166 | "@jridgewell/trace-mapping": "^0.3.20", 6167 | "jest-worker": "^27.4.5", 6168 | "schema-utils": "^3.1.1", 6169 | "serialize-javascript": "^6.0.1", 6170 | "terser": "^5.26.0" 6171 | }, 6172 | "engines": { 6173 | "node": ">= 10.13.0" 6174 | }, 6175 | "funding": { 6176 | "type": "opencollective", 6177 | "url": "https://opencollective.com/webpack" 6178 | }, 6179 | "peerDependencies": { 6180 | "webpack": "^5.1.0" 6181 | }, 6182 | "peerDependenciesMeta": { 6183 | "@swc/core": { 6184 | "optional": true 6185 | }, 6186 | "esbuild": { 6187 | "optional": true 6188 | }, 6189 | "uglify-js": { 6190 | "optional": true 6191 | } 6192 | } 6193 | }, 6194 | "node_modules/terser-webpack-plugin/node_modules/ajv": { 6195 | "version": "6.12.6", 6196 | "dev": true, 6197 | "license": "MIT", 6198 | "dependencies": { 6199 | "fast-deep-equal": "^3.1.1", 6200 | "fast-json-stable-stringify": "^2.0.0", 6201 | "json-schema-traverse": "^0.4.1", 6202 | "uri-js": "^4.2.2" 6203 | }, 6204 | "funding": { 6205 | "type": "github", 6206 | "url": "https://github.com/sponsors/epoberezkin" 6207 | } 6208 | }, 6209 | "node_modules/terser-webpack-plugin/node_modules/ajv-keywords": { 6210 | "version": "3.5.2", 6211 | "dev": true, 6212 | "license": "MIT", 6213 | "peerDependencies": { 6214 | "ajv": "^6.9.1" 6215 | } 6216 | }, 6217 | "node_modules/terser-webpack-plugin/node_modules/json-schema-traverse": { 6218 | "version": "0.4.1", 6219 | "dev": true, 6220 | "license": "MIT" 6221 | }, 6222 | "node_modules/terser-webpack-plugin/node_modules/schema-utils": { 6223 | "version": "3.3.0", 6224 | "dev": true, 6225 | "license": "MIT", 6226 | "dependencies": { 6227 | "@types/json-schema": "^7.0.8", 6228 | "ajv": "^6.12.5", 6229 | "ajv-keywords": "^3.5.2" 6230 | }, 6231 | "engines": { 6232 | "node": ">= 10.13.0" 6233 | }, 6234 | "funding": { 6235 | "type": "opencollective", 6236 | "url": "https://opencollective.com/webpack" 6237 | } 6238 | }, 6239 | "node_modules/terser/node_modules/commander": { 6240 | "version": "2.20.3", 6241 | "dev": true, 6242 | "license": "MIT" 6243 | }, 6244 | "node_modules/thingies": { 6245 | "version": "1.21.0", 6246 | "dev": true, 6247 | "license": "Unlicense", 6248 | "engines": { 6249 | "node": ">=10.18" 6250 | }, 6251 | "peerDependencies": { 6252 | "tslib": "^2" 6253 | } 6254 | }, 6255 | "node_modules/thunky": { 6256 | "version": "1.1.0", 6257 | "dev": true, 6258 | "license": "MIT" 6259 | }, 6260 | "node_modules/to-fast-properties": { 6261 | "version": "2.0.0", 6262 | "dev": true, 6263 | "license": "MIT", 6264 | "engines": { 6265 | "node": ">=4" 6266 | } 6267 | }, 6268 | "node_modules/toidentifier": { 6269 | "version": "1.0.1", 6270 | "license": "MIT", 6271 | "engines": { 6272 | "node": ">=0.6" 6273 | } 6274 | }, 6275 | "node_modules/touch": { 6276 | "version": "3.1.1", 6277 | "dev": true, 6278 | "license": "ISC", 6279 | "bin": { 6280 | "nodetouch": "bin/nodetouch.js" 6281 | } 6282 | }, 6283 | "node_modules/tree-dump": { 6284 | "version": "1.0.2", 6285 | "dev": true, 6286 | "license": "Apache-2.0", 6287 | "engines": { 6288 | "node": ">=10.0" 6289 | }, 6290 | "funding": { 6291 | "type": "github", 6292 | "url": "https://github.com/sponsors/streamich" 6293 | }, 6294 | "peerDependencies": { 6295 | "tslib": "2" 6296 | } 6297 | }, 6298 | "node_modules/tslib": { 6299 | "version": "2.7.0", 6300 | "dev": true, 6301 | "license": "0BSD" 6302 | }, 6303 | "node_modules/type-is": { 6304 | "version": "1.6.18", 6305 | "license": "MIT", 6306 | "dependencies": { 6307 | "media-typer": "0.3.0", 6308 | "mime-types": "~2.1.24" 6309 | }, 6310 | "engines": { 6311 | "node": ">= 0.6" 6312 | } 6313 | }, 6314 | "node_modules/typed-array-buffer": { 6315 | "version": "1.0.2", 6316 | "dev": true, 6317 | "license": "MIT", 6318 | "dependencies": { 6319 | "call-bind": "^1.0.7", 6320 | "es-errors": "^1.3.0", 6321 | "is-typed-array": "^1.1.13" 6322 | }, 6323 | "engines": { 6324 | "node": ">= 0.4" 6325 | } 6326 | }, 6327 | "node_modules/typed-array-byte-length": { 6328 | "version": "1.0.1", 6329 | "dev": true, 6330 | "license": "MIT", 6331 | "dependencies": { 6332 | "call-bind": "^1.0.7", 6333 | "for-each": "^0.3.3", 6334 | "gopd": "^1.0.1", 6335 | "has-proto": "^1.0.3", 6336 | "is-typed-array": "^1.1.13" 6337 | }, 6338 | "engines": { 6339 | "node": ">= 0.4" 6340 | }, 6341 | "funding": { 6342 | "url": "https://github.com/sponsors/ljharb" 6343 | } 6344 | }, 6345 | "node_modules/typed-array-byte-offset": { 6346 | "version": "1.0.2", 6347 | "dev": true, 6348 | "license": "MIT", 6349 | "dependencies": { 6350 | "available-typed-arrays": "^1.0.7", 6351 | "call-bind": "^1.0.7", 6352 | "for-each": "^0.3.3", 6353 | "gopd": "^1.0.1", 6354 | "has-proto": "^1.0.3", 6355 | "is-typed-array": "^1.1.13" 6356 | }, 6357 | "engines": { 6358 | "node": ">= 0.4" 6359 | }, 6360 | "funding": { 6361 | "url": "https://github.com/sponsors/ljharb" 6362 | } 6363 | }, 6364 | "node_modules/typed-array-length": { 6365 | "version": "1.0.6", 6366 | "dev": true, 6367 | "license": "MIT", 6368 | "dependencies": { 6369 | "call-bind": "^1.0.7", 6370 | "for-each": "^0.3.3", 6371 | "gopd": "^1.0.1", 6372 | "has-proto": "^1.0.3", 6373 | "is-typed-array": "^1.1.13", 6374 | "possible-typed-array-names": "^1.0.0" 6375 | }, 6376 | "engines": { 6377 | "node": ">= 0.4" 6378 | }, 6379 | "funding": { 6380 | "url": "https://github.com/sponsors/ljharb" 6381 | } 6382 | }, 6383 | "node_modules/typedarray": { 6384 | "version": "0.0.6", 6385 | "license": "MIT" 6386 | }, 6387 | "node_modules/unbox-primitive": { 6388 | "version": "1.0.2", 6389 | "dev": true, 6390 | "license": "MIT", 6391 | "dependencies": { 6392 | "call-bind": "^1.0.2", 6393 | "has-bigints": "^1.0.2", 6394 | "has-symbols": "^1.0.3", 6395 | "which-boxed-primitive": "^1.0.2" 6396 | }, 6397 | "funding": { 6398 | "url": "https://github.com/sponsors/ljharb" 6399 | } 6400 | }, 6401 | "node_modules/undefsafe": { 6402 | "version": "2.0.5", 6403 | "dev": true, 6404 | "license": "MIT" 6405 | }, 6406 | "node_modules/undici-types": { 6407 | "version": "6.19.8", 6408 | "dev": true, 6409 | "license": "MIT" 6410 | }, 6411 | "node_modules/unicode-canonical-property-names-ecmascript": { 6412 | "version": "2.0.1", 6413 | "dev": true, 6414 | "license": "MIT", 6415 | "engines": { 6416 | "node": ">=4" 6417 | } 6418 | }, 6419 | "node_modules/unicode-match-property-ecmascript": { 6420 | "version": "2.0.0", 6421 | "dev": true, 6422 | "license": "MIT", 6423 | "dependencies": { 6424 | "unicode-canonical-property-names-ecmascript": "^2.0.0", 6425 | "unicode-property-aliases-ecmascript": "^2.0.0" 6426 | }, 6427 | "engines": { 6428 | "node": ">=4" 6429 | } 6430 | }, 6431 | "node_modules/unicode-match-property-value-ecmascript": { 6432 | "version": "2.2.0", 6433 | "dev": true, 6434 | "license": "MIT", 6435 | "engines": { 6436 | "node": ">=4" 6437 | } 6438 | }, 6439 | "node_modules/unicode-property-aliases-ecmascript": { 6440 | "version": "2.1.0", 6441 | "dev": true, 6442 | "license": "MIT", 6443 | "engines": { 6444 | "node": ">=4" 6445 | } 6446 | }, 6447 | "node_modules/unpipe": { 6448 | "version": "1.0.0", 6449 | "license": "MIT", 6450 | "engines": { 6451 | "node": ">= 0.8" 6452 | } 6453 | }, 6454 | "node_modules/update-browserslist-db": { 6455 | "version": "1.1.1", 6456 | "dev": true, 6457 | "funding": [ 6458 | { 6459 | "type": "opencollective", 6460 | "url": "https://opencollective.com/browserslist" 6461 | }, 6462 | { 6463 | "type": "tidelift", 6464 | "url": "https://tidelift.com/funding/github/npm/browserslist" 6465 | }, 6466 | { 6467 | "type": "github", 6468 | "url": "https://github.com/sponsors/ai" 6469 | } 6470 | ], 6471 | "license": "MIT", 6472 | "dependencies": { 6473 | "escalade": "^3.2.0", 6474 | "picocolors": "^1.1.0" 6475 | }, 6476 | "bin": { 6477 | "update-browserslist-db": "cli.js" 6478 | }, 6479 | "peerDependencies": { 6480 | "browserslist": ">= 4.21.0" 6481 | } 6482 | }, 6483 | "node_modules/uri-js": { 6484 | "version": "4.4.1", 6485 | "dev": true, 6486 | "license": "BSD-2-Clause", 6487 | "dependencies": { 6488 | "punycode": "^2.1.0" 6489 | } 6490 | }, 6491 | "node_modules/util-deprecate": { 6492 | "version": "1.0.2", 6493 | "license": "MIT" 6494 | }, 6495 | "node_modules/utils-merge": { 6496 | "version": "1.0.1", 6497 | "license": "MIT", 6498 | "engines": { 6499 | "node": ">= 0.4.0" 6500 | } 6501 | }, 6502 | "node_modules/uuid": { 6503 | "version": "8.3.2", 6504 | "dev": true, 6505 | "license": "MIT", 6506 | "bin": { 6507 | "uuid": "dist/bin/uuid" 6508 | } 6509 | }, 6510 | "node_modules/v8flags": { 6511 | "version": "3.2.0", 6512 | "dev": true, 6513 | "license": "MIT", 6514 | "dependencies": { 6515 | "homedir-polyfill": "^1.0.1" 6516 | }, 6517 | "engines": { 6518 | "node": ">= 0.10" 6519 | } 6520 | }, 6521 | "node_modules/vary": { 6522 | "version": "1.1.2", 6523 | "license": "MIT", 6524 | "engines": { 6525 | "node": ">= 0.8" 6526 | } 6527 | }, 6528 | "node_modules/watchpack": { 6529 | "version": "2.4.2", 6530 | "dev": true, 6531 | "license": "MIT", 6532 | "dependencies": { 6533 | "glob-to-regexp": "^0.4.1", 6534 | "graceful-fs": "^4.1.2" 6535 | }, 6536 | "engines": { 6537 | "node": ">=10.13.0" 6538 | } 6539 | }, 6540 | "node_modules/wbuf": { 6541 | "version": "1.7.3", 6542 | "dev": true, 6543 | "license": "MIT", 6544 | "dependencies": { 6545 | "minimalistic-assert": "^1.0.0" 6546 | } 6547 | }, 6548 | "node_modules/webpack": { 6549 | "version": "5.95.0", 6550 | "dev": true, 6551 | "license": "MIT", 6552 | "dependencies": { 6553 | "@types/estree": "^1.0.5", 6554 | "@webassemblyjs/ast": "^1.12.1", 6555 | "@webassemblyjs/wasm-edit": "^1.12.1", 6556 | "@webassemblyjs/wasm-parser": "^1.12.1", 6557 | "acorn": "^8.7.1", 6558 | "acorn-import-attributes": "^1.9.5", 6559 | "browserslist": "^4.21.10", 6560 | "chrome-trace-event": "^1.0.2", 6561 | "enhanced-resolve": "^5.17.1", 6562 | "es-module-lexer": "^1.2.1", 6563 | "eslint-scope": "5.1.1", 6564 | "events": "^3.2.0", 6565 | "glob-to-regexp": "^0.4.1", 6566 | "graceful-fs": "^4.2.11", 6567 | "json-parse-even-better-errors": "^2.3.1", 6568 | "loader-runner": "^4.2.0", 6569 | "mime-types": "^2.1.27", 6570 | "neo-async": "^2.6.2", 6571 | "schema-utils": "^3.2.0", 6572 | "tapable": "^2.1.1", 6573 | "terser-webpack-plugin": "^5.3.10", 6574 | "watchpack": "^2.4.1", 6575 | "webpack-sources": "^3.2.3" 6576 | }, 6577 | "bin": { 6578 | "webpack": "bin/webpack.js" 6579 | }, 6580 | "engines": { 6581 | "node": ">=10.13.0" 6582 | }, 6583 | "funding": { 6584 | "type": "opencollective", 6585 | "url": "https://opencollective.com/webpack" 6586 | }, 6587 | "peerDependenciesMeta": { 6588 | "webpack-cli": { 6589 | "optional": true 6590 | } 6591 | } 6592 | }, 6593 | "node_modules/webpack-cli": { 6594 | "version": "5.1.4", 6595 | "dev": true, 6596 | "license": "MIT", 6597 | "dependencies": { 6598 | "@discoveryjs/json-ext": "^0.5.0", 6599 | "@webpack-cli/configtest": "^2.1.1", 6600 | "@webpack-cli/info": "^2.0.2", 6601 | "@webpack-cli/serve": "^2.0.5", 6602 | "colorette": "^2.0.14", 6603 | "commander": "^10.0.1", 6604 | "cross-spawn": "^7.0.3", 6605 | "envinfo": "^7.7.3", 6606 | "fastest-levenshtein": "^1.0.12", 6607 | "import-local": "^3.0.2", 6608 | "interpret": "^3.1.1", 6609 | "rechoir": "^0.8.0", 6610 | "webpack-merge": "^5.7.3" 6611 | }, 6612 | "bin": { 6613 | "webpack-cli": "bin/cli.js" 6614 | }, 6615 | "engines": { 6616 | "node": ">=14.15.0" 6617 | }, 6618 | "funding": { 6619 | "type": "opencollective", 6620 | "url": "https://opencollective.com/webpack" 6621 | }, 6622 | "peerDependencies": { 6623 | "webpack": "5.x.x" 6624 | }, 6625 | "peerDependenciesMeta": { 6626 | "@webpack-cli/generators": { 6627 | "optional": true 6628 | }, 6629 | "webpack-bundle-analyzer": { 6630 | "optional": true 6631 | }, 6632 | "webpack-dev-server": { 6633 | "optional": true 6634 | } 6635 | } 6636 | }, 6637 | "node_modules/webpack-cli/node_modules/commander": { 6638 | "version": "10.0.1", 6639 | "dev": true, 6640 | "license": "MIT", 6641 | "engines": { 6642 | "node": ">=14" 6643 | } 6644 | }, 6645 | "node_modules/webpack-dev-middleware": { 6646 | "version": "7.4.2", 6647 | "dev": true, 6648 | "license": "MIT", 6649 | "dependencies": { 6650 | "colorette": "^2.0.10", 6651 | "memfs": "^4.6.0", 6652 | "mime-types": "^2.1.31", 6653 | "on-finished": "^2.4.1", 6654 | "range-parser": "^1.2.1", 6655 | "schema-utils": "^4.0.0" 6656 | }, 6657 | "engines": { 6658 | "node": ">= 18.12.0" 6659 | }, 6660 | "funding": { 6661 | "type": "opencollective", 6662 | "url": "https://opencollective.com/webpack" 6663 | }, 6664 | "peerDependencies": { 6665 | "webpack": "^5.0.0" 6666 | }, 6667 | "peerDependenciesMeta": { 6668 | "webpack": { 6669 | "optional": true 6670 | } 6671 | } 6672 | }, 6673 | "node_modules/webpack-dev-server": { 6674 | "version": "5.1.0", 6675 | "dev": true, 6676 | "license": "MIT", 6677 | "dependencies": { 6678 | "@types/bonjour": "^3.5.13", 6679 | "@types/connect-history-api-fallback": "^1.5.4", 6680 | "@types/express": "^4.17.21", 6681 | "@types/serve-index": "^1.9.4", 6682 | "@types/serve-static": "^1.15.5", 6683 | "@types/sockjs": "^0.3.36", 6684 | "@types/ws": "^8.5.10", 6685 | "ansi-html-community": "^0.0.8", 6686 | "bonjour-service": "^1.2.1", 6687 | "chokidar": "^3.6.0", 6688 | "colorette": "^2.0.10", 6689 | "compression": "^1.7.4", 6690 | "connect-history-api-fallback": "^2.0.0", 6691 | "express": "^4.19.2", 6692 | "graceful-fs": "^4.2.6", 6693 | "html-entities": "^2.4.0", 6694 | "http-proxy-middleware": "^2.0.3", 6695 | "ipaddr.js": "^2.1.0", 6696 | "launch-editor": "^2.6.1", 6697 | "open": "^10.0.3", 6698 | "p-retry": "^6.2.0", 6699 | "schema-utils": "^4.2.0", 6700 | "selfsigned": "^2.4.1", 6701 | "serve-index": "^1.9.1", 6702 | "sockjs": "^0.3.24", 6703 | "spdy": "^4.0.2", 6704 | "webpack-dev-middleware": "^7.4.2", 6705 | "ws": "^8.18.0" 6706 | }, 6707 | "bin": { 6708 | "webpack-dev-server": "bin/webpack-dev-server.js" 6709 | }, 6710 | "engines": { 6711 | "node": ">= 18.12.0" 6712 | }, 6713 | "funding": { 6714 | "type": "opencollective", 6715 | "url": "https://opencollective.com/webpack" 6716 | }, 6717 | "peerDependencies": { 6718 | "webpack": "^5.0.0" 6719 | }, 6720 | "peerDependenciesMeta": { 6721 | "webpack": { 6722 | "optional": true 6723 | }, 6724 | "webpack-cli": { 6725 | "optional": true 6726 | } 6727 | } 6728 | }, 6729 | "node_modules/webpack-merge": { 6730 | "version": "5.10.0", 6731 | "dev": true, 6732 | "license": "MIT", 6733 | "dependencies": { 6734 | "clone-deep": "^4.0.1", 6735 | "flat": "^5.0.2", 6736 | "wildcard": "^2.0.0" 6737 | }, 6738 | "engines": { 6739 | "node": ">=10.0.0" 6740 | } 6741 | }, 6742 | "node_modules/webpack-sources": { 6743 | "version": "3.2.3", 6744 | "dev": true, 6745 | "license": "MIT", 6746 | "engines": { 6747 | "node": ">=10.13.0" 6748 | } 6749 | }, 6750 | "node_modules/webpack/node_modules/ajv": { 6751 | "version": "6.12.6", 6752 | "dev": true, 6753 | "license": "MIT", 6754 | "dependencies": { 6755 | "fast-deep-equal": "^3.1.1", 6756 | "fast-json-stable-stringify": "^2.0.0", 6757 | "json-schema-traverse": "^0.4.1", 6758 | "uri-js": "^4.2.2" 6759 | }, 6760 | "funding": { 6761 | "type": "github", 6762 | "url": "https://github.com/sponsors/epoberezkin" 6763 | } 6764 | }, 6765 | "node_modules/webpack/node_modules/ajv-keywords": { 6766 | "version": "3.5.2", 6767 | "dev": true, 6768 | "license": "MIT", 6769 | "peerDependencies": { 6770 | "ajv": "^6.9.1" 6771 | } 6772 | }, 6773 | "node_modules/webpack/node_modules/json-schema-traverse": { 6774 | "version": "0.4.1", 6775 | "dev": true, 6776 | "license": "MIT" 6777 | }, 6778 | "node_modules/webpack/node_modules/schema-utils": { 6779 | "version": "3.3.0", 6780 | "dev": true, 6781 | "license": "MIT", 6782 | "dependencies": { 6783 | "@types/json-schema": "^7.0.8", 6784 | "ajv": "^6.12.5", 6785 | "ajv-keywords": "^3.5.2" 6786 | }, 6787 | "engines": { 6788 | "node": ">= 10.13.0" 6789 | }, 6790 | "funding": { 6791 | "type": "opencollective", 6792 | "url": "https://opencollective.com/webpack" 6793 | } 6794 | }, 6795 | "node_modules/websocket-driver": { 6796 | "version": "0.7.4", 6797 | "dev": true, 6798 | "license": "Apache-2.0", 6799 | "dependencies": { 6800 | "http-parser-js": ">=0.5.1", 6801 | "safe-buffer": ">=5.1.0", 6802 | "websocket-extensions": ">=0.1.1" 6803 | }, 6804 | "engines": { 6805 | "node": ">=0.8.0" 6806 | } 6807 | }, 6808 | "node_modules/websocket-extensions": { 6809 | "version": "0.1.4", 6810 | "dev": true, 6811 | "license": "Apache-2.0", 6812 | "engines": { 6813 | "node": ">=0.8.0" 6814 | } 6815 | }, 6816 | "node_modules/which": { 6817 | "version": "2.0.2", 6818 | "dev": true, 6819 | "license": "ISC", 6820 | "dependencies": { 6821 | "isexe": "^2.0.0" 6822 | }, 6823 | "bin": { 6824 | "node-which": "bin/node-which" 6825 | }, 6826 | "engines": { 6827 | "node": ">= 8" 6828 | } 6829 | }, 6830 | "node_modules/which-boxed-primitive": { 6831 | "version": "1.0.2", 6832 | "dev": true, 6833 | "license": "MIT", 6834 | "dependencies": { 6835 | "is-bigint": "^1.0.1", 6836 | "is-boolean-object": "^1.1.0", 6837 | "is-number-object": "^1.0.4", 6838 | "is-string": "^1.0.5", 6839 | "is-symbol": "^1.0.3" 6840 | }, 6841 | "funding": { 6842 | "url": "https://github.com/sponsors/ljharb" 6843 | } 6844 | }, 6845 | "node_modules/which-typed-array": { 6846 | "version": "1.1.15", 6847 | "dev": true, 6848 | "license": "MIT", 6849 | "dependencies": { 6850 | "available-typed-arrays": "^1.0.7", 6851 | "call-bind": "^1.0.7", 6852 | "for-each": "^0.3.3", 6853 | "gopd": "^1.0.1", 6854 | "has-tostringtag": "^1.0.2" 6855 | }, 6856 | "engines": { 6857 | "node": ">= 0.4" 6858 | }, 6859 | "funding": { 6860 | "url": "https://github.com/sponsors/ljharb" 6861 | } 6862 | }, 6863 | "node_modules/wildcard": { 6864 | "version": "2.0.1", 6865 | "dev": true, 6866 | "license": "MIT" 6867 | }, 6868 | "node_modules/wrappy": { 6869 | "version": "1.0.2", 6870 | "dev": true, 6871 | "license": "ISC" 6872 | }, 6873 | "node_modules/ws": { 6874 | "version": "8.18.0", 6875 | "dev": true, 6876 | "license": "MIT", 6877 | "engines": { 6878 | "node": ">=10.0.0" 6879 | }, 6880 | "peerDependencies": { 6881 | "bufferutil": "^4.0.1", 6882 | "utf-8-validate": ">=5.0.2" 6883 | }, 6884 | "peerDependenciesMeta": { 6885 | "bufferutil": { 6886 | "optional": true 6887 | }, 6888 | "utf-8-validate": { 6889 | "optional": true 6890 | } 6891 | } 6892 | }, 6893 | "node_modules/xtend": { 6894 | "version": "4.0.2", 6895 | "license": "MIT", 6896 | "engines": { 6897 | "node": ">=0.4" 6898 | } 6899 | }, 6900 | "node_modules/yallist": { 6901 | "version": "3.1.1", 6902 | "dev": true, 6903 | "license": "ISC" 6904 | }, 6905 | "node_modules/yocto-queue": { 6906 | "version": "1.1.1", 6907 | "dev": true, 6908 | "license": "MIT", 6909 | "engines": { 6910 | "node": ">=12.20" 6911 | }, 6912 | "funding": { 6913 | "url": "https://github.com/sponsors/sindresorhus" 6914 | } 6915 | } 6916 | } 6917 | } 6918 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "node-react-cloudinary", 3 | "version": "1.0.0", 4 | "description": "A simple project to explain how to upload images to cloudinary in a node-react full stack app", 5 | "main": "webpack.config.js", 6 | "dependencies": { 7 | "axios": "^1.7.7", 8 | "cloudinary": "^1.9.1", 9 | "express": "^4.21.0", 10 | "morgan": "^1.9.0", 11 | "multer": "^1.4.5-lts.1", 12 | "prop-types": "^15.6.1", 13 | "react": "^16.1.1", 14 | "react-dom": "^16.1.1", 15 | "react-dropzone": "^4.2.3" 16 | }, 17 | "devDependencies": { 18 | "@babel/cli": "^7.25.7", 19 | "@babel/core": "^7.25.7", 20 | "@babel/node": "^7.25.7", 21 | "@babel/plugin-transform-class-properties": "^7.25.7", 22 | "@babel/preset-env": "^7.25.7", 23 | "@babel/preset-react": "^7.25.7", 24 | "@babel/register": "^7.25.7", 25 | "babel-loader": "^9.2.1", 26 | "dotenv": "^16.4.5", 27 | "nodemon": "^3.1.7", 28 | "webpack": "^5.95.0", 29 | "webpack-cli": "^5.1.4", 30 | "webpack-dev-server": "^5.1.0" 31 | }, 32 | "scripts": { 33 | "start": "npm run webpack && babel-node ./server/server.js", 34 | "server:dev": "npm run webpack && nodemon ./server/server.js --exec babel-node --watch server", 35 | "client:dev": "webpack-dev-server --content-base src --inline --hot", 36 | "webpack": "webpack" 37 | }, 38 | "repository": { 39 | "type": "git", 40 | "url": "git+https://github.com/IAMOTZ/node-react-cloudinary.git" 41 | }, 42 | "author": "ogunniyi tunmise", 43 | "license": "ISC", 44 | "bugs": { 45 | "url": "https://github.com/IAMOTZ/node-react-cloudinary/issues" 46 | }, 47 | "homepage": "https://github.com/IAMOTZ/node-react-cloudinary#readme" 48 | } 49 | -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | Node-React-Cloudinary 9 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /server/cloudinary.js: -------------------------------------------------------------------------------- 1 | import cloudinary from 'cloudinary'; 2 | import dotEnv from 'dotenv'; 3 | 4 | dotEnv.config(); 5 | 6 | /* 7 | Configure cloudinary using enviroment variables 8 | Check .env.example for a template of setting the enviroment variables. 9 | */ 10 | cloudinary.config({ 11 | cloud_name: process.env.CLOUDINARY_CLOUD_NAME, 12 | api_key: process.env.CLOUDINARY_API_KEY, 13 | api_secret: process.env.CLOUDINARY_API_SERCRET, 14 | }); 15 | 16 | /* 17 | This function handle the asynchronous action of uploading an image to cloudinary. 18 | The cloudinary.v2.uploader.upload_stream is used because we are sending a buffer, 19 | which the normal cloudinary.v2.upload can't do. More details at https://github.com/cloudinary/cloudinary_npm/issues/130 20 | */ 21 | export const uploadImage = (image) => { 22 | const cloudinaryOptions = { 23 | resource_type: 'raw', 24 | folder: process.env.CLOUDINARY_CLOUD_FOLDER || '', 25 | } 26 | return new Promise((resolve, reject) => { 27 | cloudinary.v2.uploader.upload_stream(cloudinaryOptions, function (error, result) { 28 | if (error) { 29 | reject(error); 30 | } else { 31 | resolve(result); 32 | } 33 | }).end(image.buffer); 34 | }); 35 | }; 36 | -------------------------------------------------------------------------------- /server/middlewares.js: -------------------------------------------------------------------------------- 1 | import multer from 'multer'; 2 | 3 | /* 4 | Initialize multer. 5 | You can also specify multer configuraitons here. 6 | To limit filesize, you can do something like this: 7 | multer({ 8 | limits: { 9 | fileSize: 1 * 1024 * 1024 // Equivalent of 1MB 10 | } 11 | }); 12 | NOTE: If you are going to add multer configurations 13 | that can lead to errors, ensure to handle the errors properly. 14 | More details on multer configuration here: https://github.com/expressjs/multer 15 | */ 16 | const upload = multer(); 17 | 18 | /* 19 | This middleware would check the form-data coming from the client, 20 | if there is a single file named 'image', it would make the file 21 | available in the server as req.file 22 | Consequently, (if there is an image uplaod) { req.file === } 23 | More details at https://github.com/expressjs/multer 24 | */ 25 | export const parseImageUpload = (req, res) => { 26 | return upload.single('image'); 27 | }; 28 | -------------------------------------------------------------------------------- /server/routes.js: -------------------------------------------------------------------------------- 1 | import express from 'express'; 2 | import { parseImageUpload } from './middlewares'; 3 | import { uploadImage } from './cloudinary'; 4 | 5 | const router = express.Router(); 6 | 7 | /* Serving index.html to the browser */ 8 | router.get('/', (req, res) => { 9 | res.sendfile(path.join(__dirname, '..', 'public', 'index.html')); 10 | }); 11 | 12 | /* Handling image upload */ 13 | router.post('/image', parseImageUpload(), (req, res) => { 14 | if (req.file) { /* Check if there is an image */ 15 | uploadImage(req.file) /* If there is an image, upload it */ 16 | .then((result) => { /* If the upload is successful */ 17 | res.status(201).json({ /* Send back a success response */ 18 | status: 'success', 19 | imageCloudData: result 20 | }); 21 | }) 22 | .catch((error) => { /* If there is an error uploading the image */ 23 | res.status(400).json({ /* Send back an error response */ 24 | status: 'error', 25 | message: error.message 26 | }); 27 | }); 28 | } else { /* If there is no image */ 29 | res.status(400).json({ /* Send back a failure message */ 30 | status: 'failed', 31 | message: 'No image file was uploaded' 32 | }); 33 | } 34 | }); 35 | 36 | export default router; -------------------------------------------------------------------------------- /server/server.js: -------------------------------------------------------------------------------- 1 | import path from 'path'; 2 | import express from 'express'; 3 | import logger from 'morgan'; 4 | import routes from './routes'; 5 | 6 | const server = express(); 7 | 8 | /* 9 | This middleware enables cross-origin requests. 10 | It allows the client and server to run on different ports but still communicate with each other. 11 | More detials at https://dzone.com/articles/cors-in-node 12 | */ 13 | server.all('*', function (req, res, next) { 14 | res.header('Access-Control-Allow-Origin', '*'); 15 | next(); 16 | }); 17 | 18 | /* Log incoming request to console */ 19 | server.use(logger('dev')); 20 | 21 | /* Serve the static files */ 22 | server.use(express.static(path.join(__dirname, '..', 'public'))); 23 | 24 | /* Routing */ 25 | server.use('/', routes); 26 | 27 | /* Unknown routes */ 28 | server.use((req, res) => { 29 | res.status(404).send('Page not found'); 30 | }) 31 | 32 | /* The default port is 3000 */ 33 | const port = process.env.PORT || 3000; 34 | 35 | /* Start the applciation */ 36 | server.listen(port, () => { 37 | console.log(`App started on port ${port}`); 38 | }); -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- 1 | const webpack = require('webpack'); 2 | const path = require('path'); 3 | 4 | module.exports = { 5 | entry: [ 6 | path.join(__dirname, '/client/app.jsx'), 7 | ], 8 | module: { 9 | rules: [ 10 | { 11 | test: /\.jsx?$/, 12 | exclude: /(node_modules)/, 13 | use: { 14 | loader: 'babel-loader', 15 | options: { 16 | presets: ['@babel/preset-react', '@babel/preset-env'], 17 | plugins: ['@babel/plugin-transform-class-properties'] 18 | } 19 | } 20 | }, 21 | ], 22 | }, 23 | output: { 24 | path: path.join(__dirname, 'public'), 25 | filename: 'bundle.js', 26 | }, 27 | resolve: { 28 | extensions: ['.jsx', '.js'], 29 | }, 30 | devServer: { 31 | static: { 32 | directory: path.join(__dirname, 'public'), 33 | }, 34 | devMiddleware: { 35 | index: false, // specify to enable root proxying 36 | }, 37 | proxy: [ 38 | { 39 | context: ['/'], 40 | target: 'http://localhost:3000', 41 | } 42 | ] 43 | } 44 | }; 45 | --------------------------------------------------------------------------------