├── .env.sample ├── .gitignore ├── client ├── src │ ├── fonts │ │ ├── icofont.ttf │ │ ├── icofont.woff │ │ └── icofont.woff2 │ ├── pages │ │ └── home.jsx │ ├── index.jsx │ ├── styles │ │ └── globals.css │ └── components │ │ └── global │ │ └── navigation │ │ ├── videoUpload.jsx │ │ ├── navigation.jsx │ │ ├── notifications.jsx │ │ ├── profile.jsx │ │ └── sideBar.jsx ├── postcss.config.js ├── public │ └── assets │ │ ├── logo │ │ ├── logo.png │ │ ├── bg_icon.png │ │ ├── bg_logo.jpeg │ │ ├── logo_large.png │ │ └── transparent │ │ │ ├── logo.png │ │ │ └── logo_large.png │ │ └── profile │ │ └── p1.jpg ├── .prettierrc.json ├── vite.config.js ├── .gitignore ├── README.md ├── eslint.config.js ├── .eslintrc.cjs ├── index.html ├── tailwind.config.js └── package.json ├── server ├── src │ ├── index.js │ └── app.js ├── package.json └── package-lock.json ├── LICENSE └── README.md /.env.sample: -------------------------------------------------------------------------------- 1 | PORT= -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | node_modules -------------------------------------------------------------------------------- /client/src/fonts/icofont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsharma74/stream-pulse/HEAD/client/src/fonts/icofont.ttf -------------------------------------------------------------------------------- /client/src/fonts/icofont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsharma74/stream-pulse/HEAD/client/src/fonts/icofont.woff -------------------------------------------------------------------------------- /client/src/fonts/icofont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsharma74/stream-pulse/HEAD/client/src/fonts/icofont.woff2 -------------------------------------------------------------------------------- /client/postcss.config.js: -------------------------------------------------------------------------------- 1 | export default { 2 | plugins: { 3 | tailwindcss: {}, 4 | autoprefixer: {} 5 | } 6 | }; 7 | -------------------------------------------------------------------------------- /client/public/assets/logo/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsharma74/stream-pulse/HEAD/client/public/assets/logo/logo.png -------------------------------------------------------------------------------- /client/public/assets/profile/p1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsharma74/stream-pulse/HEAD/client/public/assets/profile/p1.jpg -------------------------------------------------------------------------------- /client/public/assets/logo/bg_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsharma74/stream-pulse/HEAD/client/public/assets/logo/bg_icon.png -------------------------------------------------------------------------------- /client/public/assets/logo/bg_logo.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsharma74/stream-pulse/HEAD/client/public/assets/logo/bg_logo.jpeg -------------------------------------------------------------------------------- /client/public/assets/logo/logo_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsharma74/stream-pulse/HEAD/client/public/assets/logo/logo_large.png -------------------------------------------------------------------------------- /client/public/assets/logo/transparent/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsharma74/stream-pulse/HEAD/client/public/assets/logo/transparent/logo.png -------------------------------------------------------------------------------- /client/public/assets/logo/transparent/logo_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushsharma74/stream-pulse/HEAD/client/public/assets/logo/transparent/logo_large.png -------------------------------------------------------------------------------- /client/.prettierrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "semi": true, 3 | "tabWidth": 2, 4 | "printWidth": 100, 5 | "singleQuote": true, 6 | "trailingComma": "none", 7 | "jsxBracketSameLine": true 8 | } 9 | -------------------------------------------------------------------------------- /client/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()] 7 | }); 8 | -------------------------------------------------------------------------------- /client/src/pages/home.jsx: -------------------------------------------------------------------------------- 1 | import { LazyLoadImage as Image } from "react-lazy-load-image-component" 2 | export default function Home() { 3 | return ( 4 | <> 5 |

HI! Welcome Home

6 | 7 | ) 8 | } 9 | -------------------------------------------------------------------------------- /client/.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | pnpm-debug.log* 8 | lerna-debug.log* 9 | 10 | node_modules 11 | dist 12 | dist-ssr 13 | *.local 14 | 15 | # Editor directories and files 16 | .vscode/* 17 | !.vscode/extensions.json 18 | .idea 19 | .DS_Store 20 | *.suo 21 | *.ntvs* 22 | *.njsproj 23 | *.sln 24 | *.sw? 25 | -------------------------------------------------------------------------------- /server/src/index.js: -------------------------------------------------------------------------------- 1 | import express from "express"; 2 | import { app } from "./app.js"; 3 | import dotenv from "dotenv"; 4 | dotenv.config({ 5 | path: './.env' 6 | }) 7 | const PORT = 8080 ?? process.env.PORT; 8 | 9 | app.get('/ping', (req,res) => { 10 | res.send("pong"); 11 | }) 12 | 13 | 14 | app.listen(PORT, () => { 15 | console.log("Server is listening at port : ", PORT); 16 | }) 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /client/src/index.jsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import ReactDOM from "react-dom/client" 3 | import "./styles/globals.css" 4 | import "./styles/icofont.css" 5 | import Home from "./pages/home"; 6 | import Navbar from "./components/global/navigation/navigation"; 7 | 8 | ReactDOM.createRoot(document.getElementById("root")).render( 9 | 10 | 11 | 12 | 13 | ) -------------------------------------------------------------------------------- /server/src/app.js: -------------------------------------------------------------------------------- 1 | import express from "express" 2 | import cors from "cors" 3 | import cookieParser from "cookie-parser" 4 | 5 | const app = express() 6 | 7 | app.use(cors({ 8 | origin: process.env.CORS_ORIGIN, 9 | credentials: true 10 | })) 11 | 12 | app.use(express.json({limit: "16kb"})) 13 | app.use(express.urlencoded({extended: true, limit: "16kb"})) 14 | app.use(express.static("public")) 15 | app.use(cookieParser()) 16 | 17 | export {app} -------------------------------------------------------------------------------- /server/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "server", 3 | "version": "1.0.0", 4 | "main": "index.js", 5 | "type": "module", 6 | "scripts": { 7 | "dev": "nodemon src/index.js" 8 | }, 9 | "keywords": [], 10 | "author": "", 11 | "license": "ISC", 12 | "description": "", 13 | "dependencies": { 14 | "cookie-parser": "^1.4.6", 15 | "cors": "^2.8.5", 16 | "dotenv": "^16.4.5", 17 | "express": "^4.19.2", 18 | "nodemon": "^3.1.4" 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /client/README.md: -------------------------------------------------------------------------------- 1 | # React + Vite 2 | 3 | This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules. 4 | 5 | Currently, two official plugins are available: 6 | 7 | - [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react/README.md) uses [Babel](https://babeljs.io/) for Fast Refresh 8 | - [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react-swc) uses [SWC](https://swc.rs/) for Fast Refresh 9 | -------------------------------------------------------------------------------- /client/eslint.config.js: -------------------------------------------------------------------------------- 1 | import globals from 'globals'; 2 | import pluginJs from '@eslint/js'; 3 | import pluginReactConfig from 'eslint-plugin-react/configs/recommended.js'; 4 | import { fixupConfigRules } from '@eslint/compat'; 5 | 6 | export default [ 7 | { files: ['**/*.{js,mjs,cjs,jsx,ts,tsx}'] }, 8 | { languageOptions: { parserOptions: { ecmaFeatures: { jsx: true } } } }, 9 | { languageOptions: { globals: globals.browser } }, 10 | pluginJs.configs.recommended, 11 | ...fixupConfigRules(pluginReactConfig) 12 | ]; 13 | -------------------------------------------------------------------------------- /client/.eslintrc.cjs: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | env: { browser: true, es2020: true }, 4 | extends: [ 5 | 'eslint:recommended', 6 | 'plugin:react/recommended', 7 | 'plugin:react/jsx-runtime', 8 | 'plugin:react-hooks/recommended', 9 | "plugin:prettier/recommended" 10 | ], 11 | ignorePatterns: ['dist', '.eslintrc.cjs'], 12 | parserOptions: { ecmaVersion: 'latest', sourceType: 'module' }, 13 | settings: { react: { version: '18.2' } }, 14 | plugins: ['react-refresh', "react"], 15 | rules: { 16 | 'react/jsx-no-target-blank': 'off', 17 | 'react/react-in-jsx-scope': 'off', 18 | 'react-refresh/only-export-components': [ 19 | 'warn', 20 | { allowConstantExport: true }, 21 | ], 22 | }, 23 | } 24 | -------------------------------------------------------------------------------- /client/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Stream Pulse 7 | 8 | 9 | 10 | 11 | 12 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /client/tailwind.config.js: -------------------------------------------------------------------------------- 1 | /** @type {import('tailwindcss').Config} */ 2 | export default { 3 | content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'], 4 | theme: { 5 | extend: { 6 | keyframes: { 7 | "ping-half": { 8 | '0%': { 9 | transform: 'scale(.5)', 10 | opacity: 0 11 | }, 12 | '75%, 100%': { 13 | transform: 'scale(1)', 14 | opacity: 1 15 | } 16 | }, 17 | "ping-full": { 18 | '0%': { 19 | transform: 'scale(1)', 20 | opacity: 1 21 | }, 22 | '75%, 100%': { 23 | transform: 'scale(2)', 24 | opacity: 0 25 | } 26 | } 27 | }, 28 | animation: { 29 | "ping-half": "ping-half 0.5s ease-in", 30 | "ping-full": "ping-full 1s ease-in" 31 | } 32 | } 33 | } 34 | }; 35 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2024 ByteTribe 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /client/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "client", 3 | "private": true, 4 | "version": "1.0.1", 5 | "type": "module", 6 | "main": "app.tsx", 7 | "scripts": { 8 | "dev": "vite", 9 | "build": "vite build", 10 | "lint": "eslint .", 11 | "lint:fix": "eslint . --fix", 12 | "format": "prettier --write ./**/*.{js,jsx,css,md,json, ts, tsx} --config ./.prettierrc.json", 13 | "preview": "vite preview" 14 | }, 15 | "dependencies": { 16 | "lucide-react": "^0.400.0", 17 | "react": "^18.2.0", 18 | "react-dom": "^18.2.0", 19 | "react-icons": "^5.2.1", 20 | "react-lazy-load-image-component": "^1.6.2", 21 | "react-router-dom": "^6.24.1" 22 | }, 23 | "devDependencies": { 24 | "@eslint/compat": "^1.1.0", 25 | "@eslint/js": "^9.5.0", 26 | "@types/react": "^18.2.66", 27 | "@types/react-dom": "^18.2.22", 28 | "@vitejs/plugin-react": "^4.2.1", 29 | "autoprefixer": "^10.4.19", 30 | "eslint": "^8.0.0", 31 | "eslint-config-prettier": "^9.1.0", 32 | "eslint-plugin-prettier": "^5.1.3", 33 | "eslint-plugin-react": "^7.34.3", 34 | "eslint-plugin-react-hooks": "^4.6.0", 35 | "eslint-plugin-react-refresh": "^0.4.6", 36 | "globals": "^15.6.0", 37 | "postcss": "^8.4.38", 38 | "prettier": "^3.3.2", 39 | "tailwindcss": "^3.4.4", 40 | "vite": "^5.2.0" 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /client/src/styles/globals.css: -------------------------------------------------------------------------------- 1 | @tailwind base; 2 | @tailwind components; 3 | @tailwind utilities; 4 | 5 | * { 6 | scrollbar-color: #888 #fff; 7 | } 8 | 9 | .overflow-y-scroll, 10 | .hover\:overflow-y-scroll, 11 | .overflow-x-scroll, 12 | .hover\:overflow-x-scroll, 13 | .overflow-scroll, 14 | .hover\:overflow-scroll { 15 | scrollbar-width: thin; 16 | } 17 | 18 | .tracking-word-wide{ 19 | word-spacing: 5px; 20 | } 21 | .search{ 22 | display: flex; 23 | align-items: center; 24 | overflow: visible; 25 | 26 | &:focus-within{ 27 | border: 1px solid #1c62b9; 28 | border-left: none; 29 | &::before{ 30 | content: "\ed1b"; 31 | height: calc(100% + 2px); 32 | width: 3rem; 33 | font-family: IcoFont; 34 | position: absolute; 35 | border: 1px solid #1c62b9; 36 | border-right: none; 37 | left: -2.7rem; 38 | border-top-left-radius: 50%; 39 | border-bottom-left-radius: 50%; 40 | text-align: center; 41 | line-height: calc(2.95rem - 4px); 42 | } 43 | } 44 | 45 | 46 | 47 | &::before { 48 | content: ""; 49 | height: calc(100% + 2px); 50 | width: 3rem; 51 | position: absolute; 52 | border: 1px solid #ccc; 53 | border-right: none; 54 | left: -1.3rem; 55 | border-top-left-radius: 50%; 56 | border-bottom-left-radius: 50%; 57 | } 58 | 59 | & i.icofont-close-line{ 60 | /* display: none; */ 61 | font-size: 1.5rem; 62 | position: absolute; 63 | right: 0.5rem; 64 | } 65 | & input{ 66 | padding-right: 2.2rem; 67 | } 68 | 69 | } 70 | 71 | .search-icon i.icofont-search { 72 | height: calc(2.5rem + 1px); 73 | } 74 | 75 | .active{ 76 | font-weight: 500; 77 | background: #0001; 78 | } 79 | 80 | .flip{ 81 | transform: rotateY(180deg); 82 | } 83 | .turn-around { 84 | transform: rotateY(180deg) rotateZ(45deg); 85 | } -------------------------------------------------------------------------------- /client/src/components/global/navigation/videoUpload.jsx: -------------------------------------------------------------------------------- 1 | import { RiVideoAddLine } from "react-icons/ri" 2 | import { GoVideo } from "react-icons/go" 3 | import { HiMiniSignal } from "react-icons/hi2" 4 | import { BiEdit } from "react-icons/bi" 5 | import { useState } from "react" 6 | export default function VideoUpload() { 7 | const [isUploadButtonTriggered, setIsUploadButtonTriggered] = useState(false); 8 | 9 | return ( 10 |
11 |
setIsUploadButtonTriggered(!isUploadButtonTriggered)}> 12 | 13 |
14 | {isUploadButtonTriggered ? 15 | 32 | : 33 | "" 34 | } 35 | 36 |
37 | ) 38 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Stream Pulse - A YouTube Clone 2 | 3 | Stream Pulse is a modern YouTube clone application built using the powerful React ecosystem. This project aims to provide a feature-rich and user-friendly platform for streaming and discovering videos, leveraging the latest technologies and best practices in web development. 4 | 5 | ## Features 6 | 7 | - **Video Streaming**: Watch and stream videos seamlessly with optimized video player capabilities. 8 | - **User Authentication**: Securely sign up, log in, and manage your account. 9 | - **Video Uploading**: Upload your own videos and share them with the world. 10 | - **Playlists**: Create and manage playlists to organize your favorite videos. 11 | - **Commenting**: Engage with the community by commenting on videos and responding to others. 12 | - **Recommendations**: Discover new and relevant videos based on your viewing history and preferences. 13 | - **Subscriptions**: Subscribe to your favorite channels and stay updated with their latest uploads. 14 | - **Search**: Easily search for videos using keywords, titles, or channels. 15 | 16 | ## Technologies Used 17 | 18 | Stream Pulse leverages the power of the React ecosystem to deliver a seamless and modern user experience. Here are the key technologies used in this project: 19 | 20 | - **React**: The core library for building the user interface. 21 | - **React Router Dom**: Handles client-side routing for seamless navigation within the application. 22 | - **Redux/Zustand**: Manages the application's state and provides a predictable state container. 23 | - **React Query**: Efficient and declarative data fetching for seamless data management. 24 | - **Formik**: Simplifies form handling and validation within the application. 25 | - **Zod**: Powerful validation library for ensuring data integrity. 26 | - **Framer Motion**: Adds smooth and dynamic animations to the user interface. 27 | - **Shadcn**: A set of accessible and customizable React UI components. 28 | - **Lucide Icons**: A beautifully crafted open-source icon library. 29 | 30 | ## Getting Started 31 | 32 | To run Stream Pulse locally, follow these steps: 33 | 34 | 1. Clone the repository: `git clone https://github.com/ayushsharma74/stream-pluse.git` 35 | 2. Install dependencies: `npm install` 36 | 3. Start the development server: `npm start` 37 | 38 | The application will be available at `http://localhost:3000`. 39 | 40 | ## Contributing 41 | 42 | We welcome contributions from the community! If you'd like to contribute to Stream Plus, please follow these steps: 43 | 44 | 1. Fork the repository 45 | 2. Create a new branch: `git checkout -b develop` 46 | 3. Make your changes and commit them: `git commit -m 'Add some feature'` 47 | 4. Push to the branch: `git push origin develop` 48 | 5. Submit a pull request 49 | 50 | ## License 51 | 52 | Stream Pulse is released under the [MIT License](https://opensource.org/licenses/MIT). 53 | 54 | ## Acknowledgments 55 | 56 | We'd like to express our gratitude to the developers of the React ecosystem and the open-source community for their incredible work and contributions. Without their efforts, this project would not have been possible. 57 | -------------------------------------------------------------------------------- /client/src/components/global/navigation/navigation.jsx: -------------------------------------------------------------------------------- 1 | import React from 'react' 2 | import { LazyLoadImage as Image } from 'react-lazy-load-image-component'; 3 | import Profile from './profile'; 4 | import { useState } from 'react'; 5 | import VideoUpload from './videoUpload'; 6 | import SideBar from './sideBar'; 7 | import Notifications from './notifications'; 8 | 9 | export default function Navbar() { 10 | const [isGetInputSearch, setIsGetInputSearch] = useState(false); 11 | 12 | const wipeSearchText = e => { 13 | e.target.previousElementSibling.value = ""; 14 | setIsGetInputSearch(false); 15 | e.target.previousElementSibling.focus(); 16 | } 17 | 18 | return ( 19 | <> 20 | 56 | 57 | ) 58 | } 59 | -------------------------------------------------------------------------------- /client/src/components/global/navigation/notifications.jsx: -------------------------------------------------------------------------------- 1 | import { IoMdNotifications, IoMdNotificationsOutline } from "react-icons/io"; 2 | import { IoSettingsOutline } from "react-icons/io5"; 3 | import { MdOutlineNotificationsOff } from "react-icons/md"; 4 | import { useState, useEffect } from "react"; 5 | import { HiUser } from "react-icons/hi2"; 6 | import { HiOutlineDotsVertical } from "react-icons/hi"; 7 | import { LazyLoadImage as Image } from "react-lazy-load-image-component"; 8 | import { PiEyeSlash } from "react-icons/pi"; 9 | import { document } from "postcss"; 10 | 11 | export default function Notifications() { 12 | const [isNotificationButtonTriggered, setIsNotificationButtonTriggered] = useState(false); 13 | const [isOptionButtonTriggered, setIsOptionButtonTriggered] = useState(null); 14 | 15 | const isInnerButtonTriggered = index => { 16 | isOptionButtonTriggered(index); 17 | 18 | } 19 | const isBackButtonTriggered = () => { 20 | if(isOptionButtonTriggered != null) setIsOptionButtonTriggered(null); 21 | } 22 | 23 | useEffect(() => { 24 | 25 | }, []) 26 | 27 | return ( 28 |
29 |
setIsNotificationButtonTriggered(!isNotificationButtonTriggered)}> 30 | {isNotificationButtonTriggered ? 31 | 32 | : 33 | 34 | } 35 | 36 |
37 | {isNotificationButtonTriggered ? 38 |
39 | Notifications 40 | 41 |
42 |
43 | 44 | {/* With Profile Picture and Unread */} 45 | 46 |
47 |
48 |
49 |
50 | {/* */} 51 | Logo 56 |
57 |
58 |
59 |

60 | 🌟 JetSet with Code replied: "thnks for feedback for my video i can improve in my next video" 61 |

62 |
2 weeks ago
63 | 64 |
65 |
66 | thumbnail 71 |
72 |
73 | setIsOptionButtonTriggered(0)} /> 74 | {isOptionButtonTriggered == 0 ? 75 |
    76 |
  • 77 | Hide this notification 78 |
  • 79 |
  • 80 | Mute JetSet with Code {/* Channel Name Here */} 81 |
  • 82 |
  • 83 | Turn off reply updates 84 |
  • 85 |
86 | : 87 | "" 88 | } 89 |
90 |
91 | 92 | {/* Without Profile Picture */} 93 |
94 |
95 |
96 |
97 | 98 | {/* Logo */} 103 |
104 |
105 |
106 |

107 | 🌟 JetSet with Code replied: "thnks for feedback for my video i can improve in my next video" 108 |

109 |
2 weeks ago
110 | 111 |
112 |
113 | thumbnail 118 |
119 |
120 | setIsOptionButtonTriggered(1)} /> 121 | {isOptionButtonTriggered == 1 ? 122 |
    123 |
  • 124 | Hide this notification 125 |
  • 126 |
  • 127 | Mute JetSet with Code {/* Channel Name Here */} 128 |
  • 129 |
  • 130 | Turn off reply updates 131 |
  • 132 |
133 | : 134 | "" 135 | } 136 |
137 |
138 | 139 | {/* Read Notification */} 140 |
141 |
142 |
143 |
144 | {/* */} 145 | Logo 150 |
151 |
152 |
153 |

154 | 🌟 JetSet with Code replied: "thnks for feedback for my video i can improve in my next video" 155 |

156 |
2 weeks ago
157 | 158 |
159 |
160 | thumbnail 165 |
166 |
167 | setIsOptionButtonTriggered(2)} /> 168 | {isOptionButtonTriggered == 2 ? 169 |
    170 |
  • 171 | Hide this notification 172 |
  • 173 |
  • 174 | Mute JetSet with Code {/* Channel Name Here */} 175 |
  • 176 |
  • 177 | Turn off reply updates 178 |
  • 179 |
180 | : 181 | "" 182 | } 183 |
184 |
185 | 186 |
187 |
188 | : 189 | "" 190 | } 191 | 192 |
193 | ) 194 | } -------------------------------------------------------------------------------- /client/src/components/global/navigation/profile.jsx: -------------------------------------------------------------------------------- 1 | import { AlignJustify } from "lucide-react" 2 | import { useState } from "react" 3 | import { BiLike } from "react-icons/bi"; 4 | import { CiGlobe, CiLogin, CiYoutube } from "react-icons/ci"; 5 | import { GoArrowLeft, GoHistory, GoHomeFill, GoTrophy, GoVideo } from "react-icons/go"; 6 | import { LazyLoadImage as Image } from "react-lazy-load-image-component"; 7 | import { LiaDownloadSolid } from "react-icons/lia"; 8 | import { LuGamepad2, LuListVideo } from "react-icons/lu"; 9 | import { MdArrowForwardIos, MdOutlineSubscriptions, MdOutlineWatchLater } from "react-icons/md"; 10 | import { PiCurrencyCircleDollarLight, PiCurrencyDollarLight, PiFilmSlateLight, PiListDashesLight, PiMusicNoteLight, PiTranslateLight, PiUserPlus, PiUserRectangleLight } from "react-icons/pi"; 11 | import { RiArrowRightSLine, RiFeedbackLine, RiFlagLine, RiMeteorFill, RiProfileLine, RiShieldUserLine, RiShoppingBag4Line, RiSignalTowerLine } from "react-icons/ri"; 12 | import { SiYoutubekids, SiYoutubemusic, SiYoutubeshorts, SiYoutubestudio } from "react-icons/si"; 13 | import { HiMiniSignal, HiUser } from "react-icons/hi2"; 14 | import { AiOutlineBulb } from "react-icons/ai"; 15 | import { GiHanger } from "react-icons/gi"; 16 | import { FaGoogle, FaRegKeyboard, FaYoutube } from "react-icons/fa"; 17 | import { IoCheckmarkOutline, IoMoonOutline, IoSettingsOutline } from "react-icons/io5"; 18 | import { TfiHelpAlt } from "react-icons/tfi"; 19 | import { HiOutlineUserAdd } from "react-icons/hi"; 20 | import { TbShieldLock, TbShieldX } from "react-icons/tb"; 21 | 22 | export default function Profile() { 23 | const [isBarButtonTriggered, setIsBarButtonTriggered] = useState(false); 24 | const [innerButtonTriggered, setInnerButtonTriggered] = useState(null); 25 | 26 | const isInnerButtonTriggered = index => { 27 | setIsBarButtonTriggered(false); 28 | setInnerButtonTriggered(index); 29 | 30 | } 31 | const isBackButtonTriggered = () => { 32 | setInnerButtonTriggered(null); 33 | setIsBarButtonTriggered(true); 34 | } 35 | 36 | return ( 37 |
38 |
setIsBarButtonTriggered(!isBarButtonTriggered)}> 39 | {/* */} 40 | Logo 45 |
46 | {isBarButtonTriggered ? 47 |
48 | 49 | 69 |
70 | 88 | 89 | 101 | 102 |
    103 | 104 |
  • 105 | Your data in YouTube 106 |
  • 107 |
    108 |
  • isInnerButtonTriggered(1)} className="flex gap-4 text-sm justify-between cursor-pointer items-center px-4 p-2 hover:bg-[#f0f0f0] w-full" title="Your Channel"> 109 |
    110 | Appearance: Light 111 |
    112 | 113 |
  • 114 |
  • isInnerButtonTriggered(2)} className="flex gap-4 text-sm justify-between cursor-pointer items-center px-4 p-2 hover:bg-[#f0f0f0] w-full" title="Your Channel"> 115 |
    116 | Language: English 117 |
    118 | 119 |
  • 120 |
  • isInnerButtonTriggered(3)} className="flex gap-4 text-sm justify-between cursor-pointer items-center px-4 p-2 hover:bg-[#f0f0f0] w-full" title="Your Channel"> 121 |
    122 | Restricted Mode: Off 123 |
    124 | 125 |
  • 126 |
  • isInnerButtonTriggered(4)} className="flex gap-4 text-sm justify-between cursor-pointer items-center px-4 p-2 hover:bg-[#f0f0f0] w-full" title="Your Channel"> 127 |
    128 | Location: India 129 |
    130 | 131 |
  • 132 |
  • 133 | Keyboard shortcuts 134 |
  • 135 |
136 | 143 | 155 | 156 |
157 |
158 | : 159 | "" 160 | } 161 | 162 | {innerButtonTriggered == 0 ? 163 |
164 | 169 | 170 | 175 | 176 | 228 | 229 | 252 | 253 | 266 |
267 | : 268 | "" 269 | } 270 | 271 |
272 | ) 273 | } -------------------------------------------------------------------------------- /client/src/components/global/navigation/sideBar.jsx: -------------------------------------------------------------------------------- 1 | import { AlignJustify } from "lucide-react" 2 | import { useState } from "react" 3 | import { BiLike } from "react-icons/bi"; 4 | import { CiYoutube } from "react-icons/ci"; 5 | import { GoHistory, GoHomeFill, GoTrophy, GoVideo } from "react-icons/go"; 6 | import { LazyLoadImage as Image } from "react-lazy-load-image-component"; 7 | import { LiaDownloadSolid } from "react-icons/lia"; 8 | import { LuGamepad2, LuListVideo } from "react-icons/lu"; 9 | import { MdOutlineSubscriptions, MdOutlineWatchLater } from "react-icons/md"; 10 | import { PiFilmSlateLight, PiListDashesLight, PiMusicNoteLight, PiUserRectangleLight } from "react-icons/pi"; 11 | import { RiArrowRightSLine, RiFeedbackLine, RiFlagLine, RiMeteorFill, RiProfileLine, RiShoppingBag4Line, RiSignalTowerLine } from "react-icons/ri"; 12 | import { SiYoutubekids, SiYoutubemusic, SiYoutubeshorts, SiYoutubestudio } from "react-icons/si"; 13 | import { HiMiniSignal, HiUser } from "react-icons/hi2"; 14 | import { AiOutlineBulb } from "react-icons/ai"; 15 | import { GiHanger } from "react-icons/gi"; 16 | import { FaYoutube } from "react-icons/fa"; 17 | import { IoSettingsOutline } from "react-icons/io5"; 18 | import { TfiHelpAlt } from "react-icons/tfi"; 19 | export default function SideBar() { 20 | const [isBarButtonTriggered, setIsBarButtonTriggered] = useState(false); 21 | 22 | return ( 23 |
24 |
setIsBarButtonTriggered(!isBarButtonTriggered)}> 25 | 26 |
27 | {!isBarButtonTriggered ? 28 | 55 | : 56 |
57 | 58 | 75 | 76 | 119 | 120 | 145 | 146 | 206 | 207 | 232 | 233 | 255 | 256 | 277 |
278 | } 279 | 280 |
281 | ) 282 | } 283 | 284 | -------------------------------------------------------------------------------- /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 | "cookie-parser": "^1.4.6", 13 | "cors": "^2.8.5", 14 | "dotenv": "^16.4.5", 15 | "express": "^4.19.2", 16 | "nodemon": "^3.1.4" 17 | } 18 | }, 19 | "node_modules/accepts": { 20 | "version": "1.3.8", 21 | "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", 22 | "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", 23 | "license": "MIT", 24 | "dependencies": { 25 | "mime-types": "~2.1.34", 26 | "negotiator": "0.6.3" 27 | }, 28 | "engines": { 29 | "node": ">= 0.6" 30 | } 31 | }, 32 | "node_modules/anymatch": { 33 | "version": "3.1.3", 34 | "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", 35 | "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", 36 | "license": "ISC", 37 | "dependencies": { 38 | "normalize-path": "^3.0.0", 39 | "picomatch": "^2.0.4" 40 | }, 41 | "engines": { 42 | "node": ">= 8" 43 | } 44 | }, 45 | "node_modules/array-flatten": { 46 | "version": "1.1.1", 47 | "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", 48 | "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==", 49 | "license": "MIT" 50 | }, 51 | "node_modules/balanced-match": { 52 | "version": "1.0.2", 53 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", 54 | "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", 55 | "license": "MIT" 56 | }, 57 | "node_modules/binary-extensions": { 58 | "version": "2.3.0", 59 | "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", 60 | "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", 61 | "license": "MIT", 62 | "engines": { 63 | "node": ">=8" 64 | }, 65 | "funding": { 66 | "url": "https://github.com/sponsors/sindresorhus" 67 | } 68 | }, 69 | "node_modules/body-parser": { 70 | "version": "1.20.2", 71 | "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.2.tgz", 72 | "integrity": "sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==", 73 | "license": "MIT", 74 | "dependencies": { 75 | "bytes": "3.1.2", 76 | "content-type": "~1.0.5", 77 | "debug": "2.6.9", 78 | "depd": "2.0.0", 79 | "destroy": "1.2.0", 80 | "http-errors": "2.0.0", 81 | "iconv-lite": "0.4.24", 82 | "on-finished": "2.4.1", 83 | "qs": "6.11.0", 84 | "raw-body": "2.5.2", 85 | "type-is": "~1.6.18", 86 | "unpipe": "1.0.0" 87 | }, 88 | "engines": { 89 | "node": ">= 0.8", 90 | "npm": "1.2.8000 || >= 1.4.16" 91 | } 92 | }, 93 | "node_modules/brace-expansion": { 94 | "version": "1.1.11", 95 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 96 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 97 | "license": "MIT", 98 | "dependencies": { 99 | "balanced-match": "^1.0.0", 100 | "concat-map": "0.0.1" 101 | } 102 | }, 103 | "node_modules/braces": { 104 | "version": "3.0.3", 105 | "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", 106 | "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", 107 | "license": "MIT", 108 | "dependencies": { 109 | "fill-range": "^7.1.1" 110 | }, 111 | "engines": { 112 | "node": ">=8" 113 | } 114 | }, 115 | "node_modules/bytes": { 116 | "version": "3.1.2", 117 | "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", 118 | "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", 119 | "license": "MIT", 120 | "engines": { 121 | "node": ">= 0.8" 122 | } 123 | }, 124 | "node_modules/call-bind": { 125 | "version": "1.0.7", 126 | "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz", 127 | "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==", 128 | "license": "MIT", 129 | "dependencies": { 130 | "es-define-property": "^1.0.0", 131 | "es-errors": "^1.3.0", 132 | "function-bind": "^1.1.2", 133 | "get-intrinsic": "^1.2.4", 134 | "set-function-length": "^1.2.1" 135 | }, 136 | "engines": { 137 | "node": ">= 0.4" 138 | }, 139 | "funding": { 140 | "url": "https://github.com/sponsors/ljharb" 141 | } 142 | }, 143 | "node_modules/chokidar": { 144 | "version": "3.6.0", 145 | "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", 146 | "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", 147 | "license": "MIT", 148 | "dependencies": { 149 | "anymatch": "~3.1.2", 150 | "braces": "~3.0.2", 151 | "glob-parent": "~5.1.2", 152 | "is-binary-path": "~2.1.0", 153 | "is-glob": "~4.0.1", 154 | "normalize-path": "~3.0.0", 155 | "readdirp": "~3.6.0" 156 | }, 157 | "engines": { 158 | "node": ">= 8.10.0" 159 | }, 160 | "funding": { 161 | "url": "https://paulmillr.com/funding/" 162 | }, 163 | "optionalDependencies": { 164 | "fsevents": "~2.3.2" 165 | } 166 | }, 167 | "node_modules/concat-map": { 168 | "version": "0.0.1", 169 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", 170 | "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", 171 | "license": "MIT" 172 | }, 173 | "node_modules/content-disposition": { 174 | "version": "0.5.4", 175 | "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", 176 | "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", 177 | "license": "MIT", 178 | "dependencies": { 179 | "safe-buffer": "5.2.1" 180 | }, 181 | "engines": { 182 | "node": ">= 0.6" 183 | } 184 | }, 185 | "node_modules/content-type": { 186 | "version": "1.0.5", 187 | "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", 188 | "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", 189 | "license": "MIT", 190 | "engines": { 191 | "node": ">= 0.6" 192 | } 193 | }, 194 | "node_modules/cookie": { 195 | "version": "0.6.0", 196 | "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.6.0.tgz", 197 | "integrity": "sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==", 198 | "license": "MIT", 199 | "engines": { 200 | "node": ">= 0.6" 201 | } 202 | }, 203 | "node_modules/cookie-parser": { 204 | "version": "1.4.6", 205 | "resolved": "https://registry.npmjs.org/cookie-parser/-/cookie-parser-1.4.6.tgz", 206 | "integrity": "sha512-z3IzaNjdwUC2olLIB5/ITd0/setiaFMLYiZJle7xg5Fe9KWAceil7xszYfHHBtDFYLSgJduS2Ty0P1uJdPDJeA==", 207 | "license": "MIT", 208 | "dependencies": { 209 | "cookie": "0.4.1", 210 | "cookie-signature": "1.0.6" 211 | }, 212 | "engines": { 213 | "node": ">= 0.8.0" 214 | } 215 | }, 216 | "node_modules/cookie-parser/node_modules/cookie": { 217 | "version": "0.4.1", 218 | "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.1.tgz", 219 | "integrity": "sha512-ZwrFkGJxUR3EIoXtO+yVE69Eb7KlixbaeAWfBQB9vVsNn/o+Yw69gBWSSDK825hQNdN+wF8zELf3dFNl/kxkUA==", 220 | "license": "MIT", 221 | "engines": { 222 | "node": ">= 0.6" 223 | } 224 | }, 225 | "node_modules/cookie-signature": { 226 | "version": "1.0.6", 227 | "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", 228 | "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==", 229 | "license": "MIT" 230 | }, 231 | "node_modules/cors": { 232 | "version": "2.8.5", 233 | "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.5.tgz", 234 | "integrity": "sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==", 235 | "license": "MIT", 236 | "dependencies": { 237 | "object-assign": "^4", 238 | "vary": "^1" 239 | }, 240 | "engines": { 241 | "node": ">= 0.10" 242 | } 243 | }, 244 | "node_modules/debug": { 245 | "version": "2.6.9", 246 | "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", 247 | "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", 248 | "license": "MIT", 249 | "dependencies": { 250 | "ms": "2.0.0" 251 | } 252 | }, 253 | "node_modules/define-data-property": { 254 | "version": "1.1.4", 255 | "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", 256 | "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", 257 | "license": "MIT", 258 | "dependencies": { 259 | "es-define-property": "^1.0.0", 260 | "es-errors": "^1.3.0", 261 | "gopd": "^1.0.1" 262 | }, 263 | "engines": { 264 | "node": ">= 0.4" 265 | }, 266 | "funding": { 267 | "url": "https://github.com/sponsors/ljharb" 268 | } 269 | }, 270 | "node_modules/depd": { 271 | "version": "2.0.0", 272 | "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", 273 | "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", 274 | "license": "MIT", 275 | "engines": { 276 | "node": ">= 0.8" 277 | } 278 | }, 279 | "node_modules/destroy": { 280 | "version": "1.2.0", 281 | "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", 282 | "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", 283 | "license": "MIT", 284 | "engines": { 285 | "node": ">= 0.8", 286 | "npm": "1.2.8000 || >= 1.4.16" 287 | } 288 | }, 289 | "node_modules/dotenv": { 290 | "version": "16.4.5", 291 | "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.4.5.tgz", 292 | "integrity": "sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==", 293 | "license": "BSD-2-Clause", 294 | "engines": { 295 | "node": ">=12" 296 | }, 297 | "funding": { 298 | "url": "https://dotenvx.com" 299 | } 300 | }, 301 | "node_modules/ee-first": { 302 | "version": "1.1.1", 303 | "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", 304 | "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", 305 | "license": "MIT" 306 | }, 307 | "node_modules/encodeurl": { 308 | "version": "1.0.2", 309 | "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", 310 | "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", 311 | "license": "MIT", 312 | "engines": { 313 | "node": ">= 0.8" 314 | } 315 | }, 316 | "node_modules/es-define-property": { 317 | "version": "1.0.0", 318 | "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz", 319 | "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==", 320 | "license": "MIT", 321 | "dependencies": { 322 | "get-intrinsic": "^1.2.4" 323 | }, 324 | "engines": { 325 | "node": ">= 0.4" 326 | } 327 | }, 328 | "node_modules/es-errors": { 329 | "version": "1.3.0", 330 | "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", 331 | "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", 332 | "license": "MIT", 333 | "engines": { 334 | "node": ">= 0.4" 335 | } 336 | }, 337 | "node_modules/escape-html": { 338 | "version": "1.0.3", 339 | "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", 340 | "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", 341 | "license": "MIT" 342 | }, 343 | "node_modules/etag": { 344 | "version": "1.8.1", 345 | "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", 346 | "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", 347 | "license": "MIT", 348 | "engines": { 349 | "node": ">= 0.6" 350 | } 351 | }, 352 | "node_modules/express": { 353 | "version": "4.19.2", 354 | "resolved": "https://registry.npmjs.org/express/-/express-4.19.2.tgz", 355 | "integrity": "sha512-5T6nhjsT+EOMzuck8JjBHARTHfMht0POzlA60WV2pMD3gyXw2LZnZ+ueGdNxG+0calOJcWKbpFcuzLZ91YWq9Q==", 356 | "license": "MIT", 357 | "dependencies": { 358 | "accepts": "~1.3.8", 359 | "array-flatten": "1.1.1", 360 | "body-parser": "1.20.2", 361 | "content-disposition": "0.5.4", 362 | "content-type": "~1.0.4", 363 | "cookie": "0.6.0", 364 | "cookie-signature": "1.0.6", 365 | "debug": "2.6.9", 366 | "depd": "2.0.0", 367 | "encodeurl": "~1.0.2", 368 | "escape-html": "~1.0.3", 369 | "etag": "~1.8.1", 370 | "finalhandler": "1.2.0", 371 | "fresh": "0.5.2", 372 | "http-errors": "2.0.0", 373 | "merge-descriptors": "1.0.1", 374 | "methods": "~1.1.2", 375 | "on-finished": "2.4.1", 376 | "parseurl": "~1.3.3", 377 | "path-to-regexp": "0.1.7", 378 | "proxy-addr": "~2.0.7", 379 | "qs": "6.11.0", 380 | "range-parser": "~1.2.1", 381 | "safe-buffer": "5.2.1", 382 | "send": "0.18.0", 383 | "serve-static": "1.15.0", 384 | "setprototypeof": "1.2.0", 385 | "statuses": "2.0.1", 386 | "type-is": "~1.6.18", 387 | "utils-merge": "1.0.1", 388 | "vary": "~1.1.2" 389 | }, 390 | "engines": { 391 | "node": ">= 0.10.0" 392 | } 393 | }, 394 | "node_modules/fill-range": { 395 | "version": "7.1.1", 396 | "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", 397 | "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", 398 | "license": "MIT", 399 | "dependencies": { 400 | "to-regex-range": "^5.0.1" 401 | }, 402 | "engines": { 403 | "node": ">=8" 404 | } 405 | }, 406 | "node_modules/finalhandler": { 407 | "version": "1.2.0", 408 | "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", 409 | "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", 410 | "license": "MIT", 411 | "dependencies": { 412 | "debug": "2.6.9", 413 | "encodeurl": "~1.0.2", 414 | "escape-html": "~1.0.3", 415 | "on-finished": "2.4.1", 416 | "parseurl": "~1.3.3", 417 | "statuses": "2.0.1", 418 | "unpipe": "~1.0.0" 419 | }, 420 | "engines": { 421 | "node": ">= 0.8" 422 | } 423 | }, 424 | "node_modules/forwarded": { 425 | "version": "0.2.0", 426 | "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", 427 | "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", 428 | "license": "MIT", 429 | "engines": { 430 | "node": ">= 0.6" 431 | } 432 | }, 433 | "node_modules/fresh": { 434 | "version": "0.5.2", 435 | "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", 436 | "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", 437 | "license": "MIT", 438 | "engines": { 439 | "node": ">= 0.6" 440 | } 441 | }, 442 | "node_modules/fsevents": { 443 | "version": "2.3.3", 444 | "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", 445 | "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", 446 | "hasInstallScript": true, 447 | "license": "MIT", 448 | "optional": true, 449 | "os": [ 450 | "darwin" 451 | ], 452 | "engines": { 453 | "node": "^8.16.0 || ^10.6.0 || >=11.0.0" 454 | } 455 | }, 456 | "node_modules/function-bind": { 457 | "version": "1.1.2", 458 | "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", 459 | "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", 460 | "license": "MIT", 461 | "funding": { 462 | "url": "https://github.com/sponsors/ljharb" 463 | } 464 | }, 465 | "node_modules/get-intrinsic": { 466 | "version": "1.2.4", 467 | "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz", 468 | "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==", 469 | "license": "MIT", 470 | "dependencies": { 471 | "es-errors": "^1.3.0", 472 | "function-bind": "^1.1.2", 473 | "has-proto": "^1.0.1", 474 | "has-symbols": "^1.0.3", 475 | "hasown": "^2.0.0" 476 | }, 477 | "engines": { 478 | "node": ">= 0.4" 479 | }, 480 | "funding": { 481 | "url": "https://github.com/sponsors/ljharb" 482 | } 483 | }, 484 | "node_modules/glob-parent": { 485 | "version": "5.1.2", 486 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", 487 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 488 | "license": "ISC", 489 | "dependencies": { 490 | "is-glob": "^4.0.1" 491 | }, 492 | "engines": { 493 | "node": ">= 6" 494 | } 495 | }, 496 | "node_modules/gopd": { 497 | "version": "1.0.1", 498 | "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", 499 | "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", 500 | "license": "MIT", 501 | "dependencies": { 502 | "get-intrinsic": "^1.1.3" 503 | }, 504 | "funding": { 505 | "url": "https://github.com/sponsors/ljharb" 506 | } 507 | }, 508 | "node_modules/has-flag": { 509 | "version": "3.0.0", 510 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", 511 | "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", 512 | "license": "MIT", 513 | "engines": { 514 | "node": ">=4" 515 | } 516 | }, 517 | "node_modules/has-property-descriptors": { 518 | "version": "1.0.2", 519 | "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", 520 | "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", 521 | "license": "MIT", 522 | "dependencies": { 523 | "es-define-property": "^1.0.0" 524 | }, 525 | "funding": { 526 | "url": "https://github.com/sponsors/ljharb" 527 | } 528 | }, 529 | "node_modules/has-proto": { 530 | "version": "1.0.3", 531 | "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz", 532 | "integrity": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==", 533 | "license": "MIT", 534 | "engines": { 535 | "node": ">= 0.4" 536 | }, 537 | "funding": { 538 | "url": "https://github.com/sponsors/ljharb" 539 | } 540 | }, 541 | "node_modules/has-symbols": { 542 | "version": "1.0.3", 543 | "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", 544 | "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", 545 | "license": "MIT", 546 | "engines": { 547 | "node": ">= 0.4" 548 | }, 549 | "funding": { 550 | "url": "https://github.com/sponsors/ljharb" 551 | } 552 | }, 553 | "node_modules/hasown": { 554 | "version": "2.0.2", 555 | "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", 556 | "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", 557 | "license": "MIT", 558 | "dependencies": { 559 | "function-bind": "^1.1.2" 560 | }, 561 | "engines": { 562 | "node": ">= 0.4" 563 | } 564 | }, 565 | "node_modules/http-errors": { 566 | "version": "2.0.0", 567 | "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", 568 | "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", 569 | "license": "MIT", 570 | "dependencies": { 571 | "depd": "2.0.0", 572 | "inherits": "2.0.4", 573 | "setprototypeof": "1.2.0", 574 | "statuses": "2.0.1", 575 | "toidentifier": "1.0.1" 576 | }, 577 | "engines": { 578 | "node": ">= 0.8" 579 | } 580 | }, 581 | "node_modules/iconv-lite": { 582 | "version": "0.4.24", 583 | "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", 584 | "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", 585 | "license": "MIT", 586 | "dependencies": { 587 | "safer-buffer": ">= 2.1.2 < 3" 588 | }, 589 | "engines": { 590 | "node": ">=0.10.0" 591 | } 592 | }, 593 | "node_modules/ignore-by-default": { 594 | "version": "1.0.1", 595 | "resolved": "https://registry.npmjs.org/ignore-by-default/-/ignore-by-default-1.0.1.tgz", 596 | "integrity": "sha512-Ius2VYcGNk7T90CppJqcIkS5ooHUZyIQK+ClZfMfMNFEF9VSE73Fq+906u/CWu92x4gzZMWOwfFYckPObzdEbA==", 597 | "license": "ISC" 598 | }, 599 | "node_modules/inherits": { 600 | "version": "2.0.4", 601 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", 602 | "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", 603 | "license": "ISC" 604 | }, 605 | "node_modules/ipaddr.js": { 606 | "version": "1.9.1", 607 | "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", 608 | "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", 609 | "license": "MIT", 610 | "engines": { 611 | "node": ">= 0.10" 612 | } 613 | }, 614 | "node_modules/is-binary-path": { 615 | "version": "2.1.0", 616 | "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", 617 | "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", 618 | "license": "MIT", 619 | "dependencies": { 620 | "binary-extensions": "^2.0.0" 621 | }, 622 | "engines": { 623 | "node": ">=8" 624 | } 625 | }, 626 | "node_modules/is-extglob": { 627 | "version": "2.1.1", 628 | "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", 629 | "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", 630 | "license": "MIT", 631 | "engines": { 632 | "node": ">=0.10.0" 633 | } 634 | }, 635 | "node_modules/is-glob": { 636 | "version": "4.0.3", 637 | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", 638 | "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", 639 | "license": "MIT", 640 | "dependencies": { 641 | "is-extglob": "^2.1.1" 642 | }, 643 | "engines": { 644 | "node": ">=0.10.0" 645 | } 646 | }, 647 | "node_modules/is-number": { 648 | "version": "7.0.0", 649 | "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", 650 | "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", 651 | "license": "MIT", 652 | "engines": { 653 | "node": ">=0.12.0" 654 | } 655 | }, 656 | "node_modules/media-typer": { 657 | "version": "0.3.0", 658 | "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", 659 | "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", 660 | "license": "MIT", 661 | "engines": { 662 | "node": ">= 0.6" 663 | } 664 | }, 665 | "node_modules/merge-descriptors": { 666 | "version": "1.0.1", 667 | "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", 668 | "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==", 669 | "license": "MIT" 670 | }, 671 | "node_modules/methods": { 672 | "version": "1.1.2", 673 | "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", 674 | "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", 675 | "license": "MIT", 676 | "engines": { 677 | "node": ">= 0.6" 678 | } 679 | }, 680 | "node_modules/mime": { 681 | "version": "1.6.0", 682 | "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", 683 | "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", 684 | "license": "MIT", 685 | "bin": { 686 | "mime": "cli.js" 687 | }, 688 | "engines": { 689 | "node": ">=4" 690 | } 691 | }, 692 | "node_modules/mime-db": { 693 | "version": "1.52.0", 694 | "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", 695 | "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", 696 | "license": "MIT", 697 | "engines": { 698 | "node": ">= 0.6" 699 | } 700 | }, 701 | "node_modules/mime-types": { 702 | "version": "2.1.35", 703 | "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", 704 | "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", 705 | "license": "MIT", 706 | "dependencies": { 707 | "mime-db": "1.52.0" 708 | }, 709 | "engines": { 710 | "node": ">= 0.6" 711 | } 712 | }, 713 | "node_modules/minimatch": { 714 | "version": "3.1.2", 715 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 716 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 717 | "license": "ISC", 718 | "dependencies": { 719 | "brace-expansion": "^1.1.7" 720 | }, 721 | "engines": { 722 | "node": "*" 723 | } 724 | }, 725 | "node_modules/ms": { 726 | "version": "2.0.0", 727 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", 728 | "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", 729 | "license": "MIT" 730 | }, 731 | "node_modules/negotiator": { 732 | "version": "0.6.3", 733 | "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", 734 | "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", 735 | "license": "MIT", 736 | "engines": { 737 | "node": ">= 0.6" 738 | } 739 | }, 740 | "node_modules/nodemon": { 741 | "version": "3.1.4", 742 | "resolved": "https://registry.npmjs.org/nodemon/-/nodemon-3.1.4.tgz", 743 | "integrity": "sha512-wjPBbFhtpJwmIeY2yP7QF+UKzPfltVGtfce1g/bB15/8vCGZj8uxD62b/b9M9/WVgme0NZudpownKN+c0plXlQ==", 744 | "license": "MIT", 745 | "dependencies": { 746 | "chokidar": "^3.5.2", 747 | "debug": "^4", 748 | "ignore-by-default": "^1.0.1", 749 | "minimatch": "^3.1.2", 750 | "pstree.remy": "^1.1.8", 751 | "semver": "^7.5.3", 752 | "simple-update-notifier": "^2.0.0", 753 | "supports-color": "^5.5.0", 754 | "touch": "^3.1.0", 755 | "undefsafe": "^2.0.5" 756 | }, 757 | "bin": { 758 | "nodemon": "bin/nodemon.js" 759 | }, 760 | "engines": { 761 | "node": ">=10" 762 | }, 763 | "funding": { 764 | "type": "opencollective", 765 | "url": "https://opencollective.com/nodemon" 766 | } 767 | }, 768 | "node_modules/nodemon/node_modules/debug": { 769 | "version": "4.3.5", 770 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.5.tgz", 771 | "integrity": "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==", 772 | "license": "MIT", 773 | "dependencies": { 774 | "ms": "2.1.2" 775 | }, 776 | "engines": { 777 | "node": ">=6.0" 778 | }, 779 | "peerDependenciesMeta": { 780 | "supports-color": { 781 | "optional": true 782 | } 783 | } 784 | }, 785 | "node_modules/nodemon/node_modules/ms": { 786 | "version": "2.1.2", 787 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", 788 | "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", 789 | "license": "MIT" 790 | }, 791 | "node_modules/normalize-path": { 792 | "version": "3.0.0", 793 | "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", 794 | "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", 795 | "license": "MIT", 796 | "engines": { 797 | "node": ">=0.10.0" 798 | } 799 | }, 800 | "node_modules/object-assign": { 801 | "version": "4.1.1", 802 | "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", 803 | "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", 804 | "license": "MIT", 805 | "engines": { 806 | "node": ">=0.10.0" 807 | } 808 | }, 809 | "node_modules/object-inspect": { 810 | "version": "1.13.2", 811 | "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.2.tgz", 812 | "integrity": "sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g==", 813 | "license": "MIT", 814 | "engines": { 815 | "node": ">= 0.4" 816 | }, 817 | "funding": { 818 | "url": "https://github.com/sponsors/ljharb" 819 | } 820 | }, 821 | "node_modules/on-finished": { 822 | "version": "2.4.1", 823 | "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", 824 | "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", 825 | "license": "MIT", 826 | "dependencies": { 827 | "ee-first": "1.1.1" 828 | }, 829 | "engines": { 830 | "node": ">= 0.8" 831 | } 832 | }, 833 | "node_modules/parseurl": { 834 | "version": "1.3.3", 835 | "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", 836 | "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", 837 | "license": "MIT", 838 | "engines": { 839 | "node": ">= 0.8" 840 | } 841 | }, 842 | "node_modules/path-to-regexp": { 843 | "version": "0.1.7", 844 | "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", 845 | "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==", 846 | "license": "MIT" 847 | }, 848 | "node_modules/picomatch": { 849 | "version": "2.3.1", 850 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", 851 | "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", 852 | "license": "MIT", 853 | "engines": { 854 | "node": ">=8.6" 855 | }, 856 | "funding": { 857 | "url": "https://github.com/sponsors/jonschlinkert" 858 | } 859 | }, 860 | "node_modules/proxy-addr": { 861 | "version": "2.0.7", 862 | "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", 863 | "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", 864 | "license": "MIT", 865 | "dependencies": { 866 | "forwarded": "0.2.0", 867 | "ipaddr.js": "1.9.1" 868 | }, 869 | "engines": { 870 | "node": ">= 0.10" 871 | } 872 | }, 873 | "node_modules/pstree.remy": { 874 | "version": "1.1.8", 875 | "resolved": "https://registry.npmjs.org/pstree.remy/-/pstree.remy-1.1.8.tgz", 876 | "integrity": "sha512-77DZwxQmxKnu3aR542U+X8FypNzbfJ+C5XQDk3uWjWxn6151aIMGthWYRXTqT1E5oJvg+ljaa2OJi+VfvCOQ8w==", 877 | "license": "MIT" 878 | }, 879 | "node_modules/qs": { 880 | "version": "6.11.0", 881 | "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", 882 | "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", 883 | "license": "BSD-3-Clause", 884 | "dependencies": { 885 | "side-channel": "^1.0.4" 886 | }, 887 | "engines": { 888 | "node": ">=0.6" 889 | }, 890 | "funding": { 891 | "url": "https://github.com/sponsors/ljharb" 892 | } 893 | }, 894 | "node_modules/range-parser": { 895 | "version": "1.2.1", 896 | "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", 897 | "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", 898 | "license": "MIT", 899 | "engines": { 900 | "node": ">= 0.6" 901 | } 902 | }, 903 | "node_modules/raw-body": { 904 | "version": "2.5.2", 905 | "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.2.tgz", 906 | "integrity": "sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==", 907 | "license": "MIT", 908 | "dependencies": { 909 | "bytes": "3.1.2", 910 | "http-errors": "2.0.0", 911 | "iconv-lite": "0.4.24", 912 | "unpipe": "1.0.0" 913 | }, 914 | "engines": { 915 | "node": ">= 0.8" 916 | } 917 | }, 918 | "node_modules/readdirp": { 919 | "version": "3.6.0", 920 | "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", 921 | "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", 922 | "license": "MIT", 923 | "dependencies": { 924 | "picomatch": "^2.2.1" 925 | }, 926 | "engines": { 927 | "node": ">=8.10.0" 928 | } 929 | }, 930 | "node_modules/safe-buffer": { 931 | "version": "5.2.1", 932 | "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", 933 | "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", 934 | "funding": [ 935 | { 936 | "type": "github", 937 | "url": "https://github.com/sponsors/feross" 938 | }, 939 | { 940 | "type": "patreon", 941 | "url": "https://www.patreon.com/feross" 942 | }, 943 | { 944 | "type": "consulting", 945 | "url": "https://feross.org/support" 946 | } 947 | ], 948 | "license": "MIT" 949 | }, 950 | "node_modules/safer-buffer": { 951 | "version": "2.1.2", 952 | "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", 953 | "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", 954 | "license": "MIT" 955 | }, 956 | "node_modules/semver": { 957 | "version": "7.6.2", 958 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.2.tgz", 959 | "integrity": "sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==", 960 | "license": "ISC", 961 | "bin": { 962 | "semver": "bin/semver.js" 963 | }, 964 | "engines": { 965 | "node": ">=10" 966 | } 967 | }, 968 | "node_modules/send": { 969 | "version": "0.18.0", 970 | "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", 971 | "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", 972 | "license": "MIT", 973 | "dependencies": { 974 | "debug": "2.6.9", 975 | "depd": "2.0.0", 976 | "destroy": "1.2.0", 977 | "encodeurl": "~1.0.2", 978 | "escape-html": "~1.0.3", 979 | "etag": "~1.8.1", 980 | "fresh": "0.5.2", 981 | "http-errors": "2.0.0", 982 | "mime": "1.6.0", 983 | "ms": "2.1.3", 984 | "on-finished": "2.4.1", 985 | "range-parser": "~1.2.1", 986 | "statuses": "2.0.1" 987 | }, 988 | "engines": { 989 | "node": ">= 0.8.0" 990 | } 991 | }, 992 | "node_modules/send/node_modules/ms": { 993 | "version": "2.1.3", 994 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", 995 | "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", 996 | "license": "MIT" 997 | }, 998 | "node_modules/serve-static": { 999 | "version": "1.15.0", 1000 | "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", 1001 | "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", 1002 | "license": "MIT", 1003 | "dependencies": { 1004 | "encodeurl": "~1.0.2", 1005 | "escape-html": "~1.0.3", 1006 | "parseurl": "~1.3.3", 1007 | "send": "0.18.0" 1008 | }, 1009 | "engines": { 1010 | "node": ">= 0.8.0" 1011 | } 1012 | }, 1013 | "node_modules/set-function-length": { 1014 | "version": "1.2.2", 1015 | "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", 1016 | "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", 1017 | "license": "MIT", 1018 | "dependencies": { 1019 | "define-data-property": "^1.1.4", 1020 | "es-errors": "^1.3.0", 1021 | "function-bind": "^1.1.2", 1022 | "get-intrinsic": "^1.2.4", 1023 | "gopd": "^1.0.1", 1024 | "has-property-descriptors": "^1.0.2" 1025 | }, 1026 | "engines": { 1027 | "node": ">= 0.4" 1028 | } 1029 | }, 1030 | "node_modules/setprototypeof": { 1031 | "version": "1.2.0", 1032 | "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", 1033 | "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", 1034 | "license": "ISC" 1035 | }, 1036 | "node_modules/side-channel": { 1037 | "version": "1.0.6", 1038 | "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.6.tgz", 1039 | "integrity": "sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==", 1040 | "license": "MIT", 1041 | "dependencies": { 1042 | "call-bind": "^1.0.7", 1043 | "es-errors": "^1.3.0", 1044 | "get-intrinsic": "^1.2.4", 1045 | "object-inspect": "^1.13.1" 1046 | }, 1047 | "engines": { 1048 | "node": ">= 0.4" 1049 | }, 1050 | "funding": { 1051 | "url": "https://github.com/sponsors/ljharb" 1052 | } 1053 | }, 1054 | "node_modules/simple-update-notifier": { 1055 | "version": "2.0.0", 1056 | "resolved": "https://registry.npmjs.org/simple-update-notifier/-/simple-update-notifier-2.0.0.tgz", 1057 | "integrity": "sha512-a2B9Y0KlNXl9u/vsW6sTIu9vGEpfKu2wRV6l1H3XEas/0gUIzGzBoP/IouTcUQbm9JWZLH3COxyn03TYlFax6w==", 1058 | "license": "MIT", 1059 | "dependencies": { 1060 | "semver": "^7.5.3" 1061 | }, 1062 | "engines": { 1063 | "node": ">=10" 1064 | } 1065 | }, 1066 | "node_modules/statuses": { 1067 | "version": "2.0.1", 1068 | "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", 1069 | "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", 1070 | "license": "MIT", 1071 | "engines": { 1072 | "node": ">= 0.8" 1073 | } 1074 | }, 1075 | "node_modules/supports-color": { 1076 | "version": "5.5.0", 1077 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", 1078 | "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", 1079 | "license": "MIT", 1080 | "dependencies": { 1081 | "has-flag": "^3.0.0" 1082 | }, 1083 | "engines": { 1084 | "node": ">=4" 1085 | } 1086 | }, 1087 | "node_modules/to-regex-range": { 1088 | "version": "5.0.1", 1089 | "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", 1090 | "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", 1091 | "license": "MIT", 1092 | "dependencies": { 1093 | "is-number": "^7.0.0" 1094 | }, 1095 | "engines": { 1096 | "node": ">=8.0" 1097 | } 1098 | }, 1099 | "node_modules/toidentifier": { 1100 | "version": "1.0.1", 1101 | "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", 1102 | "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", 1103 | "license": "MIT", 1104 | "engines": { 1105 | "node": ">=0.6" 1106 | } 1107 | }, 1108 | "node_modules/touch": { 1109 | "version": "3.1.1", 1110 | "resolved": "https://registry.npmjs.org/touch/-/touch-3.1.1.tgz", 1111 | "integrity": "sha512-r0eojU4bI8MnHr8c5bNo7lJDdI2qXlWWJk6a9EAFG7vbhTjElYhBVS3/miuE0uOuoLdb8Mc/rVfsmm6eo5o9GA==", 1112 | "license": "ISC", 1113 | "bin": { 1114 | "nodetouch": "bin/nodetouch.js" 1115 | } 1116 | }, 1117 | "node_modules/type-is": { 1118 | "version": "1.6.18", 1119 | "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", 1120 | "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", 1121 | "license": "MIT", 1122 | "dependencies": { 1123 | "media-typer": "0.3.0", 1124 | "mime-types": "~2.1.24" 1125 | }, 1126 | "engines": { 1127 | "node": ">= 0.6" 1128 | } 1129 | }, 1130 | "node_modules/undefsafe": { 1131 | "version": "2.0.5", 1132 | "resolved": "https://registry.npmjs.org/undefsafe/-/undefsafe-2.0.5.tgz", 1133 | "integrity": "sha512-WxONCrssBM8TSPRqN5EmsjVrsv4A8X12J4ArBiiayv3DyyG3ZlIg6yysuuSYdZsVz3TKcTg2fd//Ujd4CHV1iA==", 1134 | "license": "MIT" 1135 | }, 1136 | "node_modules/unpipe": { 1137 | "version": "1.0.0", 1138 | "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", 1139 | "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", 1140 | "license": "MIT", 1141 | "engines": { 1142 | "node": ">= 0.8" 1143 | } 1144 | }, 1145 | "node_modules/utils-merge": { 1146 | "version": "1.0.1", 1147 | "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", 1148 | "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", 1149 | "license": "MIT", 1150 | "engines": { 1151 | "node": ">= 0.4.0" 1152 | } 1153 | }, 1154 | "node_modules/vary": { 1155 | "version": "1.1.2", 1156 | "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", 1157 | "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", 1158 | "license": "MIT", 1159 | "engines": { 1160 | "node": ">= 0.8" 1161 | } 1162 | } 1163 | } 1164 | } 1165 | --------------------------------------------------------------------------------