├── backend ├── routes │ └── users.js ├── .gitignore ├── models │ └── User.js ├── package.json ├── index.js └── package-lock.json ├── frontend ├── src │ ├── App.css │ ├── assets │ │ ├── image.png │ │ └── settings.png │ ├── setupTests.js │ ├── App.test.js │ ├── index.js │ ├── Components │ │ ├── ProtectedRoute.js │ │ ├── login.css │ │ ├── LoginForm.js │ │ ├── Dashboard.css │ │ ├── signup.css │ │ ├── Dashboard.js │ │ └── SignupForm.js │ ├── index.css │ ├── reportWebVitals.js │ ├── App.js │ └── logo.svg ├── public │ ├── robots.txt │ ├── favicon.ico │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── index.html ├── .gitignore ├── package.json └── README.md ├── .DS_Store ├── README.md └── PERSONALIZED NEWS AGGREGATOR.pdf /backend/routes/users.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/App.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NandhanaRameshkumar/PERSONALIZED-NEWS-AGGREGATOR/main/.DS_Store -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NandhanaRameshkumar/PERSONALIZED-NEWS-AGGREGATOR/main/README.md -------------------------------------------------------------------------------- /frontend/public/robots.txt: -------------------------------------------------------------------------------- 1 | # https://www.robotstxt.org/robotstxt.html 2 | User-agent: * 3 | Disallow: 4 | -------------------------------------------------------------------------------- /frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NandhanaRameshkumar/PERSONALIZED-NEWS-AGGREGATOR/main/frontend/public/favicon.ico -------------------------------------------------------------------------------- /frontend/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NandhanaRameshkumar/PERSONALIZED-NEWS-AGGREGATOR/main/frontend/public/logo192.png -------------------------------------------------------------------------------- /frontend/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NandhanaRameshkumar/PERSONALIZED-NEWS-AGGREGATOR/main/frontend/public/logo512.png -------------------------------------------------------------------------------- /frontend/src/assets/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NandhanaRameshkumar/PERSONALIZED-NEWS-AGGREGATOR/main/frontend/src/assets/image.png -------------------------------------------------------------------------------- /PERSONALIZED NEWS AGGREGATOR.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NandhanaRameshkumar/PERSONALIZED-NEWS-AGGREGATOR/main/PERSONALIZED NEWS AGGREGATOR.pdf -------------------------------------------------------------------------------- /frontend/src/assets/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NandhanaRameshkumar/PERSONALIZED-NEWS-AGGREGATOR/main/frontend/src/assets/settings.png -------------------------------------------------------------------------------- /frontend/src/setupTests.js: -------------------------------------------------------------------------------- 1 | // jest-dom adds custom jest matchers for asserting on DOM nodes. 2 | // allows you to do things like: 3 | // expect(element).toHaveTextContent(/react/i) 4 | // learn more: https://github.com/testing-library/jest-dom 5 | import '@testing-library/jest-dom'; 6 | -------------------------------------------------------------------------------- /frontend/src/App.test.js: -------------------------------------------------------------------------------- 1 | import { render, screen } from '@testing-library/react'; 2 | import App from './App'; 3 | 4 | test('renders learn react link', () => { 5 | render(); 6 | const linkElement = screen.getByText(/learn react/i); 7 | expect(linkElement).toBeInTheDocument(); 8 | }); 9 | -------------------------------------------------------------------------------- /frontend/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 | -------------------------------------------------------------------------------- /frontend/src/Components/ProtectedRoute.js: -------------------------------------------------------------------------------- 1 | // src/Components/ProtectedRoute.js 2 | import React from 'react'; 3 | import { Navigate } from 'react-router-dom'; 4 | 5 | const ProtectedRoute = ({ children }) => { 6 | const token = localStorage.getItem('token'); 7 | 8 | if (!token) { 9 | return ; 10 | } 11 | 12 | return children; 13 | }; 14 | 15 | export default ProtectedRoute; 16 | -------------------------------------------------------------------------------- /frontend/src/index.css: -------------------------------------------------------------------------------- 1 | body { 2 | margin: 0; 3 | font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 4 | 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', 5 | sans-serif; 6 | -webkit-font-smoothing: antialiased; 7 | -moz-osx-font-smoothing: grayscale; 8 | } 9 | 10 | code { 11 | font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', 12 | monospace; 13 | } 14 | -------------------------------------------------------------------------------- /frontend/.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 | 25 | node_modules -------------------------------------------------------------------------------- /frontend/src/reportWebVitals.js: -------------------------------------------------------------------------------- 1 | const reportWebVitals = onPerfEntry => { 2 | if (onPerfEntry && onPerfEntry instanceof Function) { 3 | import('web-vitals').then(({ getCLS, getFID, getFCP, getLCP, getTTFB }) => { 4 | getCLS(onPerfEntry); 5 | getFID(onPerfEntry); 6 | getFCP(onPerfEntry); 7 | getLCP(onPerfEntry); 8 | getTTFB(onPerfEntry); 9 | }); 10 | } 11 | }; 12 | 13 | export default reportWebVitals; 14 | -------------------------------------------------------------------------------- /backend/models/User.js: -------------------------------------------------------------------------------- 1 | // User.js 2 | const mongoose = require('mongoose'); 3 | 4 | // Define the User schema 5 | const userSchema = new mongoose.Schema({ 6 | username: { type: String, required: true, unique: true }, 7 | password: { type: String, required: true }, 8 | 9 | createdAt: { type: Date, default: Date.now } 10 | }); 11 | 12 | // Create and export the User model based on the schema 13 | module.exports = mongoose.model('User', userSchema); 14 | -------------------------------------------------------------------------------- /backend/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "backend", 3 | "version": "1.0.0", 4 | "main": "node.js", 5 | "scripts": { 6 | "test": "echo \"Error: no test specified\" && exit 1", 7 | "start":"nodemon index.js" 8 | }, 9 | "keywords": [], 10 | "author": "", 11 | "license": "ISC", 12 | "description": "", 13 | "dependencies": { 14 | "cors": "^2.8.5", 15 | "express": "^4.19.2", 16 | "mongoose": "^8.4.5", 17 | "nodemon": "^3.1.4" 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /frontend/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 | -------------------------------------------------------------------------------- /frontend/src/App.js: -------------------------------------------------------------------------------- 1 | // src/App.js 2 | import React from 'react'; 3 | import { BrowserRouter as Router, Route, Routes } from 'react-router-dom'; 4 | import LoginForm from './Components/LoginForm'; 5 | import SignupForm from './Components/SignupForm'; 6 | import Dashboard from './Components/Dashboard'; 7 | import ProtectedRoute from './Components/ProtectedRoute'; // Import the ProtectedRoute component 8 | 9 | import './App.css'; // Import CSS for global styling 10 | 11 | const App = () => { 12 | return ( 13 | 14 |
15 | 16 | } /> 17 | } /> 18 | 22 | 23 | 24 | } 25 | /> 26 | 27 |
28 |
29 | ); 30 | }; 31 | 32 | export default App; 33 | -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "frontend", 3 | "version": "0.1.0", 4 | "private": true, 5 | "dependencies": { 6 | "@testing-library/jest-dom": "^5.17.0", 7 | "@testing-library/react": "^13.4.0", 8 | "@testing-library/user-event": "^13.5.0", 9 | "axios": "^1.7.2", 10 | "bootstrap": "^5.3.3", 11 | "react": "^18.3.1", 12 | "react-dom": "^18.3.1", 13 | "react-router-dom": "^6.24.1", 14 | "react-scripts": "5.0.1", 15 | "three": "^0.166.1", 16 | "web-vitals": "^2.1.4" 17 | }, 18 | "scripts": { 19 | "start": "react-scripts start", 20 | "build": "react-scripts build", 21 | "test": "react-scripts test", 22 | "eject": "react-scripts eject" 23 | }, 24 | "eslintConfig": { 25 | "extends": [ 26 | "react-app", 27 | "react-app/jest" 28 | ] 29 | }, 30 | "browserslist": { 31 | "production": [ 32 | ">0.2%", 33 | "not dead", 34 | "not op_mini all" 35 | ], 36 | "development": [ 37 | "last 1 chrome version", 38 | "last 1 firefox version", 39 | "last 1 safari version" 40 | ] 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /frontend/src/Components/login.css: -------------------------------------------------------------------------------- 1 | /* login.css */ 2 | 3 | .form { 4 | max-width: 300px; 5 | margin: 50px auto; 6 | padding: 20px; 7 | border: 1px solid #ddd; 8 | border-radius: 5px; 9 | background-color: #f9f9f9; 10 | box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); 11 | } 12 | 13 | .form h2 { 14 | text-align: center; 15 | margin-bottom: 20px; 16 | color: #333; 17 | } 18 | 19 | .form input[type="text"], 20 | .form input[type="password"] { 21 | width: calc(100% - 40px); 22 | padding: 10px; 23 | margin-bottom: 10px; 24 | border: 1px solid #ccc; 25 | border-radius: 3px; 26 | } 27 | 28 | .form button { 29 | width: 100%; 30 | padding: 10px; 31 | background-color: #007bff; 32 | color: #fff; 33 | border: none; 34 | border-radius: 3px; 35 | cursor: pointer; 36 | } 37 | 38 | .form button:hover { 39 | background-color: #0056b3; 40 | } 41 | 42 | .form p { 43 | margin-top: 10px; 44 | text-align: center; 45 | } 46 | 47 | .form p a { 48 | color: #007bff; 49 | text-decoration: none; 50 | } 51 | 52 | .form p a:hover { 53 | text-decoration: underline; 54 | } 55 | 56 | .error { 57 | color: red; 58 | margin-top: 10px; 59 | } 60 | 61 | 62 | .logo { 63 | width: 150px; /* Adjust the size of the logo as needed */ 64 | margin-bottom: 20px; 65 | } -------------------------------------------------------------------------------- /backend/index.js: -------------------------------------------------------------------------------- 1 | const express = require('express'); 2 | const mongoose = require('mongoose'); 3 | const cors = require('cors'); 4 | const User = require('./models/User'); 5 | 6 | const app = express(); 7 | app.use(express.json()); 8 | app.use(cors()); 9 | 10 | mongoose.connect("mongodb://localhost:27017/Signup_Details", { 11 | useNewUrlParser: true, 12 | useUnifiedTopology: true, 13 | }) 14 | .then(() => console.log('MongoDB connected')) 15 | .catch((err) => console.log('MongoDB connection error:', err)); 16 | 17 | app.post('/signup', async (req, res) => { 18 | try { 19 | const { username, password } = req.body; 20 | const newUser = new User({ username, password }); 21 | await newUser.save(); 22 | res.status(201).json(newUser); 23 | } catch (error) { 24 | console.error('Signup error:', error); 25 | res.status(500).json({ message: 'Server error', error }); 26 | } 27 | }); 28 | 29 | app.post('/api/login', async (req, res) => { 30 | try { 31 | const { username, password } = req.body; 32 | const user = await User.findOne({ username }); 33 | 34 | if (!user || user.password !== password) { 35 | return res.status(400).json({ message: 'Invalid credentials' }); 36 | } 37 | 38 | // Example token (in a real app, you should generate a JWT or another token) 39 | const token = 'example-token'; 40 | res.status(200).json({ message: 'Login successful', token }); 41 | } catch (error) { 42 | console.error('Login error:', error); 43 | res.status(500).json({ message: 'Server error', error }); 44 | } 45 | }); 46 | 47 | const PORT = process.env.PORT || 3001; 48 | app.listen(PORT, () => { 49 | console.log('Server is running'); 50 | }); -------------------------------------------------------------------------------- /frontend/src/Components/LoginForm.js: -------------------------------------------------------------------------------- 1 | // src/Components/LoginForm.js 2 | import React, { useState } from 'react'; 3 | import { Link } from 'react-router-dom'; 4 | import axios from 'axios'; 5 | import './login.css'; // Import CSS for styling 6 | import logo from '../assets/image.png'; // Import the logo image 7 | 8 | const LoginForm = () => { 9 | const [username, setUsername] = useState(''); 10 | const [password, setPassword] = useState(''); 11 | const [error, setError] = useState(''); 12 | 13 | const handleLogin = async (e) => { 14 | e.preventDefault(); 15 | try { 16 | const response = await axios.post('http://localhost:3001/api/login', { username, password }); 17 | localStorage.setItem('token', response.data.token); 18 | window.location.href = '/dashboard'; 19 | } catch (error) { 20 | console.error('Login error:', error); 21 | setError('Invalid credentials. Please try again.'); 22 | } 23 | }; 24 | 25 | return ( 26 | 27 |
28 | Logo 29 |

Login

30 | setUsername(e.target.value)} 35 | required 36 | /> 37 | setPassword(e.target.value)} 42 | required 43 | /> 44 | {error &&

{error}

} 45 |



46 | 47 |

48 | Don't have an account? Signup here 49 |

50 |
51 | ); 52 | }; 53 | 54 | export default LoginForm; 55 | -------------------------------------------------------------------------------- /frontend/public/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 12 | 13 | 17 | 18 | 19 | 28 | React App 29 | 30 | 31 | 32 |
33 | 43 | 44 | 45 | -------------------------------------------------------------------------------- /frontend/src/logo.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/Components/Dashboard.css: -------------------------------------------------------------------------------- 1 | body { 2 | margin: 0; 3 | font-family: Arial, sans-serif; 4 | background-color: #f4f4f4; 5 | } 6 | 7 | .navbar { 8 | display: flex; 9 | justify-content: space-between; 10 | align-items: center; 11 | padding: 10px 20px; 12 | background-color: #0056b3; 13 | color: white; 14 | } 15 | 16 | .navbar-left { 17 | font-size: 24px; 18 | font-weight: bold; 19 | } 20 | 21 | .navbar-right { 22 | display: flex; 23 | align-items: center; 24 | gap: 20px; 25 | } 26 | 27 | .nav-option { 28 | cursor: pointer; 29 | } 30 | 31 | .nav-select { 32 | background-color: #0056b3; 33 | color: white; 34 | border: 1px solid white; 35 | padding: 5px; 36 | font-size: 16px; 37 | cursor: pointer; 38 | border-radius: 5px; 39 | } 40 | 41 | .nav-select option { 42 | background-color: white; 43 | color: black; 44 | } 45 | 46 | .content { 47 | padding: 20px; 48 | } 49 | 50 | .articles { 51 | display: flex; 52 | flex-wrap: wrap; 53 | gap: 20px; 54 | } 55 | 56 | .article { 57 | border: 1px solid #ddd; 58 | border-radius: 8px; 59 | background-color: white; 60 | box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); 61 | overflow: hidden; 62 | transition: transform 0.3s; 63 | width: calc(33.333% - 20px); 64 | margin-bottom: 20px; 65 | } 66 | 67 | .article:hover { 68 | transform: scale(1.03); 69 | } 70 | 71 | .article-image { 72 | width: 100%; 73 | height: 200px; 74 | object-fit: cover; 75 | } 76 | 77 | .article h3 { 78 | font-size: 20px; 79 | margin: 15px 10px; 80 | color: #333; 81 | } 82 | 83 | .article p { 84 | font-size: 14px; 85 | margin: 0 10px 10px; 86 | color: #666; 87 | } 88 | 89 | .article a { 90 | display: block; 91 | margin: 10px; 92 | color: #0056b3; 93 | text-decoration: none; 94 | font-weight: bold; 95 | } 96 | 97 | .article a:hover { 98 | text-decoration: underline; 99 | } 100 | 101 | .img { 102 | width: 100%; 103 | height: auto; 104 | } 105 | 106 | @media (max-width: 768px) { 107 | .articles { 108 | flex-direction: column; 109 | } 110 | 111 | .article { 112 | width: 100%; 113 | } 114 | } 115 | 116 | .loading { 117 | display: flex; 118 | justify-content: center; 119 | align-items: center; 120 | height: 70vh; /* Adjust as needed */ 121 | } 122 | 123 | .loading-image { 124 | width: 70px; /* Adjust as needed */ 125 | height: 70px; /* Adjust as needed */ 126 | animation: spin 1s linear infinite; 127 | } 128 | 129 | @keyframes spin { 130 | 0% { transform: rotate(0deg); } 131 | 100% { transform: rotate(360deg); } 132 | } 133 | -------------------------------------------------------------------------------- /frontend/src/Components/signup.css: -------------------------------------------------------------------------------- 1 | @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap'); 2 | 3 | body { 4 | font-family: 'Arial', sans-serif; 5 | background-color: #f4f4f9; 6 | margin: 0; 7 | padding: 0; 8 | height: 100vh; 9 | } 10 | 11 | .form { 12 | background-color: #ffffff; 13 | padding: 20px 30px; 14 | border-radius: 10px; 15 | box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); 16 | width: 100%; 17 | max-width: 400px; 18 | text-align: center; 19 | margin: auto; 20 | margin-top: 50px; 21 | } 22 | 23 | h2 { 24 | margin-bottom: 20px; 25 | color: #333333; 26 | } 27 | 28 | .input { 29 | width: calc(100% - 20px); 30 | padding: 10px; 31 | margin-bottom: 10px; 32 | border: 1px solid #ddd; 33 | border-radius: 5px; 34 | } 35 | 36 | .label { 37 | text-align: left; 38 | display: block; 39 | margin: 10px 0 5px 5px; 40 | color: #333333; 41 | font-weight: bold; 42 | } 43 | 44 | .select { 45 | width: calc(100% - 20px); 46 | padding: 10px; 47 | margin-bottom: 10px; 48 | border: 1px solid #ddd; 49 | border-radius: 5px; 50 | } 51 | 52 | .error { 53 | color: #ff0000; 54 | margin-bottom: 10px; 55 | } 56 | 57 | .button { 58 | width: 100%; 59 | padding: 10px; 60 | background-color: #4caf50; 61 | color: white; 62 | border: none; 63 | border-radius: 5px; 64 | cursor: pointer; 65 | font-size: 16px; 66 | } 67 | 68 | .button:hover { 69 | background-color: #45a049; 70 | } 71 | 72 | .login-link { 73 | margin-top: 20px; 74 | } 75 | 76 | .login-link a { 77 | color: #4caf50; 78 | text-decoration: none; 79 | } 80 | 81 | .login-link a:hover { 82 | text-decoration: underline; 83 | } 84 | 85 | .logo { 86 | width: 150px; /* Adjust the size of the logo as needed */ 87 | margin-bottom: 20px; 88 | } 89 | 90 | .password-requirements { 91 | background-color: #ebf8ff; 92 | border: 1px solid #bee3f8; 93 | padding: 16px; 94 | border-radius: 12px; 95 | box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); 96 | margin-bottom: 20px; 97 | line-height: 20px; 98 | margin-top: 10px; 99 | } 100 | 101 | .requirements-title { 102 | font-size: 16px; 103 | font-weight: 600; 104 | color: #3182ce; 105 | margin-bottom: 8px; 106 | text-align: left; 107 | } 108 | 109 | .requirements-list { 110 | list-style-type: none; 111 | padding: 0; 112 | } 113 | 114 | .requirement { 115 | display: flex; 116 | align-items: center; 117 | font-size: 14px; 118 | color: #4a5568; 119 | margin-bottom: 4px; 120 | } 121 | 122 | .requirement-icon { 123 | margin-right: 8px; 124 | color: #a0aec0; 125 | } 126 | 127 | .requirement.met .requirement-icon { 128 | color: rgb(66, 175, 20); 129 | } 130 | 131 | .requirement.met { 132 | color: green; 133 | } 134 | 135 | .password-input { 136 | position: relative; 137 | } 138 | 139 | .password-field { 140 | width: calc(100% - 40px); 141 | padding: 10px; 142 | margin-bottom: 10px; 143 | border: 1px solid #ddd; 144 | border-radius: 5px; 145 | } 146 | 147 | .toggle-password-icon { 148 | position: absolute; 149 | top: 50%; 150 | right: 20px; 151 | transform: translateY(-72%); 152 | font-size: 18px; 153 | 154 | cursor: pointer; 155 | } 156 | 157 | .toggle-password-icon:hover { 158 | color: #333; 159 | } 160 | -------------------------------------------------------------------------------- /frontend/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 | -------------------------------------------------------------------------------- /frontend/src/Components/Dashboard.js: -------------------------------------------------------------------------------- 1 | import React, { useState, useEffect } from 'react'; 2 | import { useNavigate } from 'react-router-dom'; 3 | import './Dashboard.css'; // Import CSS for styling 4 | import settings from '../assets/settings.png'; 5 | 6 | const Dashboard = () => { 7 | const navigate = useNavigate(); 8 | const [articles, setArticles] = useState([]); 9 | const [selectedCategory, setSelectedCategory] = useState('General'); // Default category 10 | const [loading, setLoading] = useState(true); // State to track loading 11 | 12 | useEffect(() => { 13 | fetchNews(selectedCategory); 14 | }, [selectedCategory]); 15 | 16 | const fetchNews = async (category) => { 17 | setLoading(true); // Set loading to true when starting to fetch news 18 | try { 19 | const response = await fetch(`https://news-aggregator-backend-h2br.onrender.com/top-headlines?category=${category}&language=en&page=1&pageSize=80`); 20 | if (!response.ok) { 21 | throw new Error(`Failed to fetch news - ${response.status} ${response.statusText}`); 22 | } 23 | const data = await response.json(); 24 | if (data.data.status === 'ok') { 25 | setArticles(data.data.articles); 26 | } else { 27 | throw new Error('Failed to fetch news - Invalid response'); 28 | } 29 | } catch (error) { 30 | console.error('Error fetching news:', error); 31 | } finally { 32 | setLoading(false); // Set loading to false after fetching news 33 | } 34 | }; 35 | 36 | const handleLogout = () => { 37 | localStorage.removeItem('token'); 38 | navigate('/'); 39 | }; 40 | 41 | const handleChangeCategory = (category) => { 42 | setSelectedCategory(category); 43 | }; 44 | 45 | return ( 46 |
47 | 68 |
69 |

Top Headlines ({selectedCategory})

70 | {loading ? ( 71 |
72 | Loading 73 |
74 | ) : ( 75 |
76 | {articles 77 | .filter(article => article.title !== '[Removed]' && article.urlToImage) 78 | .map((article, index) => ( 79 |
80 | {article.title} 81 |

{article.title}

82 |

{article.description}

83 |

{article.publishedAt}

84 |

{article.content}

85 | Read more 86 |
87 | ))} 88 |
89 | )} 90 |
91 |
92 | ); 93 | }; 94 | 95 | export default Dashboard; 96 | -------------------------------------------------------------------------------- /frontend/src/Components/SignupForm.js: -------------------------------------------------------------------------------- 1 | import React, { useState } from 'react'; 2 | import { Link, useNavigate } from 'react-router-dom'; 3 | import axios from 'axios'; 4 | import './signup.css'; // Import CSS for styling 5 | import logo from '../assets/image.png'; // Import the logo image 6 | 7 | const SignupForm = () => { 8 | const [username, setUsername] = useState(''); 9 | const [password, setPassword] = useState(''); 10 | const [error, setError] = useState(''); 11 | const [passwordRequirements, setPasswordRequirements] = useState({ 12 | minLength: false, 13 | hasUppercase: false, 14 | hasSpecialChar: false, 15 | hasNumber: false, 16 | }); 17 | const [passwordVisible, setPasswordVisible] = useState(false); // State to track password visibility 18 | const navigate = useNavigate(); 19 | 20 | const validatePassword = (password) => { 21 | const requirements = { 22 | minLength: password.length >= 7, 23 | hasUppercase: /[A-Z]/.test(password), 24 | hasSpecialChar: /[!@#$%^&*(),.?":{}|<>]/.test(password), 25 | hasNumber: /\d/.test(password), 26 | }; 27 | setPasswordRequirements(requirements); 28 | return Object.values(requirements).every(Boolean); 29 | }; 30 | 31 | const handleSignup = async (e) => { 32 | e.preventDefault(); 33 | if (!validatePassword(password)) { 34 | setError('Password does not meet the requirements.'); 35 | return; 36 | } 37 | try { 38 | await axios.post('http://localhost:3001/signup', { username, password }).then((result) => { 39 | console.log(result); 40 | navigate('/'); // Navigate to the login page 41 | }); 42 | } catch (error) { 43 | console.error('Signup error:', error); 44 | setError('Signup failed. Please try again.'); // Example error handling 45 | } 46 | }; 47 | 48 | const handlePasswordChange = (e) => { 49 | setPassword(e.target.value); 50 | validatePassword(e.target.value); 51 | }; 52 | 53 | const togglePasswordVisibility = () => { 54 | setPasswordVisible(!passwordVisible); 55 | }; 56 | 57 | return ( 58 |
59 | Logo 60 |

Signup

61 | setUsername(e.target.value)} 66 | required 67 | className="input" 68 | /> 69 |
70 | 78 | 82 |
83 |
84 |

85 | PASSWORD MUST CONTAIN 86 |

87 |
    88 |
  • 89 | 90 | Minimum Length of 7 Characters 91 |
  • 92 |
  • 93 | 94 | Minimum One Capital Letter 95 |
  • 96 |
  • 97 | 98 | Minimum One Number 99 |
  • 100 |
  • 101 | 102 | Minimum One Special Character 103 |
  • 104 |
105 |
106 | {error &&

{error}

} 107 | 110 |

111 | Already have an account? Login here 112 |

113 |
114 | ); 115 | }; 116 | 117 | export default SignupForm; 118 | -------------------------------------------------------------------------------- /backend/package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "backend", 3 | "version": "1.0.0", 4 | "lockfileVersion": 3, 5 | "requires": true, 6 | "packages": { 7 | "": { 8 | "name": "backend", 9 | "version": "1.0.0", 10 | "license": "ISC", 11 | "dependencies": { 12 | "cors": "^2.8.5", 13 | "express": "^4.19.2", 14 | "mongoose": "^8.4.5", 15 | "nodemon": "^3.1.4" 16 | } 17 | }, 18 | "node_modules/@mongodb-js/saslprep": { 19 | "version": "1.1.7", 20 | "resolved": "https://registry.npmjs.org/@mongodb-js/saslprep/-/saslprep-1.1.7.tgz", 21 | "integrity": "sha512-dCHW/oEX0KJ4NjDULBo3JiOaK5+6axtpBbS+ao2ZInoAL9/YRQLhXzSNAFz7hP4nzLkIqsfYAK/PDE3+XHny0Q==", 22 | "license": "MIT", 23 | "dependencies": { 24 | "sparse-bitfield": "^3.0.3" 25 | } 26 | }, 27 | "node_modules/@types/webidl-conversions": { 28 | "version": "7.0.3", 29 | "resolved": "https://registry.npmjs.org/@types/webidl-conversions/-/webidl-conversions-7.0.3.tgz", 30 | "integrity": "sha512-CiJJvcRtIgzadHCYXw7dqEnMNRjhGZlYK05Mj9OyktqV8uVT8fD2BFOB7S1uwBE3Kj2Z+4UyPmFw/Ixgw/LAlA==", 31 | "license": "MIT" 32 | }, 33 | "node_modules/@types/whatwg-url": { 34 | "version": "11.0.5", 35 | "resolved": "https://registry.npmjs.org/@types/whatwg-url/-/whatwg-url-11.0.5.tgz", 36 | "integrity": "sha512-coYR071JRaHa+xoEvvYqvnIHaVqaYrLPbsufM9BF63HkwI5Lgmy2QR8Q5K/lYDYo5AK82wOvSOS0UsLTpTG7uQ==", 37 | "license": "MIT", 38 | "dependencies": { 39 | "@types/webidl-conversions": "*" 40 | } 41 | }, 42 | "node_modules/accepts": { 43 | "version": "1.3.8", 44 | "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", 45 | "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", 46 | "license": "MIT", 47 | "dependencies": { 48 | "mime-types": "~2.1.34", 49 | "negotiator": "0.6.3" 50 | }, 51 | "engines": { 52 | "node": ">= 0.6" 53 | } 54 | }, 55 | "node_modules/anymatch": { 56 | "version": "3.1.3", 57 | "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", 58 | "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", 59 | "license": "ISC", 60 | "dependencies": { 61 | "normalize-path": "^3.0.0", 62 | "picomatch": "^2.0.4" 63 | }, 64 | "engines": { 65 | "node": ">= 8" 66 | } 67 | }, 68 | "node_modules/array-flatten": { 69 | "version": "1.1.1", 70 | "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", 71 | "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==", 72 | "license": "MIT" 73 | }, 74 | "node_modules/balanced-match": { 75 | "version": "1.0.2", 76 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", 77 | "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", 78 | "license": "MIT" 79 | }, 80 | "node_modules/binary-extensions": { 81 | "version": "2.3.0", 82 | "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", 83 | "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", 84 | "license": "MIT", 85 | "engines": { 86 | "node": ">=8" 87 | }, 88 | "funding": { 89 | "url": "https://github.com/sponsors/sindresorhus" 90 | } 91 | }, 92 | "node_modules/body-parser": { 93 | "version": "1.20.2", 94 | "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.2.tgz", 95 | "integrity": "sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==", 96 | "license": "MIT", 97 | "dependencies": { 98 | "bytes": "3.1.2", 99 | "content-type": "~1.0.5", 100 | "debug": "2.6.9", 101 | "depd": "2.0.0", 102 | "destroy": "1.2.0", 103 | "http-errors": "2.0.0", 104 | "iconv-lite": "0.4.24", 105 | "on-finished": "2.4.1", 106 | "qs": "6.11.0", 107 | "raw-body": "2.5.2", 108 | "type-is": "~1.6.18", 109 | "unpipe": "1.0.0" 110 | }, 111 | "engines": { 112 | "node": ">= 0.8", 113 | "npm": "1.2.8000 || >= 1.4.16" 114 | } 115 | }, 116 | "node_modules/body-parser/node_modules/debug": { 117 | "version": "2.6.9", 118 | "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", 119 | "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", 120 | "license": "MIT", 121 | "dependencies": { 122 | "ms": "2.0.0" 123 | } 124 | }, 125 | "node_modules/body-parser/node_modules/ms": { 126 | "version": "2.0.0", 127 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", 128 | "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", 129 | "license": "MIT" 130 | }, 131 | "node_modules/brace-expansion": { 132 | "version": "1.1.11", 133 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 134 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 135 | "license": "MIT", 136 | "dependencies": { 137 | "balanced-match": "^1.0.0", 138 | "concat-map": "0.0.1" 139 | } 140 | }, 141 | "node_modules/braces": { 142 | "version": "3.0.3", 143 | "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", 144 | "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", 145 | "license": "MIT", 146 | "dependencies": { 147 | "fill-range": "^7.1.1" 148 | }, 149 | "engines": { 150 | "node": ">=8" 151 | } 152 | }, 153 | "node_modules/bson": { 154 | "version": "6.8.0", 155 | "resolved": "https://registry.npmjs.org/bson/-/bson-6.8.0.tgz", 156 | "integrity": "sha512-iOJg8pr7wq2tg/zSlCCHMi3hMm5JTOxLTagf3zxhcenHsFp+c6uOs6K7W5UE7A4QIJGtqh/ZovFNMP4mOPJynQ==", 157 | "license": "Apache-2.0", 158 | "engines": { 159 | "node": ">=16.20.1" 160 | } 161 | }, 162 | "node_modules/bytes": { 163 | "version": "3.1.2", 164 | "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", 165 | "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", 166 | "license": "MIT", 167 | "engines": { 168 | "node": ">= 0.8" 169 | } 170 | }, 171 | "node_modules/call-bind": { 172 | "version": "1.0.7", 173 | "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz", 174 | "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==", 175 | "license": "MIT", 176 | "dependencies": { 177 | "es-define-property": "^1.0.0", 178 | "es-errors": "^1.3.0", 179 | "function-bind": "^1.1.2", 180 | "get-intrinsic": "^1.2.4", 181 | "set-function-length": "^1.2.1" 182 | }, 183 | "engines": { 184 | "node": ">= 0.4" 185 | }, 186 | "funding": { 187 | "url": "https://github.com/sponsors/ljharb" 188 | } 189 | }, 190 | "node_modules/chokidar": { 191 | "version": "3.6.0", 192 | "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", 193 | "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", 194 | "license": "MIT", 195 | "dependencies": { 196 | "anymatch": "~3.1.2", 197 | "braces": "~3.0.2", 198 | "glob-parent": "~5.1.2", 199 | "is-binary-path": "~2.1.0", 200 | "is-glob": "~4.0.1", 201 | "normalize-path": "~3.0.0", 202 | "readdirp": "~3.6.0" 203 | }, 204 | "engines": { 205 | "node": ">= 8.10.0" 206 | }, 207 | "funding": { 208 | "url": "https://paulmillr.com/funding/" 209 | }, 210 | "optionalDependencies": { 211 | "fsevents": "~2.3.2" 212 | } 213 | }, 214 | "node_modules/concat-map": { 215 | "version": "0.0.1", 216 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", 217 | "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", 218 | "license": "MIT" 219 | }, 220 | "node_modules/content-disposition": { 221 | "version": "0.5.4", 222 | "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", 223 | "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", 224 | "license": "MIT", 225 | "dependencies": { 226 | "safe-buffer": "5.2.1" 227 | }, 228 | "engines": { 229 | "node": ">= 0.6" 230 | } 231 | }, 232 | "node_modules/content-type": { 233 | "version": "1.0.5", 234 | "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", 235 | "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", 236 | "license": "MIT", 237 | "engines": { 238 | "node": ">= 0.6" 239 | } 240 | }, 241 | "node_modules/cookie": { 242 | "version": "0.6.0", 243 | "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.6.0.tgz", 244 | "integrity": "sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==", 245 | "license": "MIT", 246 | "engines": { 247 | "node": ">= 0.6" 248 | } 249 | }, 250 | "node_modules/cookie-signature": { 251 | "version": "1.0.6", 252 | "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", 253 | "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==", 254 | "license": "MIT" 255 | }, 256 | "node_modules/cors": { 257 | "version": "2.8.5", 258 | "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.5.tgz", 259 | "integrity": "sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==", 260 | "license": "MIT", 261 | "dependencies": { 262 | "object-assign": "^4", 263 | "vary": "^1" 264 | }, 265 | "engines": { 266 | "node": ">= 0.10" 267 | } 268 | }, 269 | "node_modules/debug": { 270 | "version": "4.3.5", 271 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.5.tgz", 272 | "integrity": "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==", 273 | "license": "MIT", 274 | "dependencies": { 275 | "ms": "2.1.2" 276 | }, 277 | "engines": { 278 | "node": ">=6.0" 279 | }, 280 | "peerDependenciesMeta": { 281 | "supports-color": { 282 | "optional": true 283 | } 284 | } 285 | }, 286 | "node_modules/debug/node_modules/ms": { 287 | "version": "2.1.2", 288 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", 289 | "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", 290 | "license": "MIT" 291 | }, 292 | "node_modules/define-data-property": { 293 | "version": "1.1.4", 294 | "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", 295 | "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", 296 | "license": "MIT", 297 | "dependencies": { 298 | "es-define-property": "^1.0.0", 299 | "es-errors": "^1.3.0", 300 | "gopd": "^1.0.1" 301 | }, 302 | "engines": { 303 | "node": ">= 0.4" 304 | }, 305 | "funding": { 306 | "url": "https://github.com/sponsors/ljharb" 307 | } 308 | }, 309 | "node_modules/depd": { 310 | "version": "2.0.0", 311 | "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", 312 | "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", 313 | "license": "MIT", 314 | "engines": { 315 | "node": ">= 0.8" 316 | } 317 | }, 318 | "node_modules/destroy": { 319 | "version": "1.2.0", 320 | "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", 321 | "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", 322 | "license": "MIT", 323 | "engines": { 324 | "node": ">= 0.8", 325 | "npm": "1.2.8000 || >= 1.4.16" 326 | } 327 | }, 328 | "node_modules/ee-first": { 329 | "version": "1.1.1", 330 | "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", 331 | "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", 332 | "license": "MIT" 333 | }, 334 | "node_modules/encodeurl": { 335 | "version": "1.0.2", 336 | "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", 337 | "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", 338 | "license": "MIT", 339 | "engines": { 340 | "node": ">= 0.8" 341 | } 342 | }, 343 | "node_modules/es-define-property": { 344 | "version": "1.0.0", 345 | "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz", 346 | "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==", 347 | "license": "MIT", 348 | "dependencies": { 349 | "get-intrinsic": "^1.2.4" 350 | }, 351 | "engines": { 352 | "node": ">= 0.4" 353 | } 354 | }, 355 | "node_modules/es-errors": { 356 | "version": "1.3.0", 357 | "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", 358 | "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", 359 | "license": "MIT", 360 | "engines": { 361 | "node": ">= 0.4" 362 | } 363 | }, 364 | "node_modules/escape-html": { 365 | "version": "1.0.3", 366 | "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", 367 | "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", 368 | "license": "MIT" 369 | }, 370 | "node_modules/etag": { 371 | "version": "1.8.1", 372 | "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", 373 | "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", 374 | "license": "MIT", 375 | "engines": { 376 | "node": ">= 0.6" 377 | } 378 | }, 379 | "node_modules/express": { 380 | "version": "4.19.2", 381 | "resolved": "https://registry.npmjs.org/express/-/express-4.19.2.tgz", 382 | "integrity": "sha512-5T6nhjsT+EOMzuck8JjBHARTHfMht0POzlA60WV2pMD3gyXw2LZnZ+ueGdNxG+0calOJcWKbpFcuzLZ91YWq9Q==", 383 | "license": "MIT", 384 | "dependencies": { 385 | "accepts": "~1.3.8", 386 | "array-flatten": "1.1.1", 387 | "body-parser": "1.20.2", 388 | "content-disposition": "0.5.4", 389 | "content-type": "~1.0.4", 390 | "cookie": "0.6.0", 391 | "cookie-signature": "1.0.6", 392 | "debug": "2.6.9", 393 | "depd": "2.0.0", 394 | "encodeurl": "~1.0.2", 395 | "escape-html": "~1.0.3", 396 | "etag": "~1.8.1", 397 | "finalhandler": "1.2.0", 398 | "fresh": "0.5.2", 399 | "http-errors": "2.0.0", 400 | "merge-descriptors": "1.0.1", 401 | "methods": "~1.1.2", 402 | "on-finished": "2.4.1", 403 | "parseurl": "~1.3.3", 404 | "path-to-regexp": "0.1.7", 405 | "proxy-addr": "~2.0.7", 406 | "qs": "6.11.0", 407 | "range-parser": "~1.2.1", 408 | "safe-buffer": "5.2.1", 409 | "send": "0.18.0", 410 | "serve-static": "1.15.0", 411 | "setprototypeof": "1.2.0", 412 | "statuses": "2.0.1", 413 | "type-is": "~1.6.18", 414 | "utils-merge": "1.0.1", 415 | "vary": "~1.1.2" 416 | }, 417 | "engines": { 418 | "node": ">= 0.10.0" 419 | } 420 | }, 421 | "node_modules/express/node_modules/debug": { 422 | "version": "2.6.9", 423 | "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", 424 | "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", 425 | "license": "MIT", 426 | "dependencies": { 427 | "ms": "2.0.0" 428 | } 429 | }, 430 | "node_modules/express/node_modules/ms": { 431 | "version": "2.0.0", 432 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", 433 | "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", 434 | "license": "MIT" 435 | }, 436 | "node_modules/fill-range": { 437 | "version": "7.1.1", 438 | "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", 439 | "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", 440 | "license": "MIT", 441 | "dependencies": { 442 | "to-regex-range": "^5.0.1" 443 | }, 444 | "engines": { 445 | "node": ">=8" 446 | } 447 | }, 448 | "node_modules/finalhandler": { 449 | "version": "1.2.0", 450 | "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", 451 | "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", 452 | "license": "MIT", 453 | "dependencies": { 454 | "debug": "2.6.9", 455 | "encodeurl": "~1.0.2", 456 | "escape-html": "~1.0.3", 457 | "on-finished": "2.4.1", 458 | "parseurl": "~1.3.3", 459 | "statuses": "2.0.1", 460 | "unpipe": "~1.0.0" 461 | }, 462 | "engines": { 463 | "node": ">= 0.8" 464 | } 465 | }, 466 | "node_modules/finalhandler/node_modules/debug": { 467 | "version": "2.6.9", 468 | "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", 469 | "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", 470 | "license": "MIT", 471 | "dependencies": { 472 | "ms": "2.0.0" 473 | } 474 | }, 475 | "node_modules/finalhandler/node_modules/ms": { 476 | "version": "2.0.0", 477 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", 478 | "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", 479 | "license": "MIT" 480 | }, 481 | "node_modules/forwarded": { 482 | "version": "0.2.0", 483 | "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", 484 | "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", 485 | "license": "MIT", 486 | "engines": { 487 | "node": ">= 0.6" 488 | } 489 | }, 490 | "node_modules/fresh": { 491 | "version": "0.5.2", 492 | "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", 493 | "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", 494 | "license": "MIT", 495 | "engines": { 496 | "node": ">= 0.6" 497 | } 498 | }, 499 | "node_modules/fsevents": { 500 | "version": "2.3.3", 501 | "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", 502 | "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", 503 | "hasInstallScript": true, 504 | "license": "MIT", 505 | "optional": true, 506 | "os": [ 507 | "darwin" 508 | ], 509 | "engines": { 510 | "node": "^8.16.0 || ^10.6.0 || >=11.0.0" 511 | } 512 | }, 513 | "node_modules/function-bind": { 514 | "version": "1.1.2", 515 | "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", 516 | "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", 517 | "license": "MIT", 518 | "funding": { 519 | "url": "https://github.com/sponsors/ljharb" 520 | } 521 | }, 522 | "node_modules/get-intrinsic": { 523 | "version": "1.2.4", 524 | "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz", 525 | "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==", 526 | "license": "MIT", 527 | "dependencies": { 528 | "es-errors": "^1.3.0", 529 | "function-bind": "^1.1.2", 530 | "has-proto": "^1.0.1", 531 | "has-symbols": "^1.0.3", 532 | "hasown": "^2.0.0" 533 | }, 534 | "engines": { 535 | "node": ">= 0.4" 536 | }, 537 | "funding": { 538 | "url": "https://github.com/sponsors/ljharb" 539 | } 540 | }, 541 | "node_modules/glob-parent": { 542 | "version": "5.1.2", 543 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", 544 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 545 | "license": "ISC", 546 | "dependencies": { 547 | "is-glob": "^4.0.1" 548 | }, 549 | "engines": { 550 | "node": ">= 6" 551 | } 552 | }, 553 | "node_modules/gopd": { 554 | "version": "1.0.1", 555 | "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", 556 | "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", 557 | "license": "MIT", 558 | "dependencies": { 559 | "get-intrinsic": "^1.1.3" 560 | }, 561 | "funding": { 562 | "url": "https://github.com/sponsors/ljharb" 563 | } 564 | }, 565 | "node_modules/has-flag": { 566 | "version": "3.0.0", 567 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", 568 | "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", 569 | "license": "MIT", 570 | "engines": { 571 | "node": ">=4" 572 | } 573 | }, 574 | "node_modules/has-property-descriptors": { 575 | "version": "1.0.2", 576 | "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", 577 | "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", 578 | "license": "MIT", 579 | "dependencies": { 580 | "es-define-property": "^1.0.0" 581 | }, 582 | "funding": { 583 | "url": "https://github.com/sponsors/ljharb" 584 | } 585 | }, 586 | "node_modules/has-proto": { 587 | "version": "1.0.3", 588 | "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz", 589 | "integrity": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==", 590 | "license": "MIT", 591 | "engines": { 592 | "node": ">= 0.4" 593 | }, 594 | "funding": { 595 | "url": "https://github.com/sponsors/ljharb" 596 | } 597 | }, 598 | "node_modules/has-symbols": { 599 | "version": "1.0.3", 600 | "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", 601 | "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", 602 | "license": "MIT", 603 | "engines": { 604 | "node": ">= 0.4" 605 | }, 606 | "funding": { 607 | "url": "https://github.com/sponsors/ljharb" 608 | } 609 | }, 610 | "node_modules/hasown": { 611 | "version": "2.0.2", 612 | "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", 613 | "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", 614 | "license": "MIT", 615 | "dependencies": { 616 | "function-bind": "^1.1.2" 617 | }, 618 | "engines": { 619 | "node": ">= 0.4" 620 | } 621 | }, 622 | "node_modules/http-errors": { 623 | "version": "2.0.0", 624 | "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", 625 | "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", 626 | "license": "MIT", 627 | "dependencies": { 628 | "depd": "2.0.0", 629 | "inherits": "2.0.4", 630 | "setprototypeof": "1.2.0", 631 | "statuses": "2.0.1", 632 | "toidentifier": "1.0.1" 633 | }, 634 | "engines": { 635 | "node": ">= 0.8" 636 | } 637 | }, 638 | "node_modules/iconv-lite": { 639 | "version": "0.4.24", 640 | "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", 641 | "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", 642 | "license": "MIT", 643 | "dependencies": { 644 | "safer-buffer": ">= 2.1.2 < 3" 645 | }, 646 | "engines": { 647 | "node": ">=0.10.0" 648 | } 649 | }, 650 | "node_modules/ignore-by-default": { 651 | "version": "1.0.1", 652 | "resolved": "https://registry.npmjs.org/ignore-by-default/-/ignore-by-default-1.0.1.tgz", 653 | "integrity": "sha512-Ius2VYcGNk7T90CppJqcIkS5ooHUZyIQK+ClZfMfMNFEF9VSE73Fq+906u/CWu92x4gzZMWOwfFYckPObzdEbA==", 654 | "license": "ISC" 655 | }, 656 | "node_modules/inherits": { 657 | "version": "2.0.4", 658 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", 659 | "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", 660 | "license": "ISC" 661 | }, 662 | "node_modules/ipaddr.js": { 663 | "version": "1.9.1", 664 | "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", 665 | "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", 666 | "license": "MIT", 667 | "engines": { 668 | "node": ">= 0.10" 669 | } 670 | }, 671 | "node_modules/is-binary-path": { 672 | "version": "2.1.0", 673 | "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", 674 | "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", 675 | "license": "MIT", 676 | "dependencies": { 677 | "binary-extensions": "^2.0.0" 678 | }, 679 | "engines": { 680 | "node": ">=8" 681 | } 682 | }, 683 | "node_modules/is-extglob": { 684 | "version": "2.1.1", 685 | "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", 686 | "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", 687 | "license": "MIT", 688 | "engines": { 689 | "node": ">=0.10.0" 690 | } 691 | }, 692 | "node_modules/is-glob": { 693 | "version": "4.0.3", 694 | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", 695 | "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", 696 | "license": "MIT", 697 | "dependencies": { 698 | "is-extglob": "^2.1.1" 699 | }, 700 | "engines": { 701 | "node": ">=0.10.0" 702 | } 703 | }, 704 | "node_modules/is-number": { 705 | "version": "7.0.0", 706 | "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", 707 | "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", 708 | "license": "MIT", 709 | "engines": { 710 | "node": ">=0.12.0" 711 | } 712 | }, 713 | "node_modules/kareem": { 714 | "version": "2.6.3", 715 | "resolved": "https://registry.npmjs.org/kareem/-/kareem-2.6.3.tgz", 716 | "integrity": "sha512-C3iHfuGUXK2u8/ipq9LfjFfXFxAZMQJJq7vLS45r3D9Y2xQ/m4S8zaR4zMLFWh9AsNPXmcFfUDhTEO8UIC/V6Q==", 717 | "license": "Apache-2.0", 718 | "engines": { 719 | "node": ">=12.0.0" 720 | } 721 | }, 722 | "node_modules/media-typer": { 723 | "version": "0.3.0", 724 | "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", 725 | "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", 726 | "license": "MIT", 727 | "engines": { 728 | "node": ">= 0.6" 729 | } 730 | }, 731 | "node_modules/memory-pager": { 732 | "version": "1.5.0", 733 | "resolved": "https://registry.npmjs.org/memory-pager/-/memory-pager-1.5.0.tgz", 734 | "integrity": "sha512-ZS4Bp4r/Zoeq6+NLJpP+0Zzm0pR8whtGPf1XExKLJBAczGMnSi3It14OiNCStjQjM6NU1okjQGSxgEZN8eBYKg==", 735 | "license": "MIT" 736 | }, 737 | "node_modules/merge-descriptors": { 738 | "version": "1.0.1", 739 | "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", 740 | "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==", 741 | "license": "MIT" 742 | }, 743 | "node_modules/methods": { 744 | "version": "1.1.2", 745 | "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", 746 | "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", 747 | "license": "MIT", 748 | "engines": { 749 | "node": ">= 0.6" 750 | } 751 | }, 752 | "node_modules/mime": { 753 | "version": "1.6.0", 754 | "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", 755 | "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", 756 | "license": "MIT", 757 | "bin": { 758 | "mime": "cli.js" 759 | }, 760 | "engines": { 761 | "node": ">=4" 762 | } 763 | }, 764 | "node_modules/mime-db": { 765 | "version": "1.52.0", 766 | "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", 767 | "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", 768 | "license": "MIT", 769 | "engines": { 770 | "node": ">= 0.6" 771 | } 772 | }, 773 | "node_modules/mime-types": { 774 | "version": "2.1.35", 775 | "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", 776 | "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", 777 | "license": "MIT", 778 | "dependencies": { 779 | "mime-db": "1.52.0" 780 | }, 781 | "engines": { 782 | "node": ">= 0.6" 783 | } 784 | }, 785 | "node_modules/minimatch": { 786 | "version": "3.1.2", 787 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 788 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 789 | "license": "ISC", 790 | "dependencies": { 791 | "brace-expansion": "^1.1.7" 792 | }, 793 | "engines": { 794 | "node": "*" 795 | } 796 | }, 797 | "node_modules/mongodb": { 798 | "version": "6.6.2", 799 | "resolved": "https://registry.npmjs.org/mongodb/-/mongodb-6.6.2.tgz", 800 | "integrity": "sha512-ZF9Ugo2JCG/GfR7DEb4ypfyJJyiKbg5qBYKRintebj8+DNS33CyGMkWbrS9lara+u+h+yEOGSRiLhFO/g1s1aw==", 801 | "license": "Apache-2.0", 802 | "dependencies": { 803 | "@mongodb-js/saslprep": "^1.1.5", 804 | "bson": "^6.7.0", 805 | "mongodb-connection-string-url": "^3.0.0" 806 | }, 807 | "engines": { 808 | "node": ">=16.20.1" 809 | }, 810 | "peerDependencies": { 811 | "@aws-sdk/credential-providers": "^3.188.0", 812 | "@mongodb-js/zstd": "^1.1.0", 813 | "gcp-metadata": "^5.2.0", 814 | "kerberos": "^2.0.1", 815 | "mongodb-client-encryption": ">=6.0.0 <7", 816 | "snappy": "^7.2.2", 817 | "socks": "^2.7.1" 818 | }, 819 | "peerDependenciesMeta": { 820 | "@aws-sdk/credential-providers": { 821 | "optional": true 822 | }, 823 | "@mongodb-js/zstd": { 824 | "optional": true 825 | }, 826 | "gcp-metadata": { 827 | "optional": true 828 | }, 829 | "kerberos": { 830 | "optional": true 831 | }, 832 | "mongodb-client-encryption": { 833 | "optional": true 834 | }, 835 | "snappy": { 836 | "optional": true 837 | }, 838 | "socks": { 839 | "optional": true 840 | } 841 | } 842 | }, 843 | "node_modules/mongodb-connection-string-url": { 844 | "version": "3.0.1", 845 | "resolved": "https://registry.npmjs.org/mongodb-connection-string-url/-/mongodb-connection-string-url-3.0.1.tgz", 846 | "integrity": "sha512-XqMGwRX0Lgn05TDB4PyG2h2kKO/FfWJyCzYQbIhXUxz7ETt0I/FqHjUeqj37irJ+Dl1ZtU82uYyj14u2XsZKfg==", 847 | "license": "Apache-2.0", 848 | "dependencies": { 849 | "@types/whatwg-url": "^11.0.2", 850 | "whatwg-url": "^13.0.0" 851 | } 852 | }, 853 | "node_modules/mongoose": { 854 | "version": "8.4.5", 855 | "resolved": "https://registry.npmjs.org/mongoose/-/mongoose-8.4.5.tgz", 856 | "integrity": "sha512-E5KjBThxST2uFSKKXuiMa9H9Zx4DLTSLuxodAnIzJRixNwc1ARTlJUK1m0a80EB+ZKGP4QNTasyUYRG9DUSHOA==", 857 | "license": "MIT", 858 | "dependencies": { 859 | "bson": "^6.7.0", 860 | "kareem": "2.6.3", 861 | "mongodb": "6.6.2", 862 | "mpath": "0.9.0", 863 | "mquery": "5.0.0", 864 | "ms": "2.1.3", 865 | "sift": "17.1.3" 866 | }, 867 | "engines": { 868 | "node": ">=16.20.1" 869 | }, 870 | "funding": { 871 | "type": "opencollective", 872 | "url": "https://opencollective.com/mongoose" 873 | } 874 | }, 875 | "node_modules/mpath": { 876 | "version": "0.9.0", 877 | "resolved": "https://registry.npmjs.org/mpath/-/mpath-0.9.0.tgz", 878 | "integrity": "sha512-ikJRQTk8hw5DEoFVxHG1Gn9T/xcjtdnOKIU1JTmGjZZlg9LST2mBLmcX3/ICIbgJydT2GOc15RnNy5mHmzfSew==", 879 | "license": "MIT", 880 | "engines": { 881 | "node": ">=4.0.0" 882 | } 883 | }, 884 | "node_modules/mquery": { 885 | "version": "5.0.0", 886 | "resolved": "https://registry.npmjs.org/mquery/-/mquery-5.0.0.tgz", 887 | "integrity": "sha512-iQMncpmEK8R8ncT8HJGsGc9Dsp8xcgYMVSbs5jgnm1lFHTZqMJTUWTDx1LBO8+mK3tPNZWFLBghQEIOULSTHZg==", 888 | "license": "MIT", 889 | "dependencies": { 890 | "debug": "4.x" 891 | }, 892 | "engines": { 893 | "node": ">=14.0.0" 894 | } 895 | }, 896 | "node_modules/ms": { 897 | "version": "2.1.3", 898 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", 899 | "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", 900 | "license": "MIT" 901 | }, 902 | "node_modules/negotiator": { 903 | "version": "0.6.3", 904 | "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", 905 | "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", 906 | "license": "MIT", 907 | "engines": { 908 | "node": ">= 0.6" 909 | } 910 | }, 911 | "node_modules/nodemon": { 912 | "version": "3.1.4", 913 | "resolved": "https://registry.npmjs.org/nodemon/-/nodemon-3.1.4.tgz", 914 | "integrity": "sha512-wjPBbFhtpJwmIeY2yP7QF+UKzPfltVGtfce1g/bB15/8vCGZj8uxD62b/b9M9/WVgme0NZudpownKN+c0plXlQ==", 915 | "license": "MIT", 916 | "dependencies": { 917 | "chokidar": "^3.5.2", 918 | "debug": "^4", 919 | "ignore-by-default": "^1.0.1", 920 | "minimatch": "^3.1.2", 921 | "pstree.remy": "^1.1.8", 922 | "semver": "^7.5.3", 923 | "simple-update-notifier": "^2.0.0", 924 | "supports-color": "^5.5.0", 925 | "touch": "^3.1.0", 926 | "undefsafe": "^2.0.5" 927 | }, 928 | "bin": { 929 | "nodemon": "bin/nodemon.js" 930 | }, 931 | "engines": { 932 | "node": ">=10" 933 | }, 934 | "funding": { 935 | "type": "opencollective", 936 | "url": "https://opencollective.com/nodemon" 937 | } 938 | }, 939 | "node_modules/normalize-path": { 940 | "version": "3.0.0", 941 | "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", 942 | "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", 943 | "license": "MIT", 944 | "engines": { 945 | "node": ">=0.10.0" 946 | } 947 | }, 948 | "node_modules/object-assign": { 949 | "version": "4.1.1", 950 | "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", 951 | "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", 952 | "license": "MIT", 953 | "engines": { 954 | "node": ">=0.10.0" 955 | } 956 | }, 957 | "node_modules/object-inspect": { 958 | "version": "1.13.2", 959 | "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.2.tgz", 960 | "integrity": "sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g==", 961 | "license": "MIT", 962 | "engines": { 963 | "node": ">= 0.4" 964 | }, 965 | "funding": { 966 | "url": "https://github.com/sponsors/ljharb" 967 | } 968 | }, 969 | "node_modules/on-finished": { 970 | "version": "2.4.1", 971 | "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", 972 | "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", 973 | "license": "MIT", 974 | "dependencies": { 975 | "ee-first": "1.1.1" 976 | }, 977 | "engines": { 978 | "node": ">= 0.8" 979 | } 980 | }, 981 | "node_modules/parseurl": { 982 | "version": "1.3.3", 983 | "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", 984 | "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", 985 | "license": "MIT", 986 | "engines": { 987 | "node": ">= 0.8" 988 | } 989 | }, 990 | "node_modules/path-to-regexp": { 991 | "version": "0.1.7", 992 | "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", 993 | "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==", 994 | "license": "MIT" 995 | }, 996 | "node_modules/picomatch": { 997 | "version": "2.3.1", 998 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", 999 | "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", 1000 | "license": "MIT", 1001 | "engines": { 1002 | "node": ">=8.6" 1003 | }, 1004 | "funding": { 1005 | "url": "https://github.com/sponsors/jonschlinkert" 1006 | } 1007 | }, 1008 | "node_modules/proxy-addr": { 1009 | "version": "2.0.7", 1010 | "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", 1011 | "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", 1012 | "license": "MIT", 1013 | "dependencies": { 1014 | "forwarded": "0.2.0", 1015 | "ipaddr.js": "1.9.1" 1016 | }, 1017 | "engines": { 1018 | "node": ">= 0.10" 1019 | } 1020 | }, 1021 | "node_modules/pstree.remy": { 1022 | "version": "1.1.8", 1023 | "resolved": "https://registry.npmjs.org/pstree.remy/-/pstree.remy-1.1.8.tgz", 1024 | "integrity": "sha512-77DZwxQmxKnu3aR542U+X8FypNzbfJ+C5XQDk3uWjWxn6151aIMGthWYRXTqT1E5oJvg+ljaa2OJi+VfvCOQ8w==", 1025 | "license": "MIT" 1026 | }, 1027 | "node_modules/punycode": { 1028 | "version": "2.3.1", 1029 | "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", 1030 | "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", 1031 | "license": "MIT", 1032 | "engines": { 1033 | "node": ">=6" 1034 | } 1035 | }, 1036 | "node_modules/qs": { 1037 | "version": "6.11.0", 1038 | "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", 1039 | "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", 1040 | "license": "BSD-3-Clause", 1041 | "dependencies": { 1042 | "side-channel": "^1.0.4" 1043 | }, 1044 | "engines": { 1045 | "node": ">=0.6" 1046 | }, 1047 | "funding": { 1048 | "url": "https://github.com/sponsors/ljharb" 1049 | } 1050 | }, 1051 | "node_modules/range-parser": { 1052 | "version": "1.2.1", 1053 | "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", 1054 | "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", 1055 | "license": "MIT", 1056 | "engines": { 1057 | "node": ">= 0.6" 1058 | } 1059 | }, 1060 | "node_modules/raw-body": { 1061 | "version": "2.5.2", 1062 | "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.2.tgz", 1063 | "integrity": "sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==", 1064 | "license": "MIT", 1065 | "dependencies": { 1066 | "bytes": "3.1.2", 1067 | "http-errors": "2.0.0", 1068 | "iconv-lite": "0.4.24", 1069 | "unpipe": "1.0.0" 1070 | }, 1071 | "engines": { 1072 | "node": ">= 0.8" 1073 | } 1074 | }, 1075 | "node_modules/readdirp": { 1076 | "version": "3.6.0", 1077 | "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", 1078 | "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", 1079 | "license": "MIT", 1080 | "dependencies": { 1081 | "picomatch": "^2.2.1" 1082 | }, 1083 | "engines": { 1084 | "node": ">=8.10.0" 1085 | } 1086 | }, 1087 | "node_modules/safe-buffer": { 1088 | "version": "5.2.1", 1089 | "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", 1090 | "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", 1091 | "funding": [ 1092 | { 1093 | "type": "github", 1094 | "url": "https://github.com/sponsors/feross" 1095 | }, 1096 | { 1097 | "type": "patreon", 1098 | "url": "https://www.patreon.com/feross" 1099 | }, 1100 | { 1101 | "type": "consulting", 1102 | "url": "https://feross.org/support" 1103 | } 1104 | ], 1105 | "license": "MIT" 1106 | }, 1107 | "node_modules/safer-buffer": { 1108 | "version": "2.1.2", 1109 | "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", 1110 | "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", 1111 | "license": "MIT" 1112 | }, 1113 | "node_modules/semver": { 1114 | "version": "7.6.2", 1115 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.2.tgz", 1116 | "integrity": "sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==", 1117 | "license": "ISC", 1118 | "bin": { 1119 | "semver": "bin/semver.js" 1120 | }, 1121 | "engines": { 1122 | "node": ">=10" 1123 | } 1124 | }, 1125 | "node_modules/send": { 1126 | "version": "0.18.0", 1127 | "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", 1128 | "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", 1129 | "license": "MIT", 1130 | "dependencies": { 1131 | "debug": "2.6.9", 1132 | "depd": "2.0.0", 1133 | "destroy": "1.2.0", 1134 | "encodeurl": "~1.0.2", 1135 | "escape-html": "~1.0.3", 1136 | "etag": "~1.8.1", 1137 | "fresh": "0.5.2", 1138 | "http-errors": "2.0.0", 1139 | "mime": "1.6.0", 1140 | "ms": "2.1.3", 1141 | "on-finished": "2.4.1", 1142 | "range-parser": "~1.2.1", 1143 | "statuses": "2.0.1" 1144 | }, 1145 | "engines": { 1146 | "node": ">= 0.8.0" 1147 | } 1148 | }, 1149 | "node_modules/send/node_modules/debug": { 1150 | "version": "2.6.9", 1151 | "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", 1152 | "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", 1153 | "license": "MIT", 1154 | "dependencies": { 1155 | "ms": "2.0.0" 1156 | } 1157 | }, 1158 | "node_modules/send/node_modules/debug/node_modules/ms": { 1159 | "version": "2.0.0", 1160 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", 1161 | "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", 1162 | "license": "MIT" 1163 | }, 1164 | "node_modules/serve-static": { 1165 | "version": "1.15.0", 1166 | "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", 1167 | "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", 1168 | "license": "MIT", 1169 | "dependencies": { 1170 | "encodeurl": "~1.0.2", 1171 | "escape-html": "~1.0.3", 1172 | "parseurl": "~1.3.3", 1173 | "send": "0.18.0" 1174 | }, 1175 | "engines": { 1176 | "node": ">= 0.8.0" 1177 | } 1178 | }, 1179 | "node_modules/set-function-length": { 1180 | "version": "1.2.2", 1181 | "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", 1182 | "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", 1183 | "license": "MIT", 1184 | "dependencies": { 1185 | "define-data-property": "^1.1.4", 1186 | "es-errors": "^1.3.0", 1187 | "function-bind": "^1.1.2", 1188 | "get-intrinsic": "^1.2.4", 1189 | "gopd": "^1.0.1", 1190 | "has-property-descriptors": "^1.0.2" 1191 | }, 1192 | "engines": { 1193 | "node": ">= 0.4" 1194 | } 1195 | }, 1196 | "node_modules/setprototypeof": { 1197 | "version": "1.2.0", 1198 | "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", 1199 | "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", 1200 | "license": "ISC" 1201 | }, 1202 | "node_modules/side-channel": { 1203 | "version": "1.0.6", 1204 | "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.6.tgz", 1205 | "integrity": "sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==", 1206 | "license": "MIT", 1207 | "dependencies": { 1208 | "call-bind": "^1.0.7", 1209 | "es-errors": "^1.3.0", 1210 | "get-intrinsic": "^1.2.4", 1211 | "object-inspect": "^1.13.1" 1212 | }, 1213 | "engines": { 1214 | "node": ">= 0.4" 1215 | }, 1216 | "funding": { 1217 | "url": "https://github.com/sponsors/ljharb" 1218 | } 1219 | }, 1220 | "node_modules/sift": { 1221 | "version": "17.1.3", 1222 | "resolved": "https://registry.npmjs.org/sift/-/sift-17.1.3.tgz", 1223 | "integrity": "sha512-Rtlj66/b0ICeFzYTuNvX/EF1igRbbnGSvEyT79McoZa/DeGhMyC5pWKOEsZKnpkqtSeovd5FL/bjHWC3CIIvCQ==", 1224 | "license": "MIT" 1225 | }, 1226 | "node_modules/simple-update-notifier": { 1227 | "version": "2.0.0", 1228 | "resolved": "https://registry.npmjs.org/simple-update-notifier/-/simple-update-notifier-2.0.0.tgz", 1229 | "integrity": "sha512-a2B9Y0KlNXl9u/vsW6sTIu9vGEpfKu2wRV6l1H3XEas/0gUIzGzBoP/IouTcUQbm9JWZLH3COxyn03TYlFax6w==", 1230 | "license": "MIT", 1231 | "dependencies": { 1232 | "semver": "^7.5.3" 1233 | }, 1234 | "engines": { 1235 | "node": ">=10" 1236 | } 1237 | }, 1238 | "node_modules/sparse-bitfield": { 1239 | "version": "3.0.3", 1240 | "resolved": "https://registry.npmjs.org/sparse-bitfield/-/sparse-bitfield-3.0.3.tgz", 1241 | "integrity": "sha512-kvzhi7vqKTfkh0PZU+2D2PIllw2ymqJKujUcyPMd9Y75Nv4nPbGJZXNhxsgdQab2BmlDct1YnfQCguEvHr7VsQ==", 1242 | "license": "MIT", 1243 | "dependencies": { 1244 | "memory-pager": "^1.0.2" 1245 | } 1246 | }, 1247 | "node_modules/statuses": { 1248 | "version": "2.0.1", 1249 | "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", 1250 | "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", 1251 | "license": "MIT", 1252 | "engines": { 1253 | "node": ">= 0.8" 1254 | } 1255 | }, 1256 | "node_modules/supports-color": { 1257 | "version": "5.5.0", 1258 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", 1259 | "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", 1260 | "license": "MIT", 1261 | "dependencies": { 1262 | "has-flag": "^3.0.0" 1263 | }, 1264 | "engines": { 1265 | "node": ">=4" 1266 | } 1267 | }, 1268 | "node_modules/to-regex-range": { 1269 | "version": "5.0.1", 1270 | "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", 1271 | "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", 1272 | "license": "MIT", 1273 | "dependencies": { 1274 | "is-number": "^7.0.0" 1275 | }, 1276 | "engines": { 1277 | "node": ">=8.0" 1278 | } 1279 | }, 1280 | "node_modules/toidentifier": { 1281 | "version": "1.0.1", 1282 | "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", 1283 | "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", 1284 | "license": "MIT", 1285 | "engines": { 1286 | "node": ">=0.6" 1287 | } 1288 | }, 1289 | "node_modules/touch": { 1290 | "version": "3.1.1", 1291 | "resolved": "https://registry.npmjs.org/touch/-/touch-3.1.1.tgz", 1292 | "integrity": "sha512-r0eojU4bI8MnHr8c5bNo7lJDdI2qXlWWJk6a9EAFG7vbhTjElYhBVS3/miuE0uOuoLdb8Mc/rVfsmm6eo5o9GA==", 1293 | "license": "ISC", 1294 | "bin": { 1295 | "nodetouch": "bin/nodetouch.js" 1296 | } 1297 | }, 1298 | "node_modules/tr46": { 1299 | "version": "4.1.1", 1300 | "resolved": "https://registry.npmjs.org/tr46/-/tr46-4.1.1.tgz", 1301 | "integrity": "sha512-2lv/66T7e5yNyhAAC4NaKe5nVavzuGJQVVtRYLyQ2OI8tsJ61PMLlelehb0wi2Hx6+hT/OJUWZcw8MjlSRnxvw==", 1302 | "license": "MIT", 1303 | "dependencies": { 1304 | "punycode": "^2.3.0" 1305 | }, 1306 | "engines": { 1307 | "node": ">=14" 1308 | } 1309 | }, 1310 | "node_modules/type-is": { 1311 | "version": "1.6.18", 1312 | "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", 1313 | "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", 1314 | "license": "MIT", 1315 | "dependencies": { 1316 | "media-typer": "0.3.0", 1317 | "mime-types": "~2.1.24" 1318 | }, 1319 | "engines": { 1320 | "node": ">= 0.6" 1321 | } 1322 | }, 1323 | "node_modules/undefsafe": { 1324 | "version": "2.0.5", 1325 | "resolved": "https://registry.npmjs.org/undefsafe/-/undefsafe-2.0.5.tgz", 1326 | "integrity": "sha512-WxONCrssBM8TSPRqN5EmsjVrsv4A8X12J4ArBiiayv3DyyG3ZlIg6yysuuSYdZsVz3TKcTg2fd//Ujd4CHV1iA==", 1327 | "license": "MIT" 1328 | }, 1329 | "node_modules/unpipe": { 1330 | "version": "1.0.0", 1331 | "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", 1332 | "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", 1333 | "license": "MIT", 1334 | "engines": { 1335 | "node": ">= 0.8" 1336 | } 1337 | }, 1338 | "node_modules/utils-merge": { 1339 | "version": "1.0.1", 1340 | "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", 1341 | "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", 1342 | "license": "MIT", 1343 | "engines": { 1344 | "node": ">= 0.4.0" 1345 | } 1346 | }, 1347 | "node_modules/vary": { 1348 | "version": "1.1.2", 1349 | "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", 1350 | "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", 1351 | "license": "MIT", 1352 | "engines": { 1353 | "node": ">= 0.8" 1354 | } 1355 | }, 1356 | "node_modules/webidl-conversions": { 1357 | "version": "7.0.0", 1358 | "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz", 1359 | "integrity": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==", 1360 | "license": "BSD-2-Clause", 1361 | "engines": { 1362 | "node": ">=12" 1363 | } 1364 | }, 1365 | "node_modules/whatwg-url": { 1366 | "version": "13.0.0", 1367 | "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-13.0.0.tgz", 1368 | "integrity": "sha512-9WWbymnqj57+XEuqADHrCJ2eSXzn8WXIW/YSGaZtb2WKAInQ6CHfaUUcTyyver0p8BDg5StLQq8h1vtZuwmOig==", 1369 | "license": "MIT", 1370 | "dependencies": { 1371 | "tr46": "^4.1.1", 1372 | "webidl-conversions": "^7.0.0" 1373 | }, 1374 | "engines": { 1375 | "node": ">=16" 1376 | } 1377 | } 1378 | } 1379 | } 1380 | --------------------------------------------------------------------------------