├── client ├── .gitignore ├── README.md ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt └── src │ ├── App.js │ ├── Components │ ├── Home.js │ ├── Login.js │ ├── Logout.js │ ├── Navbar.js │ └── SignUp.js │ ├── index.css │ └── index.js └── server ├── .env ├── index.js ├── model └── User.js ├── package-lock.json └── package.json /client/.gitignore: -------------------------------------------------------------------------------- 1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. 2 | 3 | # dependencies 4 | /node_modules 5 | /.pnp 6 | .pnp.js 7 | 8 | # testing 9 | /coverage 10 | 11 | # production 12 | /build 13 | 14 | # misc 15 | .DS_Store 16 | .env.local 17 | .env.development.local 18 | .env.test.local 19 | .env.production.local 20 | 21 | npm-debug.log* 22 | yarn-debug.log* 23 | yarn-error.log* 24 | -------------------------------------------------------------------------------- /client/README.md: -------------------------------------------------------------------------------- 1 | # Getting Started with Create React App 2 | 3 | This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app). 4 | 5 | ## Available Scripts 6 | 7 | In the project directory, you can run: 8 | 9 | ### `npm start` 10 | 11 | Runs the app in the development mode.\ 12 | Open [http://localhost:3000](http://localhost:3000) to view it in your browser. 13 | 14 | The page will reload when you make changes.\ 15 | You may also see any lint errors in the console. 16 | 17 | ### `npm test` 18 | 19 | Launches the test runner in the interactive watch mode.\ 20 | See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information. 21 | 22 | ### `npm run build` 23 | 24 | Builds the app for production to the `build` folder.\ 25 | It correctly bundles React in production mode and optimizes the build for the best performance. 26 | 27 | The build is minified and the filenames include the hashes.\ 28 | Your app is ready to be deployed! 29 | 30 | See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information. 31 | 32 | ### `npm run eject` 33 | 34 | **Note: this is a one-way operation. Once you `eject`, you can't go back!** 35 | 36 | If you aren't satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project. 37 | 38 | Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you're on your own. 39 | 40 | You don't have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn't feel obligated to use this feature. However we understand that this tool wouldn't be useful if you couldn't customize it when you are ready for it. 41 | 42 | ## Learn More 43 | 44 | You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started). 45 | 46 | To learn React, check out the [React documentation](https://reactjs.org/). 47 | 48 | ### Code Splitting 49 | 50 | This section has moved here: [https://facebook.github.io/create-react-app/docs/code-splitting](https://facebook.github.io/create-react-app/docs/code-splitting) 51 | 52 | ### Analyzing the Bundle Size 53 | 54 | This section has moved here: [https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size](https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size) 55 | 56 | ### Making a Progressive Web App 57 | 58 | This section has moved here: [https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app](https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app) 59 | 60 | ### Advanced Configuration 61 | 62 | This section has moved here: [https://facebook.github.io/create-react-app/docs/advanced-configuration](https://facebook.github.io/create-react-app/docs/advanced-configuration) 63 | 64 | ### Deployment 65 | 66 | This section has moved here: [https://facebook.github.io/create-react-app/docs/deployment](https://facebook.github.io/create-react-app/docs/deployment) 67 | 68 | ### `npm run build` fails to minify 69 | 70 | This section has moved here: [https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify](https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify) 71 | -------------------------------------------------------------------------------- /client/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "client", 3 | "version": "0.1.0", 4 | "private": true, 5 | "dependencies": { 6 | "@emotion/react": "^11.11.4", 7 | "@emotion/styled": "^11.11.5", 8 | "@fortawesome/fontawesome-svg-core": "^6.5.2", 9 | "@fortawesome/free-solid-svg-icons": "^6.5.2", 10 | "@fortawesome/react-fontawesome": "^0.2.2", 11 | "@mui/material": "^5.15.20", 12 | "@mui/styles": "^5.15.20", 13 | "@testing-library/jest-dom": "^5.17.0", 14 | "@testing-library/react": "^13.4.0", 15 | "@testing-library/user-event": "^13.5.0", 16 | "axios": "^1.7.2", 17 | "react": "^18.3.1", 18 | "react-dom": "^18.3.1", 19 | "react-router-dom": "^6.23.1", 20 | "react-scripts": "5.0.1", 21 | "web-vitals": "^2.1.4" 22 | }, 23 | "scripts": { 24 | "start": "react-scripts start", 25 | "build": "react-scripts build", 26 | "test": "react-scripts test", 27 | "eject": "react-scripts eject" 28 | }, 29 | "eslintConfig": { 30 | "extends": [ 31 | "react-app", 32 | "react-app/jest" 33 | ] 34 | }, 35 | "browserslist": { 36 | "production": [ 37 | ">0.2%", 38 | "not dead", 39 | "not op_mini all" 40 | ], 41 | "development": [ 42 | "last 1 chrome version", 43 | "last 1 firefox version", 44 | "last 1 safari version" 45 | ] 46 | } 47 | } 48 | -------------------------------------------------------------------------------- /client/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rijushree123/Mernstack-authentication/a7a64fe320c09e6794aa15357e75eb6bc6cfb935/client/public/favicon.ico -------------------------------------------------------------------------------- /client/public/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 12 | 13 | 17 | 18 | 27 | React App 28 | 29 | 30 | 31 |
32 | 42 | 43 | 44 | -------------------------------------------------------------------------------- /client/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rijushree123/Mernstack-authentication/a7a64fe320c09e6794aa15357e75eb6bc6cfb935/client/public/logo192.png -------------------------------------------------------------------------------- /client/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rijushree123/Mernstack-authentication/a7a64fe320c09e6794aa15357e75eb6bc6cfb935/client/public/logo512.png -------------------------------------------------------------------------------- /client/public/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "short_name": "React App", 3 | "name": "Create React App Sample", 4 | "icons": [ 5 | { 6 | "src": "favicon.ico", 7 | "sizes": "64x64 32x32 24x24 16x16", 8 | "type": "image/x-icon" 9 | }, 10 | { 11 | "src": "logo192.png", 12 | "type": "image/png", 13 | "sizes": "192x192" 14 | }, 15 | { 16 | "src": "logo512.png", 17 | "type": "image/png", 18 | "sizes": "512x512" 19 | } 20 | ], 21 | "start_url": ".", 22 | "display": "standalone", 23 | "theme_color": "#000000", 24 | "background_color": "#ffffff" 25 | } 26 | -------------------------------------------------------------------------------- /client/public/robots.txt: -------------------------------------------------------------------------------- 1 | # https://www.robotstxt.org/robotstxt.html 2 | User-agent: * 3 | Disallow: 4 | -------------------------------------------------------------------------------- /client/src/App.js: -------------------------------------------------------------------------------- 1 | import {React, useState, useEffect } from "react"; 2 | import { BrowserRouter, Routes, Route, Navigate } from "react-router-dom"; 3 | import Home from "./Components/Home"; 4 | import Login from "./Components/Login"; 5 | import SignUp from "./Components/SignUp"; 6 | import { Navbar } from "./Components/Navbar"; 7 | // import ProtectedRoute from "./Components/ProtectedRoute"; 8 | import axios from "axios"; 9 | 10 | function App() { 11 | const [isLoggedIn, setIsLoggedIn] = useState(false); 12 | 13 | useEffect(() => { 14 | axios.get('http://localhost:3001/user', { withCredentials: true }) 15 | .then(response => { 16 | if (response.data.user) { 17 | setIsLoggedIn(true); 18 | } else { 19 | setIsLoggedIn(false); 20 | } 21 | }) 22 | .catch(() => setIsLoggedIn(false)); 23 | }, []); 24 | 25 | return ( 26 |
27 | 28 | 29 | 30 | } /> 31 | : } /> 32 | : } /> 33 | 34 | 35 |
36 | ); 37 | } 38 | 39 | export default App; -------------------------------------------------------------------------------- /client/src/Components/Home.js: -------------------------------------------------------------------------------- 1 | import React, { useEffect, useState } from "react"; 2 | import { useLocation, useNavigate } from "react-router-dom"; 3 | import axios from "axios"; 4 | 5 | function Home() { 6 | const location = useLocation(); 7 | const navigate = useNavigate(); 8 | const [user, setUser] = useState(location.state?.user); 9 | const [loading, setLoading] = useState(!user); 10 | 11 | useEffect(() => { 12 | if (!user) { 13 | axios.get('http://localhost:3001/user', { withCredentials: true }) 14 | .then(response => { 15 | if (response.data.user) { 16 | setUser(response.data.user); 17 | } else { 18 | navigate("/login"); 19 | } 20 | }) 21 | .catch(() => navigate("/login")) 22 | .finally(() => setLoading(false)); 23 | } else { 24 | setLoading(false); 25 | } 26 | }, [user, navigate]); 27 | 28 | if (loading) { 29 | return

Loading...

; 30 | } 31 | 32 | return ( 33 |
34 |

Welcome Home {user && user.name} !!!

35 |
36 | ); 37 | } 38 | 39 | export default Home; 40 | -------------------------------------------------------------------------------- /client/src/Components/Login.js: -------------------------------------------------------------------------------- 1 | import React, { useState } from "react"; 2 | import { useNavigate } from "react-router-dom"; 3 | import axios from "axios"; 4 | import { Grid, Link, Button, Paper, TextField, Typography } from "@mui/material"; 5 | 6 | function Login({ setIsLoggedIn, isLoggedIn }) { 7 | const [email, setEmail] = useState(""); 8 | const [password, setPassword] = useState(""); 9 | const navigate = useNavigate(); 10 | 11 | const handleLogin = (e) => { 12 | e.preventDefault(); 13 | axios.post("http://localhost:3001/login", { email, password }, { withCredentials: true }) 14 | .then(result => { 15 | if (result.data === "Success") { 16 | axios.get('http://localhost:3001/user', { withCredentials: true }) 17 | .then(response => { 18 | if (response.data.user) { 19 | setIsLoggedIn(true); 20 | navigate("/home", { state: { user: response.data.user } }); 21 | } 22 | }); 23 | } else { 24 | alert("Login failed"); 25 | } 26 | }) 27 | .catch(err => console.log(err)); 28 | }; 29 | 30 | const paperStyle = { padding: "2rem", margin: "100px auto", borderRadius: "1rem", boxShadow: "10px 10px 10px" }; 31 | const heading = { fontSize: "2.5rem", fontWeight: "600" }; 32 | const row = { display: "flex", marginTop: "2rem" }; 33 | const btnStyle={marginTop:"2rem", fontSize:"1.2rem", fontWeight:"700", backgroundColor:"blue", borderRadius:"0.5rem"}; 34 | const label = { fontWeight: "700" }; 35 | 36 | return ( 37 |
38 | 39 | 40 | Login 41 |
42 | 43 | setEmail(e.target.value)} /> 44 | 45 | 46 | setPassword(e.target.value)} /> 47 | 48 | 49 |
50 |

Don't have an account? SignUp

51 |
52 |
53 |
54 | ); 55 | } 56 | 57 | export default Login; 58 | -------------------------------------------------------------------------------- /client/src/Components/Logout.js: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { useNavigate } from "react-router-dom"; 3 | import axios from "axios"; 4 | import { Button } from "@mui/material"; 5 | 6 | function Logout({ setIsLoggedIn }) { 7 | const navigate = useNavigate(); 8 | 9 | const handleLogout = () => { 10 | axios.post("http://localhost:3001/logout", {}, { withCredentials: true }) 11 | .then(response => { 12 | if (response.status === 200) { 13 | setIsLoggedIn(false); 14 | navigate("/login"); 15 | } 16 | }) 17 | .catch(error => { 18 | console.error("Error logging out:", error); 19 | }); 20 | }; 21 | const button={marginRight:'20px', fontSize:'1.2rem', fontWeight:'700', padding:'0.3rem 1.4rem'} 22 | return ( 23 | 26 | ); 27 | } 28 | 29 | export default Logout; 30 | -------------------------------------------------------------------------------- /client/src/Components/Navbar.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import { Link } from 'react-router-dom'; 3 | import AppBar from '@mui/material/AppBar'; 4 | import Toolbar from '@mui/material/Toolbar'; 5 | import Typography from '@mui/material/Typography'; 6 | import Button from '@mui/material/Button'; 7 | import Logout from './Logout'; 8 | 9 | export const Navbar = ({ isLoggedIn, setIsLoggedIn }) => { 10 | const button={marginRight:'20px', fontSize:'1.2rem', fontWeight:'700', padding:'0.3rem 1.4rem'} 11 | return ( 12 | 13 | 14 | 15 | Tech Coffee Break 16 | 17 | {!isLoggedIn ? ( 18 | <> 19 | 22 | 23 | 26 | 27 | ) : ( 28 | 29 | )} 30 | 31 | 32 | ); 33 | }; 34 | -------------------------------------------------------------------------------- /client/src/Components/SignUp.js: -------------------------------------------------------------------------------- 1 | import React, {useState} from "react"; 2 | import { useNavigate } from "react-router-dom"; 3 | import axios from "axios"; 4 | import { Grid, Link, Button, Paper, TextField, Typography } from "@mui/material"; 5 | 6 | 7 | function SignUp(){ 8 | const [name, setName] = useState(""); 9 | const [email, setEmail] = useState(""); 10 | const [password, setPassword] = useState(""); 11 | const navigate = useNavigate(); 12 | 13 | const handleSignup = (e) => { 14 | e.preventDefault(); 15 | axios.post("http://localhost:3001/signup", { name, email, password }) 16 | .then(result => { 17 | if (result.status === 201) { 18 | navigate("/login"); 19 | } 20 | }) 21 | .catch(err => { 22 | if (err.response && err.response.status === 400) { 23 | window.alert("Email already exists. Please use a different email."); 24 | } else { 25 | console.log(err); 26 | } 27 | }); 28 | }; 29 | const paperStyle = {padding: "2rem", margin: "100px auto", borderRadius:"1rem", boxShadow: "10px 10px 10px"}; 30 | const heading = {fontSize:"2.5rem", fontWeight:"600"} 31 | const row = {display:"flex", marginTop:"2rem"} 32 | const btnStyle={marginTop:"2rem", fontSize:"1.2rem", fontWeight:"700", backgroundColor:"blue", borderRadius:"0.5rem"}; 33 | return ( 34 |
35 | 36 | 46 | Signup 47 |
48 | setName(e.target.value)}> 49 | setEmail(e.target.value)}/> 50 | setPassword(e.target.value)} /> 51 | 52 | 53 |

Already have an account? Login

54 |
55 |
56 |
57 | ) 58 | } 59 | export default SignUp; -------------------------------------------------------------------------------- /client/src/index.css: -------------------------------------------------------------------------------- 1 | body{ 2 | background-color: rgb(18, 68, 185); 3 | display: flex; 4 | justify-content: center; 5 | align-items: center; 6 | flex-direction: column; 7 | height: 100vh; 8 | width: 100%; 9 | overflow: hidden; 10 | } 11 | p{ 12 | font-size: large; 13 | } -------------------------------------------------------------------------------- /client/src/index.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import ReactDOM from 'react-dom/client'; 3 | import './index.css'; 4 | import App from './App'; 5 | 6 | const root = ReactDOM.createRoot(document.getElementById('root')); 7 | root.render( 8 | 9 | 10 | 11 | ); 12 | -------------------------------------------------------------------------------- /server/.env: -------------------------------------------------------------------------------- 1 | PORT="3001" 2 | MONGO_URI="mongodb+srv://rijushree123:Catdogmongo@cluster0.dybpkkl.mongodb.net/user" 3 | SESSION_SECRET="12345" -------------------------------------------------------------------------------- /server/index.js: -------------------------------------------------------------------------------- 1 | const express = require("express"); 2 | const mongoose = require("mongoose"); 3 | const cors = require("cors"); 4 | const bcrypt = require("bcrypt"); 5 | const dotenv = require("dotenv"); 6 | const session = require("express-session"); 7 | const MongoStore = require("connect-mongo"); 8 | const UserModel = require("./model/User"); 9 | 10 | dotenv.config(); 11 | const app = express(); 12 | app.use(express.json()); 13 | app.use(cors({ 14 | origin: 'http://localhost:3000', // Replace with your frontend's URL 15 | credentials: true 16 | })); 17 | 18 | 19 | mongoose.connect(process.env.MONGO_URI) 20 | .then(() => console.log('Connected to MongoDB')) 21 | .catch(err => console.error('Failed to connect to MongoDB', err)); 22 | 23 | 24 | app.use(session({ 25 | secret: process.env.SESSION_SECRET, 26 | resave: false, 27 | saveUninitialized: true, 28 | store: MongoStore.create({ 29 | mongoUrl: process.env.MONGO_URI 30 | }), 31 | cookie: { maxAge: 24 * 60 * 60 * 1000 } // 1 day 32 | })); 33 | 34 | app.listen(process.env.PORT, () => { 35 | console.log(`Server is running on port ${process.env.PORT}`); 36 | }); 37 | 38 | 39 | app.post("/signup", async (req, res) => { 40 | try { 41 | const { name, email, password } = req.body; 42 | const existingUser = await UserModel.findOne({ email }); 43 | if (existingUser) { 44 | return res.status(400).json({ error: "Email already exists" }); 45 | } 46 | const hashedPassword = await bcrypt.hash(password, 10); 47 | const newUser = new UserModel({ name, email, password: hashedPassword }); 48 | const savedUser = await newUser.save(); 49 | res.status(201).json(savedUser); 50 | } catch (error) { 51 | res.status(500).json({ error: error.message }); 52 | } 53 | }); 54 | 55 | 56 | 57 | app.post("/login", async (req, res) => { 58 | try { 59 | const { email, password } = req.body; 60 | const user = await UserModel.findOne({ email }); 61 | if (user) { 62 | const passwordMatch = await bcrypt.compare(password, user.password); 63 | if (passwordMatch) { 64 | req.session.user = { id: user._id, name: user.name, email: user.email }; 65 | // console.log(email); 66 | console.log(user.name); 67 | res.json("Success"); 68 | } else { 69 | res.status(401).json("Password doesn't match"); 70 | } 71 | } else { 72 | res.status(404).json("No Records found"); 73 | } 74 | } catch (error) { 75 | res.status(500).json({ error: error.message }); 76 | } 77 | }); 78 | 79 | 80 | app.post("/logout", (req, res) => { 81 | if (req.session) { 82 | req.session.destroy(err => { 83 | if (err) { 84 | res.status(500).json({ error: "Failed to logout" }); 85 | } else { 86 | res.status(200).json("Logout successful"); 87 | } 88 | }); 89 | } else { 90 | res.status(400).json({ error: "No session found" }); 91 | } 92 | }); 93 | 94 | app.get('/user', (req, res) => { 95 | if (req.session.user) { 96 | res.json({ user: req.session.user }); 97 | } else { 98 | res.status(401).json("Not authenticated"); 99 | } 100 | }); 101 | -------------------------------------------------------------------------------- /server/model/User.js: -------------------------------------------------------------------------------- 1 | const mongoose = require("mongoose"); 2 | 3 | const UserSchema = new mongoose.Schema({ 4 | name:String, 5 | email:String, 6 | password:String 7 | }) 8 | 9 | const UserModel = mongoose.model("users", UserSchema); 10 | 11 | module.exports = UserModel; -------------------------------------------------------------------------------- /server/package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "server", 3 | "version": "1.0.0", 4 | "lockfileVersion": 3, 5 | "requires": true, 6 | "packages": { 7 | "": { 8 | "name": "server", 9 | "version": "1.0.0", 10 | "license": "ISC", 11 | "dependencies": { 12 | "bcrypt": "^5.1.1", 13 | "connect-mongo": "^5.1.0", 14 | "cors": "^2.8.5", 15 | "dotenv": "^16.4.5", 16 | "express": "^4.19.2", 17 | "express-session": "^1.18.0", 18 | "mongoose": "^8.4.1", 19 | "nodemon": "^3.1.3" 20 | } 21 | }, 22 | "node_modules/@mapbox/node-pre-gyp": { 23 | "version": "1.0.11", 24 | "resolved": "https://registry.npmjs.org/@mapbox/node-pre-gyp/-/node-pre-gyp-1.0.11.tgz", 25 | "integrity": "sha512-Yhlar6v9WQgUp/He7BdgzOz8lqMQ8sU+jkCq7Wx8Myc5YFJLbEe7lgui/V7G1qB1DJykHSGwreceSaD60Y0PUQ==", 26 | "dependencies": { 27 | "detect-libc": "^2.0.0", 28 | "https-proxy-agent": "^5.0.0", 29 | "make-dir": "^3.1.0", 30 | "node-fetch": "^2.6.7", 31 | "nopt": "^5.0.0", 32 | "npmlog": "^5.0.1", 33 | "rimraf": "^3.0.2", 34 | "semver": "^7.3.5", 35 | "tar": "^6.1.11" 36 | }, 37 | "bin": { 38 | "node-pre-gyp": "bin/node-pre-gyp" 39 | } 40 | }, 41 | "node_modules/@mongodb-js/saslprep": { 42 | "version": "1.1.7", 43 | "resolved": "https://registry.npmjs.org/@mongodb-js/saslprep/-/saslprep-1.1.7.tgz", 44 | "integrity": "sha512-dCHW/oEX0KJ4NjDULBo3JiOaK5+6axtpBbS+ao2ZInoAL9/YRQLhXzSNAFz7hP4nzLkIqsfYAK/PDE3+XHny0Q==", 45 | "dependencies": { 46 | "sparse-bitfield": "^3.0.3" 47 | } 48 | }, 49 | "node_modules/@types/webidl-conversions": { 50 | "version": "7.0.3", 51 | "resolved": "https://registry.npmjs.org/@types/webidl-conversions/-/webidl-conversions-7.0.3.tgz", 52 | "integrity": "sha512-CiJJvcRtIgzadHCYXw7dqEnMNRjhGZlYK05Mj9OyktqV8uVT8fD2BFOB7S1uwBE3Kj2Z+4UyPmFw/Ixgw/LAlA==" 53 | }, 54 | "node_modules/@types/whatwg-url": { 55 | "version": "11.0.5", 56 | "resolved": "https://registry.npmjs.org/@types/whatwg-url/-/whatwg-url-11.0.5.tgz", 57 | "integrity": "sha512-coYR071JRaHa+xoEvvYqvnIHaVqaYrLPbsufM9BF63HkwI5Lgmy2QR8Q5K/lYDYo5AK82wOvSOS0UsLTpTG7uQ==", 58 | "dependencies": { 59 | "@types/webidl-conversions": "*" 60 | } 61 | }, 62 | "node_modules/abbrev": { 63 | "version": "1.1.1", 64 | "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", 65 | "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==" 66 | }, 67 | "node_modules/accepts": { 68 | "version": "1.3.8", 69 | "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", 70 | "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", 71 | "dependencies": { 72 | "mime-types": "~2.1.34", 73 | "negotiator": "0.6.3" 74 | }, 75 | "engines": { 76 | "node": ">= 0.6" 77 | } 78 | }, 79 | "node_modules/agent-base": { 80 | "version": "6.0.2", 81 | "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", 82 | "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", 83 | "dependencies": { 84 | "debug": "4" 85 | }, 86 | "engines": { 87 | "node": ">= 6.0.0" 88 | } 89 | }, 90 | "node_modules/agent-base/node_modules/debug": { 91 | "version": "4.3.5", 92 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.5.tgz", 93 | "integrity": "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==", 94 | "dependencies": { 95 | "ms": "2.1.2" 96 | }, 97 | "engines": { 98 | "node": ">=6.0" 99 | }, 100 | "peerDependenciesMeta": { 101 | "supports-color": { 102 | "optional": true 103 | } 104 | } 105 | }, 106 | "node_modules/agent-base/node_modules/ms": { 107 | "version": "2.1.2", 108 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", 109 | "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" 110 | }, 111 | "node_modules/ansi-regex": { 112 | "version": "5.0.1", 113 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 114 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 115 | "engines": { 116 | "node": ">=8" 117 | } 118 | }, 119 | "node_modules/anymatch": { 120 | "version": "3.1.3", 121 | "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", 122 | "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", 123 | "dependencies": { 124 | "normalize-path": "^3.0.0", 125 | "picomatch": "^2.0.4" 126 | }, 127 | "engines": { 128 | "node": ">= 8" 129 | } 130 | }, 131 | "node_modules/aproba": { 132 | "version": "2.0.0", 133 | "resolved": "https://registry.npmjs.org/aproba/-/aproba-2.0.0.tgz", 134 | "integrity": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==" 135 | }, 136 | "node_modules/are-we-there-yet": { 137 | "version": "2.0.0", 138 | "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-2.0.0.tgz", 139 | "integrity": "sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==", 140 | "deprecated": "This package is no longer supported.", 141 | "dependencies": { 142 | "delegates": "^1.0.0", 143 | "readable-stream": "^3.6.0" 144 | }, 145 | "engines": { 146 | "node": ">=10" 147 | } 148 | }, 149 | "node_modules/array-flatten": { 150 | "version": "1.1.1", 151 | "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", 152 | "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==" 153 | }, 154 | "node_modules/asn1.js": { 155 | "version": "5.4.1", 156 | "resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-5.4.1.tgz", 157 | "integrity": "sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA==", 158 | "dependencies": { 159 | "bn.js": "^4.0.0", 160 | "inherits": "^2.0.1", 161 | "minimalistic-assert": "^1.0.0", 162 | "safer-buffer": "^2.1.0" 163 | } 164 | }, 165 | "node_modules/balanced-match": { 166 | "version": "1.0.2", 167 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", 168 | "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" 169 | }, 170 | "node_modules/bcrypt": { 171 | "version": "5.1.1", 172 | "resolved": "https://registry.npmjs.org/bcrypt/-/bcrypt-5.1.1.tgz", 173 | "integrity": "sha512-AGBHOG5hPYZ5Xl9KXzU5iKq9516yEmvCKDg3ecP5kX2aB6UqTeXZxk2ELnDgDm6BQSMlLt9rDB4LoSMx0rYwww==", 174 | "hasInstallScript": true, 175 | "dependencies": { 176 | "@mapbox/node-pre-gyp": "^1.0.11", 177 | "node-addon-api": "^5.0.0" 178 | }, 179 | "engines": { 180 | "node": ">= 10.0.0" 181 | } 182 | }, 183 | "node_modules/binary-extensions": { 184 | "version": "2.3.0", 185 | "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", 186 | "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", 187 | "engines": { 188 | "node": ">=8" 189 | }, 190 | "funding": { 191 | "url": "https://github.com/sponsors/sindresorhus" 192 | } 193 | }, 194 | "node_modules/bn.js": { 195 | "version": "4.12.0", 196 | "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", 197 | "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" 198 | }, 199 | "node_modules/body-parser": { 200 | "version": "1.20.2", 201 | "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.2.tgz", 202 | "integrity": "sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==", 203 | "dependencies": { 204 | "bytes": "3.1.2", 205 | "content-type": "~1.0.5", 206 | "debug": "2.6.9", 207 | "depd": "2.0.0", 208 | "destroy": "1.2.0", 209 | "http-errors": "2.0.0", 210 | "iconv-lite": "0.4.24", 211 | "on-finished": "2.4.1", 212 | "qs": "6.11.0", 213 | "raw-body": "2.5.2", 214 | "type-is": "~1.6.18", 215 | "unpipe": "1.0.0" 216 | }, 217 | "engines": { 218 | "node": ">= 0.8", 219 | "npm": "1.2.8000 || >= 1.4.16" 220 | } 221 | }, 222 | "node_modules/brace-expansion": { 223 | "version": "1.1.11", 224 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 225 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 226 | "dependencies": { 227 | "balanced-match": "^1.0.0", 228 | "concat-map": "0.0.1" 229 | } 230 | }, 231 | "node_modules/braces": { 232 | "version": "3.0.3", 233 | "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", 234 | "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", 235 | "dependencies": { 236 | "fill-range": "^7.1.1" 237 | }, 238 | "engines": { 239 | "node": ">=8" 240 | } 241 | }, 242 | "node_modules/bson": { 243 | "version": "6.7.0", 244 | "resolved": "https://registry.npmjs.org/bson/-/bson-6.7.0.tgz", 245 | "integrity": "sha512-w2IquM5mYzYZv6rs3uN2DZTOBe2a0zXLj53TGDqwF4l6Sz/XsISrisXOJihArF9+BZ6Cq/GjVht7Sjfmri7ytQ==", 246 | "engines": { 247 | "node": ">=16.20.1" 248 | } 249 | }, 250 | "node_modules/bytes": { 251 | "version": "3.1.2", 252 | "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", 253 | "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", 254 | "engines": { 255 | "node": ">= 0.8" 256 | } 257 | }, 258 | "node_modules/call-bind": { 259 | "version": "1.0.7", 260 | "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz", 261 | "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==", 262 | "dependencies": { 263 | "es-define-property": "^1.0.0", 264 | "es-errors": "^1.3.0", 265 | "function-bind": "^1.1.2", 266 | "get-intrinsic": "^1.2.4", 267 | "set-function-length": "^1.2.1" 268 | }, 269 | "engines": { 270 | "node": ">= 0.4" 271 | }, 272 | "funding": { 273 | "url": "https://github.com/sponsors/ljharb" 274 | } 275 | }, 276 | "node_modules/chokidar": { 277 | "version": "3.6.0", 278 | "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", 279 | "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", 280 | "dependencies": { 281 | "anymatch": "~3.1.2", 282 | "braces": "~3.0.2", 283 | "glob-parent": "~5.1.2", 284 | "is-binary-path": "~2.1.0", 285 | "is-glob": "~4.0.1", 286 | "normalize-path": "~3.0.0", 287 | "readdirp": "~3.6.0" 288 | }, 289 | "engines": { 290 | "node": ">= 8.10.0" 291 | }, 292 | "funding": { 293 | "url": "https://paulmillr.com/funding/" 294 | }, 295 | "optionalDependencies": { 296 | "fsevents": "~2.3.2" 297 | } 298 | }, 299 | "node_modules/chownr": { 300 | "version": "2.0.0", 301 | "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", 302 | "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", 303 | "engines": { 304 | "node": ">=10" 305 | } 306 | }, 307 | "node_modules/color-support": { 308 | "version": "1.1.3", 309 | "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz", 310 | "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==", 311 | "bin": { 312 | "color-support": "bin.js" 313 | } 314 | }, 315 | "node_modules/concat-map": { 316 | "version": "0.0.1", 317 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", 318 | "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" 319 | }, 320 | "node_modules/connect-mongo": { 321 | "version": "5.1.0", 322 | "resolved": "https://registry.npmjs.org/connect-mongo/-/connect-mongo-5.1.0.tgz", 323 | "integrity": "sha512-xT0vxQLqyqoUTxPLzlP9a/u+vir0zNkhiy9uAdHjSCcUUf7TS5b55Icw8lVyYFxfemP3Mf9gdwUOgeF3cxCAhw==", 324 | "dependencies": { 325 | "debug": "^4.3.1", 326 | "kruptein": "^3.0.0" 327 | }, 328 | "engines": { 329 | "node": ">=12.9.0" 330 | }, 331 | "peerDependencies": { 332 | "express-session": "^1.17.1", 333 | "mongodb": ">= 5.1.0 < 7" 334 | } 335 | }, 336 | "node_modules/connect-mongo/node_modules/debug": { 337 | "version": "4.3.5", 338 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.5.tgz", 339 | "integrity": "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==", 340 | "dependencies": { 341 | "ms": "2.1.2" 342 | }, 343 | "engines": { 344 | "node": ">=6.0" 345 | }, 346 | "peerDependenciesMeta": { 347 | "supports-color": { 348 | "optional": true 349 | } 350 | } 351 | }, 352 | "node_modules/connect-mongo/node_modules/ms": { 353 | "version": "2.1.2", 354 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", 355 | "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" 356 | }, 357 | "node_modules/console-control-strings": { 358 | "version": "1.1.0", 359 | "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", 360 | "integrity": "sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==" 361 | }, 362 | "node_modules/content-disposition": { 363 | "version": "0.5.4", 364 | "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", 365 | "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", 366 | "dependencies": { 367 | "safe-buffer": "5.2.1" 368 | }, 369 | "engines": { 370 | "node": ">= 0.6" 371 | } 372 | }, 373 | "node_modules/content-type": { 374 | "version": "1.0.5", 375 | "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", 376 | "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", 377 | "engines": { 378 | "node": ">= 0.6" 379 | } 380 | }, 381 | "node_modules/cookie": { 382 | "version": "0.6.0", 383 | "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.6.0.tgz", 384 | "integrity": "sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==", 385 | "engines": { 386 | "node": ">= 0.6" 387 | } 388 | }, 389 | "node_modules/cookie-signature": { 390 | "version": "1.0.6", 391 | "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", 392 | "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==" 393 | }, 394 | "node_modules/cors": { 395 | "version": "2.8.5", 396 | "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.5.tgz", 397 | "integrity": "sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==", 398 | "dependencies": { 399 | "object-assign": "^4", 400 | "vary": "^1" 401 | }, 402 | "engines": { 403 | "node": ">= 0.10" 404 | } 405 | }, 406 | "node_modules/debug": { 407 | "version": "2.6.9", 408 | "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", 409 | "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", 410 | "dependencies": { 411 | "ms": "2.0.0" 412 | } 413 | }, 414 | "node_modules/define-data-property": { 415 | "version": "1.1.4", 416 | "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", 417 | "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", 418 | "dependencies": { 419 | "es-define-property": "^1.0.0", 420 | "es-errors": "^1.3.0", 421 | "gopd": "^1.0.1" 422 | }, 423 | "engines": { 424 | "node": ">= 0.4" 425 | }, 426 | "funding": { 427 | "url": "https://github.com/sponsors/ljharb" 428 | } 429 | }, 430 | "node_modules/delegates": { 431 | "version": "1.0.0", 432 | "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", 433 | "integrity": "sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==" 434 | }, 435 | "node_modules/depd": { 436 | "version": "2.0.0", 437 | "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", 438 | "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", 439 | "engines": { 440 | "node": ">= 0.8" 441 | } 442 | }, 443 | "node_modules/destroy": { 444 | "version": "1.2.0", 445 | "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", 446 | "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", 447 | "engines": { 448 | "node": ">= 0.8", 449 | "npm": "1.2.8000 || >= 1.4.16" 450 | } 451 | }, 452 | "node_modules/detect-libc": { 453 | "version": "2.0.3", 454 | "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.3.tgz", 455 | "integrity": "sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==", 456 | "engines": { 457 | "node": ">=8" 458 | } 459 | }, 460 | "node_modules/dotenv": { 461 | "version": "16.4.5", 462 | "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.4.5.tgz", 463 | "integrity": "sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==", 464 | "engines": { 465 | "node": ">=12" 466 | }, 467 | "funding": { 468 | "url": "https://dotenvx.com" 469 | } 470 | }, 471 | "node_modules/ee-first": { 472 | "version": "1.1.1", 473 | "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", 474 | "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" 475 | }, 476 | "node_modules/emoji-regex": { 477 | "version": "8.0.0", 478 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", 479 | "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" 480 | }, 481 | "node_modules/encodeurl": { 482 | "version": "1.0.2", 483 | "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", 484 | "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", 485 | "engines": { 486 | "node": ">= 0.8" 487 | } 488 | }, 489 | "node_modules/es-define-property": { 490 | "version": "1.0.0", 491 | "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz", 492 | "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==", 493 | "dependencies": { 494 | "get-intrinsic": "^1.2.4" 495 | }, 496 | "engines": { 497 | "node": ">= 0.4" 498 | } 499 | }, 500 | "node_modules/es-errors": { 501 | "version": "1.3.0", 502 | "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", 503 | "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", 504 | "engines": { 505 | "node": ">= 0.4" 506 | } 507 | }, 508 | "node_modules/escape-html": { 509 | "version": "1.0.3", 510 | "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", 511 | "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==" 512 | }, 513 | "node_modules/etag": { 514 | "version": "1.8.1", 515 | "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", 516 | "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", 517 | "engines": { 518 | "node": ">= 0.6" 519 | } 520 | }, 521 | "node_modules/express": { 522 | "version": "4.19.2", 523 | "resolved": "https://registry.npmjs.org/express/-/express-4.19.2.tgz", 524 | "integrity": "sha512-5T6nhjsT+EOMzuck8JjBHARTHfMht0POzlA60WV2pMD3gyXw2LZnZ+ueGdNxG+0calOJcWKbpFcuzLZ91YWq9Q==", 525 | "dependencies": { 526 | "accepts": "~1.3.8", 527 | "array-flatten": "1.1.1", 528 | "body-parser": "1.20.2", 529 | "content-disposition": "0.5.4", 530 | "content-type": "~1.0.4", 531 | "cookie": "0.6.0", 532 | "cookie-signature": "1.0.6", 533 | "debug": "2.6.9", 534 | "depd": "2.0.0", 535 | "encodeurl": "~1.0.2", 536 | "escape-html": "~1.0.3", 537 | "etag": "~1.8.1", 538 | "finalhandler": "1.2.0", 539 | "fresh": "0.5.2", 540 | "http-errors": "2.0.0", 541 | "merge-descriptors": "1.0.1", 542 | "methods": "~1.1.2", 543 | "on-finished": "2.4.1", 544 | "parseurl": "~1.3.3", 545 | "path-to-regexp": "0.1.7", 546 | "proxy-addr": "~2.0.7", 547 | "qs": "6.11.0", 548 | "range-parser": "~1.2.1", 549 | "safe-buffer": "5.2.1", 550 | "send": "0.18.0", 551 | "serve-static": "1.15.0", 552 | "setprototypeof": "1.2.0", 553 | "statuses": "2.0.1", 554 | "type-is": "~1.6.18", 555 | "utils-merge": "1.0.1", 556 | "vary": "~1.1.2" 557 | }, 558 | "engines": { 559 | "node": ">= 0.10.0" 560 | } 561 | }, 562 | "node_modules/express-session": { 563 | "version": "1.18.0", 564 | "resolved": "https://registry.npmjs.org/express-session/-/express-session-1.18.0.tgz", 565 | "integrity": "sha512-m93QLWr0ju+rOwApSsyso838LQwgfs44QtOP/WBiwtAgPIo/SAh1a5c6nn2BR6mFNZehTpqKDESzP+fRHVbxwQ==", 566 | "dependencies": { 567 | "cookie": "0.6.0", 568 | "cookie-signature": "1.0.7", 569 | "debug": "2.6.9", 570 | "depd": "~2.0.0", 571 | "on-headers": "~1.0.2", 572 | "parseurl": "~1.3.3", 573 | "safe-buffer": "5.2.1", 574 | "uid-safe": "~2.1.5" 575 | }, 576 | "engines": { 577 | "node": ">= 0.8.0" 578 | } 579 | }, 580 | "node_modules/express-session/node_modules/cookie-signature": { 581 | "version": "1.0.7", 582 | "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.7.tgz", 583 | "integrity": "sha512-NXdYc3dLr47pBkpUCHtKSwIOQXLVn8dZEuywboCOJY/osA0wFSLlSawr3KN8qXJEyX66FcONTH8EIlVuK0yyFA==" 584 | }, 585 | "node_modules/fill-range": { 586 | "version": "7.1.1", 587 | "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", 588 | "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", 589 | "dependencies": { 590 | "to-regex-range": "^5.0.1" 591 | }, 592 | "engines": { 593 | "node": ">=8" 594 | } 595 | }, 596 | "node_modules/finalhandler": { 597 | "version": "1.2.0", 598 | "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", 599 | "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", 600 | "dependencies": { 601 | "debug": "2.6.9", 602 | "encodeurl": "~1.0.2", 603 | "escape-html": "~1.0.3", 604 | "on-finished": "2.4.1", 605 | "parseurl": "~1.3.3", 606 | "statuses": "2.0.1", 607 | "unpipe": "~1.0.0" 608 | }, 609 | "engines": { 610 | "node": ">= 0.8" 611 | } 612 | }, 613 | "node_modules/forwarded": { 614 | "version": "0.2.0", 615 | "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", 616 | "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", 617 | "engines": { 618 | "node": ">= 0.6" 619 | } 620 | }, 621 | "node_modules/fresh": { 622 | "version": "0.5.2", 623 | "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", 624 | "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", 625 | "engines": { 626 | "node": ">= 0.6" 627 | } 628 | }, 629 | "node_modules/fs-minipass": { 630 | "version": "2.1.0", 631 | "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", 632 | "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", 633 | "dependencies": { 634 | "minipass": "^3.0.0" 635 | }, 636 | "engines": { 637 | "node": ">= 8" 638 | } 639 | }, 640 | "node_modules/fs-minipass/node_modules/minipass": { 641 | "version": "3.3.6", 642 | "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", 643 | "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", 644 | "dependencies": { 645 | "yallist": "^4.0.0" 646 | }, 647 | "engines": { 648 | "node": ">=8" 649 | } 650 | }, 651 | "node_modules/fs.realpath": { 652 | "version": "1.0.0", 653 | "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", 654 | "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==" 655 | }, 656 | "node_modules/fsevents": { 657 | "version": "2.3.3", 658 | "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", 659 | "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", 660 | "hasInstallScript": true, 661 | "optional": true, 662 | "os": [ 663 | "darwin" 664 | ], 665 | "engines": { 666 | "node": "^8.16.0 || ^10.6.0 || >=11.0.0" 667 | } 668 | }, 669 | "node_modules/function-bind": { 670 | "version": "1.1.2", 671 | "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", 672 | "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", 673 | "funding": { 674 | "url": "https://github.com/sponsors/ljharb" 675 | } 676 | }, 677 | "node_modules/gauge": { 678 | "version": "3.0.2", 679 | "resolved": "https://registry.npmjs.org/gauge/-/gauge-3.0.2.tgz", 680 | "integrity": "sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==", 681 | "deprecated": "This package is no longer supported.", 682 | "dependencies": { 683 | "aproba": "^1.0.3 || ^2.0.0", 684 | "color-support": "^1.1.2", 685 | "console-control-strings": "^1.0.0", 686 | "has-unicode": "^2.0.1", 687 | "object-assign": "^4.1.1", 688 | "signal-exit": "^3.0.0", 689 | "string-width": "^4.2.3", 690 | "strip-ansi": "^6.0.1", 691 | "wide-align": "^1.1.2" 692 | }, 693 | "engines": { 694 | "node": ">=10" 695 | } 696 | }, 697 | "node_modules/get-intrinsic": { 698 | "version": "1.2.4", 699 | "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz", 700 | "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==", 701 | "dependencies": { 702 | "es-errors": "^1.3.0", 703 | "function-bind": "^1.1.2", 704 | "has-proto": "^1.0.1", 705 | "has-symbols": "^1.0.3", 706 | "hasown": "^2.0.0" 707 | }, 708 | "engines": { 709 | "node": ">= 0.4" 710 | }, 711 | "funding": { 712 | "url": "https://github.com/sponsors/ljharb" 713 | } 714 | }, 715 | "node_modules/glob": { 716 | "version": "7.2.3", 717 | "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", 718 | "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", 719 | "deprecated": "Glob versions prior to v9 are no longer supported", 720 | "dependencies": { 721 | "fs.realpath": "^1.0.0", 722 | "inflight": "^1.0.4", 723 | "inherits": "2", 724 | "minimatch": "^3.1.1", 725 | "once": "^1.3.0", 726 | "path-is-absolute": "^1.0.0" 727 | }, 728 | "engines": { 729 | "node": "*" 730 | }, 731 | "funding": { 732 | "url": "https://github.com/sponsors/isaacs" 733 | } 734 | }, 735 | "node_modules/glob-parent": { 736 | "version": "5.1.2", 737 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", 738 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 739 | "dependencies": { 740 | "is-glob": "^4.0.1" 741 | }, 742 | "engines": { 743 | "node": ">= 6" 744 | } 745 | }, 746 | "node_modules/gopd": { 747 | "version": "1.0.1", 748 | "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", 749 | "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", 750 | "dependencies": { 751 | "get-intrinsic": "^1.1.3" 752 | }, 753 | "funding": { 754 | "url": "https://github.com/sponsors/ljharb" 755 | } 756 | }, 757 | "node_modules/has-flag": { 758 | "version": "3.0.0", 759 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", 760 | "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", 761 | "engines": { 762 | "node": ">=4" 763 | } 764 | }, 765 | "node_modules/has-property-descriptors": { 766 | "version": "1.0.2", 767 | "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", 768 | "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", 769 | "dependencies": { 770 | "es-define-property": "^1.0.0" 771 | }, 772 | "funding": { 773 | "url": "https://github.com/sponsors/ljharb" 774 | } 775 | }, 776 | "node_modules/has-proto": { 777 | "version": "1.0.3", 778 | "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz", 779 | "integrity": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==", 780 | "engines": { 781 | "node": ">= 0.4" 782 | }, 783 | "funding": { 784 | "url": "https://github.com/sponsors/ljharb" 785 | } 786 | }, 787 | "node_modules/has-symbols": { 788 | "version": "1.0.3", 789 | "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", 790 | "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", 791 | "engines": { 792 | "node": ">= 0.4" 793 | }, 794 | "funding": { 795 | "url": "https://github.com/sponsors/ljharb" 796 | } 797 | }, 798 | "node_modules/has-unicode": { 799 | "version": "2.0.1", 800 | "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", 801 | "integrity": "sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==" 802 | }, 803 | "node_modules/hasown": { 804 | "version": "2.0.2", 805 | "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", 806 | "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", 807 | "dependencies": { 808 | "function-bind": "^1.1.2" 809 | }, 810 | "engines": { 811 | "node": ">= 0.4" 812 | } 813 | }, 814 | "node_modules/http-errors": { 815 | "version": "2.0.0", 816 | "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", 817 | "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", 818 | "dependencies": { 819 | "depd": "2.0.0", 820 | "inherits": "2.0.4", 821 | "setprototypeof": "1.2.0", 822 | "statuses": "2.0.1", 823 | "toidentifier": "1.0.1" 824 | }, 825 | "engines": { 826 | "node": ">= 0.8" 827 | } 828 | }, 829 | "node_modules/https-proxy-agent": { 830 | "version": "5.0.1", 831 | "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", 832 | "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", 833 | "dependencies": { 834 | "agent-base": "6", 835 | "debug": "4" 836 | }, 837 | "engines": { 838 | "node": ">= 6" 839 | } 840 | }, 841 | "node_modules/https-proxy-agent/node_modules/debug": { 842 | "version": "4.3.5", 843 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.5.tgz", 844 | "integrity": "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==", 845 | "dependencies": { 846 | "ms": "2.1.2" 847 | }, 848 | "engines": { 849 | "node": ">=6.0" 850 | }, 851 | "peerDependenciesMeta": { 852 | "supports-color": { 853 | "optional": true 854 | } 855 | } 856 | }, 857 | "node_modules/https-proxy-agent/node_modules/ms": { 858 | "version": "2.1.2", 859 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", 860 | "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" 861 | }, 862 | "node_modules/iconv-lite": { 863 | "version": "0.4.24", 864 | "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", 865 | "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", 866 | "dependencies": { 867 | "safer-buffer": ">= 2.1.2 < 3" 868 | }, 869 | "engines": { 870 | "node": ">=0.10.0" 871 | } 872 | }, 873 | "node_modules/ignore-by-default": { 874 | "version": "1.0.1", 875 | "resolved": "https://registry.npmjs.org/ignore-by-default/-/ignore-by-default-1.0.1.tgz", 876 | "integrity": "sha512-Ius2VYcGNk7T90CppJqcIkS5ooHUZyIQK+ClZfMfMNFEF9VSE73Fq+906u/CWu92x4gzZMWOwfFYckPObzdEbA==" 877 | }, 878 | "node_modules/inflight": { 879 | "version": "1.0.6", 880 | "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", 881 | "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", 882 | "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.", 883 | "dependencies": { 884 | "once": "^1.3.0", 885 | "wrappy": "1" 886 | } 887 | }, 888 | "node_modules/inherits": { 889 | "version": "2.0.4", 890 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", 891 | "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" 892 | }, 893 | "node_modules/ipaddr.js": { 894 | "version": "1.9.1", 895 | "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", 896 | "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", 897 | "engines": { 898 | "node": ">= 0.10" 899 | } 900 | }, 901 | "node_modules/is-binary-path": { 902 | "version": "2.1.0", 903 | "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", 904 | "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", 905 | "dependencies": { 906 | "binary-extensions": "^2.0.0" 907 | }, 908 | "engines": { 909 | "node": ">=8" 910 | } 911 | }, 912 | "node_modules/is-extglob": { 913 | "version": "2.1.1", 914 | "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", 915 | "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", 916 | "engines": { 917 | "node": ">=0.10.0" 918 | } 919 | }, 920 | "node_modules/is-fullwidth-code-point": { 921 | "version": "3.0.0", 922 | "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", 923 | "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", 924 | "engines": { 925 | "node": ">=8" 926 | } 927 | }, 928 | "node_modules/is-glob": { 929 | "version": "4.0.3", 930 | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", 931 | "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", 932 | "dependencies": { 933 | "is-extglob": "^2.1.1" 934 | }, 935 | "engines": { 936 | "node": ">=0.10.0" 937 | } 938 | }, 939 | "node_modules/is-number": { 940 | "version": "7.0.0", 941 | "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", 942 | "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", 943 | "engines": { 944 | "node": ">=0.12.0" 945 | } 946 | }, 947 | "node_modules/kareem": { 948 | "version": "2.6.3", 949 | "resolved": "https://registry.npmjs.org/kareem/-/kareem-2.6.3.tgz", 950 | "integrity": "sha512-C3iHfuGUXK2u8/ipq9LfjFfXFxAZMQJJq7vLS45r3D9Y2xQ/m4S8zaR4zMLFWh9AsNPXmcFfUDhTEO8UIC/V6Q==", 951 | "engines": { 952 | "node": ">=12.0.0" 953 | } 954 | }, 955 | "node_modules/kruptein": { 956 | "version": "3.0.6", 957 | "resolved": "https://registry.npmjs.org/kruptein/-/kruptein-3.0.6.tgz", 958 | "integrity": "sha512-EQJjTwAJfQkC4NfdQdo3HXM2a9pmBm8oidzH270cYu1MbgXPNPMJuldN7OPX+qdhPO5rw4X3/iKz0BFBfkXGKA==", 959 | "dependencies": { 960 | "asn1.js": "^5.4.1" 961 | }, 962 | "engines": { 963 | "node": ">8" 964 | } 965 | }, 966 | "node_modules/make-dir": { 967 | "version": "3.1.0", 968 | "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", 969 | "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", 970 | "dependencies": { 971 | "semver": "^6.0.0" 972 | }, 973 | "engines": { 974 | "node": ">=8" 975 | }, 976 | "funding": { 977 | "url": "https://github.com/sponsors/sindresorhus" 978 | } 979 | }, 980 | "node_modules/make-dir/node_modules/semver": { 981 | "version": "6.3.1", 982 | "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", 983 | "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", 984 | "bin": { 985 | "semver": "bin/semver.js" 986 | } 987 | }, 988 | "node_modules/media-typer": { 989 | "version": "0.3.0", 990 | "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", 991 | "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", 992 | "engines": { 993 | "node": ">= 0.6" 994 | } 995 | }, 996 | "node_modules/memory-pager": { 997 | "version": "1.5.0", 998 | "resolved": "https://registry.npmjs.org/memory-pager/-/memory-pager-1.5.0.tgz", 999 | "integrity": "sha512-ZS4Bp4r/Zoeq6+NLJpP+0Zzm0pR8whtGPf1XExKLJBAczGMnSi3It14OiNCStjQjM6NU1okjQGSxgEZN8eBYKg==" 1000 | }, 1001 | "node_modules/merge-descriptors": { 1002 | "version": "1.0.1", 1003 | "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", 1004 | "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==" 1005 | }, 1006 | "node_modules/methods": { 1007 | "version": "1.1.2", 1008 | "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", 1009 | "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", 1010 | "engines": { 1011 | "node": ">= 0.6" 1012 | } 1013 | }, 1014 | "node_modules/mime": { 1015 | "version": "1.6.0", 1016 | "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", 1017 | "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", 1018 | "bin": { 1019 | "mime": "cli.js" 1020 | }, 1021 | "engines": { 1022 | "node": ">=4" 1023 | } 1024 | }, 1025 | "node_modules/mime-db": { 1026 | "version": "1.52.0", 1027 | "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", 1028 | "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", 1029 | "engines": { 1030 | "node": ">= 0.6" 1031 | } 1032 | }, 1033 | "node_modules/mime-types": { 1034 | "version": "2.1.35", 1035 | "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", 1036 | "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", 1037 | "dependencies": { 1038 | "mime-db": "1.52.0" 1039 | }, 1040 | "engines": { 1041 | "node": ">= 0.6" 1042 | } 1043 | }, 1044 | "node_modules/minimalistic-assert": { 1045 | "version": "1.0.1", 1046 | "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", 1047 | "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==" 1048 | }, 1049 | "node_modules/minimatch": { 1050 | "version": "3.1.2", 1051 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 1052 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 1053 | "dependencies": { 1054 | "brace-expansion": "^1.1.7" 1055 | }, 1056 | "engines": { 1057 | "node": "*" 1058 | } 1059 | }, 1060 | "node_modules/minipass": { 1061 | "version": "5.0.0", 1062 | "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz", 1063 | "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==", 1064 | "engines": { 1065 | "node": ">=8" 1066 | } 1067 | }, 1068 | "node_modules/minizlib": { 1069 | "version": "2.1.2", 1070 | "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", 1071 | "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", 1072 | "dependencies": { 1073 | "minipass": "^3.0.0", 1074 | "yallist": "^4.0.0" 1075 | }, 1076 | "engines": { 1077 | "node": ">= 8" 1078 | } 1079 | }, 1080 | "node_modules/minizlib/node_modules/minipass": { 1081 | "version": "3.3.6", 1082 | "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", 1083 | "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", 1084 | "dependencies": { 1085 | "yallist": "^4.0.0" 1086 | }, 1087 | "engines": { 1088 | "node": ">=8" 1089 | } 1090 | }, 1091 | "node_modules/mkdirp": { 1092 | "version": "1.0.4", 1093 | "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", 1094 | "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", 1095 | "bin": { 1096 | "mkdirp": "bin/cmd.js" 1097 | }, 1098 | "engines": { 1099 | "node": ">=10" 1100 | } 1101 | }, 1102 | "node_modules/mongodb": { 1103 | "version": "6.6.2", 1104 | "resolved": "https://registry.npmjs.org/mongodb/-/mongodb-6.6.2.tgz", 1105 | "integrity": "sha512-ZF9Ugo2JCG/GfR7DEb4ypfyJJyiKbg5qBYKRintebj8+DNS33CyGMkWbrS9lara+u+h+yEOGSRiLhFO/g1s1aw==", 1106 | "dependencies": { 1107 | "@mongodb-js/saslprep": "^1.1.5", 1108 | "bson": "^6.7.0", 1109 | "mongodb-connection-string-url": "^3.0.0" 1110 | }, 1111 | "engines": { 1112 | "node": ">=16.20.1" 1113 | }, 1114 | "peerDependencies": { 1115 | "@aws-sdk/credential-providers": "^3.188.0", 1116 | "@mongodb-js/zstd": "^1.1.0", 1117 | "gcp-metadata": "^5.2.0", 1118 | "kerberos": "^2.0.1", 1119 | "mongodb-client-encryption": ">=6.0.0 <7", 1120 | "snappy": "^7.2.2", 1121 | "socks": "^2.7.1" 1122 | }, 1123 | "peerDependenciesMeta": { 1124 | "@aws-sdk/credential-providers": { 1125 | "optional": true 1126 | }, 1127 | "@mongodb-js/zstd": { 1128 | "optional": true 1129 | }, 1130 | "gcp-metadata": { 1131 | "optional": true 1132 | }, 1133 | "kerberos": { 1134 | "optional": true 1135 | }, 1136 | "mongodb-client-encryption": { 1137 | "optional": true 1138 | }, 1139 | "snappy": { 1140 | "optional": true 1141 | }, 1142 | "socks": { 1143 | "optional": true 1144 | } 1145 | } 1146 | }, 1147 | "node_modules/mongodb-connection-string-url": { 1148 | "version": "3.0.1", 1149 | "resolved": "https://registry.npmjs.org/mongodb-connection-string-url/-/mongodb-connection-string-url-3.0.1.tgz", 1150 | "integrity": "sha512-XqMGwRX0Lgn05TDB4PyG2h2kKO/FfWJyCzYQbIhXUxz7ETt0I/FqHjUeqj37irJ+Dl1ZtU82uYyj14u2XsZKfg==", 1151 | "dependencies": { 1152 | "@types/whatwg-url": "^11.0.2", 1153 | "whatwg-url": "^13.0.0" 1154 | } 1155 | }, 1156 | "node_modules/mongoose": { 1157 | "version": "8.4.1", 1158 | "resolved": "https://registry.npmjs.org/mongoose/-/mongoose-8.4.1.tgz", 1159 | "integrity": "sha512-odQ2WEWGL3hb0Qex+QMN4eH6D34WdMEw7F1If2MGABApSDmG9cMmqv/G1H6WsXmuaH9mkuuadW/WbLE5+tHJwA==", 1160 | "dependencies": { 1161 | "bson": "^6.7.0", 1162 | "kareem": "2.6.3", 1163 | "mongodb": "6.6.2", 1164 | "mpath": "0.9.0", 1165 | "mquery": "5.0.0", 1166 | "ms": "2.1.3", 1167 | "sift": "17.1.3" 1168 | }, 1169 | "engines": { 1170 | "node": ">=16.20.1" 1171 | }, 1172 | "funding": { 1173 | "type": "opencollective", 1174 | "url": "https://opencollective.com/mongoose" 1175 | } 1176 | }, 1177 | "node_modules/mongoose/node_modules/ms": { 1178 | "version": "2.1.3", 1179 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", 1180 | "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" 1181 | }, 1182 | "node_modules/mpath": { 1183 | "version": "0.9.0", 1184 | "resolved": "https://registry.npmjs.org/mpath/-/mpath-0.9.0.tgz", 1185 | "integrity": "sha512-ikJRQTk8hw5DEoFVxHG1Gn9T/xcjtdnOKIU1JTmGjZZlg9LST2mBLmcX3/ICIbgJydT2GOc15RnNy5mHmzfSew==", 1186 | "engines": { 1187 | "node": ">=4.0.0" 1188 | } 1189 | }, 1190 | "node_modules/mquery": { 1191 | "version": "5.0.0", 1192 | "resolved": "https://registry.npmjs.org/mquery/-/mquery-5.0.0.tgz", 1193 | "integrity": "sha512-iQMncpmEK8R8ncT8HJGsGc9Dsp8xcgYMVSbs5jgnm1lFHTZqMJTUWTDx1LBO8+mK3tPNZWFLBghQEIOULSTHZg==", 1194 | "dependencies": { 1195 | "debug": "4.x" 1196 | }, 1197 | "engines": { 1198 | "node": ">=14.0.0" 1199 | } 1200 | }, 1201 | "node_modules/mquery/node_modules/debug": { 1202 | "version": "4.3.5", 1203 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.5.tgz", 1204 | "integrity": "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==", 1205 | "dependencies": { 1206 | "ms": "2.1.2" 1207 | }, 1208 | "engines": { 1209 | "node": ">=6.0" 1210 | }, 1211 | "peerDependenciesMeta": { 1212 | "supports-color": { 1213 | "optional": true 1214 | } 1215 | } 1216 | }, 1217 | "node_modules/mquery/node_modules/ms": { 1218 | "version": "2.1.2", 1219 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", 1220 | "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" 1221 | }, 1222 | "node_modules/ms": { 1223 | "version": "2.0.0", 1224 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", 1225 | "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" 1226 | }, 1227 | "node_modules/negotiator": { 1228 | "version": "0.6.3", 1229 | "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", 1230 | "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", 1231 | "engines": { 1232 | "node": ">= 0.6" 1233 | } 1234 | }, 1235 | "node_modules/node-addon-api": { 1236 | "version": "5.1.0", 1237 | "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-5.1.0.tgz", 1238 | "integrity": "sha512-eh0GgfEkpnoWDq+VY8OyvYhFEzBk6jIYbRKdIlyTiAXIVJ8PyBaKb0rp7oDtoddbdoHWhq8wwr+XZ81F1rpNdA==" 1239 | }, 1240 | "node_modules/node-fetch": { 1241 | "version": "2.7.0", 1242 | "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", 1243 | "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", 1244 | "dependencies": { 1245 | "whatwg-url": "^5.0.0" 1246 | }, 1247 | "engines": { 1248 | "node": "4.x || >=6.0.0" 1249 | }, 1250 | "peerDependencies": { 1251 | "encoding": "^0.1.0" 1252 | }, 1253 | "peerDependenciesMeta": { 1254 | "encoding": { 1255 | "optional": true 1256 | } 1257 | } 1258 | }, 1259 | "node_modules/node-fetch/node_modules/tr46": { 1260 | "version": "0.0.3", 1261 | "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", 1262 | "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==" 1263 | }, 1264 | "node_modules/node-fetch/node_modules/webidl-conversions": { 1265 | "version": "3.0.1", 1266 | "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", 1267 | "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" 1268 | }, 1269 | "node_modules/node-fetch/node_modules/whatwg-url": { 1270 | "version": "5.0.0", 1271 | "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", 1272 | "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", 1273 | "dependencies": { 1274 | "tr46": "~0.0.3", 1275 | "webidl-conversions": "^3.0.0" 1276 | } 1277 | }, 1278 | "node_modules/nodemon": { 1279 | "version": "3.1.3", 1280 | "resolved": "https://registry.npmjs.org/nodemon/-/nodemon-3.1.3.tgz", 1281 | "integrity": "sha512-m4Vqs+APdKzDFpuaL9F9EVOF85+h070FnkHVEoU4+rmT6Vw0bmNl7s61VEkY/cJkL7RCv1p4urnUDUMrS5rk2w==", 1282 | "dependencies": { 1283 | "chokidar": "^3.5.2", 1284 | "debug": "^4", 1285 | "ignore-by-default": "^1.0.1", 1286 | "minimatch": "^3.1.2", 1287 | "pstree.remy": "^1.1.8", 1288 | "semver": "^7.5.3", 1289 | "simple-update-notifier": "^2.0.0", 1290 | "supports-color": "^5.5.0", 1291 | "touch": "^3.1.0", 1292 | "undefsafe": "^2.0.5" 1293 | }, 1294 | "bin": { 1295 | "nodemon": "bin/nodemon.js" 1296 | }, 1297 | "engines": { 1298 | "node": ">=10" 1299 | }, 1300 | "funding": { 1301 | "type": "opencollective", 1302 | "url": "https://opencollective.com/nodemon" 1303 | } 1304 | }, 1305 | "node_modules/nodemon/node_modules/debug": { 1306 | "version": "4.3.5", 1307 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.5.tgz", 1308 | "integrity": "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==", 1309 | "dependencies": { 1310 | "ms": "2.1.2" 1311 | }, 1312 | "engines": { 1313 | "node": ">=6.0" 1314 | }, 1315 | "peerDependenciesMeta": { 1316 | "supports-color": { 1317 | "optional": true 1318 | } 1319 | } 1320 | }, 1321 | "node_modules/nodemon/node_modules/ms": { 1322 | "version": "2.1.2", 1323 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", 1324 | "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" 1325 | }, 1326 | "node_modules/nopt": { 1327 | "version": "5.0.0", 1328 | "resolved": "https://registry.npmjs.org/nopt/-/nopt-5.0.0.tgz", 1329 | "integrity": "sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==", 1330 | "dependencies": { 1331 | "abbrev": "1" 1332 | }, 1333 | "bin": { 1334 | "nopt": "bin/nopt.js" 1335 | }, 1336 | "engines": { 1337 | "node": ">=6" 1338 | } 1339 | }, 1340 | "node_modules/normalize-path": { 1341 | "version": "3.0.0", 1342 | "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", 1343 | "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", 1344 | "engines": { 1345 | "node": ">=0.10.0" 1346 | } 1347 | }, 1348 | "node_modules/npmlog": { 1349 | "version": "5.0.1", 1350 | "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-5.0.1.tgz", 1351 | "integrity": "sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw==", 1352 | "deprecated": "This package is no longer supported.", 1353 | "dependencies": { 1354 | "are-we-there-yet": "^2.0.0", 1355 | "console-control-strings": "^1.1.0", 1356 | "gauge": "^3.0.0", 1357 | "set-blocking": "^2.0.0" 1358 | } 1359 | }, 1360 | "node_modules/object-assign": { 1361 | "version": "4.1.1", 1362 | "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", 1363 | "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", 1364 | "engines": { 1365 | "node": ">=0.10.0" 1366 | } 1367 | }, 1368 | "node_modules/object-inspect": { 1369 | "version": "1.13.1", 1370 | "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.1.tgz", 1371 | "integrity": "sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==", 1372 | "funding": { 1373 | "url": "https://github.com/sponsors/ljharb" 1374 | } 1375 | }, 1376 | "node_modules/on-finished": { 1377 | "version": "2.4.1", 1378 | "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", 1379 | "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", 1380 | "dependencies": { 1381 | "ee-first": "1.1.1" 1382 | }, 1383 | "engines": { 1384 | "node": ">= 0.8" 1385 | } 1386 | }, 1387 | "node_modules/on-headers": { 1388 | "version": "1.0.2", 1389 | "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", 1390 | "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", 1391 | "engines": { 1392 | "node": ">= 0.8" 1393 | } 1394 | }, 1395 | "node_modules/once": { 1396 | "version": "1.4.0", 1397 | "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", 1398 | "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", 1399 | "dependencies": { 1400 | "wrappy": "1" 1401 | } 1402 | }, 1403 | "node_modules/parseurl": { 1404 | "version": "1.3.3", 1405 | "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", 1406 | "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", 1407 | "engines": { 1408 | "node": ">= 0.8" 1409 | } 1410 | }, 1411 | "node_modules/path-is-absolute": { 1412 | "version": "1.0.1", 1413 | "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", 1414 | "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", 1415 | "engines": { 1416 | "node": ">=0.10.0" 1417 | } 1418 | }, 1419 | "node_modules/path-to-regexp": { 1420 | "version": "0.1.7", 1421 | "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", 1422 | "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==" 1423 | }, 1424 | "node_modules/picomatch": { 1425 | "version": "2.3.1", 1426 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", 1427 | "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", 1428 | "engines": { 1429 | "node": ">=8.6" 1430 | }, 1431 | "funding": { 1432 | "url": "https://github.com/sponsors/jonschlinkert" 1433 | } 1434 | }, 1435 | "node_modules/proxy-addr": { 1436 | "version": "2.0.7", 1437 | "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", 1438 | "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", 1439 | "dependencies": { 1440 | "forwarded": "0.2.0", 1441 | "ipaddr.js": "1.9.1" 1442 | }, 1443 | "engines": { 1444 | "node": ">= 0.10" 1445 | } 1446 | }, 1447 | "node_modules/pstree.remy": { 1448 | "version": "1.1.8", 1449 | "resolved": "https://registry.npmjs.org/pstree.remy/-/pstree.remy-1.1.8.tgz", 1450 | "integrity": "sha512-77DZwxQmxKnu3aR542U+X8FypNzbfJ+C5XQDk3uWjWxn6151aIMGthWYRXTqT1E5oJvg+ljaa2OJi+VfvCOQ8w==" 1451 | }, 1452 | "node_modules/punycode": { 1453 | "version": "2.3.1", 1454 | "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", 1455 | "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", 1456 | "engines": { 1457 | "node": ">=6" 1458 | } 1459 | }, 1460 | "node_modules/qs": { 1461 | "version": "6.11.0", 1462 | "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", 1463 | "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", 1464 | "dependencies": { 1465 | "side-channel": "^1.0.4" 1466 | }, 1467 | "engines": { 1468 | "node": ">=0.6" 1469 | }, 1470 | "funding": { 1471 | "url": "https://github.com/sponsors/ljharb" 1472 | } 1473 | }, 1474 | "node_modules/random-bytes": { 1475 | "version": "1.0.0", 1476 | "resolved": "https://registry.npmjs.org/random-bytes/-/random-bytes-1.0.0.tgz", 1477 | "integrity": "sha512-iv7LhNVO047HzYR3InF6pUcUsPQiHTM1Qal51DcGSuZFBil1aBBWG5eHPNek7bvILMaYJ/8RU1e8w1AMdHmLQQ==", 1478 | "engines": { 1479 | "node": ">= 0.8" 1480 | } 1481 | }, 1482 | "node_modules/range-parser": { 1483 | "version": "1.2.1", 1484 | "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", 1485 | "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", 1486 | "engines": { 1487 | "node": ">= 0.6" 1488 | } 1489 | }, 1490 | "node_modules/raw-body": { 1491 | "version": "2.5.2", 1492 | "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.2.tgz", 1493 | "integrity": "sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==", 1494 | "dependencies": { 1495 | "bytes": "3.1.2", 1496 | "http-errors": "2.0.0", 1497 | "iconv-lite": "0.4.24", 1498 | "unpipe": "1.0.0" 1499 | }, 1500 | "engines": { 1501 | "node": ">= 0.8" 1502 | } 1503 | }, 1504 | "node_modules/readable-stream": { 1505 | "version": "3.6.2", 1506 | "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", 1507 | "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", 1508 | "dependencies": { 1509 | "inherits": "^2.0.3", 1510 | "string_decoder": "^1.1.1", 1511 | "util-deprecate": "^1.0.1" 1512 | }, 1513 | "engines": { 1514 | "node": ">= 6" 1515 | } 1516 | }, 1517 | "node_modules/readdirp": { 1518 | "version": "3.6.0", 1519 | "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", 1520 | "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", 1521 | "dependencies": { 1522 | "picomatch": "^2.2.1" 1523 | }, 1524 | "engines": { 1525 | "node": ">=8.10.0" 1526 | } 1527 | }, 1528 | "node_modules/rimraf": { 1529 | "version": "3.0.2", 1530 | "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", 1531 | "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", 1532 | "deprecated": "Rimraf versions prior to v4 are no longer supported", 1533 | "dependencies": { 1534 | "glob": "^7.1.3" 1535 | }, 1536 | "bin": { 1537 | "rimraf": "bin.js" 1538 | }, 1539 | "funding": { 1540 | "url": "https://github.com/sponsors/isaacs" 1541 | } 1542 | }, 1543 | "node_modules/safe-buffer": { 1544 | "version": "5.2.1", 1545 | "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", 1546 | "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", 1547 | "funding": [ 1548 | { 1549 | "type": "github", 1550 | "url": "https://github.com/sponsors/feross" 1551 | }, 1552 | { 1553 | "type": "patreon", 1554 | "url": "https://www.patreon.com/feross" 1555 | }, 1556 | { 1557 | "type": "consulting", 1558 | "url": "https://feross.org/support" 1559 | } 1560 | ] 1561 | }, 1562 | "node_modules/safer-buffer": { 1563 | "version": "2.1.2", 1564 | "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", 1565 | "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" 1566 | }, 1567 | "node_modules/semver": { 1568 | "version": "7.6.2", 1569 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.2.tgz", 1570 | "integrity": "sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==", 1571 | "bin": { 1572 | "semver": "bin/semver.js" 1573 | }, 1574 | "engines": { 1575 | "node": ">=10" 1576 | } 1577 | }, 1578 | "node_modules/send": { 1579 | "version": "0.18.0", 1580 | "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", 1581 | "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", 1582 | "dependencies": { 1583 | "debug": "2.6.9", 1584 | "depd": "2.0.0", 1585 | "destroy": "1.2.0", 1586 | "encodeurl": "~1.0.2", 1587 | "escape-html": "~1.0.3", 1588 | "etag": "~1.8.1", 1589 | "fresh": "0.5.2", 1590 | "http-errors": "2.0.0", 1591 | "mime": "1.6.0", 1592 | "ms": "2.1.3", 1593 | "on-finished": "2.4.1", 1594 | "range-parser": "~1.2.1", 1595 | "statuses": "2.0.1" 1596 | }, 1597 | "engines": { 1598 | "node": ">= 0.8.0" 1599 | } 1600 | }, 1601 | "node_modules/send/node_modules/ms": { 1602 | "version": "2.1.3", 1603 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", 1604 | "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" 1605 | }, 1606 | "node_modules/serve-static": { 1607 | "version": "1.15.0", 1608 | "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", 1609 | "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", 1610 | "dependencies": { 1611 | "encodeurl": "~1.0.2", 1612 | "escape-html": "~1.0.3", 1613 | "parseurl": "~1.3.3", 1614 | "send": "0.18.0" 1615 | }, 1616 | "engines": { 1617 | "node": ">= 0.8.0" 1618 | } 1619 | }, 1620 | "node_modules/set-blocking": { 1621 | "version": "2.0.0", 1622 | "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", 1623 | "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==" 1624 | }, 1625 | "node_modules/set-function-length": { 1626 | "version": "1.2.2", 1627 | "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", 1628 | "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", 1629 | "dependencies": { 1630 | "define-data-property": "^1.1.4", 1631 | "es-errors": "^1.3.0", 1632 | "function-bind": "^1.1.2", 1633 | "get-intrinsic": "^1.2.4", 1634 | "gopd": "^1.0.1", 1635 | "has-property-descriptors": "^1.0.2" 1636 | }, 1637 | "engines": { 1638 | "node": ">= 0.4" 1639 | } 1640 | }, 1641 | "node_modules/setprototypeof": { 1642 | "version": "1.2.0", 1643 | "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", 1644 | "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" 1645 | }, 1646 | "node_modules/side-channel": { 1647 | "version": "1.0.6", 1648 | "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.6.tgz", 1649 | "integrity": "sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==", 1650 | "dependencies": { 1651 | "call-bind": "^1.0.7", 1652 | "es-errors": "^1.3.0", 1653 | "get-intrinsic": "^1.2.4", 1654 | "object-inspect": "^1.13.1" 1655 | }, 1656 | "engines": { 1657 | "node": ">= 0.4" 1658 | }, 1659 | "funding": { 1660 | "url": "https://github.com/sponsors/ljharb" 1661 | } 1662 | }, 1663 | "node_modules/sift": { 1664 | "version": "17.1.3", 1665 | "resolved": "https://registry.npmjs.org/sift/-/sift-17.1.3.tgz", 1666 | "integrity": "sha512-Rtlj66/b0ICeFzYTuNvX/EF1igRbbnGSvEyT79McoZa/DeGhMyC5pWKOEsZKnpkqtSeovd5FL/bjHWC3CIIvCQ==" 1667 | }, 1668 | "node_modules/signal-exit": { 1669 | "version": "3.0.7", 1670 | "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", 1671 | "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==" 1672 | }, 1673 | "node_modules/simple-update-notifier": { 1674 | "version": "2.0.0", 1675 | "resolved": "https://registry.npmjs.org/simple-update-notifier/-/simple-update-notifier-2.0.0.tgz", 1676 | "integrity": "sha512-a2B9Y0KlNXl9u/vsW6sTIu9vGEpfKu2wRV6l1H3XEas/0gUIzGzBoP/IouTcUQbm9JWZLH3COxyn03TYlFax6w==", 1677 | "dependencies": { 1678 | "semver": "^7.5.3" 1679 | }, 1680 | "engines": { 1681 | "node": ">=10" 1682 | } 1683 | }, 1684 | "node_modules/sparse-bitfield": { 1685 | "version": "3.0.3", 1686 | "resolved": "https://registry.npmjs.org/sparse-bitfield/-/sparse-bitfield-3.0.3.tgz", 1687 | "integrity": "sha512-kvzhi7vqKTfkh0PZU+2D2PIllw2ymqJKujUcyPMd9Y75Nv4nPbGJZXNhxsgdQab2BmlDct1YnfQCguEvHr7VsQ==", 1688 | "dependencies": { 1689 | "memory-pager": "^1.0.2" 1690 | } 1691 | }, 1692 | "node_modules/statuses": { 1693 | "version": "2.0.1", 1694 | "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", 1695 | "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", 1696 | "engines": { 1697 | "node": ">= 0.8" 1698 | } 1699 | }, 1700 | "node_modules/string_decoder": { 1701 | "version": "1.3.0", 1702 | "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", 1703 | "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", 1704 | "dependencies": { 1705 | "safe-buffer": "~5.2.0" 1706 | } 1707 | }, 1708 | "node_modules/string-width": { 1709 | "version": "4.2.3", 1710 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", 1711 | "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", 1712 | "dependencies": { 1713 | "emoji-regex": "^8.0.0", 1714 | "is-fullwidth-code-point": "^3.0.0", 1715 | "strip-ansi": "^6.0.1" 1716 | }, 1717 | "engines": { 1718 | "node": ">=8" 1719 | } 1720 | }, 1721 | "node_modules/strip-ansi": { 1722 | "version": "6.0.1", 1723 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 1724 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 1725 | "dependencies": { 1726 | "ansi-regex": "^5.0.1" 1727 | }, 1728 | "engines": { 1729 | "node": ">=8" 1730 | } 1731 | }, 1732 | "node_modules/supports-color": { 1733 | "version": "5.5.0", 1734 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", 1735 | "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", 1736 | "dependencies": { 1737 | "has-flag": "^3.0.0" 1738 | }, 1739 | "engines": { 1740 | "node": ">=4" 1741 | } 1742 | }, 1743 | "node_modules/tar": { 1744 | "version": "6.2.1", 1745 | "resolved": "https://registry.npmjs.org/tar/-/tar-6.2.1.tgz", 1746 | "integrity": "sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==", 1747 | "dependencies": { 1748 | "chownr": "^2.0.0", 1749 | "fs-minipass": "^2.0.0", 1750 | "minipass": "^5.0.0", 1751 | "minizlib": "^2.1.1", 1752 | "mkdirp": "^1.0.3", 1753 | "yallist": "^4.0.0" 1754 | }, 1755 | "engines": { 1756 | "node": ">=10" 1757 | } 1758 | }, 1759 | "node_modules/to-regex-range": { 1760 | "version": "5.0.1", 1761 | "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", 1762 | "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", 1763 | "dependencies": { 1764 | "is-number": "^7.0.0" 1765 | }, 1766 | "engines": { 1767 | "node": ">=8.0" 1768 | } 1769 | }, 1770 | "node_modules/toidentifier": { 1771 | "version": "1.0.1", 1772 | "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", 1773 | "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", 1774 | "engines": { 1775 | "node": ">=0.6" 1776 | } 1777 | }, 1778 | "node_modules/touch": { 1779 | "version": "3.1.1", 1780 | "resolved": "https://registry.npmjs.org/touch/-/touch-3.1.1.tgz", 1781 | "integrity": "sha512-r0eojU4bI8MnHr8c5bNo7lJDdI2qXlWWJk6a9EAFG7vbhTjElYhBVS3/miuE0uOuoLdb8Mc/rVfsmm6eo5o9GA==", 1782 | "bin": { 1783 | "nodetouch": "bin/nodetouch.js" 1784 | } 1785 | }, 1786 | "node_modules/tr46": { 1787 | "version": "4.1.1", 1788 | "resolved": "https://registry.npmjs.org/tr46/-/tr46-4.1.1.tgz", 1789 | "integrity": "sha512-2lv/66T7e5yNyhAAC4NaKe5nVavzuGJQVVtRYLyQ2OI8tsJ61PMLlelehb0wi2Hx6+hT/OJUWZcw8MjlSRnxvw==", 1790 | "dependencies": { 1791 | "punycode": "^2.3.0" 1792 | }, 1793 | "engines": { 1794 | "node": ">=14" 1795 | } 1796 | }, 1797 | "node_modules/type-is": { 1798 | "version": "1.6.18", 1799 | "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", 1800 | "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", 1801 | "dependencies": { 1802 | "media-typer": "0.3.0", 1803 | "mime-types": "~2.1.24" 1804 | }, 1805 | "engines": { 1806 | "node": ">= 0.6" 1807 | } 1808 | }, 1809 | "node_modules/uid-safe": { 1810 | "version": "2.1.5", 1811 | "resolved": "https://registry.npmjs.org/uid-safe/-/uid-safe-2.1.5.tgz", 1812 | "integrity": "sha512-KPHm4VL5dDXKz01UuEd88Df+KzynaohSL9fBh096KWAxSKZQDI2uBrVqtvRM4rwrIrRRKsdLNML/lnaaVSRioA==", 1813 | "dependencies": { 1814 | "random-bytes": "~1.0.0" 1815 | }, 1816 | "engines": { 1817 | "node": ">= 0.8" 1818 | } 1819 | }, 1820 | "node_modules/undefsafe": { 1821 | "version": "2.0.5", 1822 | "resolved": "https://registry.npmjs.org/undefsafe/-/undefsafe-2.0.5.tgz", 1823 | "integrity": "sha512-WxONCrssBM8TSPRqN5EmsjVrsv4A8X12J4ArBiiayv3DyyG3ZlIg6yysuuSYdZsVz3TKcTg2fd//Ujd4CHV1iA==" 1824 | }, 1825 | "node_modules/unpipe": { 1826 | "version": "1.0.0", 1827 | "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", 1828 | "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", 1829 | "engines": { 1830 | "node": ">= 0.8" 1831 | } 1832 | }, 1833 | "node_modules/util-deprecate": { 1834 | "version": "1.0.2", 1835 | "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", 1836 | "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" 1837 | }, 1838 | "node_modules/utils-merge": { 1839 | "version": "1.0.1", 1840 | "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", 1841 | "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", 1842 | "engines": { 1843 | "node": ">= 0.4.0" 1844 | } 1845 | }, 1846 | "node_modules/vary": { 1847 | "version": "1.1.2", 1848 | "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", 1849 | "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", 1850 | "engines": { 1851 | "node": ">= 0.8" 1852 | } 1853 | }, 1854 | "node_modules/webidl-conversions": { 1855 | "version": "7.0.0", 1856 | "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz", 1857 | "integrity": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==", 1858 | "engines": { 1859 | "node": ">=12" 1860 | } 1861 | }, 1862 | "node_modules/whatwg-url": { 1863 | "version": "13.0.0", 1864 | "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-13.0.0.tgz", 1865 | "integrity": "sha512-9WWbymnqj57+XEuqADHrCJ2eSXzn8WXIW/YSGaZtb2WKAInQ6CHfaUUcTyyver0p8BDg5StLQq8h1vtZuwmOig==", 1866 | "dependencies": { 1867 | "tr46": "^4.1.1", 1868 | "webidl-conversions": "^7.0.0" 1869 | }, 1870 | "engines": { 1871 | "node": ">=16" 1872 | } 1873 | }, 1874 | "node_modules/wide-align": { 1875 | "version": "1.1.5", 1876 | "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz", 1877 | "integrity": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==", 1878 | "dependencies": { 1879 | "string-width": "^1.0.2 || 2 || 3 || 4" 1880 | } 1881 | }, 1882 | "node_modules/wrappy": { 1883 | "version": "1.0.2", 1884 | "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", 1885 | "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" 1886 | }, 1887 | "node_modules/yallist": { 1888 | "version": "4.0.0", 1889 | "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", 1890 | "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" 1891 | } 1892 | } 1893 | } 1894 | -------------------------------------------------------------------------------- /server/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "server", 3 | "version": "1.0.0", 4 | "description": "", 5 | "main": "index.js", 6 | "scripts": { 7 | "test": "echo \"Error: no test specified\" && exit 1", 8 | "start": "nodemon index.js" 9 | }, 10 | "keywords": [], 11 | "author": "", 12 | "license": "ISC", 13 | "dependencies": { 14 | "bcrypt": "^5.1.1", 15 | "connect-mongo": "^5.1.0", 16 | "cors": "^2.8.5", 17 | "dotenv": "^16.4.5", 18 | "express": "^4.19.2", 19 | "express-session": "^1.18.0", 20 | "mongoose": "^8.4.1", 21 | "nodemon": "^3.1.3" 22 | } 23 | } 24 | --------------------------------------------------------------------------------