├── README.md ├── docker-compose.yml ├── server ├── Dockerfile ├── .dockerignore ├── server.js ├── package.json ├── .gitignore └── package-lock.json └── frontend ├── public ├── robots.txt ├── favicon.ico ├── logo192.png ├── logo512.png ├── manifest.json └── index.html ├── .dockerignore ├── Dockerfile ├── src ├── setupTests.js ├── App.test.js ├── index.css ├── reportWebVitals.js ├── index.js ├── App.css ├── App.js └── logo.svg ├── .gitignore ├── package.json └── README.md /README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/Dockerfile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/public/robots.txt: -------------------------------------------------------------------------------- 1 | # https://www.robotstxt.org/robotstxt.html 2 | User-agent: * 3 | Disallow: 4 | -------------------------------------------------------------------------------- /frontend/.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | Dockerfile 4 | .dockerignore 5 | .git 6 | .gitignore 7 | .env 8 | -------------------------------------------------------------------------------- /frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandboxnu/odyssey-docker-droplet/main/frontend/public/favicon.ico -------------------------------------------------------------------------------- /frontend/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandboxnu/odyssey-docker-droplet/main/frontend/public/logo192.png -------------------------------------------------------------------------------- /frontend/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandboxnu/odyssey-docker-droplet/main/frontend/public/logo512.png -------------------------------------------------------------------------------- /server/.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | Dockerfile 4 | .dockerignore 5 | .git 6 | .gitignore 7 | .env 8 | -------------------------------------------------------------------------------- /frontend/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM node:18-alpine 2 | 3 | WORKDIR /app 4 | 5 | COPY package*.json ./ 6 | 7 | RUN npm install 8 | 9 | COPY . . 10 | 11 | EXPOSE 3000 12 | 13 | CMD ["npm", "start"] -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /server/server.js: -------------------------------------------------------------------------------- 1 | const express = require("express"); 2 | const cors = require("cors"); 3 | 4 | const app = express(); 5 | app.use(cors()); 6 | 7 | app.get("/click", (req, res) => res.json({ message: "Hello from backend!" })); 8 | app.listen(5000, () => console.log("Server running on port 5000")); 9 | -------------------------------------------------------------------------------- /server/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "server", 3 | "version": "1.0.0", 4 | "description": "", 5 | "main": "index.js", 6 | "scripts": { 7 | "test": "echo \"Error: no test specified\" && exit 1" 8 | }, 9 | "keywords": [], 10 | "author": "", 11 | "license": "ISC", 12 | "type": "commonjs", 13 | "dependencies": { 14 | "cors": "^2.8.5", 15 | "express": "^5.2.1" 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /server/.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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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/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 | -------------------------------------------------------------------------------- /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 | import reportWebVitals from './reportWebVitals'; 6 | 7 | const root = ReactDOM.createRoot(document.getElementById('root')); 8 | root.render( 9 | 10 | 11 | 12 | ); 13 | 14 | // If you want to start measuring performance in your app, pass a function 15 | // to log results (for example: reportWebVitals(console.log)) 16 | // or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals 17 | reportWebVitals(); 18 | -------------------------------------------------------------------------------- /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.css: -------------------------------------------------------------------------------- 1 | .App { 2 | text-align: center; 3 | } 4 | 5 | .App-logo { 6 | height: 40vmin; 7 | pointer-events: none; 8 | } 9 | 10 | @media (prefers-reduced-motion: no-preference) { 11 | .App-logo { 12 | animation: App-logo-spin infinite 20s linear; 13 | } 14 | } 15 | 16 | .App-header { 17 | background-color: #282c34; 18 | min-height: 100vh; 19 | display: flex; 20 | flex-direction: column; 21 | align-items: center; 22 | justify-content: center; 23 | font-size: calc(10px + 2vmin); 24 | color: white; 25 | } 26 | 27 | .App-link { 28 | color: #61dafb; 29 | } 30 | 31 | @keyframes App-logo-spin { 32 | from { 33 | transform: rotate(0deg); 34 | } 35 | to { 36 | transform: rotate(360deg); 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /frontend/src/App.js: -------------------------------------------------------------------------------- 1 | import logo from "./logo.svg"; 2 | import "./App.css"; 3 | import { useState } from "react"; 4 | 5 | function App() { 6 | const [text, setText] = useState(""); 7 | 8 | const handleClick = () => { 9 | fetch("http://localhost:5000/click") 10 | .then((response) => response.json()) 11 | .then((data) => setText(data.message)); 12 | }; 13 | return ( 14 |
15 |
16 | logo 17 |

18 | Edit src/App.js and save to reload. 19 |

20 | 21 |

{text}

22 | 28 | Learn React 29 | 30 |
31 |
32 | ); 33 | } 34 | 35 | export default App; 36 | -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "frontend", 3 | "version": "0.1.0", 4 | "private": true, 5 | "dependencies": { 6 | "@testing-library/dom": "^10.4.1", 7 | "@testing-library/jest-dom": "^6.9.1", 8 | "@testing-library/react": "^16.3.1", 9 | "@testing-library/user-event": "^13.5.0", 10 | "react": "^19.2.3", 11 | "react-dom": "^19.2.3", 12 | "react-scripts": "5.0.1", 13 | "web-vitals": "^2.1.4" 14 | }, 15 | "scripts": { 16 | "start": "react-scripts start", 17 | "build": "react-scripts build", 18 | "test": "react-scripts test", 19 | "eject": "react-scripts eject" 20 | }, 21 | "eslintConfig": { 22 | "extends": [ 23 | "react-app", 24 | "react-app/jest" 25 | ] 26 | }, 27 | "browserslist": { 28 | "production": [ 29 | ">0.2%", 30 | "not dead", 31 | "not op_mini all" 32 | ], 33 | "development": [ 34 | "last 1 chrome version", 35 | "last 1 firefox version", 36 | "last 1 safari version" 37 | ] 38 | }, 39 | "devDependencies": { 40 | "ajv": "^8.17.1", 41 | "ajv-keywords": "^5.1.0" 42 | } 43 | } 44 | -------------------------------------------------------------------------------- /frontend/public/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 12 | 13 | 17 | 18 | 27 | React App 28 | 29 | 30 | 31 |
32 | 42 | 43 | 44 | -------------------------------------------------------------------------------- /frontend/src/logo.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | "cors": "^2.8.5", 13 | "express": "^5.2.1" 14 | } 15 | }, 16 | "node_modules/accepts": { 17 | "version": "2.0.0", 18 | "resolved": "https://registry.npmjs.org/accepts/-/accepts-2.0.0.tgz", 19 | "integrity": "sha512-5cvg6CtKwfgdmVqY1WIiXKc3Q1bkRqGLi+2W/6ao+6Y7gu/RCwRuAhGEzh5B4KlszSuTLgZYuqFqo5bImjNKng==", 20 | "license": "MIT", 21 | "dependencies": { 22 | "mime-types": "^3.0.0", 23 | "negotiator": "^1.0.0" 24 | }, 25 | "engines": { 26 | "node": ">= 0.6" 27 | } 28 | }, 29 | "node_modules/body-parser": { 30 | "version": "2.2.1", 31 | "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-2.2.1.tgz", 32 | "integrity": "sha512-nfDwkulwiZYQIGwxdy0RUmowMhKcFVcYXUU7m4QlKYim1rUtg83xm2yjZ40QjDuc291AJjjeSc9b++AWHSgSHw==", 33 | "license": "MIT", 34 | "dependencies": { 35 | "bytes": "^3.1.2", 36 | "content-type": "^1.0.5", 37 | "debug": "^4.4.3", 38 | "http-errors": "^2.0.0", 39 | "iconv-lite": "^0.7.0", 40 | "on-finished": "^2.4.1", 41 | "qs": "^6.14.0", 42 | "raw-body": "^3.0.1", 43 | "type-is": "^2.0.1" 44 | }, 45 | "engines": { 46 | "node": ">=18" 47 | }, 48 | "funding": { 49 | "type": "opencollective", 50 | "url": "https://opencollective.com/express" 51 | } 52 | }, 53 | "node_modules/bytes": { 54 | "version": "3.1.2", 55 | "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", 56 | "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", 57 | "license": "MIT", 58 | "engines": { 59 | "node": ">= 0.8" 60 | } 61 | }, 62 | "node_modules/call-bind-apply-helpers": { 63 | "version": "1.0.2", 64 | "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz", 65 | "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==", 66 | "license": "MIT", 67 | "dependencies": { 68 | "es-errors": "^1.3.0", 69 | "function-bind": "^1.1.2" 70 | }, 71 | "engines": { 72 | "node": ">= 0.4" 73 | } 74 | }, 75 | "node_modules/call-bound": { 76 | "version": "1.0.4", 77 | "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz", 78 | "integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==", 79 | "license": "MIT", 80 | "dependencies": { 81 | "call-bind-apply-helpers": "^1.0.2", 82 | "get-intrinsic": "^1.3.0" 83 | }, 84 | "engines": { 85 | "node": ">= 0.4" 86 | }, 87 | "funding": { 88 | "url": "https://github.com/sponsors/ljharb" 89 | } 90 | }, 91 | "node_modules/content-disposition": { 92 | "version": "1.0.1", 93 | "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-1.0.1.tgz", 94 | "integrity": "sha512-oIXISMynqSqm241k6kcQ5UwttDILMK4BiurCfGEREw6+X9jkkpEe5T9FZaApyLGGOnFuyMWZpdolTXMtvEJ08Q==", 95 | "license": "MIT", 96 | "engines": { 97 | "node": ">=18" 98 | }, 99 | "funding": { 100 | "type": "opencollective", 101 | "url": "https://opencollective.com/express" 102 | } 103 | }, 104 | "node_modules/content-type": { 105 | "version": "1.0.5", 106 | "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", 107 | "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", 108 | "license": "MIT", 109 | "engines": { 110 | "node": ">= 0.6" 111 | } 112 | }, 113 | "node_modules/cookie": { 114 | "version": "0.7.2", 115 | "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.7.2.tgz", 116 | "integrity": "sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w==", 117 | "license": "MIT", 118 | "engines": { 119 | "node": ">= 0.6" 120 | } 121 | }, 122 | "node_modules/cookie-signature": { 123 | "version": "1.2.2", 124 | "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.2.2.tgz", 125 | "integrity": "sha512-D76uU73ulSXrD1UXF4KE2TMxVVwhsnCgfAyTg9k8P6KGZjlXKrOLe4dJQKI3Bxi5wjesZoFXJWElNWBjPZMbhg==", 126 | "license": "MIT", 127 | "engines": { 128 | "node": ">=6.6.0" 129 | } 130 | }, 131 | "node_modules/cors": { 132 | "version": "2.8.5", 133 | "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.5.tgz", 134 | "integrity": "sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==", 135 | "license": "MIT", 136 | "dependencies": { 137 | "object-assign": "^4", 138 | "vary": "^1" 139 | }, 140 | "engines": { 141 | "node": ">= 0.10" 142 | } 143 | }, 144 | "node_modules/debug": { 145 | "version": "4.4.3", 146 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz", 147 | "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==", 148 | "license": "MIT", 149 | "dependencies": { 150 | "ms": "^2.1.3" 151 | }, 152 | "engines": { 153 | "node": ">=6.0" 154 | }, 155 | "peerDependenciesMeta": { 156 | "supports-color": { 157 | "optional": true 158 | } 159 | } 160 | }, 161 | "node_modules/depd": { 162 | "version": "2.0.0", 163 | "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", 164 | "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", 165 | "license": "MIT", 166 | "engines": { 167 | "node": ">= 0.8" 168 | } 169 | }, 170 | "node_modules/dunder-proto": { 171 | "version": "1.0.1", 172 | "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz", 173 | "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==", 174 | "license": "MIT", 175 | "dependencies": { 176 | "call-bind-apply-helpers": "^1.0.1", 177 | "es-errors": "^1.3.0", 178 | "gopd": "^1.2.0" 179 | }, 180 | "engines": { 181 | "node": ">= 0.4" 182 | } 183 | }, 184 | "node_modules/ee-first": { 185 | "version": "1.1.1", 186 | "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", 187 | "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", 188 | "license": "MIT" 189 | }, 190 | "node_modules/encodeurl": { 191 | "version": "2.0.0", 192 | "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz", 193 | "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==", 194 | "license": "MIT", 195 | "engines": { 196 | "node": ">= 0.8" 197 | } 198 | }, 199 | "node_modules/es-define-property": { 200 | "version": "1.0.1", 201 | "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz", 202 | "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==", 203 | "license": "MIT", 204 | "engines": { 205 | "node": ">= 0.4" 206 | } 207 | }, 208 | "node_modules/es-errors": { 209 | "version": "1.3.0", 210 | "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", 211 | "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", 212 | "license": "MIT", 213 | "engines": { 214 | "node": ">= 0.4" 215 | } 216 | }, 217 | "node_modules/es-object-atoms": { 218 | "version": "1.1.1", 219 | "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz", 220 | "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==", 221 | "license": "MIT", 222 | "dependencies": { 223 | "es-errors": "^1.3.0" 224 | }, 225 | "engines": { 226 | "node": ">= 0.4" 227 | } 228 | }, 229 | "node_modules/escape-html": { 230 | "version": "1.0.3", 231 | "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", 232 | "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", 233 | "license": "MIT" 234 | }, 235 | "node_modules/etag": { 236 | "version": "1.8.1", 237 | "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", 238 | "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", 239 | "license": "MIT", 240 | "engines": { 241 | "node": ">= 0.6" 242 | } 243 | }, 244 | "node_modules/express": { 245 | "version": "5.2.1", 246 | "resolved": "https://registry.npmjs.org/express/-/express-5.2.1.tgz", 247 | "integrity": "sha512-hIS4idWWai69NezIdRt2xFVofaF4j+6INOpJlVOLDO8zXGpUVEVzIYk12UUi2JzjEzWL3IOAxcTubgz9Po0yXw==", 248 | "license": "MIT", 249 | "dependencies": { 250 | "accepts": "^2.0.0", 251 | "body-parser": "^2.2.1", 252 | "content-disposition": "^1.0.0", 253 | "content-type": "^1.0.5", 254 | "cookie": "^0.7.1", 255 | "cookie-signature": "^1.2.1", 256 | "debug": "^4.4.0", 257 | "depd": "^2.0.0", 258 | "encodeurl": "^2.0.0", 259 | "escape-html": "^1.0.3", 260 | "etag": "^1.8.1", 261 | "finalhandler": "^2.1.0", 262 | "fresh": "^2.0.0", 263 | "http-errors": "^2.0.0", 264 | "merge-descriptors": "^2.0.0", 265 | "mime-types": "^3.0.0", 266 | "on-finished": "^2.4.1", 267 | "once": "^1.4.0", 268 | "parseurl": "^1.3.3", 269 | "proxy-addr": "^2.0.7", 270 | "qs": "^6.14.0", 271 | "range-parser": "^1.2.1", 272 | "router": "^2.2.0", 273 | "send": "^1.1.0", 274 | "serve-static": "^2.2.0", 275 | "statuses": "^2.0.1", 276 | "type-is": "^2.0.1", 277 | "vary": "^1.1.2" 278 | }, 279 | "engines": { 280 | "node": ">= 18" 281 | }, 282 | "funding": { 283 | "type": "opencollective", 284 | "url": "https://opencollective.com/express" 285 | } 286 | }, 287 | "node_modules/finalhandler": { 288 | "version": "2.1.1", 289 | "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-2.1.1.tgz", 290 | "integrity": "sha512-S8KoZgRZN+a5rNwqTxlZZePjT/4cnm0ROV70LedRHZ0p8u9fRID0hJUZQpkKLzro8LfmC8sx23bY6tVNxv8pQA==", 291 | "license": "MIT", 292 | "dependencies": { 293 | "debug": "^4.4.0", 294 | "encodeurl": "^2.0.0", 295 | "escape-html": "^1.0.3", 296 | "on-finished": "^2.4.1", 297 | "parseurl": "^1.3.3", 298 | "statuses": "^2.0.1" 299 | }, 300 | "engines": { 301 | "node": ">= 18.0.0" 302 | }, 303 | "funding": { 304 | "type": "opencollective", 305 | "url": "https://opencollective.com/express" 306 | } 307 | }, 308 | "node_modules/forwarded": { 309 | "version": "0.2.0", 310 | "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", 311 | "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", 312 | "license": "MIT", 313 | "engines": { 314 | "node": ">= 0.6" 315 | } 316 | }, 317 | "node_modules/fresh": { 318 | "version": "2.0.0", 319 | "resolved": "https://registry.npmjs.org/fresh/-/fresh-2.0.0.tgz", 320 | "integrity": "sha512-Rx/WycZ60HOaqLKAi6cHRKKI7zxWbJ31MhntmtwMoaTeF7XFH9hhBp8vITaMidfljRQ6eYWCKkaTK+ykVJHP2A==", 321 | "license": "MIT", 322 | "engines": { 323 | "node": ">= 0.8" 324 | } 325 | }, 326 | "node_modules/function-bind": { 327 | "version": "1.1.2", 328 | "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", 329 | "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", 330 | "license": "MIT", 331 | "funding": { 332 | "url": "https://github.com/sponsors/ljharb" 333 | } 334 | }, 335 | "node_modules/get-intrinsic": { 336 | "version": "1.3.0", 337 | "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz", 338 | "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==", 339 | "license": "MIT", 340 | "dependencies": { 341 | "call-bind-apply-helpers": "^1.0.2", 342 | "es-define-property": "^1.0.1", 343 | "es-errors": "^1.3.0", 344 | "es-object-atoms": "^1.1.1", 345 | "function-bind": "^1.1.2", 346 | "get-proto": "^1.0.1", 347 | "gopd": "^1.2.0", 348 | "has-symbols": "^1.1.0", 349 | "hasown": "^2.0.2", 350 | "math-intrinsics": "^1.1.0" 351 | }, 352 | "engines": { 353 | "node": ">= 0.4" 354 | }, 355 | "funding": { 356 | "url": "https://github.com/sponsors/ljharb" 357 | } 358 | }, 359 | "node_modules/get-proto": { 360 | "version": "1.0.1", 361 | "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz", 362 | "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==", 363 | "license": "MIT", 364 | "dependencies": { 365 | "dunder-proto": "^1.0.1", 366 | "es-object-atoms": "^1.0.0" 367 | }, 368 | "engines": { 369 | "node": ">= 0.4" 370 | } 371 | }, 372 | "node_modules/gopd": { 373 | "version": "1.2.0", 374 | "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz", 375 | "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==", 376 | "license": "MIT", 377 | "engines": { 378 | "node": ">= 0.4" 379 | }, 380 | "funding": { 381 | "url": "https://github.com/sponsors/ljharb" 382 | } 383 | }, 384 | "node_modules/has-symbols": { 385 | "version": "1.1.0", 386 | "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz", 387 | "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==", 388 | "license": "MIT", 389 | "engines": { 390 | "node": ">= 0.4" 391 | }, 392 | "funding": { 393 | "url": "https://github.com/sponsors/ljharb" 394 | } 395 | }, 396 | "node_modules/hasown": { 397 | "version": "2.0.2", 398 | "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", 399 | "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", 400 | "license": "MIT", 401 | "dependencies": { 402 | "function-bind": "^1.1.2" 403 | }, 404 | "engines": { 405 | "node": ">= 0.4" 406 | } 407 | }, 408 | "node_modules/http-errors": { 409 | "version": "2.0.1", 410 | "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.1.tgz", 411 | "integrity": "sha512-4FbRdAX+bSdmo4AUFuS0WNiPz8NgFt+r8ThgNWmlrjQjt1Q7ZR9+zTlce2859x4KSXrwIsaeTqDoKQmtP8pLmQ==", 412 | "license": "MIT", 413 | "dependencies": { 414 | "depd": "~2.0.0", 415 | "inherits": "~2.0.4", 416 | "setprototypeof": "~1.2.0", 417 | "statuses": "~2.0.2", 418 | "toidentifier": "~1.0.1" 419 | }, 420 | "engines": { 421 | "node": ">= 0.8" 422 | }, 423 | "funding": { 424 | "type": "opencollective", 425 | "url": "https://opencollective.com/express" 426 | } 427 | }, 428 | "node_modules/iconv-lite": { 429 | "version": "0.7.1", 430 | "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.7.1.tgz", 431 | "integrity": "sha512-2Tth85cXwGFHfvRgZWszZSvdo+0Xsqmw8k8ZwxScfcBneNUraK+dxRxRm24nszx80Y0TVio8kKLt5sLE7ZCLlw==", 432 | "license": "MIT", 433 | "dependencies": { 434 | "safer-buffer": ">= 2.1.2 < 3.0.0" 435 | }, 436 | "engines": { 437 | "node": ">=0.10.0" 438 | }, 439 | "funding": { 440 | "type": "opencollective", 441 | "url": "https://opencollective.com/express" 442 | } 443 | }, 444 | "node_modules/inherits": { 445 | "version": "2.0.4", 446 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", 447 | "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", 448 | "license": "ISC" 449 | }, 450 | "node_modules/ipaddr.js": { 451 | "version": "1.9.1", 452 | "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", 453 | "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", 454 | "license": "MIT", 455 | "engines": { 456 | "node": ">= 0.10" 457 | } 458 | }, 459 | "node_modules/is-promise": { 460 | "version": "4.0.0", 461 | "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-4.0.0.tgz", 462 | "integrity": "sha512-hvpoI6korhJMnej285dSg6nu1+e6uxs7zG3BYAm5byqDsgJNWwxzM6z6iZiAgQR4TJ30JmBTOwqZUw3WlyH3AQ==", 463 | "license": "MIT" 464 | }, 465 | "node_modules/math-intrinsics": { 466 | "version": "1.1.0", 467 | "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz", 468 | "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==", 469 | "license": "MIT", 470 | "engines": { 471 | "node": ">= 0.4" 472 | } 473 | }, 474 | "node_modules/media-typer": { 475 | "version": "1.1.0", 476 | "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-1.1.0.tgz", 477 | "integrity": "sha512-aisnrDP4GNe06UcKFnV5bfMNPBUw4jsLGaWwWfnH3v02GnBuXX2MCVn5RbrWo0j3pczUilYblq7fQ7Nw2t5XKw==", 478 | "license": "MIT", 479 | "engines": { 480 | "node": ">= 0.8" 481 | } 482 | }, 483 | "node_modules/merge-descriptors": { 484 | "version": "2.0.0", 485 | "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-2.0.0.tgz", 486 | "integrity": "sha512-Snk314V5ayFLhp3fkUREub6WtjBfPdCPY1Ln8/8munuLuiYhsABgBVWsozAG+MWMbVEvcdcpbi9R7ww22l9Q3g==", 487 | "license": "MIT", 488 | "engines": { 489 | "node": ">=18" 490 | }, 491 | "funding": { 492 | "url": "https://github.com/sponsors/sindresorhus" 493 | } 494 | }, 495 | "node_modules/mime-db": { 496 | "version": "1.54.0", 497 | "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.54.0.tgz", 498 | "integrity": "sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ==", 499 | "license": "MIT", 500 | "engines": { 501 | "node": ">= 0.6" 502 | } 503 | }, 504 | "node_modules/mime-types": { 505 | "version": "3.0.2", 506 | "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-3.0.2.tgz", 507 | "integrity": "sha512-Lbgzdk0h4juoQ9fCKXW4by0UJqj+nOOrI9MJ1sSj4nI8aI2eo1qmvQEie4VD1glsS250n15LsWsYtCugiStS5A==", 508 | "license": "MIT", 509 | "dependencies": { 510 | "mime-db": "^1.54.0" 511 | }, 512 | "engines": { 513 | "node": ">=18" 514 | }, 515 | "funding": { 516 | "type": "opencollective", 517 | "url": "https://opencollective.com/express" 518 | } 519 | }, 520 | "node_modules/ms": { 521 | "version": "2.1.3", 522 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", 523 | "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", 524 | "license": "MIT" 525 | }, 526 | "node_modules/negotiator": { 527 | "version": "1.0.0", 528 | "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-1.0.0.tgz", 529 | "integrity": "sha512-8Ofs/AUQh8MaEcrlq5xOX0CQ9ypTF5dl78mjlMNfOK08fzpgTHQRQPBxcPlEtIw0yRpws+Zo/3r+5WRby7u3Gg==", 530 | "license": "MIT", 531 | "engines": { 532 | "node": ">= 0.6" 533 | } 534 | }, 535 | "node_modules/object-assign": { 536 | "version": "4.1.1", 537 | "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", 538 | "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", 539 | "license": "MIT", 540 | "engines": { 541 | "node": ">=0.10.0" 542 | } 543 | }, 544 | "node_modules/object-inspect": { 545 | "version": "1.13.4", 546 | "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz", 547 | "integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==", 548 | "license": "MIT", 549 | "engines": { 550 | "node": ">= 0.4" 551 | }, 552 | "funding": { 553 | "url": "https://github.com/sponsors/ljharb" 554 | } 555 | }, 556 | "node_modules/on-finished": { 557 | "version": "2.4.1", 558 | "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", 559 | "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", 560 | "license": "MIT", 561 | "dependencies": { 562 | "ee-first": "1.1.1" 563 | }, 564 | "engines": { 565 | "node": ">= 0.8" 566 | } 567 | }, 568 | "node_modules/once": { 569 | "version": "1.4.0", 570 | "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", 571 | "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", 572 | "license": "ISC", 573 | "dependencies": { 574 | "wrappy": "1" 575 | } 576 | }, 577 | "node_modules/parseurl": { 578 | "version": "1.3.3", 579 | "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", 580 | "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", 581 | "license": "MIT", 582 | "engines": { 583 | "node": ">= 0.8" 584 | } 585 | }, 586 | "node_modules/path-to-regexp": { 587 | "version": "8.3.0", 588 | "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-8.3.0.tgz", 589 | "integrity": "sha512-7jdwVIRtsP8MYpdXSwOS0YdD0Du+qOoF/AEPIt88PcCFrZCzx41oxku1jD88hZBwbNUIEfpqvuhjFaMAqMTWnA==", 590 | "license": "MIT", 591 | "funding": { 592 | "type": "opencollective", 593 | "url": "https://opencollective.com/express" 594 | } 595 | }, 596 | "node_modules/proxy-addr": { 597 | "version": "2.0.7", 598 | "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", 599 | "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", 600 | "license": "MIT", 601 | "dependencies": { 602 | "forwarded": "0.2.0", 603 | "ipaddr.js": "1.9.1" 604 | }, 605 | "engines": { 606 | "node": ">= 0.10" 607 | } 608 | }, 609 | "node_modules/qs": { 610 | "version": "6.14.0", 611 | "resolved": "https://registry.npmjs.org/qs/-/qs-6.14.0.tgz", 612 | "integrity": "sha512-YWWTjgABSKcvs/nWBi9PycY/JiPJqOD4JA6o9Sej2AtvSGarXxKC3OQSk4pAarbdQlKAh5D4FCQkJNkW+GAn3w==", 613 | "license": "BSD-3-Clause", 614 | "dependencies": { 615 | "side-channel": "^1.1.0" 616 | }, 617 | "engines": { 618 | "node": ">=0.6" 619 | }, 620 | "funding": { 621 | "url": "https://github.com/sponsors/ljharb" 622 | } 623 | }, 624 | "node_modules/range-parser": { 625 | "version": "1.2.1", 626 | "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", 627 | "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", 628 | "license": "MIT", 629 | "engines": { 630 | "node": ">= 0.6" 631 | } 632 | }, 633 | "node_modules/raw-body": { 634 | "version": "3.0.2", 635 | "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-3.0.2.tgz", 636 | "integrity": "sha512-K5zQjDllxWkf7Z5xJdV0/B0WTNqx6vxG70zJE4N0kBs4LovmEYWJzQGxC9bS9RAKu3bgM40lrd5zoLJ12MQ5BA==", 637 | "license": "MIT", 638 | "dependencies": { 639 | "bytes": "~3.1.2", 640 | "http-errors": "~2.0.1", 641 | "iconv-lite": "~0.7.0", 642 | "unpipe": "~1.0.0" 643 | }, 644 | "engines": { 645 | "node": ">= 0.10" 646 | } 647 | }, 648 | "node_modules/router": { 649 | "version": "2.2.0", 650 | "resolved": "https://registry.npmjs.org/router/-/router-2.2.0.tgz", 651 | "integrity": "sha512-nLTrUKm2UyiL7rlhapu/Zl45FwNgkZGaCpZbIHajDYgwlJCOzLSk+cIPAnsEqV955GjILJnKbdQC1nVPz+gAYQ==", 652 | "license": "MIT", 653 | "dependencies": { 654 | "debug": "^4.4.0", 655 | "depd": "^2.0.0", 656 | "is-promise": "^4.0.0", 657 | "parseurl": "^1.3.3", 658 | "path-to-regexp": "^8.0.0" 659 | }, 660 | "engines": { 661 | "node": ">= 18" 662 | } 663 | }, 664 | "node_modules/safer-buffer": { 665 | "version": "2.1.2", 666 | "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", 667 | "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", 668 | "license": "MIT" 669 | }, 670 | "node_modules/send": { 671 | "version": "1.2.1", 672 | "resolved": "https://registry.npmjs.org/send/-/send-1.2.1.tgz", 673 | "integrity": "sha512-1gnZf7DFcoIcajTjTwjwuDjzuz4PPcY2StKPlsGAQ1+YH20IRVrBaXSWmdjowTJ6u8Rc01PoYOGHXfP1mYcZNQ==", 674 | "license": "MIT", 675 | "dependencies": { 676 | "debug": "^4.4.3", 677 | "encodeurl": "^2.0.0", 678 | "escape-html": "^1.0.3", 679 | "etag": "^1.8.1", 680 | "fresh": "^2.0.0", 681 | "http-errors": "^2.0.1", 682 | "mime-types": "^3.0.2", 683 | "ms": "^2.1.3", 684 | "on-finished": "^2.4.1", 685 | "range-parser": "^1.2.1", 686 | "statuses": "^2.0.2" 687 | }, 688 | "engines": { 689 | "node": ">= 18" 690 | }, 691 | "funding": { 692 | "type": "opencollective", 693 | "url": "https://opencollective.com/express" 694 | } 695 | }, 696 | "node_modules/serve-static": { 697 | "version": "2.2.1", 698 | "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-2.2.1.tgz", 699 | "integrity": "sha512-xRXBn0pPqQTVQiC8wyQrKs2MOlX24zQ0POGaj0kultvoOCstBQM5yvOhAVSUwOMjQtTvsPWoNCHfPGwaaQJhTw==", 700 | "license": "MIT", 701 | "dependencies": { 702 | "encodeurl": "^2.0.0", 703 | "escape-html": "^1.0.3", 704 | "parseurl": "^1.3.3", 705 | "send": "^1.2.0" 706 | }, 707 | "engines": { 708 | "node": ">= 18" 709 | }, 710 | "funding": { 711 | "type": "opencollective", 712 | "url": "https://opencollective.com/express" 713 | } 714 | }, 715 | "node_modules/setprototypeof": { 716 | "version": "1.2.0", 717 | "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", 718 | "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", 719 | "license": "ISC" 720 | }, 721 | "node_modules/side-channel": { 722 | "version": "1.1.0", 723 | "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz", 724 | "integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==", 725 | "license": "MIT", 726 | "dependencies": { 727 | "es-errors": "^1.3.0", 728 | "object-inspect": "^1.13.3", 729 | "side-channel-list": "^1.0.0", 730 | "side-channel-map": "^1.0.1", 731 | "side-channel-weakmap": "^1.0.2" 732 | }, 733 | "engines": { 734 | "node": ">= 0.4" 735 | }, 736 | "funding": { 737 | "url": "https://github.com/sponsors/ljharb" 738 | } 739 | }, 740 | "node_modules/side-channel-list": { 741 | "version": "1.0.0", 742 | "resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.0.tgz", 743 | "integrity": "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==", 744 | "license": "MIT", 745 | "dependencies": { 746 | "es-errors": "^1.3.0", 747 | "object-inspect": "^1.13.3" 748 | }, 749 | "engines": { 750 | "node": ">= 0.4" 751 | }, 752 | "funding": { 753 | "url": "https://github.com/sponsors/ljharb" 754 | } 755 | }, 756 | "node_modules/side-channel-map": { 757 | "version": "1.0.1", 758 | "resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz", 759 | "integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==", 760 | "license": "MIT", 761 | "dependencies": { 762 | "call-bound": "^1.0.2", 763 | "es-errors": "^1.3.0", 764 | "get-intrinsic": "^1.2.5", 765 | "object-inspect": "^1.13.3" 766 | }, 767 | "engines": { 768 | "node": ">= 0.4" 769 | }, 770 | "funding": { 771 | "url": "https://github.com/sponsors/ljharb" 772 | } 773 | }, 774 | "node_modules/side-channel-weakmap": { 775 | "version": "1.0.2", 776 | "resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz", 777 | "integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==", 778 | "license": "MIT", 779 | "dependencies": { 780 | "call-bound": "^1.0.2", 781 | "es-errors": "^1.3.0", 782 | "get-intrinsic": "^1.2.5", 783 | "object-inspect": "^1.13.3", 784 | "side-channel-map": "^1.0.1" 785 | }, 786 | "engines": { 787 | "node": ">= 0.4" 788 | }, 789 | "funding": { 790 | "url": "https://github.com/sponsors/ljharb" 791 | } 792 | }, 793 | "node_modules/statuses": { 794 | "version": "2.0.2", 795 | "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.2.tgz", 796 | "integrity": "sha512-DvEy55V3DB7uknRo+4iOGT5fP1slR8wQohVdknigZPMpMstaKJQWhwiYBACJE3Ul2pTnATihhBYnRhZQHGBiRw==", 797 | "license": "MIT", 798 | "engines": { 799 | "node": ">= 0.8" 800 | } 801 | }, 802 | "node_modules/toidentifier": { 803 | "version": "1.0.1", 804 | "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", 805 | "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", 806 | "license": "MIT", 807 | "engines": { 808 | "node": ">=0.6" 809 | } 810 | }, 811 | "node_modules/type-is": { 812 | "version": "2.0.1", 813 | "resolved": "https://registry.npmjs.org/type-is/-/type-is-2.0.1.tgz", 814 | "integrity": "sha512-OZs6gsjF4vMp32qrCbiVSkrFmXtG/AZhY3t0iAMrMBiAZyV9oALtXO8hsrHbMXF9x6L3grlFuwW2oAz7cav+Gw==", 815 | "license": "MIT", 816 | "dependencies": { 817 | "content-type": "^1.0.5", 818 | "media-typer": "^1.1.0", 819 | "mime-types": "^3.0.0" 820 | }, 821 | "engines": { 822 | "node": ">= 0.6" 823 | } 824 | }, 825 | "node_modules/unpipe": { 826 | "version": "1.0.0", 827 | "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", 828 | "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", 829 | "license": "MIT", 830 | "engines": { 831 | "node": ">= 0.8" 832 | } 833 | }, 834 | "node_modules/vary": { 835 | "version": "1.1.2", 836 | "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", 837 | "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", 838 | "license": "MIT", 839 | "engines": { 840 | "node": ">= 0.8" 841 | } 842 | }, 843 | "node_modules/wrappy": { 844 | "version": "1.0.2", 845 | "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", 846 | "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", 847 | "license": "ISC" 848 | } 849 | } 850 | } 851 | --------------------------------------------------------------------------------