├── weather-app-backend ├── public │ ├── scripts │ │ └── main.js │ ├── images │ │ ├── sun.gif │ │ ├── banner2.jpg │ │ ├── sunicon.png │ │ ├── bannernew.jpg │ │ └── website_banner.png │ ├── styles.css │ └── privacy-policy.html ├── .gitignore ├── ads.txt ├── website_banner.png ├── replit.nix ├── .env.example ├── routes │ ├── dramaticWeatherRoutes.js │ ├── locationRoutes.js │ └── weatherRoutes.js ├── controllers │ ├── geocodingController.js │ ├── locationController.js │ ├── weatherController.js │ └── dramaticWeatherController.js ├── package.json ├── replit_zip_error_log.txt ├── services │ ├── openaiService.js │ └── weatherService.js ├── exportSubscribers.js ├── location_submissions.csv ├── exportLocationSubmissionsToCSV.js ├── subscribers.csv ├── server.js ├── views │ └── index.ejs └── package-lock.json ├── .eslintrc.json ├── app ├── favicon.ico ├── (routes) │ ├── components │ │ ├── location.tsx │ │ ├── individual-condition.tsx │ │ ├── value-condition.tsx │ │ ├── forecast-hours.tsx │ │ ├── day-forecast.tsx │ │ ├── underlinetabs.tsx │ │ ├── hourly-forecast.tsx │ │ ├── forecast-day.tsx │ │ ├── condition.tsx │ │ ├── search-panel.tsx │ │ ├── info-overview.tsx │ │ └── summary.tsx │ ├── layout.tsx │ └── page.tsx ├── (location) │ ├── layout.tsx │ └── (routes) │ │ └── location │ │ └── page.tsx ├── globals.css └── layout.tsx ├── .env.example ├── public ├── images │ ├── day.gif │ ├── pin.png │ ├── night.gif │ └── sun.svg ├── vercel.svg └── next.svg ├── next.config.js ├── postcss.config.js ├── components ├── ui │ └── container.tsx ├── analytics.js ├── googleTagManager.js ├── twitter-pixel.js └── splash-screen.tsx ├── .gitignore ├── tsconfig.json ├── tailwind.config.ts ├── package.json ├── README.md └── types.ts /weather-app-backend/public/scripts/main.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /weather-app-backend/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | 3 | .env -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git0802/weather-app/HEAD/app/favicon.ico -------------------------------------------------------------------------------- /weather-app-backend/ads.txt: -------------------------------------------------------------------------------- 1 | google.com, pub-7051464837195925, DIRECT, f08c47fec0942fa0 -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- 1 | NEXT_PUBLIC_API_KEY = 'Your API key' 2 | 3 | NEXT_PUBLIC_BASE_URL = 'Backend URL' -------------------------------------------------------------------------------- /public/images/day.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git0802/weather-app/HEAD/public/images/day.gif -------------------------------------------------------------------------------- /public/images/pin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git0802/weather-app/HEAD/public/images/pin.png -------------------------------------------------------------------------------- /public/images/night.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git0802/weather-app/HEAD/public/images/night.gif -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- 1 | /** @type {import('next').NextConfig} */ 2 | const nextConfig = {} 3 | 4 | module.exports = nextConfig 5 | -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | plugins: { 3 | tailwindcss: {}, 4 | autoprefixer: {}, 5 | }, 6 | } 7 | -------------------------------------------------------------------------------- /weather-app-backend/website_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git0802/weather-app/HEAD/weather-app-backend/website_banner.png -------------------------------------------------------------------------------- /weather-app-backend/public/images/sun.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git0802/weather-app/HEAD/weather-app-backend/public/images/sun.gif -------------------------------------------------------------------------------- /weather-app-backend/replit.nix: -------------------------------------------------------------------------------- 1 | { pkgs }: { 2 | deps = [ 3 | pkgs.postgresql 4 | pkgs.nodePackages.prettier 5 | ]; 6 | } 7 | -------------------------------------------------------------------------------- /weather-app-backend/public/images/banner2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git0802/weather-app/HEAD/weather-app-backend/public/images/banner2.jpg -------------------------------------------------------------------------------- /weather-app-backend/public/images/sunicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git0802/weather-app/HEAD/weather-app-backend/public/images/sunicon.png -------------------------------------------------------------------------------- /weather-app-backend/public/images/bannernew.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git0802/weather-app/HEAD/weather-app-backend/public/images/bannernew.jpg -------------------------------------------------------------------------------- /weather-app-backend/public/images/website_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git0802/weather-app/HEAD/weather-app-backend/public/images/website_banner.png -------------------------------------------------------------------------------- /app/(routes)/components/location.tsx: -------------------------------------------------------------------------------- 1 | "use client"; 2 | const Location = () => { 3 | return
Please turn on your location. Thank you!!!
; 4 | }; 5 | 6 | export default Location; 7 | -------------------------------------------------------------------------------- /app/(location)/layout.tsx: -------------------------------------------------------------------------------- 1 | export default function locationLayout({ 2 | children, 3 | }: { 4 | children: React.ReactNode; 5 | }) { 6 | return ( 7 |
{children}
8 | ); 9 | } 10 | -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- 1 | @tailwind base; 2 | @tailwind components; 3 | @tailwind utilities; 4 | 5 | html, 6 | body, 7 | :root{ 8 | height: 100%; 9 | } 10 | 11 | .bg-white { 12 | background-color: white; 13 | } 14 | 15 | .bg-black { 16 | background-color: #0B131E; 17 | } -------------------------------------------------------------------------------- /components/ui/container.tsx: -------------------------------------------------------------------------------- 1 | interface ContainerProps { 2 | children: React.ReactNode; 3 | } 4 | 5 | const Container: React.FC = ({ children }) => { 6 | return
{children}
; 7 | }; 8 | 9 | export default Container; 10 | -------------------------------------------------------------------------------- /weather-app-backend/.env.example: -------------------------------------------------------------------------------- 1 | OPENAI_API_KEY = 'Your API key' 2 | 3 | OPENWEATHER_API_KEY = 'Your API key' 4 | DATABASE_URL = 'Postgres Database URL' 5 | PGDATABASE = 'Postgres Database' 6 | PGHOST = 'Postgres Host' 7 | PGPORT = 'Postgres Port' 8 | PGUSER = 'Postgres User' 9 | PGPASSWORD = 't9vp3aLAlkse' 10 | WALKSCORE_API_KEY = ''Your API key'' -------------------------------------------------------------------------------- /weather-app-backend/routes/dramaticWeatherRoutes.js: -------------------------------------------------------------------------------- 1 | // dramaticWeatherRoutes.js 2 | const express = require("express"); 3 | const router = express.Router(); 4 | const { 5 | generateDramaticSummary, 6 | } = require("../controllers/dramaticWeatherController"); 7 | 8 | router.post("/generateSummary", generateDramaticSummary); 9 | 10 | module.exports = router; 11 | -------------------------------------------------------------------------------- /weather-app-backend/routes/locationRoutes.js: -------------------------------------------------------------------------------- 1 | //locationRouts.js 2 | const express = require("express"); 3 | const router = express.Router(); 4 | const locationController = require("../controllers/locationController"); 5 | 6 | router.post( 7 | "/getLocationCoordinates", 8 | locationController.getLocationCoordinates 9 | ); 10 | 11 | module.exports = router; 12 | -------------------------------------------------------------------------------- /components/analytics.js: -------------------------------------------------------------------------------- 1 | import ReactGA from 'react-ga'; 2 | 3 | 4 | export const initGA = () => { 5 | ReactGA.initialize(process.env.NEXT_PUBLIC_GOOGLE_ANALYTICS); // Replace with your tracking ID 6 | }; 7 | 8 | export const logPageView = () => { 9 | ReactGA.set({ page: window.location.pathname }); 10 | ReactGA.pageview(window.location.pathname); 11 | }; -------------------------------------------------------------------------------- /weather-app-backend/routes/weatherRoutes.js: -------------------------------------------------------------------------------- 1 | //weatherRoutes.js 2 | const express = require("express"); 3 | const router = express.Router(); 4 | const { getWeatherData } = require("../controllers/weatherController"); 5 | 6 | // Define the route to get weather data by coordinates 7 | // The client should make a POST request to this route after retrieving coordinates 8 | router.post("/getWeatherData", getWeatherData); 9 | 10 | module.exports = router; 11 | -------------------------------------------------------------------------------- /components/googleTagManager.js: -------------------------------------------------------------------------------- 1 | export const initializeGoogleTagManager = (id) => { 2 | (function (w, d, s, l, i) { 3 | w[l] = w[l] || []; 4 | w[l].push({ "gtm.start": new Date().getTime(), event: "gtm.js" }); 5 | var f = d.getElementsByTagName(s)[0], 6 | j = d.createElement(s), 7 | dl = l != "dataLayer" ? "&l=" + l : ""; 8 | j.async = true; 9 | j.src = "https://www.googletagmanager.com/gtm.js?id=" + i + dl; 10 | f.parentNode.insertBefore(j, f); 11 | })(window, document, "script", "dataLayer", id); 12 | }; 13 | -------------------------------------------------------------------------------- /.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 | .yarn/install-state.gz 8 | 9 | # testing 10 | /coverage 11 | 12 | # next.js 13 | /.next/ 14 | /out/ 15 | 16 | # production 17 | /build 18 | 19 | # misc 20 | .DS_Store 21 | *.pem 22 | 23 | # debug 24 | npm-debug.log* 25 | yarn-debug.log* 26 | yarn-error.log* 27 | 28 | # local env files 29 | .env*.local 30 | .env 31 | 32 | # vercel 33 | .vercel 34 | 35 | # typescript 36 | *.tsbuildinfo 37 | next-env.d.ts 38 | -------------------------------------------------------------------------------- /components/twitter-pixel.js: -------------------------------------------------------------------------------- 1 | !(function (e, t, n, s, u, a) { 2 | e.twq || 3 | ((s = e.twq = 4 | function () { 5 | s.exe ? s.exe.apply(s, arguments) : s.queue.push(arguments); 6 | }), 7 | (s.version = "1.1"), 8 | (s.queue = []), 9 | (u = t.createElement(n)), 10 | (u.async = !0), 11 | (u.src = "//static.ads-twitter.com/uwt.js"), 12 | (a = t.getElementsByTagName(n)[0]), 13 | a.parentNode.insertBefore(u, a)); 14 | })(window, document, "script"); 15 | // Insert your pixel ID below 16 | twq("init", "ohg64"); 17 | twq("track", "PageView"); 18 | -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /weather-app-backend/controllers/geocodingController.js: -------------------------------------------------------------------------------- 1 | //geocodingController.js 2 | const axios = require("axios"); 3 | 4 | const geocode = async (lat, lon) => { 5 | try { 6 | const response = await axios.get( 7 | `https://nominatim.openstreetmap.org/reverse`, 8 | { 9 | params: { 10 | lat: lat, 11 | lon: lon, 12 | format: "json", 13 | }, 14 | } 15 | ); 16 | return response.data.display_name; // This will be the full address 17 | } catch (error) { 18 | console.error("Error during reverse geocoding:", error); 19 | return null; 20 | } 21 | }; 22 | 23 | module.exports = { geocode }; 24 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "es5", 4 | "lib": ["dom", "dom.iterable", "esnext"], 5 | "allowJs": true, 6 | "skipLibCheck": true, 7 | "strict": true, 8 | "noEmit": true, 9 | "esModuleInterop": true, 10 | "module": "esnext", 11 | "moduleResolution": "bundler", 12 | "resolveJsonModule": true, 13 | "isolatedModules": true, 14 | "jsx": "preserve", 15 | "incremental": true, 16 | "plugins": [ 17 | { 18 | "name": "next" 19 | } 20 | ], 21 | "paths": { 22 | "@/*": ["./*"] 23 | } 24 | }, 25 | "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"], 26 | "exclude": ["node_modules"] 27 | } 28 | -------------------------------------------------------------------------------- /weather-app-backend/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "nodejs", 3 | "version": "1.0.0", 4 | "description": "", 5 | "main": "server.js", 6 | "scripts": { 7 | "start": "node server.js", 8 | "dev": "nodemon server.js", 9 | "test": "echo \"Error: no test specified\" && exit 1" 10 | }, 11 | "keywords": [], 12 | "author": "", 13 | "license": "ISC", 14 | "dependencies": { 15 | "@replit/database": "^2.0.5", 16 | "@types/node": "^18.0.6", 17 | "axios": "^1.6.2", 18 | "body-parser": "^1.20.2", 19 | "cors": "^2.8.5", 20 | "database": "^0.0.2", 21 | "dotenv": "^16.3.1", 22 | "ejs": "^3.1.9", 23 | "express": "^4.18.2", 24 | "node-fetch": "^3.2.6", 25 | "nodemon": "^3.0.1", 26 | "openai": "^4.17.4" 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /weather-app-backend/replit_zip_error_log.txt: -------------------------------------------------------------------------------- 1 | {"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file .cache/replit/modules/nodejs-20:v10-20231103-2b03dda","time":"2023-11-23T01:27:24Z"} 2 | {"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file node_modules/.bin/ejs","time":"2023-11-23T01:27:24Z"} 3 | {"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file node_modules/.bin/jake","time":"2023-11-23T01:27:24Z"} 4 | {"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file node_modules/.bin/mime","time":"2023-11-23T01:27:24Z"} 5 | {"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file node_modules/.bin/openai","time":"2023-11-23T01:27:24Z"} 6 | -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- 1 | import type { Config } from 'tailwindcss' 2 | const withMT = require("@material-tailwind/react/utils/withMT"); 3 | 4 | const config: Config = withMT({ 5 | content: [ 6 | './pages/**/*.{js,ts,jsx,tsx,mdx}', 7 | './components/**/*.{js,ts,jsx,tsx,mdx}', 8 | './app/**/*.{js,ts,jsx,tsx,mdx}', 9 | ], 10 | theme: { 11 | extend: { 12 | backgroundImage: { 13 | 'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))', 14 | 'gradient-conic': 15 | 'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))', 16 | }, 17 | keyframes: { 18 | fadeIn:{ 19 | '0%':{ 20 | opacity: '0' 21 | }, 22 | '100%':{ 23 | opacity: '1' 24 | } 25 | } 26 | }, 27 | animation:{ 28 | fadeIn: 'fadeIn 1s ease-in-out forwards' 29 | } 30 | }, 31 | }, 32 | plugins: [], 33 | }) 34 | export default config 35 | -------------------------------------------------------------------------------- /app/(routes)/components/individual-condition.tsx: -------------------------------------------------------------------------------- 1 | import { formattedCurrentData } from "@/types"; 2 | import ValueCondition from "./value-condition"; 3 | 4 | interface IndividualConditionProps { 5 | value: { key: string; value: string | number }[]; 6 | } 7 | 8 | const IndividualCondition: React.FC = ({ value }) => { 9 | const am = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12]; 10 | const currentStatus = Number(new Date().getHours().toFixed()); 11 | 12 | return ( 13 |
14 |

18 | Current Conditions 19 |

20 |
21 | {value?.map((item, index) => ( 22 | 23 | ))} 24 |
25 |
26 | ); 27 | }; 28 | 29 | export default IndividualCondition; 30 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "weather-app", 3 | "version": "0.1.0", 4 | "private": true, 5 | "scripts": { 6 | "dev": "next dev", 7 | "build": "next build", 8 | "start": "next start", 9 | "lint": "next lint" 10 | }, 11 | "dependencies": { 12 | "@ctrl/react-adsense": "^1.7.0", 13 | "@heroicons/react": "^2.0.18", 14 | "@material-tailwind/react": "^2.1.4", 15 | "axios": "^1.6.0", 16 | "date-fns": "^2.30.0", 17 | "heroicons-react": "^1.4.1", 18 | "lucide-react": "^0.292.0", 19 | "next": "14.0.1", 20 | "nodemon": "^3.0.1", 21 | "react": "^18", 22 | "react-dom": "^18", 23 | "react-ga": "^3.3.1", 24 | "react-top-loading-bar": "^2.3.1" 25 | }, 26 | "devDependencies": { 27 | "@types/node": "^20", 28 | "@types/react": "^18", 29 | "@types/react-dom": "^18", 30 | "autoprefixer": "^10.0.1", 31 | "eslint": "^8", 32 | "eslint-config-next": "14.0.1", 33 | "postcss": "^8", 34 | "tailwindcss": "^3.3.0", 35 | "typescript": "^5" 36 | } 37 | } 38 | -------------------------------------------------------------------------------- /app/(routes)/components/value-condition.tsx: -------------------------------------------------------------------------------- 1 | import { formattedCurrentData } from "@/types"; 2 | 3 | interface ValueConditionProps { 4 | value: { key: string; value: string | number }; 5 | } 6 | 7 | const ValueCondition: React.FC = ({ value }) => { 8 | const am = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12]; 9 | const currentStatus = Number(new Date().getHours().toFixed()); 10 | 11 | return ( 12 |
16 |

20 | {value.key} 21 |

22 |

26 | {value.value} 27 |

28 |
29 | ); 30 | }; 31 | 32 | export default ValueCondition; 33 | -------------------------------------------------------------------------------- /weather-app-backend/controllers/locationController.js: -------------------------------------------------------------------------------- 1 | const openaiService = require("../services/openaiService"); 2 | 3 | const getLocationCoordinates = async (req, res) => { 4 | try { 5 | const locationInput = req.body.location; 6 | if (typeof locationInput !== "string" || locationInput.trim() === "") { 7 | return res.status(400).json({ error: "Invalid location input." }); 8 | } 9 | 10 | // Modify this line to use the correct function from openaiService 11 | const coordinates = await openaiService.getCoordinates(locationInput); 12 | 13 | // Only send a response once, either success or error 14 | if (coordinates && coordinates.latitude && coordinates.longitude) { 15 | res.json(coordinates); 16 | } else { 17 | res 18 | .status(500) 19 | .json({ error: "No valid coordinates returned from OpenAI." }); 20 | } 21 | } catch (error) { 22 | console.error("Error:", error); 23 | res.status(500).json({ error: "An error occurred" }); 24 | } 25 | }; 26 | 27 | module.exports = { 28 | getLocationCoordinates, 29 | }; 30 | -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- 1 | import type { Metadata } from "next"; 2 | import { Inter } from "next/font/google"; 3 | import "./globals.css"; 4 | import Script from "next/script"; 5 | import Head from "next/head"; 6 | 7 | const inter = Inter({ subsets: ["latin"] }); 8 | 9 | export const metadata: Metadata = { 10 | title: "Weather App", 11 | description: "Get instant weather updates and forecasts for any location.", 12 | }; 13 | 14 | export default function RootLayout({ 15 | children, 16 | }: { 17 | children: React.ReactNode; 18 | }) { 19 | const am = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12]; 20 | const currentStatus = Number(new Date().getHours().toFixed()); 21 | 22 | return ( 23 | = 0 && currentStatus <= 12 ? "black" : "black" 26 | }`} 27 | > 28 | 33 | 15 | 16 | 17 | 21 | 30 | 31 |

Privacy Policy for Weather Talk LLC

32 | 33 |

34 | At Weather Talk, accessible from weathertalk.ai, one of our main 35 | priorities is the privacy of our visitors. This Privacy Policy document 36 | contains types of information that is collected and recorded by Weather 37 | Talk and how we use it. 38 |

39 | 40 |

41 | 42 | Now here's the thing: we literally have no idea who you are and where 43 | you live or which location you searched. Nothin is stored on our 44 | servers; we have no database and don't collect or retain any 45 | information. When you search a location, it doesn't store that; again, 46 | we have no idea. We have no idea who you are. There is no personal 47 | infomation we collect. Have fun and don't worry about any location you 48 | search for: it's just for fun! 49 | 50 |

51 | 52 |

53 | If you have additional questions or require more information about our 54 | Privacy Policy, do not hesitate to contact us. 55 |

56 | 57 |

58 | This Privacy Policy applies only to our online activities and is valid for 59 | visitors to our website with regards to the information that they shared 60 | and/or collect in Weather Talk. This policy is not applicable to any 61 | information collected offline or via channels other than this website. 62 |

63 | 64 |

Consent

65 | 66 |

67 | By using our website, you hereby consent to our Privacy Policy and agree 68 | to its terms. 69 |

70 | 71 |

Information we collect

72 | 73 |

74 | We collect no personal information. You can search a location and see fun 75 | things about the weather, but we have no idea who you are! 76 |

77 | 78 |

79 | The personal information that you are asked to provide, and the reasons 80 | why you are asked to provide it, will be made clear to you at the point we 81 | ask you to provide your personal information. 82 |

83 |

84 | If you contact us directly, we may receive additional information about 85 | you such as your name, email address, phone number, the contents of the 86 | message and/or attachments you may send us, and any other information you 87 | may choose to provide. 88 |

89 | 90 |

How we use your information

91 | 92 |

We use the information we collect in various ways, including to:

93 | 94 |
    95 | Communicate with you, either directly or through one of our partners, 96 | including for customer service, to provide you with updates and other 97 | information relating to the website, and for marketing and promotional 98 | purposes 99 |
  • Send you emails
  • 100 |
101 | 102 |

Log Files

103 | 104 |

105 | Weather Talk follows a standard procedure of using log files. These files 106 | log visitors when they visit websites. All hosting companies do this and a 107 | part of hosting services' analytics. The information collected by log 108 | files include internet protocol (IP) addresses, browser type, Internet 109 | Service Provider (ISP), date and time stamp, referring/exit pages, and 110 | possibly the number of clicks. These are not linked to any information 111 | that is personally identifiable. The purpose of the information is for 112 | analyzing trends, administering the site, tracking users' movement on the 113 | website, and gathering demographic information. 114 |

115 | 116 |

Advertising Partners Privacy Policies

117 | 118 |

We do not collect your infomation for advertising purposes.

119 | 120 |

121 | Third-party ad servers or ad networks uses technologies like cookies, 122 | JavaScript, or Web Beacons that are used in their respective 123 | advertisements and links that appear on Weather Talk, which are sent 124 | directly to users' browser. They automatically receive your IP address 125 | when this occurs. These technologies are used to measure the effectiveness 126 | of their advertising campaigns and/or to personalize the advertising 127 | content that you see on websites that you visit. 128 |

129 | 130 |

Third Party Privacy Policies

131 | 132 |

133 | Weather Talk's Privacy Policy does not apply to other advertisers or 134 | websites. Thus, we are advising you to consult the respective Privacy 135 | Policies of these third-party ad servers for more detailed information. It 136 | may include their practices and instructions about how to opt-out of 137 | certain options. 138 |

139 | 140 |

141 | You can choose to disable cookies through your individual browser options. 142 | To know more detailed information about cookie management with specific 143 | web browsers, it can be found at the browsers' respective websites. 144 |

145 | 146 |

CCPA Privacy Rights (Do Not Sell My Personal Information)

147 | 148 |

149 | Under the CCPA, among other rights, California consumers have the right 150 | to: 151 |

152 |

153 | Request that a business that collects a consumer's personal data disclose 154 | the categories and specific pieces of personal data that a business has 155 | collected about consumers. 156 |

157 |

158 | Request that a business delete any personal data about the consumer that a 159 | business has collected. 160 |

161 |

162 | Request that a business that sells a consumer's personal data, not sell 163 | the consumer's personal data. 164 |

165 |

166 | If you make a request, we have one month to respond to you. If you would 167 | like to exercise any of these rights, please contact us. 168 |

169 | 170 |

GDPR Data Protection Rights

171 | 172 |

173 | We would like to make sure you are fully aware of all of your data 174 | protection rights. Every user is entitled to the following: 175 |

176 |

177 | The right to access – You have the right to request copies of your 178 | personal data. We may charge you a small fee for this service. 179 |

180 |

181 | We will then tell you.... we have zero personal information on you unless 182 | you subscribe to us - then we will have your name and email -- that's it! 183 | We do not store location information and even if we did, we have no idea 184 | who searched for that location. 185 |

186 |

187 | The right to rectification – You have the right to request that we correct 188 | any information you believe is inaccurate. You also have the right to 189 | request that we complete the information you believe is incomplete. 190 |

191 |

192 | The right to erasure – You have the right to request that we erase your 193 | personal data, under certain conditions. 194 |

195 |

196 | The right to restrict processing – You have the right to request that we 197 | restrict the processing of your personal data, under certain conditions. 198 |

199 |

200 | The right to object to processing – You have the right to object to our 201 | processing of your personal data, under certain conditions. 202 |

203 |

204 | The right to data portability – You have the right to request that we 205 | transfer the data that we have collected to another organization, or 206 | directly to you, under certain conditions. 207 |

208 |

209 | If you make a request, we have one month to respond to you. If you would 210 | like to exercise any of these rights, please contact us. 211 |

212 | 213 |

Children's Information

214 | 215 |

216 | Another part of our priority is adding protection for children while using 217 | the internet. We encourage parents and guardians to observe, participate 218 | in, and/or monitor and guide their online activity. 219 |

220 | 221 |

222 | Weather Talk does not knowingly collect any Personal Identifiable 223 | Information from children under the age of 13. If you think that your 224 | child provided this kind of information on our website, we strongly 225 | encourage you to contact us immediately and we will do our best efforts to 226 | promptly remove such information from our records. 227 |

228 | 229 |

Changes to This Privacy Policy

230 | 231 |

232 | We may update our Privacy Policy from time to time. Thus, we advise you to 233 | review this page periodically for any changes. We will notify you of any 234 | changes by posting the new Privacy Policy on this page. These changes are 235 | effective immediately, after they are posted on this page. 236 |

237 | 238 |

Contact Us

239 | 240 |

241 | If you have any questions or suggestions about our Privacy Policy, do not 242 | hesitate to contact us. 243 |

244 | 245 | 249 | 250 | 251 | -------------------------------------------------------------------------------- /app/(routes)/components/summary.tsx: -------------------------------------------------------------------------------- 1 | "use client"; 2 | 3 | import { WeatherData } from "@/types"; 4 | import React, { useState, useEffect } from "react"; 5 | import { 6 | Button, 7 | Spinner, 8 | Checkbox, 9 | ListItemPrefix, 10 | Typography, 11 | Alert, 12 | } from "@material-tailwind/react"; 13 | import { Exclamation, XCircleOutline } from "heroicons-react"; 14 | import Image from "next/image"; 15 | import axios from "axios"; 16 | import { Progress } from "@material-tailwind/react"; 17 | import ReactGA from 'react-ga'; 18 | 19 | interface SummaryProps { 20 | data: WeatherData | null; 21 | } 22 | 23 | const Summary: React.FC = ({ data }) => { 24 | const [picture, setPicture] = useState(false); 25 | const [audio, setAudio] = useState(false); 26 | 27 | const [summaryData, setSummaryData] = useState(""); 28 | const [summaryImage, setSummaryImage] = useState(""); 29 | const [summaryAudio, setSummaryAudio] = useState(""); 30 | 31 | const [dailyForecasts, setDailyForecasts] = useState({}); 32 | 33 | const address = data?.location.name; 34 | // const dailyForecasts = data?.forecast.forecastday; 35 | const lat = data?.location.lat; 36 | const lon = data?.location.lon; 37 | 38 | const [loadingStatus, setLoadingStatus] = useState(false); 39 | const [loadingProgress, setLoadingProgress] = useState(0); 40 | 41 | const [statusError, setStatusError] = useState(false); 42 | const [buttonType, setButtonType] = useState(""); 43 | 44 | async function fetchData() { 45 | try { 46 | if (lat && lon) { 47 | const weatherResponse = await axios.post( 48 | `${process.env.NEXT_PUBLIC_BASE_URL}/getWeatherData`, 49 | { 50 | latitude: lat, 51 | longitude: lon, 52 | } 53 | ); 54 | setDailyForecasts(weatherResponse.data.dailyForecasts); 55 | } 56 | } catch (error) { 57 | console.log("Error Fetching Summary Data: ", error); 58 | } 59 | } 60 | 61 | useEffect(() => { 62 | fetchData(); 63 | }, [data]); 64 | 65 | const generateSummary = (summaryType: any) => { 66 | setButtonType(summaryType); 67 | 68 | ReactGA.event({ 69 | category: 'User Interaction', 70 | action: 'Clicked Button', 71 | label: `${summaryType}`, 72 | }); 73 | 74 | async function getSummaryData() { 75 | setSummaryData(""); 76 | setSummaryImage(""); 77 | setSummaryAudio(""); 78 | setLoadingProgress(0); 79 | setStatusError(false); 80 | 81 | const interval = setInterval(() => { 82 | setLoadingProgress((oldProgress) => { 83 | if (oldProgress >= 75) { 84 | // Changed to 75 for better progress distribution 85 | clearInterval(interval); 86 | return oldProgress; 87 | } 88 | const newProgress = oldProgress + 1; 89 | return newProgress; 90 | }); 91 | }, 500); 92 | 93 | try { 94 | 95 | if (dailyForecasts) { 96 | setLoadingStatus(true); 97 | const res = await axios.post( 98 | `${process.env.NEXT_PUBLIC_BASE_URL}/generateSummary`, 99 | { 100 | dailyForecasts, 101 | lat, 102 | lon, 103 | address, 104 | picture, 105 | audio, 106 | summaryType, 107 | } 108 | ); 109 | clearInterval(interval); 110 | 111 | const interval2 = setInterval(() => { 112 | setLoadingProgress((oldProgress) => { 113 | if (oldProgress >= 100) { 114 | clearInterval(interval2); 115 | return oldProgress; 116 | } 117 | const newProgress = oldProgress + 1; 118 | return newProgress; 119 | }); 120 | }, 125); 121 | 122 | setTimeout(() => { 123 | clearInterval(interval2); 124 | setLoadingProgress(100); 125 | setLoadingStatus(false); 126 | setSummaryData(res.data.summary); 127 | setSummaryImage(res.data.imageUrl); 128 | setSummaryAudio(res.data.audioBase64); 129 | }, 10000); 130 | } 131 | } catch (error) { 132 | clearInterval(interval); 133 | setLoadingStatus(false); 134 | setStatusError(true); 135 | console.log("Error Fetching Summary Data: ", error); 136 | } 137 | } 138 | 139 | getSummaryData(); 140 | }; 141 | 142 | useEffect(() => { 143 | setSummaryData(""); 144 | setSummaryImage(""); 145 | setSummaryAudio(""); 146 | }, [dailyForecasts]); 147 | 148 | return ( 149 |
150 |

151 | Weather Summary 152 |

153 |
154 |
155 |
156 | 171 | 186 |
187 |
188 |
189 | 212 | 235 |
236 |
237 |
238 | Click either Creative or{" "} 239 | Professional to generate a 240 | weather summary 241 |
242 |
243 |
244 |
245 | {summaryData ? ( 246 |
247 | {summaryData} 248 |
249 | ) : ( 250 |
251 | sun 257 | {statusError ? ( 258 |
259 | } 261 | color="red" 262 | onClose={() => setStatusError(false)} 263 | > 264 | Server Errors 265 | 266 |
267 | ) : ( 268 |
269 | 270 |
271 | )} 272 |
273 | )} 274 |
275 | {summaryImage && ( 276 |
277 | sun 278 |
279 | )} 280 | {summaryAudio && ( 281 |
282 | 292 |
293 | )} 294 |
295 |
296 |
297 | ); 298 | }; 299 | 300 | export default Summary; 301 | -------------------------------------------------------------------------------- /public/images/sun.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /weather-app-backend/views/index.ejs: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | A Weather Story 6 | 7 | 8 | 9 | 10 | 25 | 26 | 27 | 36 | 37 | 38 | 39 | 45 | 46 | 47 | 48 | 51 | 52 | 53 | 55 | 56 | 57 | 66 | 67 | 68 | 69 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 87 | 88 | 89 | Weather Banner 90 |
91 |

Fun With Weather

92 |

Responses generated by AI

93 | 94 |

Enter any location below

95 | 96 |

97 | When entering a location, we will only fetch information on that location. We know nothing about you -- not 98 | even your location. When you click "submit" it will load the weather data in a chosen location and provide a 99 | response. 100 |

101 | 102 |
103 |
104 | 105 |
106 | 107 | 108 | 109 | 110 |
111 |

Please select the type of summary you'd like to see:

112 |
113 |
114 | 116 | 118 |
119 |
120 | 123 | 124 | 127 | 128 |
129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 158 |
159 | 160 | 161 | 162 |
163 | I'd love to share my code and how I did this, which I will put soon on my YouTube page I just 165 | created. If you want to know how this was made, please email me (contact info below) and I can share 166 | code or walk through it with you! 167 |
168 | 169 | 174 | 175 | 176 |
177 | 180 |
181 | 182 | 184 | 185 | 187 | 190 | 191 | 192 | 343 | 344 | 357 | 358 | 359 | -------------------------------------------------------------------------------- /weather-app-backend/package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "nodejs", 3 | "version": "1.0.0", 4 | "lockfileVersion": 3, 5 | "requires": true, 6 | "packages": { 7 | "": { 8 | "name": "nodejs", 9 | "version": "1.0.0", 10 | "license": "ISC", 11 | "dependencies": { 12 | "@replit/database": "^2.0.5", 13 | "@types/node": "^18.0.6", 14 | "axios": "^1.6.2", 15 | "body-parser": "^1.20.2", 16 | "cors": "^2.8.5", 17 | "database": "^0.0.2", 18 | "dotenv": "^16.3.1", 19 | "ejs": "^3.1.9", 20 | "express": "^4.18.2", 21 | "node-fetch": "^3.2.6", 22 | "nodemon": "^3.0.1", 23 | "openai": "^4.17.4" 24 | } 25 | }, 26 | "node_modules/@replit/database": { 27 | "version": "2.0.5", 28 | "resolved": "https://registry.npmjs.org/@replit/database/-/database-2.0.5.tgz", 29 | "integrity": "sha512-cWQptR7n2mzzsB7VbMVNYeKFng+n9SLQFgraEPXbWzFhnWOX33SgiwCqheiXsUmDllhb71UQhXsz21wzaVgZpA==", 30 | "dependencies": { 31 | "node-fetch": "^2.6.0" 32 | } 33 | }, 34 | "node_modules/@replit/database/node_modules/node-fetch": { 35 | "version": "2.7.0", 36 | "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", 37 | "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", 38 | "dependencies": { 39 | "whatwg-url": "^5.0.0" 40 | }, 41 | "engines": { 42 | "node": "4.x || >=6.0.0" 43 | }, 44 | "peerDependencies": { 45 | "encoding": "^0.1.0" 46 | }, 47 | "peerDependenciesMeta": { 48 | "encoding": { 49 | "optional": true 50 | } 51 | } 52 | }, 53 | "node_modules/@types/node": { 54 | "version": "18.18.9", 55 | "resolved": "https://registry.npmjs.org/@types/node/-/node-18.18.9.tgz", 56 | "integrity": "sha512-0f5klcuImLnG4Qreu9hPj/rEfFq6YRc5n2mAjSsH+ec/mJL+3voBH0+8T7o8RpFjH7ovc+TRsL/c7OYIQsPTfQ==", 57 | "dependencies": { 58 | "undici-types": "~5.26.4" 59 | } 60 | }, 61 | "node_modules/@types/node-fetch": { 62 | "version": "2.6.9", 63 | "resolved": "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.6.9.tgz", 64 | "integrity": "sha512-bQVlnMLFJ2d35DkPNjEPmd9ueO/rh5EiaZt2bhqiSarPjZIuIV6bPQVqcrEyvNo+AfTrRGVazle1tl597w3gfA==", 65 | "dependencies": { 66 | "@types/node": "*", 67 | "form-data": "^4.0.0" 68 | } 69 | }, 70 | "node_modules/abbrev": { 71 | "version": "1.1.1", 72 | "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", 73 | "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==" 74 | }, 75 | "node_modules/abort-controller": { 76 | "version": "3.0.0", 77 | "resolved": "https://registry.npmjs.org/abort-controller/-/abort-controller-3.0.0.tgz", 78 | "integrity": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==", 79 | "dependencies": { 80 | "event-target-shim": "^5.0.0" 81 | }, 82 | "engines": { 83 | "node": ">=6.5" 84 | } 85 | }, 86 | "node_modules/accepts": { 87 | "version": "1.3.8", 88 | "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", 89 | "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", 90 | "dependencies": { 91 | "mime-types": "~2.1.34", 92 | "negotiator": "0.6.3" 93 | }, 94 | "engines": { 95 | "node": ">= 0.6" 96 | } 97 | }, 98 | "node_modules/agentkeepalive": { 99 | "version": "4.5.0", 100 | "resolved": "https://registry.npmjs.org/agentkeepalive/-/agentkeepalive-4.5.0.tgz", 101 | "integrity": "sha512-5GG/5IbQQpC9FpkRGsSvZI5QYeSCzlJHdpBQntCsuTOxhKD8lqKhrleg2Yi7yvMIf82Ycmmqln9U8V9qwEiJew==", 102 | "dependencies": { 103 | "humanize-ms": "^1.2.1" 104 | }, 105 | "engines": { 106 | "node": ">= 8.0.0" 107 | } 108 | }, 109 | "node_modules/ansi-styles": { 110 | "version": "4.3.0", 111 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", 112 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", 113 | "dependencies": { 114 | "color-convert": "^2.0.1" 115 | }, 116 | "engines": { 117 | "node": ">=8" 118 | }, 119 | "funding": { 120 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 121 | } 122 | }, 123 | "node_modules/anymatch": { 124 | "version": "3.1.3", 125 | "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", 126 | "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", 127 | "dependencies": { 128 | "normalize-path": "^3.0.0", 129 | "picomatch": "^2.0.4" 130 | }, 131 | "engines": { 132 | "node": ">= 8" 133 | } 134 | }, 135 | "node_modules/array-flatten": { 136 | "version": "1.1.1", 137 | "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", 138 | "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==" 139 | }, 140 | "node_modules/async": { 141 | "version": "3.2.5", 142 | "resolved": "https://registry.npmjs.org/async/-/async-3.2.5.tgz", 143 | "integrity": "sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==" 144 | }, 145 | "node_modules/asynckit": { 146 | "version": "0.4.0", 147 | "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", 148 | "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" 149 | }, 150 | "node_modules/axios": { 151 | "version": "1.6.2", 152 | "resolved": "https://registry.npmjs.org/axios/-/axios-1.6.2.tgz", 153 | "integrity": "sha512-7i24Ri4pmDRfJTR7LDBhsOTtcm+9kjX5WiY1X3wIisx6G9So3pfMkEiU7emUBe46oceVImccTEM3k6C5dbVW8A==", 154 | "dependencies": { 155 | "follow-redirects": "^1.15.0", 156 | "form-data": "^4.0.0", 157 | "proxy-from-env": "^1.1.0" 158 | } 159 | }, 160 | "node_modules/balanced-match": { 161 | "version": "1.0.2", 162 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", 163 | "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" 164 | }, 165 | "node_modules/base-64": { 166 | "version": "0.1.0", 167 | "resolved": "https://registry.npmjs.org/base-64/-/base-64-0.1.0.tgz", 168 | "integrity": "sha512-Y5gU45svrR5tI2Vt/X9GPd3L0HNIKzGu202EjxrXMpuc2V2CiKgemAbUUsqYmZJvPtCXoUKjNZwBJzsNScUbXA==" 169 | }, 170 | "node_modules/binary-extensions": { 171 | "version": "2.2.0", 172 | "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", 173 | "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", 174 | "engines": { 175 | "node": ">=8" 176 | } 177 | }, 178 | "node_modules/body-parser": { 179 | "version": "1.20.2", 180 | "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.2.tgz", 181 | "integrity": "sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==", 182 | "dependencies": { 183 | "bytes": "3.1.2", 184 | "content-type": "~1.0.5", 185 | "debug": "2.6.9", 186 | "depd": "2.0.0", 187 | "destroy": "1.2.0", 188 | "http-errors": "2.0.0", 189 | "iconv-lite": "0.4.24", 190 | "on-finished": "2.4.1", 191 | "qs": "6.11.0", 192 | "raw-body": "2.5.2", 193 | "type-is": "~1.6.18", 194 | "unpipe": "1.0.0" 195 | }, 196 | "engines": { 197 | "node": ">= 0.8", 198 | "npm": "1.2.8000 || >= 1.4.16" 199 | } 200 | }, 201 | "node_modules/brace-expansion": { 202 | "version": "1.1.11", 203 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 204 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 205 | "dependencies": { 206 | "balanced-match": "^1.0.0", 207 | "concat-map": "0.0.1" 208 | } 209 | }, 210 | "node_modules/braces": { 211 | "version": "3.0.2", 212 | "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", 213 | "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", 214 | "dependencies": { 215 | "fill-range": "^7.0.1" 216 | }, 217 | "engines": { 218 | "node": ">=8" 219 | } 220 | }, 221 | "node_modules/bytes": { 222 | "version": "3.1.2", 223 | "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", 224 | "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", 225 | "engines": { 226 | "node": ">= 0.8" 227 | } 228 | }, 229 | "node_modules/call-bind": { 230 | "version": "1.0.5", 231 | "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.5.tgz", 232 | "integrity": "sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==", 233 | "dependencies": { 234 | "function-bind": "^1.1.2", 235 | "get-intrinsic": "^1.2.1", 236 | "set-function-length": "^1.1.1" 237 | }, 238 | "funding": { 239 | "url": "https://github.com/sponsors/ljharb" 240 | } 241 | }, 242 | "node_modules/chalk": { 243 | "version": "4.1.2", 244 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 245 | "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 246 | "dependencies": { 247 | "ansi-styles": "^4.1.0", 248 | "supports-color": "^7.1.0" 249 | }, 250 | "engines": { 251 | "node": ">=10" 252 | }, 253 | "funding": { 254 | "url": "https://github.com/chalk/chalk?sponsor=1" 255 | } 256 | }, 257 | "node_modules/charenc": { 258 | "version": "0.0.2", 259 | "resolved": "https://registry.npmjs.org/charenc/-/charenc-0.0.2.tgz", 260 | "integrity": "sha512-yrLQ/yVUFXkzg7EDQsPieE/53+0RlaWTs+wBrvW36cyilJ2SaDWfl4Yj7MtLTXleV9uEKefbAGUPv2/iWSooRA==", 261 | "engines": { 262 | "node": "*" 263 | } 264 | }, 265 | "node_modules/chokidar": { 266 | "version": "3.5.3", 267 | "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", 268 | "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", 269 | "funding": [ 270 | { 271 | "type": "individual", 272 | "url": "https://paulmillr.com/funding/" 273 | } 274 | ], 275 | "dependencies": { 276 | "anymatch": "~3.1.2", 277 | "braces": "~3.0.2", 278 | "glob-parent": "~5.1.2", 279 | "is-binary-path": "~2.1.0", 280 | "is-glob": "~4.0.1", 281 | "normalize-path": "~3.0.0", 282 | "readdirp": "~3.6.0" 283 | }, 284 | "engines": { 285 | "node": ">= 8.10.0" 286 | }, 287 | "optionalDependencies": { 288 | "fsevents": "~2.3.2" 289 | } 290 | }, 291 | "node_modules/color-convert": { 292 | "version": "2.0.1", 293 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", 294 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", 295 | "dependencies": { 296 | "color-name": "~1.1.4" 297 | }, 298 | "engines": { 299 | "node": ">=7.0.0" 300 | } 301 | }, 302 | "node_modules/color-name": { 303 | "version": "1.1.4", 304 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", 305 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" 306 | }, 307 | "node_modules/combined-stream": { 308 | "version": "1.0.8", 309 | "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", 310 | "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", 311 | "dependencies": { 312 | "delayed-stream": "~1.0.0" 313 | }, 314 | "engines": { 315 | "node": ">= 0.8" 316 | } 317 | }, 318 | "node_modules/concat-map": { 319 | "version": "0.0.1", 320 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", 321 | "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" 322 | }, 323 | "node_modules/content-disposition": { 324 | "version": "0.5.4", 325 | "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", 326 | "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", 327 | "dependencies": { 328 | "safe-buffer": "5.2.1" 329 | }, 330 | "engines": { 331 | "node": ">= 0.6" 332 | } 333 | }, 334 | "node_modules/content-type": { 335 | "version": "1.0.5", 336 | "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", 337 | "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", 338 | "engines": { 339 | "node": ">= 0.6" 340 | } 341 | }, 342 | "node_modules/cookie": { 343 | "version": "0.5.0", 344 | "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", 345 | "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==", 346 | "engines": { 347 | "node": ">= 0.6" 348 | } 349 | }, 350 | "node_modules/cookie-signature": { 351 | "version": "1.0.6", 352 | "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", 353 | "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==" 354 | }, 355 | "node_modules/cors": { 356 | "version": "2.8.5", 357 | "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.5.tgz", 358 | "integrity": "sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==", 359 | "dependencies": { 360 | "object-assign": "^4", 361 | "vary": "^1" 362 | }, 363 | "engines": { 364 | "node": ">= 0.10" 365 | } 366 | }, 367 | "node_modules/crypt": { 368 | "version": "0.0.2", 369 | "resolved": "https://registry.npmjs.org/crypt/-/crypt-0.0.2.tgz", 370 | "integrity": "sha512-mCxBlsHFYh9C+HVpiEacem8FEBnMXgU9gy4zmNC+SXAZNB/1idgp/aulFJ4FgCi7GPEVbfyng092GqL2k2rmow==", 371 | "engines": { 372 | "node": "*" 373 | } 374 | }, 375 | "node_modules/data-uri-to-buffer": { 376 | "version": "4.0.1", 377 | "resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-4.0.1.tgz", 378 | "integrity": "sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==", 379 | "engines": { 380 | "node": ">= 12" 381 | } 382 | }, 383 | "node_modules/database": { 384 | "version": "0.0.2", 385 | "resolved": "https://registry.npmjs.org/database/-/database-0.0.2.tgz", 386 | "integrity": "sha512-lrqvU32firrb2TBjn4Iv9V1Mh90rqUtyyLAvdSqdGP2w7IrNy+oI5IqGNowHq8o+/WVnQtKNfNIpLYd6uWZLHw==" 387 | }, 388 | "node_modules/debug": { 389 | "version": "2.6.9", 390 | "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", 391 | "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", 392 | "dependencies": { 393 | "ms": "2.0.0" 394 | } 395 | }, 396 | "node_modules/define-data-property": { 397 | "version": "1.1.1", 398 | "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.1.tgz", 399 | "integrity": "sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==", 400 | "dependencies": { 401 | "get-intrinsic": "^1.2.1", 402 | "gopd": "^1.0.1", 403 | "has-property-descriptors": "^1.0.0" 404 | }, 405 | "engines": { 406 | "node": ">= 0.4" 407 | } 408 | }, 409 | "node_modules/delayed-stream": { 410 | "version": "1.0.0", 411 | "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", 412 | "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", 413 | "engines": { 414 | "node": ">=0.4.0" 415 | } 416 | }, 417 | "node_modules/depd": { 418 | "version": "2.0.0", 419 | "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", 420 | "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", 421 | "engines": { 422 | "node": ">= 0.8" 423 | } 424 | }, 425 | "node_modules/destroy": { 426 | "version": "1.2.0", 427 | "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", 428 | "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", 429 | "engines": { 430 | "node": ">= 0.8", 431 | "npm": "1.2.8000 || >= 1.4.16" 432 | } 433 | }, 434 | "node_modules/digest-fetch": { 435 | "version": "1.3.0", 436 | "resolved": "https://registry.npmjs.org/digest-fetch/-/digest-fetch-1.3.0.tgz", 437 | "integrity": "sha512-CGJuv6iKNM7QyZlM2T3sPAdZWd/p9zQiRNS9G+9COUCwzWFTs0Xp8NF5iePx7wtvhDykReiRRrSeNb4oMmB8lA==", 438 | "dependencies": { 439 | "base-64": "^0.1.0", 440 | "md5": "^2.3.0" 441 | } 442 | }, 443 | "node_modules/dotenv": { 444 | "version": "16.3.1", 445 | "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.3.1.tgz", 446 | "integrity": "sha512-IPzF4w4/Rd94bA9imS68tZBaYyBWSCE47V1RGuMrB94iyTOIEwRmVL2x/4An+6mETpLrKJ5hQkB8W4kFAadeIQ==", 447 | "engines": { 448 | "node": ">=12" 449 | }, 450 | "funding": { 451 | "url": "https://github.com/motdotla/dotenv?sponsor=1" 452 | } 453 | }, 454 | "node_modules/ee-first": { 455 | "version": "1.1.1", 456 | "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", 457 | "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" 458 | }, 459 | "node_modules/ejs": { 460 | "version": "3.1.9", 461 | "resolved": "https://registry.npmjs.org/ejs/-/ejs-3.1.9.tgz", 462 | "integrity": "sha512-rC+QVNMJWv+MtPgkt0y+0rVEIdbtxVADApW9JXrUVlzHetgcyczP/E7DJmWJ4fJCZF2cPcBk0laWO9ZHMG3DmQ==", 463 | "dependencies": { 464 | "jake": "^10.8.5" 465 | }, 466 | "bin": { 467 | "ejs": "bin/cli.js" 468 | }, 469 | "engines": { 470 | "node": ">=0.10.0" 471 | } 472 | }, 473 | "node_modules/encodeurl": { 474 | "version": "1.0.2", 475 | "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", 476 | "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", 477 | "engines": { 478 | "node": ">= 0.8" 479 | } 480 | }, 481 | "node_modules/escape-html": { 482 | "version": "1.0.3", 483 | "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", 484 | "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==" 485 | }, 486 | "node_modules/etag": { 487 | "version": "1.8.1", 488 | "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", 489 | "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", 490 | "engines": { 491 | "node": ">= 0.6" 492 | } 493 | }, 494 | "node_modules/event-target-shim": { 495 | "version": "5.0.1", 496 | "resolved": "https://registry.npmjs.org/event-target-shim/-/event-target-shim-5.0.1.tgz", 497 | "integrity": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==", 498 | "engines": { 499 | "node": ">=6" 500 | } 501 | }, 502 | "node_modules/express": { 503 | "version": "4.18.2", 504 | "resolved": "https://registry.npmjs.org/express/-/express-4.18.2.tgz", 505 | "integrity": "sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==", 506 | "dependencies": { 507 | "accepts": "~1.3.8", 508 | "array-flatten": "1.1.1", 509 | "body-parser": "1.20.1", 510 | "content-disposition": "0.5.4", 511 | "content-type": "~1.0.4", 512 | "cookie": "0.5.0", 513 | "cookie-signature": "1.0.6", 514 | "debug": "2.6.9", 515 | "depd": "2.0.0", 516 | "encodeurl": "~1.0.2", 517 | "escape-html": "~1.0.3", 518 | "etag": "~1.8.1", 519 | "finalhandler": "1.2.0", 520 | "fresh": "0.5.2", 521 | "http-errors": "2.0.0", 522 | "merge-descriptors": "1.0.1", 523 | "methods": "~1.1.2", 524 | "on-finished": "2.4.1", 525 | "parseurl": "~1.3.3", 526 | "path-to-regexp": "0.1.7", 527 | "proxy-addr": "~2.0.7", 528 | "qs": "6.11.0", 529 | "range-parser": "~1.2.1", 530 | "safe-buffer": "5.2.1", 531 | "send": "0.18.0", 532 | "serve-static": "1.15.0", 533 | "setprototypeof": "1.2.0", 534 | "statuses": "2.0.1", 535 | "type-is": "~1.6.18", 536 | "utils-merge": "1.0.1", 537 | "vary": "~1.1.2" 538 | }, 539 | "engines": { 540 | "node": ">= 0.10.0" 541 | } 542 | }, 543 | "node_modules/express/node_modules/body-parser": { 544 | "version": "1.20.1", 545 | "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.1.tgz", 546 | "integrity": "sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==", 547 | "dependencies": { 548 | "bytes": "3.1.2", 549 | "content-type": "~1.0.4", 550 | "debug": "2.6.9", 551 | "depd": "2.0.0", 552 | "destroy": "1.2.0", 553 | "http-errors": "2.0.0", 554 | "iconv-lite": "0.4.24", 555 | "on-finished": "2.4.1", 556 | "qs": "6.11.0", 557 | "raw-body": "2.5.1", 558 | "type-is": "~1.6.18", 559 | "unpipe": "1.0.0" 560 | }, 561 | "engines": { 562 | "node": ">= 0.8", 563 | "npm": "1.2.8000 || >= 1.4.16" 564 | } 565 | }, 566 | "node_modules/express/node_modules/raw-body": { 567 | "version": "2.5.1", 568 | "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz", 569 | "integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==", 570 | "dependencies": { 571 | "bytes": "3.1.2", 572 | "http-errors": "2.0.0", 573 | "iconv-lite": "0.4.24", 574 | "unpipe": "1.0.0" 575 | }, 576 | "engines": { 577 | "node": ">= 0.8" 578 | } 579 | }, 580 | "node_modules/fetch-blob": { 581 | "version": "3.2.0", 582 | "resolved": "https://registry.npmjs.org/fetch-blob/-/fetch-blob-3.2.0.tgz", 583 | "integrity": "sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==", 584 | "funding": [ 585 | { 586 | "type": "github", 587 | "url": "https://github.com/sponsors/jimmywarting" 588 | }, 589 | { 590 | "type": "paypal", 591 | "url": "https://paypal.me/jimmywarting" 592 | } 593 | ], 594 | "dependencies": { 595 | "node-domexception": "^1.0.0", 596 | "web-streams-polyfill": "^3.0.3" 597 | }, 598 | "engines": { 599 | "node": "^12.20 || >= 14.13" 600 | } 601 | }, 602 | "node_modules/filelist": { 603 | "version": "1.0.4", 604 | "resolved": "https://registry.npmjs.org/filelist/-/filelist-1.0.4.tgz", 605 | "integrity": "sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==", 606 | "dependencies": { 607 | "minimatch": "^5.0.1" 608 | } 609 | }, 610 | "node_modules/filelist/node_modules/brace-expansion": { 611 | "version": "2.0.1", 612 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", 613 | "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", 614 | "dependencies": { 615 | "balanced-match": "^1.0.0" 616 | } 617 | }, 618 | "node_modules/filelist/node_modules/minimatch": { 619 | "version": "5.1.6", 620 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", 621 | "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", 622 | "dependencies": { 623 | "brace-expansion": "^2.0.1" 624 | }, 625 | "engines": { 626 | "node": ">=10" 627 | } 628 | }, 629 | "node_modules/fill-range": { 630 | "version": "7.0.1", 631 | "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", 632 | "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", 633 | "dependencies": { 634 | "to-regex-range": "^5.0.1" 635 | }, 636 | "engines": { 637 | "node": ">=8" 638 | } 639 | }, 640 | "node_modules/finalhandler": { 641 | "version": "1.2.0", 642 | "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", 643 | "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", 644 | "dependencies": { 645 | "debug": "2.6.9", 646 | "encodeurl": "~1.0.2", 647 | "escape-html": "~1.0.3", 648 | "on-finished": "2.4.1", 649 | "parseurl": "~1.3.3", 650 | "statuses": "2.0.1", 651 | "unpipe": "~1.0.0" 652 | }, 653 | "engines": { 654 | "node": ">= 0.8" 655 | } 656 | }, 657 | "node_modules/follow-redirects": { 658 | "version": "1.15.3", 659 | "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.3.tgz", 660 | "integrity": "sha512-1VzOtuEM8pC9SFU1E+8KfTjZyMztRsgEfwQl44z8A25uy13jSzTj6dyK2Df52iV0vgHCfBwLhDWevLn95w5v6Q==", 661 | "funding": [ 662 | { 663 | "type": "individual", 664 | "url": "https://github.com/sponsors/RubenVerborgh" 665 | } 666 | ], 667 | "engines": { 668 | "node": ">=4.0" 669 | }, 670 | "peerDependenciesMeta": { 671 | "debug": { 672 | "optional": true 673 | } 674 | } 675 | }, 676 | "node_modules/form-data": { 677 | "version": "4.0.0", 678 | "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", 679 | "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", 680 | "dependencies": { 681 | "asynckit": "^0.4.0", 682 | "combined-stream": "^1.0.8", 683 | "mime-types": "^2.1.12" 684 | }, 685 | "engines": { 686 | "node": ">= 6" 687 | } 688 | }, 689 | "node_modules/form-data-encoder": { 690 | "version": "1.7.2", 691 | "resolved": "https://registry.npmjs.org/form-data-encoder/-/form-data-encoder-1.7.2.tgz", 692 | "integrity": "sha512-qfqtYan3rxrnCk1VYaA4H+Ms9xdpPqvLZa6xmMgFvhO32x7/3J/ExcTd6qpxM0vH2GdMI+poehyBZvqfMTto8A==" 693 | }, 694 | "node_modules/formdata-node": { 695 | "version": "4.4.1", 696 | "resolved": "https://registry.npmjs.org/formdata-node/-/formdata-node-4.4.1.tgz", 697 | "integrity": "sha512-0iirZp3uVDjVGt9p49aTaqjk84TrglENEDuqfdlZQ1roC9CWlPk6Avf8EEnZNcAqPonwkG35x4n3ww/1THYAeQ==", 698 | "dependencies": { 699 | "node-domexception": "1.0.0", 700 | "web-streams-polyfill": "4.0.0-beta.3" 701 | }, 702 | "engines": { 703 | "node": ">= 12.20" 704 | } 705 | }, 706 | "node_modules/formdata-node/node_modules/web-streams-polyfill": { 707 | "version": "4.0.0-beta.3", 708 | "resolved": "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-4.0.0-beta.3.tgz", 709 | "integrity": "sha512-QW95TCTaHmsYfHDybGMwO5IJIM93I/6vTRk+daHTWFPhwh+C8Cg7j7XyKrwrj8Ib6vYXe0ocYNrmzY4xAAN6ug==", 710 | "engines": { 711 | "node": ">= 14" 712 | } 713 | }, 714 | "node_modules/formdata-polyfill": { 715 | "version": "4.0.10", 716 | "resolved": "https://registry.npmjs.org/formdata-polyfill/-/formdata-polyfill-4.0.10.tgz", 717 | "integrity": "sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==", 718 | "dependencies": { 719 | "fetch-blob": "^3.1.2" 720 | }, 721 | "engines": { 722 | "node": ">=12.20.0" 723 | } 724 | }, 725 | "node_modules/forwarded": { 726 | "version": "0.2.0", 727 | "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", 728 | "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", 729 | "engines": { 730 | "node": ">= 0.6" 731 | } 732 | }, 733 | "node_modules/fresh": { 734 | "version": "0.5.2", 735 | "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", 736 | "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", 737 | "engines": { 738 | "node": ">= 0.6" 739 | } 740 | }, 741 | "node_modules/fsevents": { 742 | "version": "2.3.3", 743 | "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", 744 | "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", 745 | "hasInstallScript": true, 746 | "optional": true, 747 | "os": [ 748 | "darwin" 749 | ], 750 | "engines": { 751 | "node": "^8.16.0 || ^10.6.0 || >=11.0.0" 752 | } 753 | }, 754 | "node_modules/function-bind": { 755 | "version": "1.1.2", 756 | "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", 757 | "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", 758 | "funding": { 759 | "url": "https://github.com/sponsors/ljharb" 760 | } 761 | }, 762 | "node_modules/get-intrinsic": { 763 | "version": "1.2.2", 764 | "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.2.tgz", 765 | "integrity": "sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==", 766 | "dependencies": { 767 | "function-bind": "^1.1.2", 768 | "has-proto": "^1.0.1", 769 | "has-symbols": "^1.0.3", 770 | "hasown": "^2.0.0" 771 | }, 772 | "funding": { 773 | "url": "https://github.com/sponsors/ljharb" 774 | } 775 | }, 776 | "node_modules/glob-parent": { 777 | "version": "5.1.2", 778 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", 779 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 780 | "dependencies": { 781 | "is-glob": "^4.0.1" 782 | }, 783 | "engines": { 784 | "node": ">= 6" 785 | } 786 | }, 787 | "node_modules/gopd": { 788 | "version": "1.0.1", 789 | "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", 790 | "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", 791 | "dependencies": { 792 | "get-intrinsic": "^1.1.3" 793 | }, 794 | "funding": { 795 | "url": "https://github.com/sponsors/ljharb" 796 | } 797 | }, 798 | "node_modules/has-flag": { 799 | "version": "4.0.0", 800 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", 801 | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", 802 | "engines": { 803 | "node": ">=8" 804 | } 805 | }, 806 | "node_modules/has-property-descriptors": { 807 | "version": "1.0.1", 808 | "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.1.tgz", 809 | "integrity": "sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==", 810 | "dependencies": { 811 | "get-intrinsic": "^1.2.2" 812 | }, 813 | "funding": { 814 | "url": "https://github.com/sponsors/ljharb" 815 | } 816 | }, 817 | "node_modules/has-proto": { 818 | "version": "1.0.1", 819 | "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", 820 | "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", 821 | "engines": { 822 | "node": ">= 0.4" 823 | }, 824 | "funding": { 825 | "url": "https://github.com/sponsors/ljharb" 826 | } 827 | }, 828 | "node_modules/has-symbols": { 829 | "version": "1.0.3", 830 | "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", 831 | "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", 832 | "engines": { 833 | "node": ">= 0.4" 834 | }, 835 | "funding": { 836 | "url": "https://github.com/sponsors/ljharb" 837 | } 838 | }, 839 | "node_modules/hasown": { 840 | "version": "2.0.0", 841 | "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.0.tgz", 842 | "integrity": "sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==", 843 | "dependencies": { 844 | "function-bind": "^1.1.2" 845 | }, 846 | "engines": { 847 | "node": ">= 0.4" 848 | } 849 | }, 850 | "node_modules/http-errors": { 851 | "version": "2.0.0", 852 | "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", 853 | "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", 854 | "dependencies": { 855 | "depd": "2.0.0", 856 | "inherits": "2.0.4", 857 | "setprototypeof": "1.2.0", 858 | "statuses": "2.0.1", 859 | "toidentifier": "1.0.1" 860 | }, 861 | "engines": { 862 | "node": ">= 0.8" 863 | } 864 | }, 865 | "node_modules/humanize-ms": { 866 | "version": "1.2.1", 867 | "resolved": "https://registry.npmjs.org/humanize-ms/-/humanize-ms-1.2.1.tgz", 868 | "integrity": "sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==", 869 | "dependencies": { 870 | "ms": "^2.0.0" 871 | } 872 | }, 873 | "node_modules/iconv-lite": { 874 | "version": "0.4.24", 875 | "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", 876 | "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", 877 | "dependencies": { 878 | "safer-buffer": ">= 2.1.2 < 3" 879 | }, 880 | "engines": { 881 | "node": ">=0.10.0" 882 | } 883 | }, 884 | "node_modules/ignore-by-default": { 885 | "version": "1.0.1", 886 | "resolved": "https://registry.npmjs.org/ignore-by-default/-/ignore-by-default-1.0.1.tgz", 887 | "integrity": "sha512-Ius2VYcGNk7T90CppJqcIkS5ooHUZyIQK+ClZfMfMNFEF9VSE73Fq+906u/CWu92x4gzZMWOwfFYckPObzdEbA==" 888 | }, 889 | "node_modules/inherits": { 890 | "version": "2.0.4", 891 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", 892 | "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" 893 | }, 894 | "node_modules/ipaddr.js": { 895 | "version": "1.9.1", 896 | "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", 897 | "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", 898 | "engines": { 899 | "node": ">= 0.10" 900 | } 901 | }, 902 | "node_modules/is-binary-path": { 903 | "version": "2.1.0", 904 | "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", 905 | "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", 906 | "dependencies": { 907 | "binary-extensions": "^2.0.0" 908 | }, 909 | "engines": { 910 | "node": ">=8" 911 | } 912 | }, 913 | "node_modules/is-buffer": { 914 | "version": "1.1.6", 915 | "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", 916 | "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==" 917 | }, 918 | "node_modules/is-extglob": { 919 | "version": "2.1.1", 920 | "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", 921 | "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", 922 | "engines": { 923 | "node": ">=0.10.0" 924 | } 925 | }, 926 | "node_modules/is-glob": { 927 | "version": "4.0.3", 928 | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", 929 | "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", 930 | "dependencies": { 931 | "is-extglob": "^2.1.1" 932 | }, 933 | "engines": { 934 | "node": ">=0.10.0" 935 | } 936 | }, 937 | "node_modules/is-number": { 938 | "version": "7.0.0", 939 | "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", 940 | "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", 941 | "engines": { 942 | "node": ">=0.12.0" 943 | } 944 | }, 945 | "node_modules/jake": { 946 | "version": "10.8.7", 947 | "resolved": "https://registry.npmjs.org/jake/-/jake-10.8.7.tgz", 948 | "integrity": "sha512-ZDi3aP+fG/LchyBzUM804VjddnwfSfsdeYkwt8NcbKRvo4rFkjhs456iLFn3k2ZUWvNe4i48WACDbza8fhq2+w==", 949 | "dependencies": { 950 | "async": "^3.2.3", 951 | "chalk": "^4.0.2", 952 | "filelist": "^1.0.4", 953 | "minimatch": "^3.1.2" 954 | }, 955 | "bin": { 956 | "jake": "bin/cli.js" 957 | }, 958 | "engines": { 959 | "node": ">=10" 960 | } 961 | }, 962 | "node_modules/lru-cache": { 963 | "version": "6.0.0", 964 | "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", 965 | "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", 966 | "dependencies": { 967 | "yallist": "^4.0.0" 968 | }, 969 | "engines": { 970 | "node": ">=10" 971 | } 972 | }, 973 | "node_modules/md5": { 974 | "version": "2.3.0", 975 | "resolved": "https://registry.npmjs.org/md5/-/md5-2.3.0.tgz", 976 | "integrity": "sha512-T1GITYmFaKuO91vxyoQMFETst+O71VUPEU3ze5GNzDm0OWdP8v1ziTaAEPUr/3kLsY3Sftgz242A1SetQiDL7g==", 977 | "dependencies": { 978 | "charenc": "0.0.2", 979 | "crypt": "0.0.2", 980 | "is-buffer": "~1.1.6" 981 | } 982 | }, 983 | "node_modules/media-typer": { 984 | "version": "0.3.0", 985 | "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", 986 | "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", 987 | "engines": { 988 | "node": ">= 0.6" 989 | } 990 | }, 991 | "node_modules/merge-descriptors": { 992 | "version": "1.0.1", 993 | "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", 994 | "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==" 995 | }, 996 | "node_modules/methods": { 997 | "version": "1.1.2", 998 | "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", 999 | "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", 1000 | "engines": { 1001 | "node": ">= 0.6" 1002 | } 1003 | }, 1004 | "node_modules/mime": { 1005 | "version": "1.6.0", 1006 | "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", 1007 | "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", 1008 | "bin": { 1009 | "mime": "cli.js" 1010 | }, 1011 | "engines": { 1012 | "node": ">=4" 1013 | } 1014 | }, 1015 | "node_modules/mime-db": { 1016 | "version": "1.52.0", 1017 | "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", 1018 | "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", 1019 | "engines": { 1020 | "node": ">= 0.6" 1021 | } 1022 | }, 1023 | "node_modules/mime-types": { 1024 | "version": "2.1.35", 1025 | "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", 1026 | "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", 1027 | "dependencies": { 1028 | "mime-db": "1.52.0" 1029 | }, 1030 | "engines": { 1031 | "node": ">= 0.6" 1032 | } 1033 | }, 1034 | "node_modules/minimatch": { 1035 | "version": "3.1.2", 1036 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 1037 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 1038 | "dependencies": { 1039 | "brace-expansion": "^1.1.7" 1040 | }, 1041 | "engines": { 1042 | "node": "*" 1043 | } 1044 | }, 1045 | "node_modules/ms": { 1046 | "version": "2.0.0", 1047 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", 1048 | "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" 1049 | }, 1050 | "node_modules/negotiator": { 1051 | "version": "0.6.3", 1052 | "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", 1053 | "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", 1054 | "engines": { 1055 | "node": ">= 0.6" 1056 | } 1057 | }, 1058 | "node_modules/node-domexception": { 1059 | "version": "1.0.0", 1060 | "resolved": "https://registry.npmjs.org/node-domexception/-/node-domexception-1.0.0.tgz", 1061 | "integrity": "sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==", 1062 | "funding": [ 1063 | { 1064 | "type": "github", 1065 | "url": "https://github.com/sponsors/jimmywarting" 1066 | }, 1067 | { 1068 | "type": "github", 1069 | "url": "https://paypal.me/jimmywarting" 1070 | } 1071 | ], 1072 | "engines": { 1073 | "node": ">=10.5.0" 1074 | } 1075 | }, 1076 | "node_modules/node-fetch": { 1077 | "version": "3.3.2", 1078 | "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-3.3.2.tgz", 1079 | "integrity": "sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==", 1080 | "dependencies": { 1081 | "data-uri-to-buffer": "^4.0.0", 1082 | "fetch-blob": "^3.1.4", 1083 | "formdata-polyfill": "^4.0.10" 1084 | }, 1085 | "engines": { 1086 | "node": "^12.20.0 || ^14.13.1 || >=16.0.0" 1087 | }, 1088 | "funding": { 1089 | "type": "opencollective", 1090 | "url": "https://opencollective.com/node-fetch" 1091 | } 1092 | }, 1093 | "node_modules/nodemon": { 1094 | "version": "3.0.1", 1095 | "resolved": "https://registry.npmjs.org/nodemon/-/nodemon-3.0.1.tgz", 1096 | "integrity": "sha512-g9AZ7HmkhQkqXkRc20w+ZfQ73cHLbE8hnPbtaFbFtCumZsjyMhKk9LajQ07U5Ux28lvFjZ5X7HvWR1xzU8jHVw==", 1097 | "dependencies": { 1098 | "chokidar": "^3.5.2", 1099 | "debug": "^3.2.7", 1100 | "ignore-by-default": "^1.0.1", 1101 | "minimatch": "^3.1.2", 1102 | "pstree.remy": "^1.1.8", 1103 | "semver": "^7.5.3", 1104 | "simple-update-notifier": "^2.0.0", 1105 | "supports-color": "^5.5.0", 1106 | "touch": "^3.1.0", 1107 | "undefsafe": "^2.0.5" 1108 | }, 1109 | "bin": { 1110 | "nodemon": "bin/nodemon.js" 1111 | }, 1112 | "engines": { 1113 | "node": ">=10" 1114 | }, 1115 | "funding": { 1116 | "type": "opencollective", 1117 | "url": "https://opencollective.com/nodemon" 1118 | } 1119 | }, 1120 | "node_modules/nodemon/node_modules/debug": { 1121 | "version": "3.2.7", 1122 | "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", 1123 | "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", 1124 | "dependencies": { 1125 | "ms": "^2.1.1" 1126 | } 1127 | }, 1128 | "node_modules/nodemon/node_modules/has-flag": { 1129 | "version": "3.0.0", 1130 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", 1131 | "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", 1132 | "engines": { 1133 | "node": ">=4" 1134 | } 1135 | }, 1136 | "node_modules/nodemon/node_modules/ms": { 1137 | "version": "2.1.3", 1138 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", 1139 | "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" 1140 | }, 1141 | "node_modules/nodemon/node_modules/supports-color": { 1142 | "version": "5.5.0", 1143 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", 1144 | "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", 1145 | "dependencies": { 1146 | "has-flag": "^3.0.0" 1147 | }, 1148 | "engines": { 1149 | "node": ">=4" 1150 | } 1151 | }, 1152 | "node_modules/nopt": { 1153 | "version": "1.0.10", 1154 | "resolved": "https://registry.npmjs.org/nopt/-/nopt-1.0.10.tgz", 1155 | "integrity": "sha512-NWmpvLSqUrgrAC9HCuxEvb+PSloHpqVu+FqcO4eeF2h5qYRhA7ev6KvelyQAKtegUbC6RypJnlEOhd8vloNKYg==", 1156 | "dependencies": { 1157 | "abbrev": "1" 1158 | }, 1159 | "bin": { 1160 | "nopt": "bin/nopt.js" 1161 | }, 1162 | "engines": { 1163 | "node": "*" 1164 | } 1165 | }, 1166 | "node_modules/normalize-path": { 1167 | "version": "3.0.0", 1168 | "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", 1169 | "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", 1170 | "engines": { 1171 | "node": ">=0.10.0" 1172 | } 1173 | }, 1174 | "node_modules/object-assign": { 1175 | "version": "4.1.1", 1176 | "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", 1177 | "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", 1178 | "engines": { 1179 | "node": ">=0.10.0" 1180 | } 1181 | }, 1182 | "node_modules/object-inspect": { 1183 | "version": "1.13.1", 1184 | "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.1.tgz", 1185 | "integrity": "sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==", 1186 | "funding": { 1187 | "url": "https://github.com/sponsors/ljharb" 1188 | } 1189 | }, 1190 | "node_modules/on-finished": { 1191 | "version": "2.4.1", 1192 | "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", 1193 | "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", 1194 | "dependencies": { 1195 | "ee-first": "1.1.1" 1196 | }, 1197 | "engines": { 1198 | "node": ">= 0.8" 1199 | } 1200 | }, 1201 | "node_modules/openai": { 1202 | "version": "4.19.0", 1203 | "resolved": "https://registry.npmjs.org/openai/-/openai-4.19.0.tgz", 1204 | "integrity": "sha512-cJbl0noZyAaXVKBTMMq6X5BAvP1pm2rWYDBnZes99NL+Zh5/4NmlAwyuhTZEru5SqGGZIoiYKeMPXy4bm9DI0w==", 1205 | "dependencies": { 1206 | "@types/node": "^18.11.18", 1207 | "@types/node-fetch": "^2.6.4", 1208 | "abort-controller": "^3.0.0", 1209 | "agentkeepalive": "^4.2.1", 1210 | "digest-fetch": "^1.3.0", 1211 | "form-data-encoder": "1.7.2", 1212 | "formdata-node": "^4.3.2", 1213 | "node-fetch": "^2.6.7", 1214 | "web-streams-polyfill": "^3.2.1" 1215 | }, 1216 | "bin": { 1217 | "openai": "bin/cli" 1218 | } 1219 | }, 1220 | "node_modules/openai/node_modules/node-fetch": { 1221 | "version": "2.7.0", 1222 | "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", 1223 | "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", 1224 | "dependencies": { 1225 | "whatwg-url": "^5.0.0" 1226 | }, 1227 | "engines": { 1228 | "node": "4.x || >=6.0.0" 1229 | }, 1230 | "peerDependencies": { 1231 | "encoding": "^0.1.0" 1232 | }, 1233 | "peerDependenciesMeta": { 1234 | "encoding": { 1235 | "optional": true 1236 | } 1237 | } 1238 | }, 1239 | "node_modules/parseurl": { 1240 | "version": "1.3.3", 1241 | "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", 1242 | "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", 1243 | "engines": { 1244 | "node": ">= 0.8" 1245 | } 1246 | }, 1247 | "node_modules/path-to-regexp": { 1248 | "version": "0.1.7", 1249 | "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", 1250 | "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==" 1251 | }, 1252 | "node_modules/picomatch": { 1253 | "version": "2.3.1", 1254 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", 1255 | "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", 1256 | "engines": { 1257 | "node": ">=8.6" 1258 | }, 1259 | "funding": { 1260 | "url": "https://github.com/sponsors/jonschlinkert" 1261 | } 1262 | }, 1263 | "node_modules/proxy-addr": { 1264 | "version": "2.0.7", 1265 | "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", 1266 | "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", 1267 | "dependencies": { 1268 | "forwarded": "0.2.0", 1269 | "ipaddr.js": "1.9.1" 1270 | }, 1271 | "engines": { 1272 | "node": ">= 0.10" 1273 | } 1274 | }, 1275 | "node_modules/proxy-from-env": { 1276 | "version": "1.1.0", 1277 | "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", 1278 | "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==" 1279 | }, 1280 | "node_modules/pstree.remy": { 1281 | "version": "1.1.8", 1282 | "resolved": "https://registry.npmjs.org/pstree.remy/-/pstree.remy-1.1.8.tgz", 1283 | "integrity": "sha512-77DZwxQmxKnu3aR542U+X8FypNzbfJ+C5XQDk3uWjWxn6151aIMGthWYRXTqT1E5oJvg+ljaa2OJi+VfvCOQ8w==" 1284 | }, 1285 | "node_modules/qs": { 1286 | "version": "6.11.0", 1287 | "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", 1288 | "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", 1289 | "dependencies": { 1290 | "side-channel": "^1.0.4" 1291 | }, 1292 | "engines": { 1293 | "node": ">=0.6" 1294 | }, 1295 | "funding": { 1296 | "url": "https://github.com/sponsors/ljharb" 1297 | } 1298 | }, 1299 | "node_modules/range-parser": { 1300 | "version": "1.2.1", 1301 | "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", 1302 | "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", 1303 | "engines": { 1304 | "node": ">= 0.6" 1305 | } 1306 | }, 1307 | "node_modules/raw-body": { 1308 | "version": "2.5.2", 1309 | "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.2.tgz", 1310 | "integrity": "sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==", 1311 | "dependencies": { 1312 | "bytes": "3.1.2", 1313 | "http-errors": "2.0.0", 1314 | "iconv-lite": "0.4.24", 1315 | "unpipe": "1.0.0" 1316 | }, 1317 | "engines": { 1318 | "node": ">= 0.8" 1319 | } 1320 | }, 1321 | "node_modules/readdirp": { 1322 | "version": "3.6.0", 1323 | "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", 1324 | "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", 1325 | "dependencies": { 1326 | "picomatch": "^2.2.1" 1327 | }, 1328 | "engines": { 1329 | "node": ">=8.10.0" 1330 | } 1331 | }, 1332 | "node_modules/safe-buffer": { 1333 | "version": "5.2.1", 1334 | "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", 1335 | "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", 1336 | "funding": [ 1337 | { 1338 | "type": "github", 1339 | "url": "https://github.com/sponsors/feross" 1340 | }, 1341 | { 1342 | "type": "patreon", 1343 | "url": "https://www.patreon.com/feross" 1344 | }, 1345 | { 1346 | "type": "consulting", 1347 | "url": "https://feross.org/support" 1348 | } 1349 | ] 1350 | }, 1351 | "node_modules/safer-buffer": { 1352 | "version": "2.1.2", 1353 | "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", 1354 | "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" 1355 | }, 1356 | "node_modules/semver": { 1357 | "version": "7.5.4", 1358 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", 1359 | "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", 1360 | "dependencies": { 1361 | "lru-cache": "^6.0.0" 1362 | }, 1363 | "bin": { 1364 | "semver": "bin/semver.js" 1365 | }, 1366 | "engines": { 1367 | "node": ">=10" 1368 | } 1369 | }, 1370 | "node_modules/send": { 1371 | "version": "0.18.0", 1372 | "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", 1373 | "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", 1374 | "dependencies": { 1375 | "debug": "2.6.9", 1376 | "depd": "2.0.0", 1377 | "destroy": "1.2.0", 1378 | "encodeurl": "~1.0.2", 1379 | "escape-html": "~1.0.3", 1380 | "etag": "~1.8.1", 1381 | "fresh": "0.5.2", 1382 | "http-errors": "2.0.0", 1383 | "mime": "1.6.0", 1384 | "ms": "2.1.3", 1385 | "on-finished": "2.4.1", 1386 | "range-parser": "~1.2.1", 1387 | "statuses": "2.0.1" 1388 | }, 1389 | "engines": { 1390 | "node": ">= 0.8.0" 1391 | } 1392 | }, 1393 | "node_modules/send/node_modules/ms": { 1394 | "version": "2.1.3", 1395 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", 1396 | "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" 1397 | }, 1398 | "node_modules/serve-static": { 1399 | "version": "1.15.0", 1400 | "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", 1401 | "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", 1402 | "dependencies": { 1403 | "encodeurl": "~1.0.2", 1404 | "escape-html": "~1.0.3", 1405 | "parseurl": "~1.3.3", 1406 | "send": "0.18.0" 1407 | }, 1408 | "engines": { 1409 | "node": ">= 0.8.0" 1410 | } 1411 | }, 1412 | "node_modules/set-function-length": { 1413 | "version": "1.1.1", 1414 | "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.1.1.tgz", 1415 | "integrity": "sha512-VoaqjbBJKiWtg4yRcKBQ7g7wnGnLV3M8oLvVWwOk2PdYY6PEFegR1vezXR0tw6fZGF9csVakIRjrJiy2veSBFQ==", 1416 | "dependencies": { 1417 | "define-data-property": "^1.1.1", 1418 | "get-intrinsic": "^1.2.1", 1419 | "gopd": "^1.0.1", 1420 | "has-property-descriptors": "^1.0.0" 1421 | }, 1422 | "engines": { 1423 | "node": ">= 0.4" 1424 | } 1425 | }, 1426 | "node_modules/setprototypeof": { 1427 | "version": "1.2.0", 1428 | "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", 1429 | "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" 1430 | }, 1431 | "node_modules/side-channel": { 1432 | "version": "1.0.4", 1433 | "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", 1434 | "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", 1435 | "dependencies": { 1436 | "call-bind": "^1.0.0", 1437 | "get-intrinsic": "^1.0.2", 1438 | "object-inspect": "^1.9.0" 1439 | }, 1440 | "funding": { 1441 | "url": "https://github.com/sponsors/ljharb" 1442 | } 1443 | }, 1444 | "node_modules/simple-update-notifier": { 1445 | "version": "2.0.0", 1446 | "resolved": "https://registry.npmjs.org/simple-update-notifier/-/simple-update-notifier-2.0.0.tgz", 1447 | "integrity": "sha512-a2B9Y0KlNXl9u/vsW6sTIu9vGEpfKu2wRV6l1H3XEas/0gUIzGzBoP/IouTcUQbm9JWZLH3COxyn03TYlFax6w==", 1448 | "dependencies": { 1449 | "semver": "^7.5.3" 1450 | }, 1451 | "engines": { 1452 | "node": ">=10" 1453 | } 1454 | }, 1455 | "node_modules/statuses": { 1456 | "version": "2.0.1", 1457 | "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", 1458 | "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", 1459 | "engines": { 1460 | "node": ">= 0.8" 1461 | } 1462 | }, 1463 | "node_modules/supports-color": { 1464 | "version": "7.2.0", 1465 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", 1466 | "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", 1467 | "dependencies": { 1468 | "has-flag": "^4.0.0" 1469 | }, 1470 | "engines": { 1471 | "node": ">=8" 1472 | } 1473 | }, 1474 | "node_modules/to-regex-range": { 1475 | "version": "5.0.1", 1476 | "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", 1477 | "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", 1478 | "dependencies": { 1479 | "is-number": "^7.0.0" 1480 | }, 1481 | "engines": { 1482 | "node": ">=8.0" 1483 | } 1484 | }, 1485 | "node_modules/toidentifier": { 1486 | "version": "1.0.1", 1487 | "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", 1488 | "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", 1489 | "engines": { 1490 | "node": ">=0.6" 1491 | } 1492 | }, 1493 | "node_modules/touch": { 1494 | "version": "3.1.0", 1495 | "resolved": "https://registry.npmjs.org/touch/-/touch-3.1.0.tgz", 1496 | "integrity": "sha512-WBx8Uy5TLtOSRtIq+M03/sKDrXCLHxwDcquSP2c43Le03/9serjQBIztjRz6FkJez9D/hleyAXTBGLwwZUw9lA==", 1497 | "dependencies": { 1498 | "nopt": "~1.0.10" 1499 | }, 1500 | "bin": { 1501 | "nodetouch": "bin/nodetouch.js" 1502 | } 1503 | }, 1504 | "node_modules/tr46": { 1505 | "version": "0.0.3", 1506 | "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", 1507 | "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==" 1508 | }, 1509 | "node_modules/type-is": { 1510 | "version": "1.6.18", 1511 | "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", 1512 | "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", 1513 | "dependencies": { 1514 | "media-typer": "0.3.0", 1515 | "mime-types": "~2.1.24" 1516 | }, 1517 | "engines": { 1518 | "node": ">= 0.6" 1519 | } 1520 | }, 1521 | "node_modules/undefsafe": { 1522 | "version": "2.0.5", 1523 | "resolved": "https://registry.npmjs.org/undefsafe/-/undefsafe-2.0.5.tgz", 1524 | "integrity": "sha512-WxONCrssBM8TSPRqN5EmsjVrsv4A8X12J4ArBiiayv3DyyG3ZlIg6yysuuSYdZsVz3TKcTg2fd//Ujd4CHV1iA==" 1525 | }, 1526 | "node_modules/undici-types": { 1527 | "version": "5.26.5", 1528 | "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz", 1529 | "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==" 1530 | }, 1531 | "node_modules/unpipe": { 1532 | "version": "1.0.0", 1533 | "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", 1534 | "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", 1535 | "engines": { 1536 | "node": ">= 0.8" 1537 | } 1538 | }, 1539 | "node_modules/utils-merge": { 1540 | "version": "1.0.1", 1541 | "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", 1542 | "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", 1543 | "engines": { 1544 | "node": ">= 0.4.0" 1545 | } 1546 | }, 1547 | "node_modules/vary": { 1548 | "version": "1.1.2", 1549 | "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", 1550 | "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", 1551 | "engines": { 1552 | "node": ">= 0.8" 1553 | } 1554 | }, 1555 | "node_modules/web-streams-polyfill": { 1556 | "version": "3.2.1", 1557 | "resolved": "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-3.2.1.tgz", 1558 | "integrity": "sha512-e0MO3wdXWKrLbL0DgGnUV7WHVuw9OUvL4hjgnPkIeEvESk74gAITi5G606JtZPp39cd8HA9VQzCIvA49LpPN5Q==", 1559 | "engines": { 1560 | "node": ">= 8" 1561 | } 1562 | }, 1563 | "node_modules/webidl-conversions": { 1564 | "version": "3.0.1", 1565 | "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", 1566 | "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" 1567 | }, 1568 | "node_modules/whatwg-url": { 1569 | "version": "5.0.0", 1570 | "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", 1571 | "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", 1572 | "dependencies": { 1573 | "tr46": "~0.0.3", 1574 | "webidl-conversions": "^3.0.0" 1575 | } 1576 | }, 1577 | "node_modules/yallist": { 1578 | "version": "4.0.0", 1579 | "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", 1580 | "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" 1581 | } 1582 | } 1583 | } 1584 | --------------------------------------------------------------------------------