├── .env
├── .github
└── workflows
│ └── scheduler.yml
├── .gitignore
├── .idea
├── dayoffAPI.iml
├── git_toolbox_blame.xml
├── git_toolbox_prj.xml
├── modules.xml
├── php.xml
├── vcs.xml
└── workspace.xml
├── Endpoint.txt
├── README.md
├── app.js
├── data
├── 2011.json
├── 2012.json
├── 2013.json
├── 2014.json
├── 2015.json
├── 2016.json
├── 2017.json
├── 2018.json
├── 2019.json
├── 2020.json
├── 2021.json
├── 2022.json
├── 2023.json
├── 2024.json
└── 2025.json
├── package-lock.json
├── package.json
├── public
└── index.html
├── services
└── scraper.js
└── vercel.json
/.env:
--------------------------------------------------------------------------------
1 | POSTGRES_URL="postgres://postgres.yxtrpqrsyjmpccesxphn:VeQU8h5sbXbJmf9P@aws-0-ap-southeast-1.pooler.supabase.com:6543/postgres?sslmode=require&supa=base-pooler.x"
2 | POSTGRES_PRISMA_URL="postgres://postgres.yxtrpqrsyjmpccesxphn:VeQU8h5sbXbJmf9P@aws-0-ap-southeast-1.pooler.supabase.com:6543/postgres?sslmode=require&supa=base-pooler.x"
3 | SUPABASE_URL="https://yxtrpqrsyjmpccesxphn.supabase.co"
4 | NEXT_PUBLIC_SUPABASE_URL="https://yxtrpqrsyjmpccesxphn.supabase.co"
5 | POSTGRES_URL_NON_POOLING="postgres://postgres.yxtrpqrsyjmpccesxphn:VeQU8h5sbXbJmf9P@aws-0-ap-southeast-1.pooler.supabase.com:5432/postgres?sslmode=require"
6 | SUPABASE_JWT_SECRET="LWOMvD1O+bFz28Sof2k8BjcB13Db3f5OL3tcx/xBGdlBa+j92vmX7/L9xDFs9eYMdb8L02Dbit8kfUHsvG0n3Q=="
7 | POSTGRES_USER="postgres"
8 | NEXT_PUBLIC_SUPABASE_ANON_KEY="eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZSIsInJlZiI6Inl4dHJwcXJzeWptcGNjZXN4cGhuIiwicm9sZSI6ImFub24iLCJpYXQiOjE3MzU3MDQ1NDksImV4cCI6MjA1MTI4MDU0OX0.U7ERrK7wcT71JKvxap1QLw-gxS-c5Ej8sSdtlaJszrI"
9 | POSTGRES_PASSWORD="VeQU8h5sbXbJmf9P"
10 | POSTGRES_DATABASE="postgres"
11 | SUPABASE_SERVICE_ROLE_KEY="eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZSIsInJlZiI6Inl4dHJwcXJzeWptcGNjZXN4cGhuIiwicm9sZSI6InNlcnZpY2Vfcm9sZSIsImlhdCI6MTczNTcwNDU0OSwiZXhwIjoyMDUxMjgwNTQ5fQ.WDD9eafq0wsKcJNG7S7PaxFrtlPQJMQCwHXrmq1T9PM"
12 | POSTGRES_HOST="db.yxtrpqrsyjmpccesxphn.supabase.co"
--------------------------------------------------------------------------------
/.github/workflows/scheduler.yml:
--------------------------------------------------------------------------------
1 |
2 | name: Monthly API Scraping Data
3 |
4 | on:
5 | schedule:
6 | - cron: '0 0 1 * *' # Menjalankan tugas setiap awal bulan pada pukul 00:00 UTC
7 | workflow_dispatch:
8 |
9 | jobs:
10 | hit-api:
11 | runs-on: ubuntu-latest
12 |
13 | steps:
14 | - name: Hit API
15 | run: |
16 | API_URL="https://dayoffapi.vercel.app/api/get-data"
17 | API_RESPONSE=$(curl -s $API_URL)
18 | echo "API Response: $API_RESPONSE"
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | /node_modules
2 | .env
--------------------------------------------------------------------------------
/.idea/dayoffAPI.iml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/.idea/git_toolbox_blame.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/.idea/git_toolbox_prj.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/.idea/modules.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/.idea/php.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
--------------------------------------------------------------------------------
/.idea/vcs.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/.idea/workspace.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 | {
35 | "associatedIndex": 7
36 | }
37 |
38 |
39 |
40 |
41 |
42 | {
43 | "keyToString": {
44 | "RunOnceActivity.OpenProjectViewOnStart": "true",
45 | "RunOnceActivity.ShowReadmeOnStart": "true",
46 | "WebServerToolWindowFactoryState": "false",
47 | "git-widget-placeholder": "master",
48 | "last_opened_file_path": "/usr/local/var/app/dayoff-API",
49 | "node.js.detected.package.eslint": "true",
50 | "node.js.detected.package.tslint": "true",
51 | "node.js.selected.package.eslint": "(autodetect)",
52 | "node.js.selected.package.tslint": "(autodetect)",
53 | "nodejs_package_manager_path": "npm",
54 | "ts.external.directory.path": "/Applications/PhpStorm.app/Contents/plugins/javascript-plugin/jsLanguageServicesImpl/external",
55 | "vue.rearranger.settings.migration": "true"
56 | }
57 | }
58 |
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 | 1695987325720
71 |
72 |
73 | 1695987325720
74 |
75 |
76 |
77 |
78 |
79 |
80 |
81 |
82 |
83 | 1735696141425
84 |
85 |
86 |
87 | 1735696141425
88 |
89 |
90 |
91 | 1735696318880
92 |
93 |
94 |
95 | 1735696318880
96 |
97 |
98 |
99 | 1735696672495
100 |
101 |
102 |
103 | 1735696672495
104 |
105 |
106 |
107 | 1735697092690
108 |
109 |
110 |
111 | 1735697092690
112 |
113 |
114 |
115 | 1735697352092
116 |
117 |
118 |
119 | 1735697352092
120 |
121 |
122 |
123 | 1735913320651
124 |
125 |
126 |
127 | 1735913320651
128 |
129 |
130 |
131 | 1735915182387
132 |
133 |
134 |
135 | 1735915182387
136 |
137 |
138 |
139 | 1735915395831
140 |
141 |
142 |
143 | 1735915395831
144 |
145 |
146 |
147 | 1735918158778
148 |
149 |
150 |
151 | 1735918158778
152 |
153 |
154 |
155 | 1735918498113
156 |
157 |
158 |
159 | 1735918498113
160 |
161 |
162 |
163 | 1735918670596
164 |
165 |
166 |
167 | 1735918670596
168 |
169 |
170 |
171 | 1735918933779
172 |
173 |
174 |
175 | 1735918933779
176 |
177 |
178 |
179 | 1735919144616
180 |
181 |
182 |
183 | 1735919144616
184 |
185 |
186 |
187 | 1735920243978
188 |
189 |
190 |
191 | 1735920243978
192 |
193 |
194 |
195 | 1735920894923
196 |
197 |
198 |
199 | 1735920894923
200 |
201 |
202 |
203 |
204 |
205 |
206 |
207 |
208 |
209 |
210 |
211 |
212 |
213 |
214 |
215 |
216 |
--------------------------------------------------------------------------------
/Endpoint.txt:
--------------------------------------------------------------------------------
1 | Endpoint API
2 |
3 | 1. data hari libur tahun sekarang "/api"
4 | 2. data hari libur berdasarkan tahun yang ditentukan"/api?year=2020"
5 | 3. data hari libur perbulan berdasarkan tahun saat ini "/api?month=5"
6 | 4. data hari libur perbulan berdasarkan tahun yang ditentukan "/api?month=5&year=2023"
7 |
8 | add develop branch
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | ## Dokumentasi
2 |
3 | Untuk dokumentasi API ini bisa mengunjungi https://dayoffapi.vercel.app/
4 |
--------------------------------------------------------------------------------
/app.js:
--------------------------------------------------------------------------------
1 | const request = require("request");
2 | const cheerio = require("cheerio");
3 | const fs = require("fs");
4 | const path = require("path");
5 | const querystring = require("querystring");
6 | const url = require("url");
7 | const express = require("express");
8 | const scraper = require("./services/scraper");
9 | const schedule = require("node-schedule");
10 | const { promisify } = require("util");
11 | const readdirAsync = promisify(fs.readdir);
12 | const readFileAsync = promisify(fs.readFile);
13 | const app = express();
14 |
15 | app.use(express.static("./public"));
16 |
17 | app.get("/api", async (req, res) => {
18 | const query = url.parse(req.url).query;
19 | const params = querystring.parse(query);
20 | let year;
21 |
22 | if (typeof params.year === "undefined") {
23 | year = new Date().getFullYear();
24 | } else {
25 | year = params.year;
26 | }
27 | try {
28 | const files = await readdirAsync(path.join(__dirname, "data"));
29 | const filename = files.find((file) => file.includes(year));
30 |
31 | if (filename) {
32 | const rawData = await readFileAsync(
33 | path.join(__dirname, "data", `${year}.json`)
34 | );
35 | let data = JSON.parse(rawData);
36 | data.forEach((item) => {
37 | if (item.keterangan.toLowerCase().includes("cuti bersama")) {
38 | item.is_cuti = true;
39 | } else {
40 | item.is_cuti = false;
41 | }
42 | });
43 | if (params.month) {
44 | console.log("month");
45 | const filterData = data.filter((item) => {
46 | const tanggal = new Date(item.tanggal);
47 | const monthNum = tanggal.getMonth() + 1;
48 | return monthNum == params.month;
49 | });
50 | res.json(filterData);
51 | } else {
52 | console.log("data dari file json");
53 | res.json(data);
54 | }
55 | } else {
56 | res.status(404).json({
57 | message: "Data tidak tersedia.",
58 | });
59 | }
60 | } catch (err) {
61 | console.error(err);
62 | res.status(500).json({
63 | message: "Internal server error.",
64 | });
65 | }
66 | });
67 |
68 | app.get("/api/get-data", async (req, res) => {
69 | try {
70 | const data = await scraper(cheerio, request, fs, schedule); // Langsung dapatkan data JSON
71 | res.json({
72 | status: 'OK',
73 | message: 'Success melakukan scraping data',
74 | data: data // Kirim data JSON langsung
75 | });
76 | } catch (error) {
77 | console.error(error);
78 | res.status(500).json({
79 | status: 'ERROR',
80 | message: 'Terjadi kesalahan saat melakukan scraping data',
81 | });
82 | }
83 | });
84 |
85 | app.get("/", (req, res) => {
86 | res.sendFile("index.html");
87 | });
88 |
89 | app.listen(3000, () => {
90 | console.log("Website berjalan pada port 3000!");
91 | });
92 |
--------------------------------------------------------------------------------
/data/2011.json:
--------------------------------------------------------------------------------
1 | [{"tanggal":"2011-01-1","keterangan":"Tahun Baru 2011"},{"tanggal":"2011-02-3","keterangan":"Tahun Baru Imlek 2562"},{"tanggal":"2011-02-15","keterangan":"Maulid Nabi Muhammad SAW"},{"tanggal":"2011-03-5","keterangan":"Hari Raya Nyepi Tahun Baru Saka 1933"},{"tanggal":"2011-04-22","keterangan":"Wafat Yesus Kristus"},{"tanggal":"2011-05-17","keterangan":"Hari Raya Waisak 2555"},{"tanggal":"2011-06-2","keterangan":"Kenaikan Yesus Kristus"},{"tanggal":"2011-06-29","keterangan":"Isra' Mi'raj Nabi Muhammad SAW"},{"tanggal":"2011-08-17","keterangan":"Hari Kemerdekaan Republik Indonesia"},{"tanggal":"2011-08-29","keterangan":"Cuti Bersama Idul Fitri 1432 H"},{"tanggal":"2011-08-30","keterangan":"Hari Raya Idul Fitri 1432 H"},{"tanggal":"2011-08-31","keterangan":"Hari Raya Idul Fitri 1432 H"},{"tanggal":"2011-09-1","keterangan":"Cuti Bersama Idul Fitri 1432 H"},{"tanggal":"2011-09-2","keterangan":"Cuti Bersama Idul Fitri 1432 H"},{"tanggal":"2011-11-6","keterangan":"Hari Raya Idul Adha 1432 H"},{"tanggal":"2011-11-27","keterangan":"Tahun Baru 1433 H"},{"tanggal":"2011-12-25","keterangan":"Hari Raya Natal"},{"tanggal":"2011-12-26","keterangan":"Cuti Bersama Natal"}]
--------------------------------------------------------------------------------
/data/2012.json:
--------------------------------------------------------------------------------
1 | [{"tanggal":"2012-01-1","keterangan":"Tahun Baru 2012 Masehi"},{"tanggal":"2012-01-23","keterangan":"Tahun Baru Imlek 2563"},{"tanggal":"2012-02-5","keterangan":"Maulid Nabi Muhammad SAW"},{"tanggal":"2012-03-23","keterangan":"Hari Raya Nyepi Tahun Baru Saka 1934"},{"tanggal":"2012-04-6","keterangan":"Wafat Yesus Kristus"},{"tanggal":"2012-05-6","keterangan":"Hari Raya Waisak 2556"},{"tanggal":"2012-05-17","keterangan":"Kenaikan Yesus Kristus"},{"tanggal":"2012-05-18","keterangan":"Cuti Bersama Kenaikan Yesus Kristus"},{"tanggal":"2012-06-17","keterangan":"Isra' Mi'raj Nabi Muhammad SAW"},{"tanggal":"2012-08-17","keterangan":"Hari Kemerdekaan Republik Indonesia"},{"tanggal":"2012-08-19","keterangan":"Hari Raya Idul Fitri 1433 H"},{"tanggal":"2012-08-20","keterangan":"Hari Raya Idul Fitri 1433 H"},{"tanggal":"2012-08-21","keterangan":"Cuti Bersama Idul Fitri 1433 H"},{"tanggal":"2012-08-22","keterangan":"Cuti Bersama Idul Fitri 1433 H"},{"tanggal":"2012-10-26","keterangan":"Hari Raya Idul Adha 1433 H"},{"tanggal":"2012-11-15","keterangan":"Tahun Baru 1434 H"},{"tanggal":"2012-11-16","keterangan":"Cuti Bersama Tahun Baru 1434 H"},{"tanggal":"2012-12-24","keterangan":"Cuti Bersama Natal"},{"tanggal":"2012-12-25","keterangan":"Hari Raya Natal"},{"tanggal":"2012-12-31","keterangan":"Cuti Bersama Tahun Baru 2013"}]
--------------------------------------------------------------------------------
/data/2013.json:
--------------------------------------------------------------------------------
1 | [{"tanggal":"2013-01-1","keterangan":"Tahun Baru 2013"},{"tanggal":"2013-01-24","keterangan":"Maulid Nabi Muhammad SAW"},{"tanggal":"2013-02-10","keterangan":"Tahun Baru Imlek 2564"},{"tanggal":"2013-03-12","keterangan":"Hari Raya Nyepi Tahun Baru Saka 1935"},{"tanggal":"2013-03-29","keterangan":"Wafat Isa Al-Masih"},{"tanggal":"2013-05-9","keterangan":"Kenaikan Isa Al-Masih"},{"tanggal":"2013-05-25","keterangan":"Hari Raya Waisak 2557"},{"tanggal":"2013-06-6","keterangan":"Isra' Mi'raj Nabi Muhammad SAW"},{"tanggal":"2013-08-5","keterangan":"Cuti Bersama Idul Fitri 1434 H"},{"tanggal":"2013-08-6","keterangan":"Cuti Bersama Idul Fitri 1434 H"},{"tanggal":"2013-08-7","keterangan":"Cuti Bersama Idul Fitri 1434 H"},{"tanggal":"2013-08-8","keterangan":"Hari Raya Idul Fitri 1434 H"},{"tanggal":"2013-08-9","keterangan":"Hari Raya Idul Fitri 1434 H"},{"tanggal":"2013-08-17","keterangan":"Hari Kemerdekaan Republik Indonesia"},{"tanggal":"2013-10-14","keterangan":"Cuti Bersama Idul Adha 1434 H"},{"tanggal":"2013-10-15","keterangan":"Hari Raya Idul Adha 1434 H"},{"tanggal":"2013-11-5","keterangan":"Tahun Baru 1435 H"},{"tanggal":"2013-12-25","keterangan":"Hari Raya Natal"},{"tanggal":"2013-12-26","keterangan":"Cuti Bersama Natal"}]
--------------------------------------------------------------------------------
/data/2014.json:
--------------------------------------------------------------------------------
1 | [{"tanggal":"2014-01-1","keterangan":"Tahun Baru 2014"},{"tanggal":"2014-01-14","keterangan":"Maulid Nabi Muhammad SAW"},{"tanggal":"2014-01-31","keterangan":"Tahun Baru Imlek 2565 Kongzili"},{"tanggal":"2014-03-31","keterangan":"Hari Raya Nyepi Tahun Baru Saka 1936"},{"tanggal":"2014-04-18","keterangan":"Wafat Isa Al-Masih"},{"tanggal":"2014-05-1","keterangan":"Hari Buruh"},{"tanggal":"2014-05-15","keterangan":"Hari Raya Waisak 2558"},{"tanggal":"2014-05-27","keterangan":"Isra' Mi'raj Nabi Muhammad SAW"},{"tanggal":"2014-05-29","keterangan":"Kenaikan Isa Al-Masih"},{"tanggal":"2014-07-28","keterangan":"Hari Raya Idul Fitri 1435 H"},{"tanggal":"2014-07-29","keterangan":"Hari Raya Idul Fitri 1435 H"},{"tanggal":"2014-07-30","keterangan":"Cuti Bersama Idul Fitri 1435 H"},{"tanggal":"2014-07-31","keterangan":"Cuti Bersama Idul Fitri 1435 H"},{"tanggal":"2014-08-1","keterangan":"Cuti Bersama Idul Fitri 1435 H"},{"tanggal":"2014-08-17","keterangan":"Hari Kemerdekaan Republik Indonesia"},{"tanggal":"2014-10-5","keterangan":"Hari Raya Idul Adha 1435 H"},{"tanggal":"2014-10-25","keterangan":"Tahun Baru 1436 H"},{"tanggal":"2014-12-25","keterangan":"Hari Raya Natal"},{"tanggal":"2014-12-26","keterangan":"Cuti Bersama Natal"}]
--------------------------------------------------------------------------------
/data/2015.json:
--------------------------------------------------------------------------------
1 | [{"tanggal":"2015-01-1","keterangan":"Tahun Baru"},{"tanggal":"2015-01-3","keterangan":"Maulid Nabi Muhammad SAW"},{"tanggal":"2015-02-19","keterangan":"Tahun Baru Imlek 2566 Kongzili"},{"tanggal":"2015-03-21","keterangan":"Hari Raya Nyepi Tahun Baru Saka 1937"},{"tanggal":"2015-04-3","keterangan":"Wafat Yesus Kristus"},{"tanggal":"2015-05-1","keterangan":"Hari Buruh"},{"tanggal":"2015-05-14","keterangan":"Kenaikan Yesus Kristus"},{"tanggal":"2015-05-16","keterangan":"Isra' Mi'raj Nabi Muhammad SAW"},{"tanggal":"2015-06-2","keterangan":"Hari Raya Waisak 2559"},{"tanggal":"2015-07-16","keterangan":"Cuti Bersama Idul Fitri"},{"tanggal":"2015-07-17","keterangan":"Hari Raya Idul Fitri 1436 H"},{"tanggal":"2015-07-18","keterangan":"Hari Raya Idul Fitri 1436 H"},{"tanggal":"2015-07-20","keterangan":"Cuti Bersama Idul Fitri"},{"tanggal":"2015-07-21","keterangan":"Cuti Bersama Idul Fitri"},{"tanggal":"2015-08-17","keterangan":"Hari Kemerdekaan Republik Indonesia"},{"tanggal":"2015-09-24","keterangan":"Hari Raya Idul Adha 1436 H"},{"tanggal":"2015-10-14","keterangan":"Tahun Baru Islam 1437 H"},{"tanggal":"2015-12-9","keterangan":"Pemilihan Kepala Daerah (Pilkada) serentak"},{"tanggal":"2015-12-24","keterangan":"Cuti Bersama Natal"},{"tanggal":"2015-12-25","keterangan":"Natal"}]
--------------------------------------------------------------------------------
/data/2016.json:
--------------------------------------------------------------------------------
1 | [{"tanggal":"2016-01-1","keterangan":"Tahun Baru 2016 Masehi"},{"tanggal":"2016-02-8","keterangan":"Tahun Baru Imlek 2567 Kongzili"},{"tanggal":"2016-03-9","keterangan":"Hari Raya Nyepi Tahun Baru Saka 1938"},{"tanggal":"2016-03-25","keterangan":"Wafat Isa Al-Masih"},{"tanggal":"2016-05-1","keterangan":"Hari Buruh"},{"tanggal":"2016-05-5","keterangan":"Kenaikan Yesus Kristus"},{"tanggal":"2016-05-6","keterangan":"Isra' Mi'raj Nabi Muhammad SAW"},{"tanggal":"2016-05-22","keterangan":"Hari Raya Waisak 2560"},{"tanggal":"2016-07-4","keterangan":"Cuti Bersama Idul Fitri"},{"tanggal":"2016-07-5","keterangan":"Cuti Bersama Idul Fitri"},{"tanggal":"2016-07-6","keterangan":"Hari Raya Idul Fitri 1437 H"},{"tanggal":"2016-07-7","keterangan":"Hari Raya Idul Fitri 1437 H"},{"tanggal":"2016-07-8","keterangan":"Cuti Bersama Idul Fitri"},{"tanggal":"2016-08-17","keterangan":"Hari Kemerdekaan Republik Indonesia"},{"tanggal":"2016-09-12","keterangan":"Hari Raya Idul Adha 1437 H"},{"tanggal":"2016-10-2","keterangan":"Tahun Baru Islam 1438 H"},{"tanggal":"2016-12-12","keterangan":"Maulid Nabi Muhammad SAW"},{"tanggal":"2016-12-25","keterangan":"Hari Raya Natal"},{"tanggal":"2016-12-26","keterangan":"Cuti Bersama Natal"}]
--------------------------------------------------------------------------------
/data/2017.json:
--------------------------------------------------------------------------------
1 | [{"tanggal":"2017-01-1","keterangan":"Tahun Baru 2017 Masehi"},{"tanggal":"2017-01-2","keterangan":"Cuti bersama tahun baru"},{"tanggal":"2017-01-28","keterangan":"Tahun Baru Imlek 2568 Kongzili"},{"tanggal":"2017-02-15","keterangan":"Pilkada Serentak 2017"},{"tanggal":"2017-03-28","keterangan":"Hari Raya Nyepi Tahun Baru Saka 1939"},{"tanggal":"2017-04-14","keterangan":"Wafat Isa Al-Masih"},{"tanggal":"2017-04-24","keterangan":"Isra' Mi'raj Nabi Muhammad SAW"},{"tanggal":"2017-05-1","keterangan":"Hari Buruh Internasional"},{"tanggal":"2017-05-11","keterangan":"Hari Raya Waisak 2561"},{"tanggal":"2017-05-25","keterangan":"Kenaikan Isa Al Masih"},{"tanggal":"2017-06-1","keterangan":"Hari Lahir Pancasila"},{"tanggal":"2017-06-25","keterangan":"Hari Raya Idul Fitri 1438 H"},{"tanggal":"2017-06-26","keterangan":"Hari Raya Idul Fitri 1438 H"},{"tanggal":"2017-06-27","keterangan":"Cuti bersama Idul Fitri"},{"tanggal":"2017-06-28","keterangan":"Cuti bersama Idul Fitri"},{"tanggal":"2017-06-29","keterangan":"Cuti bersama Idul Fitri"},{"tanggal":"2017-06-30","keterangan":"Cuti bersama Idul Fitri"},{"tanggal":"2017-08-17","keterangan":"Hari Kemerdekaan RI ke 72"},{"tanggal":"2017-09-1","keterangan":"Hari Raya Idul Adha 1438 H"},{"tanggal":"2017-09-21","keterangan":"Tahun Baru Islam 1439 H"},{"tanggal":"2017-12-1","keterangan":"Maulid Nabi Muhammad SAW"},{"tanggal":"2017-12-25","keterangan":"Hari Raya Natal"},{"tanggal":"2017-12-26","keterangan":"Cuti bersama Natal"}]
--------------------------------------------------------------------------------
/data/2018.json:
--------------------------------------------------------------------------------
1 | [{"tanggal":"2018-01-1","keterangan":"Tahun Baru 2018 Masehi"},{"tanggal":"2018-02-16","keterangan":"Tahun Baru Imlek 2569 Kongzili"},{"tanggal":"2018-03-17","keterangan":"Hari Raya Nyepi Tahun Baru Saka 1940"},{"tanggal":"2018-03-30","keterangan":"Wafat Isa Al-Masih"},{"tanggal":"2018-04-14","keterangan":"Isra' Mi'raj Nabi Muhammad SAW"},{"tanggal":"2018-05-1","keterangan":"Hari Buruh Internasional"},{"tanggal":"2018-05-10","keterangan":"Kenaikan Isa Al-Masih"},{"tanggal":"2018-05-29","keterangan":"Hari Waisak 2562"},{"tanggal":"2018-06-1","keterangan":"Hari Lahir Pancasila"},{"tanggal":"2018-06-11","keterangan":"Cuti Bersama Idul Fitri 1439 H"},{"tanggal":"2018-06-12","keterangan":"Cuti Bersama Idul Fitri 1439 H"},{"tanggal":"2018-06-13","keterangan":"Cuti Bersama Idul Fitri 1439 H"},{"tanggal":"2018-06-14","keterangan":"Cuti Bersama Idul Fitri 1439 H"},{"tanggal":"2018-06-15","keterangan":"Hari Raya Idul Fitri 1439 H"},{"tanggal":"2018-06-16","keterangan":"Hari Raya Idul Fitri 1439 H"},{"tanggal":"2018-06-18","keterangan":"Cuti Bersama Idul Fitri 1439 H"},{"tanggal":"2018-06-19","keterangan":"Cuti Bersama Idul Fitri 1439 H"},{"tanggal":"2018-06-20","keterangan":"Cuti Bersama Idul Fitri 1439 H"},{"tanggal":"2018-06-27","keterangan":"Libur Nasional Pilkada Serentak 2018"},{"tanggal":"2018-08-17","keterangan":"Hari Kemerdekaan RI ke 73"},{"tanggal":"2018-08-22","keterangan":"Idul Adha 1439 H"},{"tanggal":"2018-09-11","keterangan":"Tahun Baru Islam 1440 H"},{"tanggal":"2018-11-20","keterangan":"Maulid Nabi Muhammad SAW"},{"tanggal":"2018-12-24","keterangan":"Cuti Bersama Natal"},{"tanggal":"2018-12-25","keterangan":"Hari Raya Natal"}]
--------------------------------------------------------------------------------
/data/2019.json:
--------------------------------------------------------------------------------
1 | [{"tanggal":"2019-01-1","keterangan":"Tahun Baru 2019 Masehi"},{"tanggal":"2019-02-5","keterangan":"Tahun Baru Imlek 2570 Kongzili"},{"tanggal":"2019-03-7","keterangan":"Hari Raya Nyepi Tahun Baru Saka 1941"},{"tanggal":"2019-04-3","keterangan":"Isra Mi'raj Nabi Muhammad SAW"},{"tanggal":"2019-04-19","keterangan":"Wafat Isa Al Masih"},{"tanggal":"2019-05-1","keterangan":"Hari Buruh Internasional"},{"tanggal":"2019-05-19","keterangan":"Hari Raya Waisak 2563"},{"tanggal":"2019-05-30","keterangan":"Kenaikan Isa Al Masih"},{"tanggal":"2019-06-1","keterangan":"Hari Lahir Pancasila"},{"tanggal":"2019-06-3","keterangan":"Cuti Bersama Idul Fitri 1440 Hijriyah"},{"tanggal":"2019-06-4","keterangan":"Cuti Bersama Idul Fitri 1440 Hijriyah"},{"tanggal":"2019-06-5","keterangan":"Hari Raya Idul Fitri 1440 Hijriyah"},{"tanggal":"2019-06-6","keterangan":"Hari Raya Idul Fitri 1440 Hijriyah"},{"tanggal":"2019-06-7","keterangan":"Cuti Bersama Idul Fitri 1440 Hijriyah"},{"tanggal":"2019-08-11","keterangan":"Hari Raya Idul Adha 1440 Hijriyah"},{"tanggal":"2019-08-17","keterangan":"Hari Kemerdekaan RI ke 74"},{"tanggal":"2019-09-1","keterangan":"Tahun Baru Islam 1441 Hijriyah"},{"tanggal":"2019-11-9","keterangan":"Maulid Nabi Muhammad SAW"},{"tanggal":"2019-12-24","keterangan":"Cuti Bersama Hari Raya Natal"},{"tanggal":"2019-12-25","keterangan":"Hari Raya Natal"}]
--------------------------------------------------------------------------------
/data/2020.json:
--------------------------------------------------------------------------------
1 | [{"tanggal":"2020-01-1","keterangan":"Tahun Baru 2020 Masehi"},{"tanggal":"2020-01-25","keterangan":"Tahun Baru Imlek 2571 Kongzili"},{"tanggal":"2020-03-22","keterangan":"Isra Mi'raj Nabi Muhammad SAW"},{"tanggal":"2020-03-25","keterangan":"Hari Raya Nyepi Tahun Baru Saka 1942"},{"tanggal":"2020-04-10","keterangan":"Wafat Isa Al Masih"},{"tanggal":"2020-05-1","keterangan":"Hari Buruh Internasional"},{"tanggal":"2020-05-7","keterangan":"Hari Raya Waisak 2564"},{"tanggal":"2020-05-21","keterangan":"Kenaikan Isa Al Masih"},{"tanggal":"2020-05-24","keterangan":"Hari Raya Idul Fitri 1441 Hijriyah"},{"tanggal":"2020-05-25","keterangan":"Hari Raya Idul Fitri 1441 Hijriyah"},{"tanggal":"2020-06-1","keterangan":"Hari Lahir Pancasila"},{"tanggal":"2020-07-31","keterangan":"Hari Raya Idul Adha 1441 Hijriyah"},{"tanggal":"2020-08-17","keterangan":"Hari Kemerdekaan RI ke 75"},{"tanggal":"2020-08-20","keterangan":"Tahun Baru Islam 1442 Hijriyah"},{"tanggal":"2020-08-21","keterangan":"Cuti Bersama Tahun Baru Islam 1442 Hijriyah"},{"tanggal":"2020-10-28","keterangan":"Cuti Bersama Maulid Nabi Muhammad SAW"},{"tanggal":"2020-10-29","keterangan":"Maulid Nabi Muhammad SAW"},{"tanggal":"2020-10-30","keterangan":"Cuti Bersama Maulid Nabi Muhammad SAW"},{"tanggal":"2020-12-9","keterangan":"Pilkada 2020"},{"tanggal":"2020-12-24","keterangan":"Cuti Bersama Hari Raya Natal"},{"tanggal":"2020-12-25","keterangan":"Hari Raya Natal"},{"tanggal":"2020-12-31","keterangan":"Pengganti Cuti Bersama Hari Raya Idul Fitri 1441 Hijriyah"}]
--------------------------------------------------------------------------------
/data/2021.json:
--------------------------------------------------------------------------------
1 | [{"tanggal":"2021-01-1","keterangan":"Tahun Baru 2021 Masehi"},{"tanggal":"2021-02-12","keterangan":"Tahun Baru Imlek 2572 Kongzili"},{"tanggal":"2021-03-11","keterangan":"Isra' Mi'raj Nabi Muhammad SAW"},{"tanggal":"2021-03-14","keterangan":"Hari Suci Nyepi Tahun Baru Saka 1943"},{"tanggal":"2021-04-2","keterangan":"Wafat Isa Al Masih"},{"tanggal":"2021-05-1","keterangan":"Hari Buruh Internasional"},{"tanggal":"2021-05-12","keterangan":"Cuti Bersama Hari Raya Idul Fitri 1442 Hijriah"},{"tanggal":"2021-05-13","keterangan":"Kenaikan Isa Al Masih"},{"tanggal":"2021-05-13","keterangan":"Hari Raya Idul fitri 1442 Hijriah"},{"tanggal":"2021-05-14","keterangan":"Hari Raya Idul fitri 1442 Hijriah"},{"tanggal":"2021-05-26","keterangan":"Hari Raya Waisak 2565"},{"tanggal":"2021-06-1","keterangan":"Hari Lahir Pancasila"},{"tanggal":"2021-07-20","keterangan":"Hari Raya Idul Adha 1442 Hijriah"},{"tanggal":"2021-08-11","keterangan":"Tahun Baru Islam 1443 Hijriah"},{"tanggal":"2021-08-17","keterangan":"Hari Kemerdekaan Republik Indonesia"},{"tanggal":"2021-10-20","keterangan":"Maulid Nabi Muhammad SAW"},{"tanggal":"2021-12-25","keterangan":"Hari Raya Natal"}]
--------------------------------------------------------------------------------
/data/2022.json:
--------------------------------------------------------------------------------
1 | [{"tanggal":"2022-01-1","keterangan":"Tahun Baru 2022"},{"tanggal":"2022-02-1","keterangan":"Tahun Baru Imlek 2573 Kongzili"},{"tanggal":"2022-02-28","keterangan":"Isra' Mi'raj Nabi Muhammad SAW"},{"tanggal":"2022-03-3","keterangan":"Hari Raya Nyepi 1944"},{"tanggal":"2022-04-15","keterangan":"Wafat Isa Al Masih"},{"tanggal":"2022-04-29","keterangan":"Cuti Bersama Hari Raya Idul Fitri 1443 H"},{"tanggal":"2022-05-1","keterangan":"Hari Buruh Internasional"},{"tanggal":"2022-05-2","keterangan":"Idul Fitri 1443 H"},{"tanggal":"2022-05-3","keterangan":"Idul Fitri 1443 H"},{"tanggal":"2022-05-4","keterangan":"Cuti Bersama Hari Raya Idul Fitri 1443 H"},{"tanggal":"2022-05-5","keterangan":"Cuti Bersama Hari Raya Idul Fitri 1443 H"},{"tanggal":"2022-05-6","keterangan":"Cuti Bersama Hari Raya Idul Fitri 1443 H"},{"tanggal":"2022-05-16","keterangan":"Hari Raya Waisak 2566"},{"tanggal":"2022-05-26","keterangan":"Kenaikan Isa Al Masih"},{"tanggal":"2022-06-1","keterangan":"Hari Lahir Pancasila"},{"tanggal":"2022-07-9","keterangan":"Hari Raya Idul Adha 1443 H"},{"tanggal":"2022-07-30","keterangan":"Tahun Baru Islam 1444 H"},{"tanggal":"2022-08-17","keterangan":"Hari Kemerdekaan Republik Indonesia"},{"tanggal":"2022-10-8","keterangan":"Maulid Nabi Muhammad SAW"},{"tanggal":"2022-12-25","keterangan":"Hari Raya Natal"}]
--------------------------------------------------------------------------------
/data/2023.json:
--------------------------------------------------------------------------------
1 | [{"tanggal":"2023-01-1","keterangan":"Tahun Baru 2023"},{"tanggal":"2023-01-22","keterangan":"Tahun Baru Imlek 2574 Kongzili"},{"tanggal":"2023-01-23","keterangan":"Cuti Bersama Imlek"},{"tanggal":"2023-02-18","keterangan":"Isra' Mi'raj Nabi Muhammad SAW"},{"tanggal":"2023-03-22","keterangan":"Hari Raya Nyepi 1945"},{"tanggal":"2023-03-23","keterangan":"Cuti Bersama Nyepi"},{"tanggal":"2023-04-7","keterangan":"Wafat Isa Al Masih"},{"tanggal":"2023-04-19","keterangan":"Cuti Bersama Idul Fitri"},{"tanggal":"2023-04-20","keterangan":"Cuti Bersama Idul Fitri"},{"tanggal":"2023-04-21","keterangan":"Cuti Bersama Idul Fitri"},{"tanggal":"2023-04-22","keterangan":"Idul Fitri 1444 H"},{"tanggal":"2023-04-23","keterangan":"Idul Fitri 1444 H"},{"tanggal":"2023-04-24","keterangan":"Cuti Bersama Idul Fitri"},{"tanggal":"2023-04-25","keterangan":"Cuti Bersama Idul Fitri"},{"tanggal":"2023-05-1","keterangan":"Hari Buruh Internasional"},{"tanggal":"2023-05-18","keterangan":"Kenaikan Isa Al Masih"},{"tanggal":"2023-06-1","keterangan":"Hari Lahir Pancasila"},{"tanggal":"2023-06-2","keterangan":"Cuti Bersama Waisak"},{"tanggal":"2023-06-4","keterangan":"Hari Raya Waisak 2567"},{"tanggal":"2023-06-28","keterangan":"Cuti Bersama Idul Adha"},{"tanggal":"2023-06-29","keterangan":"Hari Raya Idul Adha 1444 H"},{"tanggal":"2023-06-30","keterangan":"Cuti Bersama Idul Adha"},{"tanggal":"2023-07-19","keterangan":"Tahun Baru Islam 1445 H"},{"tanggal":"2023-08-17","keterangan":"Hari Kemerdekaan Republik Indonesia ke 78"},{"tanggal":"2023-09-28","keterangan":"Maulid Nabi Muhammad SAW"},{"tanggal":"2023-12-25","keterangan":"Hari Raya Natal"},{"tanggal":"2023-12-26","keterangan":"Cuti Bersama Natal"}]
--------------------------------------------------------------------------------
/data/2024.json:
--------------------------------------------------------------------------------
1 | [{"tanggal":"2024-01-1","keterangan":"Tahun Baru 2024 Masehi"},{"tanggal":"2024-02-8","keterangan":"Isra' Mi'raj Nabi Muhammad SAW"},{"tanggal":"2024-02-9","keterangan":"Cuti Bersama Imlek 2575 Kongzili"},{"tanggal":"2024-02-10","keterangan":"Tahun Baru Imlek 2575 Kongzili"},{"tanggal":"2024-02-14","keterangan":"Pemilihan Umum (Pemilu)"},{"tanggal":"2024-03-11","keterangan":"Hari Raya Nyepi Tahun Baru Saka 1946"},{"tanggal":"2024-03-12","keterangan":"Cuti Bersama Hari Raya Nyepi"},{"tanggal":"2024-03-29","keterangan":"Wafat Isa Al Masih"},{"tanggal":"2024-03-31","keterangan":"Hari Paskah"},{"tanggal":"2024-04-8","keterangan":"Cuti Bersama Hari Raya Idul Fitri"},{"tanggal":"2024-04-9","keterangan":"Cuti Bersama Hari Raya Idul Fitri"},{"tanggal":"2024-04-10","keterangan":"Hari Raya Idul Fitri 1445 H"},{"tanggal":"2024-04-11","keterangan":"Hari Raya Idul Fitri 1445 H"},{"tanggal":"2024-04-12","keterangan":"Cuti Bersama Hari Raya Idul Fitri"},{"tanggal":"2024-04-15","keterangan":"Cuti Bersama Hari Raya Idul Fitri"},{"tanggal":"2024-05-1","keterangan":"Hari Buruh Internasional"},{"tanggal":"2024-05-9","keterangan":"Kenaikan Isa Al Masih"},{"tanggal":"2024-05-10","keterangan":"Cuti Bersama Kenaikan Isa Al Masih"},{"tanggal":"2024-05-23","keterangan":"Hari Raya Waisak 2568 BE"},{"tanggal":"2024-05-24","keterangan":"Cuti Bersama Hari Raya Waisak"},{"tanggal":"2024-06-1","keterangan":"Hari Lahir Pancasila"},{"tanggal":"2024-06-17","keterangan":"Hari Raya Idul Adha 1445 H"},{"tanggal":"2024-06-18","keterangan":"Cuti Bersama Hari Raya Idul Adha"},{"tanggal":"2024-07-7","keterangan":"Tahun Baru Islam 1446 H"},{"tanggal":"2024-08-17","keterangan":"Hari Kemerdekaan Republik Indonesia ke 79"},{"tanggal":"2024-09-16","keterangan":"Maulid Nabi Muhammad SAW"},{"tanggal":"2024-11-27","keterangan":"Pemilihan Kepala Daerah (Pilkada) Serentak"},{"tanggal":"2024-12-25","keterangan":"Hari Raya Natal"},{"tanggal":"2024-12-26","keterangan":"Cuti Bersama Hari Raya Natal"}]
2 |
--------------------------------------------------------------------------------
/data/2025.json:
--------------------------------------------------------------------------------
1 | [{"tanggal":"2025-01-1","keterangan":"Tahun Baru 2025 Masehi"},{"tanggal":"2025-01-27","keterangan":"Isra' Mi'raj Nabi Muhammad SAW"},{"tanggal":"2025-01-28","keterangan":"Cuti Bersama Tahun Baru Imlek 2576 Kongzili"},{"tanggal":"2025-01-29","keterangan":"Tahun Baru Imlek 2576 Kongzili"},{"tanggal":"2025-03-28","keterangan":"Cuti Bersama Hari Raya Nyepi Tahun Baru Saka 1947"},{"tanggal":"2025-03-29","keterangan":"Hari Raya Nyepi Tahun Baru Saka 1947"},{"tanggal":"2025-03-31","keterangan":"Hari Raya Idul Fitri 1446H"},{"tanggal":"2025-04-1","keterangan":"Hari Raya Idul Fitri 1446H"},{"tanggal":"2025-04-2","keterangan":"Cuti Bersama Hari Raya Idul Fitri 1446H"},{"tanggal":"2025-04-3","keterangan":"Cuti Bersama Hari Raya Idul Fitri 1446H"},{"tanggal":"2025-04-4","keterangan":"Cuti Bersama Hari Raya Idul Fitri 1446H"},{"tanggal":"2025-04-7","keterangan":"Cuti Bersama Hari Raya Idul Fitri 1446H"},{"tanggal":"2025-04-18","keterangan":"Wafat Yesus Kristus"},{"tanggal":"2025-04-20","keterangan":"Kebangkitan Yesus Kristus"},{"tanggal":"2025-05-1","keterangan":"Hari Buruh Internasional"},{"tanggal":"2025-05-12","keterangan":"Hari Raya Waisak 2569 BE"},{"tanggal":"2025-05-13","keterangan":"Cuti Bersama Hari Raya Waisak 2569 BE"},{"tanggal":"2025-05-29","keterangan":"Kenaikan Yesus Kristus"},{"tanggal":"2025-05-30","keterangan":"Cuti Bersama Kenaikan Yesus Kristus"},{"tanggal":"2025-06-1","keterangan":"Hari Lahir Pancasila"},{"tanggal":"2025-06-6","keterangan":"Hari Raya Idul Adha 1446H"},{"tanggal":"2025-06-9","keterangan":"Cuti Bersama Hari Raya Idul Adha 1446H"},{"tanggal":"2025-06-27","keterangan":"Tahun Baru Islam 1 Muharram 1447H"},{"tanggal":"2025-08-17","keterangan":"Hari Kemerdekaan Republik Indonesia ke 80"},{"tanggal":"2025-09-5","keterangan":"Maulid Nabi Muhammad SAW"},{"tanggal":"2025-12-25","keterangan":"Hari Raya Natal"},{"tanggal":"2025-12-26","keterangan":"Cuti Bersama Hari Raya Natal"}]
--------------------------------------------------------------------------------
/package-lock.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "dayoffapi",
3 | "version": "1.0.0",
4 | "lockfileVersion": 3,
5 | "requires": true,
6 | "packages": {
7 | "": {
8 | "name": "dayoffapi",
9 | "version": "1.0.0",
10 | "license": "ISC",
11 | "dependencies": {
12 | "cheerio": "^1.0.0-rc.12",
13 | "dotenv": "^16.4.7",
14 | "express": "^4.18.2",
15 | "node-schedule": "^2.1.1",
16 | "nodemon": "^2.0.22",
17 | "pg": "^8.13.1",
18 | "request": "^2.88.2",
19 | "sequelize": "^6.37.5"
20 | }
21 | },
22 | "node_modules/@types/debug": {
23 | "version": "4.1.12",
24 | "resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.12.tgz",
25 | "integrity": "sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==",
26 | "license": "MIT",
27 | "dependencies": {
28 | "@types/ms": "*"
29 | }
30 | },
31 | "node_modules/@types/ms": {
32 | "version": "0.7.34",
33 | "resolved": "https://registry.npmjs.org/@types/ms/-/ms-0.7.34.tgz",
34 | "integrity": "sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==",
35 | "license": "MIT"
36 | },
37 | "node_modules/@types/node": {
38 | "version": "22.10.5",
39 | "resolved": "https://registry.npmjs.org/@types/node/-/node-22.10.5.tgz",
40 | "integrity": "sha512-F8Q+SeGimwOo86fiovQh8qiXfFEh2/ocYv7tU5pJ3EXMSSxk1Joj5wefpFK2fHTf/N6HKGSxIDBT9f3gCxXPkQ==",
41 | "license": "MIT",
42 | "dependencies": {
43 | "undici-types": "~6.20.0"
44 | }
45 | },
46 | "node_modules/@types/validator": {
47 | "version": "13.12.2",
48 | "resolved": "https://registry.npmjs.org/@types/validator/-/validator-13.12.2.tgz",
49 | "integrity": "sha512-6SlHBzUW8Jhf3liqrGGXyTJSIFe4nqlJ5A5KaMZ2l/vbM3Wh3KSybots/wfWVzNLK4D1NZluDlSQIbIEPx6oyA==",
50 | "license": "MIT"
51 | },
52 | "node_modules/accepts": {
53 | "version": "1.3.8",
54 | "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz",
55 | "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==",
56 | "license": "MIT",
57 | "dependencies": {
58 | "mime-types": "~2.1.34",
59 | "negotiator": "0.6.3"
60 | },
61 | "engines": {
62 | "node": ">= 0.6"
63 | }
64 | },
65 | "node_modules/ajv": {
66 | "version": "6.12.6",
67 | "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
68 | "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
69 | "license": "MIT",
70 | "dependencies": {
71 | "fast-deep-equal": "^3.1.1",
72 | "fast-json-stable-stringify": "^2.0.0",
73 | "json-schema-traverse": "^0.4.1",
74 | "uri-js": "^4.2.2"
75 | },
76 | "funding": {
77 | "type": "github",
78 | "url": "https://github.com/sponsors/epoberezkin"
79 | }
80 | },
81 | "node_modules/anymatch": {
82 | "version": "3.1.3",
83 | "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz",
84 | "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==",
85 | "license": "ISC",
86 | "dependencies": {
87 | "normalize-path": "^3.0.0",
88 | "picomatch": "^2.0.4"
89 | },
90 | "engines": {
91 | "node": ">= 8"
92 | }
93 | },
94 | "node_modules/array-flatten": {
95 | "version": "1.1.1",
96 | "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz",
97 | "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==",
98 | "license": "MIT"
99 | },
100 | "node_modules/asn1": {
101 | "version": "0.2.6",
102 | "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.6.tgz",
103 | "integrity": "sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==",
104 | "license": "MIT",
105 | "dependencies": {
106 | "safer-buffer": "~2.1.0"
107 | }
108 | },
109 | "node_modules/assert-plus": {
110 | "version": "1.0.0",
111 | "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz",
112 | "integrity": "sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==",
113 | "license": "MIT",
114 | "engines": {
115 | "node": ">=0.8"
116 | }
117 | },
118 | "node_modules/asynckit": {
119 | "version": "0.4.0",
120 | "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
121 | "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==",
122 | "license": "MIT"
123 | },
124 | "node_modules/aws-sign2": {
125 | "version": "0.7.0",
126 | "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz",
127 | "integrity": "sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==",
128 | "license": "Apache-2.0",
129 | "engines": {
130 | "node": "*"
131 | }
132 | },
133 | "node_modules/aws4": {
134 | "version": "1.13.2",
135 | "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.13.2.tgz",
136 | "integrity": "sha512-lHe62zvbTB5eEABUVi/AwVh0ZKY9rMMDhmm+eeyuuUQbQ3+J+fONVQOZyj+DdrvD4BY33uYniyRJ4UJIaSKAfw==",
137 | "license": "MIT"
138 | },
139 | "node_modules/balanced-match": {
140 | "version": "1.0.2",
141 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
142 | "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
143 | "license": "MIT"
144 | },
145 | "node_modules/bcrypt-pbkdf": {
146 | "version": "1.0.2",
147 | "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz",
148 | "integrity": "sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==",
149 | "license": "BSD-3-Clause",
150 | "dependencies": {
151 | "tweetnacl": "^0.14.3"
152 | }
153 | },
154 | "node_modules/binary-extensions": {
155 | "version": "2.3.0",
156 | "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz",
157 | "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==",
158 | "license": "MIT",
159 | "engines": {
160 | "node": ">=8"
161 | },
162 | "funding": {
163 | "url": "https://github.com/sponsors/sindresorhus"
164 | }
165 | },
166 | "node_modules/body-parser": {
167 | "version": "1.20.3",
168 | "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.3.tgz",
169 | "integrity": "sha512-7rAxByjUMqQ3/bHJy7D6OGXvx/MMc4IqBn/X0fcM1QUcAItpZrBEYhWGem+tzXH90c+G01ypMcYJBO9Y30203g==",
170 | "license": "MIT",
171 | "dependencies": {
172 | "bytes": "3.1.2",
173 | "content-type": "~1.0.5",
174 | "debug": "2.6.9",
175 | "depd": "2.0.0",
176 | "destroy": "1.2.0",
177 | "http-errors": "2.0.0",
178 | "iconv-lite": "0.4.24",
179 | "on-finished": "2.4.1",
180 | "qs": "6.13.0",
181 | "raw-body": "2.5.2",
182 | "type-is": "~1.6.18",
183 | "unpipe": "1.0.0"
184 | },
185 | "engines": {
186 | "node": ">= 0.8",
187 | "npm": "1.2.8000 || >= 1.4.16"
188 | }
189 | },
190 | "node_modules/body-parser/node_modules/iconv-lite": {
191 | "version": "0.4.24",
192 | "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz",
193 | "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==",
194 | "license": "MIT",
195 | "dependencies": {
196 | "safer-buffer": ">= 2.1.2 < 3"
197 | },
198 | "engines": {
199 | "node": ">=0.10.0"
200 | }
201 | },
202 | "node_modules/boolbase": {
203 | "version": "1.0.0",
204 | "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz",
205 | "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==",
206 | "license": "ISC"
207 | },
208 | "node_modules/brace-expansion": {
209 | "version": "1.1.11",
210 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
211 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
212 | "license": "MIT",
213 | "dependencies": {
214 | "balanced-match": "^1.0.0",
215 | "concat-map": "0.0.1"
216 | }
217 | },
218 | "node_modules/braces": {
219 | "version": "3.0.3",
220 | "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz",
221 | "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==",
222 | "license": "MIT",
223 | "dependencies": {
224 | "fill-range": "^7.1.1"
225 | },
226 | "engines": {
227 | "node": ">=8"
228 | }
229 | },
230 | "node_modules/bytes": {
231 | "version": "3.1.2",
232 | "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz",
233 | "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==",
234 | "license": "MIT",
235 | "engines": {
236 | "node": ">= 0.8"
237 | }
238 | },
239 | "node_modules/call-bind-apply-helpers": {
240 | "version": "1.0.1",
241 | "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.1.tgz",
242 | "integrity": "sha512-BhYE+WDaywFg2TBWYNXAE+8B1ATnThNBqXHP5nQu0jWJdVvY2hvkpyB3qOmtmDePiS5/BDQ8wASEWGMWRG148g==",
243 | "license": "MIT",
244 | "dependencies": {
245 | "es-errors": "^1.3.0",
246 | "function-bind": "^1.1.2"
247 | },
248 | "engines": {
249 | "node": ">= 0.4"
250 | }
251 | },
252 | "node_modules/call-bound": {
253 | "version": "1.0.3",
254 | "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.3.tgz",
255 | "integrity": "sha512-YTd+6wGlNlPxSuri7Y6X8tY2dmm12UMH66RpKMhiX6rsk5wXXnYgbUcOt8kiS31/AjfoTOvCsE+w8nZQLQnzHA==",
256 | "license": "MIT",
257 | "dependencies": {
258 | "call-bind-apply-helpers": "^1.0.1",
259 | "get-intrinsic": "^1.2.6"
260 | },
261 | "engines": {
262 | "node": ">= 0.4"
263 | },
264 | "funding": {
265 | "url": "https://github.com/sponsors/ljharb"
266 | }
267 | },
268 | "node_modules/caseless": {
269 | "version": "0.12.0",
270 | "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz",
271 | "integrity": "sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==",
272 | "license": "Apache-2.0"
273 | },
274 | "node_modules/cheerio": {
275 | "version": "1.0.0",
276 | "resolved": "https://registry.npmjs.org/cheerio/-/cheerio-1.0.0.tgz",
277 | "integrity": "sha512-quS9HgjQpdaXOvsZz82Oz7uxtXiy6UIsIQcpBj7HRw2M63Skasm9qlDocAM7jNuaxdhpPU7c4kJN+gA5MCu4ww==",
278 | "license": "MIT",
279 | "dependencies": {
280 | "cheerio-select": "^2.1.0",
281 | "dom-serializer": "^2.0.0",
282 | "domhandler": "^5.0.3",
283 | "domutils": "^3.1.0",
284 | "encoding-sniffer": "^0.2.0",
285 | "htmlparser2": "^9.1.0",
286 | "parse5": "^7.1.2",
287 | "parse5-htmlparser2-tree-adapter": "^7.0.0",
288 | "parse5-parser-stream": "^7.1.2",
289 | "undici": "^6.19.5",
290 | "whatwg-mimetype": "^4.0.0"
291 | },
292 | "engines": {
293 | "node": ">=18.17"
294 | },
295 | "funding": {
296 | "url": "https://github.com/cheeriojs/cheerio?sponsor=1"
297 | }
298 | },
299 | "node_modules/cheerio-select": {
300 | "version": "2.1.0",
301 | "resolved": "https://registry.npmjs.org/cheerio-select/-/cheerio-select-2.1.0.tgz",
302 | "integrity": "sha512-9v9kG0LvzrlcungtnJtpGNxY+fzECQKhK4EGJX2vByejiMX84MFNQw4UxPJl3bFbTMw+Dfs37XaIkCwTZfLh4g==",
303 | "license": "BSD-2-Clause",
304 | "dependencies": {
305 | "boolbase": "^1.0.0",
306 | "css-select": "^5.1.0",
307 | "css-what": "^6.1.0",
308 | "domelementtype": "^2.3.0",
309 | "domhandler": "^5.0.3",
310 | "domutils": "^3.0.1"
311 | },
312 | "funding": {
313 | "url": "https://github.com/sponsors/fb55"
314 | }
315 | },
316 | "node_modules/chokidar": {
317 | "version": "3.6.0",
318 | "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz",
319 | "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==",
320 | "license": "MIT",
321 | "dependencies": {
322 | "anymatch": "~3.1.2",
323 | "braces": "~3.0.2",
324 | "glob-parent": "~5.1.2",
325 | "is-binary-path": "~2.1.0",
326 | "is-glob": "~4.0.1",
327 | "normalize-path": "~3.0.0",
328 | "readdirp": "~3.6.0"
329 | },
330 | "engines": {
331 | "node": ">= 8.10.0"
332 | },
333 | "funding": {
334 | "url": "https://paulmillr.com/funding/"
335 | },
336 | "optionalDependencies": {
337 | "fsevents": "~2.3.2"
338 | }
339 | },
340 | "node_modules/combined-stream": {
341 | "version": "1.0.8",
342 | "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz",
343 | "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==",
344 | "license": "MIT",
345 | "dependencies": {
346 | "delayed-stream": "~1.0.0"
347 | },
348 | "engines": {
349 | "node": ">= 0.8"
350 | }
351 | },
352 | "node_modules/concat-map": {
353 | "version": "0.0.1",
354 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
355 | "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==",
356 | "license": "MIT"
357 | },
358 | "node_modules/content-disposition": {
359 | "version": "0.5.4",
360 | "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz",
361 | "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==",
362 | "license": "MIT",
363 | "dependencies": {
364 | "safe-buffer": "5.2.1"
365 | },
366 | "engines": {
367 | "node": ">= 0.6"
368 | }
369 | },
370 | "node_modules/content-type": {
371 | "version": "1.0.5",
372 | "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz",
373 | "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==",
374 | "license": "MIT",
375 | "engines": {
376 | "node": ">= 0.6"
377 | }
378 | },
379 | "node_modules/cookie": {
380 | "version": "0.7.1",
381 | "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.7.1.tgz",
382 | "integrity": "sha512-6DnInpx7SJ2AK3+CTUE/ZM0vWTUboZCegxhC2xiIydHR9jNuTAASBrfEpHhiGOZw/nX51bHt6YQl8jsGo4y/0w==",
383 | "license": "MIT",
384 | "engines": {
385 | "node": ">= 0.6"
386 | }
387 | },
388 | "node_modules/cookie-signature": {
389 | "version": "1.0.6",
390 | "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz",
391 | "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==",
392 | "license": "MIT"
393 | },
394 | "node_modules/core-util-is": {
395 | "version": "1.0.2",
396 | "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz",
397 | "integrity": "sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==",
398 | "license": "MIT"
399 | },
400 | "node_modules/cron-parser": {
401 | "version": "4.9.0",
402 | "resolved": "https://registry.npmjs.org/cron-parser/-/cron-parser-4.9.0.tgz",
403 | "integrity": "sha512-p0SaNjrHOnQeR8/VnfGbmg9te2kfyYSQ7Sc/j/6DtPL3JQvKxmjO9TSjNFpujqV3vEYYBvNNvXSxzyksBWAx1Q==",
404 | "license": "MIT",
405 | "dependencies": {
406 | "luxon": "^3.2.1"
407 | },
408 | "engines": {
409 | "node": ">=12.0.0"
410 | }
411 | },
412 | "node_modules/css-select": {
413 | "version": "5.1.0",
414 | "resolved": "https://registry.npmjs.org/css-select/-/css-select-5.1.0.tgz",
415 | "integrity": "sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==",
416 | "license": "BSD-2-Clause",
417 | "dependencies": {
418 | "boolbase": "^1.0.0",
419 | "css-what": "^6.1.0",
420 | "domhandler": "^5.0.2",
421 | "domutils": "^3.0.1",
422 | "nth-check": "^2.0.1"
423 | },
424 | "funding": {
425 | "url": "https://github.com/sponsors/fb55"
426 | }
427 | },
428 | "node_modules/css-what": {
429 | "version": "6.1.0",
430 | "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz",
431 | "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==",
432 | "license": "BSD-2-Clause",
433 | "engines": {
434 | "node": ">= 6"
435 | },
436 | "funding": {
437 | "url": "https://github.com/sponsors/fb55"
438 | }
439 | },
440 | "node_modules/dashdash": {
441 | "version": "1.14.1",
442 | "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz",
443 | "integrity": "sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==",
444 | "license": "MIT",
445 | "dependencies": {
446 | "assert-plus": "^1.0.0"
447 | },
448 | "engines": {
449 | "node": ">=0.10"
450 | }
451 | },
452 | "node_modules/debug": {
453 | "version": "2.6.9",
454 | "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
455 | "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
456 | "license": "MIT",
457 | "dependencies": {
458 | "ms": "2.0.0"
459 | }
460 | },
461 | "node_modules/delayed-stream": {
462 | "version": "1.0.0",
463 | "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
464 | "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==",
465 | "license": "MIT",
466 | "engines": {
467 | "node": ">=0.4.0"
468 | }
469 | },
470 | "node_modules/depd": {
471 | "version": "2.0.0",
472 | "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz",
473 | "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==",
474 | "license": "MIT",
475 | "engines": {
476 | "node": ">= 0.8"
477 | }
478 | },
479 | "node_modules/destroy": {
480 | "version": "1.2.0",
481 | "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz",
482 | "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==",
483 | "license": "MIT",
484 | "engines": {
485 | "node": ">= 0.8",
486 | "npm": "1.2.8000 || >= 1.4.16"
487 | }
488 | },
489 | "node_modules/dom-serializer": {
490 | "version": "2.0.0",
491 | "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz",
492 | "integrity": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==",
493 | "license": "MIT",
494 | "dependencies": {
495 | "domelementtype": "^2.3.0",
496 | "domhandler": "^5.0.2",
497 | "entities": "^4.2.0"
498 | },
499 | "funding": {
500 | "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1"
501 | }
502 | },
503 | "node_modules/domelementtype": {
504 | "version": "2.3.0",
505 | "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz",
506 | "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==",
507 | "funding": [
508 | {
509 | "type": "github",
510 | "url": "https://github.com/sponsors/fb55"
511 | }
512 | ],
513 | "license": "BSD-2-Clause"
514 | },
515 | "node_modules/domhandler": {
516 | "version": "5.0.3",
517 | "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz",
518 | "integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==",
519 | "license": "BSD-2-Clause",
520 | "dependencies": {
521 | "domelementtype": "^2.3.0"
522 | },
523 | "engines": {
524 | "node": ">= 4"
525 | },
526 | "funding": {
527 | "url": "https://github.com/fb55/domhandler?sponsor=1"
528 | }
529 | },
530 | "node_modules/domutils": {
531 | "version": "3.2.1",
532 | "resolved": "https://registry.npmjs.org/domutils/-/domutils-3.2.1.tgz",
533 | "integrity": "sha512-xWXmuRnN9OMP6ptPd2+H0cCbcYBULa5YDTbMm/2lvkWvNA3O4wcW+GvzooqBuNM8yy6pl3VIAeJTUUWUbfI5Fw==",
534 | "license": "BSD-2-Clause",
535 | "dependencies": {
536 | "dom-serializer": "^2.0.0",
537 | "domelementtype": "^2.3.0",
538 | "domhandler": "^5.0.3"
539 | },
540 | "funding": {
541 | "url": "https://github.com/fb55/domutils?sponsor=1"
542 | }
543 | },
544 | "node_modules/dotenv": {
545 | "version": "16.4.7",
546 | "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.4.7.tgz",
547 | "integrity": "sha512-47qPchRCykZC03FhkYAhrvwU4xDBFIj1QPqaarj6mdM/hgUzfPHcpkHJOn3mJAufFeeAxAzeGsr5X0M4k6fLZQ==",
548 | "license": "BSD-2-Clause",
549 | "engines": {
550 | "node": ">=12"
551 | },
552 | "funding": {
553 | "url": "https://dotenvx.com"
554 | }
555 | },
556 | "node_modules/dottie": {
557 | "version": "2.0.6",
558 | "resolved": "https://registry.npmjs.org/dottie/-/dottie-2.0.6.tgz",
559 | "integrity": "sha512-iGCHkfUc5kFekGiqhe8B/mdaurD+lakO9txNnTvKtA6PISrw86LgqHvRzWYPyoE2Ph5aMIrCw9/uko6XHTKCwA==",
560 | "license": "MIT"
561 | },
562 | "node_modules/dunder-proto": {
563 | "version": "1.0.1",
564 | "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz",
565 | "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==",
566 | "license": "MIT",
567 | "dependencies": {
568 | "call-bind-apply-helpers": "^1.0.1",
569 | "es-errors": "^1.3.0",
570 | "gopd": "^1.2.0"
571 | },
572 | "engines": {
573 | "node": ">= 0.4"
574 | }
575 | },
576 | "node_modules/ecc-jsbn": {
577 | "version": "0.1.2",
578 | "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz",
579 | "integrity": "sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==",
580 | "license": "MIT",
581 | "dependencies": {
582 | "jsbn": "~0.1.0",
583 | "safer-buffer": "^2.1.0"
584 | }
585 | },
586 | "node_modules/ee-first": {
587 | "version": "1.1.1",
588 | "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz",
589 | "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==",
590 | "license": "MIT"
591 | },
592 | "node_modules/encodeurl": {
593 | "version": "2.0.0",
594 | "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz",
595 | "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==",
596 | "license": "MIT",
597 | "engines": {
598 | "node": ">= 0.8"
599 | }
600 | },
601 | "node_modules/encoding-sniffer": {
602 | "version": "0.2.0",
603 | "resolved": "https://registry.npmjs.org/encoding-sniffer/-/encoding-sniffer-0.2.0.tgz",
604 | "integrity": "sha512-ju7Wq1kg04I3HtiYIOrUrdfdDvkyO9s5XM8QAj/bN61Yo/Vb4vgJxy5vi4Yxk01gWHbrofpPtpxM8bKger9jhg==",
605 | "license": "MIT",
606 | "dependencies": {
607 | "iconv-lite": "^0.6.3",
608 | "whatwg-encoding": "^3.1.1"
609 | },
610 | "funding": {
611 | "url": "https://github.com/fb55/encoding-sniffer?sponsor=1"
612 | }
613 | },
614 | "node_modules/entities": {
615 | "version": "4.5.0",
616 | "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz",
617 | "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==",
618 | "license": "BSD-2-Clause",
619 | "engines": {
620 | "node": ">=0.12"
621 | },
622 | "funding": {
623 | "url": "https://github.com/fb55/entities?sponsor=1"
624 | }
625 | },
626 | "node_modules/es-define-property": {
627 | "version": "1.0.1",
628 | "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz",
629 | "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==",
630 | "license": "MIT",
631 | "engines": {
632 | "node": ">= 0.4"
633 | }
634 | },
635 | "node_modules/es-errors": {
636 | "version": "1.3.0",
637 | "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz",
638 | "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==",
639 | "license": "MIT",
640 | "engines": {
641 | "node": ">= 0.4"
642 | }
643 | },
644 | "node_modules/es-object-atoms": {
645 | "version": "1.0.0",
646 | "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.0.0.tgz",
647 | "integrity": "sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==",
648 | "license": "MIT",
649 | "dependencies": {
650 | "es-errors": "^1.3.0"
651 | },
652 | "engines": {
653 | "node": ">= 0.4"
654 | }
655 | },
656 | "node_modules/escape-html": {
657 | "version": "1.0.3",
658 | "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz",
659 | "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==",
660 | "license": "MIT"
661 | },
662 | "node_modules/etag": {
663 | "version": "1.8.1",
664 | "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz",
665 | "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==",
666 | "license": "MIT",
667 | "engines": {
668 | "node": ">= 0.6"
669 | }
670 | },
671 | "node_modules/express": {
672 | "version": "4.21.2",
673 | "resolved": "https://registry.npmjs.org/express/-/express-4.21.2.tgz",
674 | "integrity": "sha512-28HqgMZAmih1Czt9ny7qr6ek2qddF4FclbMzwhCREB6OFfH+rXAnuNCwo1/wFvrtbgsQDb4kSbX9de9lFbrXnA==",
675 | "license": "MIT",
676 | "dependencies": {
677 | "accepts": "~1.3.8",
678 | "array-flatten": "1.1.1",
679 | "body-parser": "1.20.3",
680 | "content-disposition": "0.5.4",
681 | "content-type": "~1.0.4",
682 | "cookie": "0.7.1",
683 | "cookie-signature": "1.0.6",
684 | "debug": "2.6.9",
685 | "depd": "2.0.0",
686 | "encodeurl": "~2.0.0",
687 | "escape-html": "~1.0.3",
688 | "etag": "~1.8.1",
689 | "finalhandler": "1.3.1",
690 | "fresh": "0.5.2",
691 | "http-errors": "2.0.0",
692 | "merge-descriptors": "1.0.3",
693 | "methods": "~1.1.2",
694 | "on-finished": "2.4.1",
695 | "parseurl": "~1.3.3",
696 | "path-to-regexp": "0.1.12",
697 | "proxy-addr": "~2.0.7",
698 | "qs": "6.13.0",
699 | "range-parser": "~1.2.1",
700 | "safe-buffer": "5.2.1",
701 | "send": "0.19.0",
702 | "serve-static": "1.16.2",
703 | "setprototypeof": "1.2.0",
704 | "statuses": "2.0.1",
705 | "type-is": "~1.6.18",
706 | "utils-merge": "1.0.1",
707 | "vary": "~1.1.2"
708 | },
709 | "engines": {
710 | "node": ">= 0.10.0"
711 | },
712 | "funding": {
713 | "type": "opencollective",
714 | "url": "https://opencollective.com/express"
715 | }
716 | },
717 | "node_modules/extend": {
718 | "version": "3.0.2",
719 | "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz",
720 | "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==",
721 | "license": "MIT"
722 | },
723 | "node_modules/extsprintf": {
724 | "version": "1.3.0",
725 | "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz",
726 | "integrity": "sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==",
727 | "engines": [
728 | "node >=0.6.0"
729 | ],
730 | "license": "MIT"
731 | },
732 | "node_modules/fast-deep-equal": {
733 | "version": "3.1.3",
734 | "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
735 | "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
736 | "license": "MIT"
737 | },
738 | "node_modules/fast-json-stable-stringify": {
739 | "version": "2.1.0",
740 | "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz",
741 | "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==",
742 | "license": "MIT"
743 | },
744 | "node_modules/fill-range": {
745 | "version": "7.1.1",
746 | "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz",
747 | "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==",
748 | "license": "MIT",
749 | "dependencies": {
750 | "to-regex-range": "^5.0.1"
751 | },
752 | "engines": {
753 | "node": ">=8"
754 | }
755 | },
756 | "node_modules/finalhandler": {
757 | "version": "1.3.1",
758 | "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.3.1.tgz",
759 | "integrity": "sha512-6BN9trH7bp3qvnrRyzsBz+g3lZxTNZTbVO2EV1CS0WIcDbawYVdYvGflME/9QP0h0pYlCDBCTjYa9nZzMDpyxQ==",
760 | "license": "MIT",
761 | "dependencies": {
762 | "debug": "2.6.9",
763 | "encodeurl": "~2.0.0",
764 | "escape-html": "~1.0.3",
765 | "on-finished": "2.4.1",
766 | "parseurl": "~1.3.3",
767 | "statuses": "2.0.1",
768 | "unpipe": "~1.0.0"
769 | },
770 | "engines": {
771 | "node": ">= 0.8"
772 | }
773 | },
774 | "node_modules/forever-agent": {
775 | "version": "0.6.1",
776 | "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz",
777 | "integrity": "sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==",
778 | "license": "Apache-2.0",
779 | "engines": {
780 | "node": "*"
781 | }
782 | },
783 | "node_modules/form-data": {
784 | "version": "2.3.3",
785 | "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz",
786 | "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==",
787 | "license": "MIT",
788 | "dependencies": {
789 | "asynckit": "^0.4.0",
790 | "combined-stream": "^1.0.6",
791 | "mime-types": "^2.1.12"
792 | },
793 | "engines": {
794 | "node": ">= 0.12"
795 | }
796 | },
797 | "node_modules/forwarded": {
798 | "version": "0.2.0",
799 | "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz",
800 | "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==",
801 | "license": "MIT",
802 | "engines": {
803 | "node": ">= 0.6"
804 | }
805 | },
806 | "node_modules/fresh": {
807 | "version": "0.5.2",
808 | "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz",
809 | "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==",
810 | "license": "MIT",
811 | "engines": {
812 | "node": ">= 0.6"
813 | }
814 | },
815 | "node_modules/fsevents": {
816 | "version": "2.3.3",
817 | "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
818 | "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
819 | "hasInstallScript": true,
820 | "license": "MIT",
821 | "optional": true,
822 | "os": [
823 | "darwin"
824 | ],
825 | "engines": {
826 | "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
827 | }
828 | },
829 | "node_modules/function-bind": {
830 | "version": "1.1.2",
831 | "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
832 | "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
833 | "license": "MIT",
834 | "funding": {
835 | "url": "https://github.com/sponsors/ljharb"
836 | }
837 | },
838 | "node_modules/get-intrinsic": {
839 | "version": "1.2.7",
840 | "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.7.tgz",
841 | "integrity": "sha512-VW6Pxhsrk0KAOqs3WEd0klDiF/+V7gQOpAvY1jVU/LHmaD/kQO4523aiJuikX/QAKYiW6x8Jh+RJej1almdtCA==",
842 | "license": "MIT",
843 | "dependencies": {
844 | "call-bind-apply-helpers": "^1.0.1",
845 | "es-define-property": "^1.0.1",
846 | "es-errors": "^1.3.0",
847 | "es-object-atoms": "^1.0.0",
848 | "function-bind": "^1.1.2",
849 | "get-proto": "^1.0.0",
850 | "gopd": "^1.2.0",
851 | "has-symbols": "^1.1.0",
852 | "hasown": "^2.0.2",
853 | "math-intrinsics": "^1.1.0"
854 | },
855 | "engines": {
856 | "node": ">= 0.4"
857 | },
858 | "funding": {
859 | "url": "https://github.com/sponsors/ljharb"
860 | }
861 | },
862 | "node_modules/get-proto": {
863 | "version": "1.0.1",
864 | "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz",
865 | "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==",
866 | "license": "MIT",
867 | "dependencies": {
868 | "dunder-proto": "^1.0.1",
869 | "es-object-atoms": "^1.0.0"
870 | },
871 | "engines": {
872 | "node": ">= 0.4"
873 | }
874 | },
875 | "node_modules/getpass": {
876 | "version": "0.1.7",
877 | "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz",
878 | "integrity": "sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==",
879 | "license": "MIT",
880 | "dependencies": {
881 | "assert-plus": "^1.0.0"
882 | }
883 | },
884 | "node_modules/glob-parent": {
885 | "version": "5.1.2",
886 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
887 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
888 | "license": "ISC",
889 | "dependencies": {
890 | "is-glob": "^4.0.1"
891 | },
892 | "engines": {
893 | "node": ">= 6"
894 | }
895 | },
896 | "node_modules/gopd": {
897 | "version": "1.2.0",
898 | "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz",
899 | "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==",
900 | "license": "MIT",
901 | "engines": {
902 | "node": ">= 0.4"
903 | },
904 | "funding": {
905 | "url": "https://github.com/sponsors/ljharb"
906 | }
907 | },
908 | "node_modules/har-schema": {
909 | "version": "2.0.0",
910 | "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz",
911 | "integrity": "sha512-Oqluz6zhGX8cyRaTQlFMPw80bSJVG2x/cFb8ZPhUILGgHka9SsokCCOQgpveePerqidZOrT14ipqfJb7ILcW5Q==",
912 | "license": "ISC",
913 | "engines": {
914 | "node": ">=4"
915 | }
916 | },
917 | "node_modules/har-validator": {
918 | "version": "5.1.5",
919 | "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz",
920 | "integrity": "sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==",
921 | "deprecated": "this library is no longer supported",
922 | "license": "MIT",
923 | "dependencies": {
924 | "ajv": "^6.12.3",
925 | "har-schema": "^2.0.0"
926 | },
927 | "engines": {
928 | "node": ">=6"
929 | }
930 | },
931 | "node_modules/has-flag": {
932 | "version": "3.0.0",
933 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
934 | "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==",
935 | "license": "MIT",
936 | "engines": {
937 | "node": ">=4"
938 | }
939 | },
940 | "node_modules/has-symbols": {
941 | "version": "1.1.0",
942 | "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz",
943 | "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==",
944 | "license": "MIT",
945 | "engines": {
946 | "node": ">= 0.4"
947 | },
948 | "funding": {
949 | "url": "https://github.com/sponsors/ljharb"
950 | }
951 | },
952 | "node_modules/hasown": {
953 | "version": "2.0.2",
954 | "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz",
955 | "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==",
956 | "license": "MIT",
957 | "dependencies": {
958 | "function-bind": "^1.1.2"
959 | },
960 | "engines": {
961 | "node": ">= 0.4"
962 | }
963 | },
964 | "node_modules/htmlparser2": {
965 | "version": "9.1.0",
966 | "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-9.1.0.tgz",
967 | "integrity": "sha512-5zfg6mHUoaer/97TxnGpxmbR7zJtPwIYFMZ/H5ucTlPZhKvtum05yiPK3Mgai3a0DyVxv7qYqoweaEd2nrYQzQ==",
968 | "funding": [
969 | "https://github.com/fb55/htmlparser2?sponsor=1",
970 | {
971 | "type": "github",
972 | "url": "https://github.com/sponsors/fb55"
973 | }
974 | ],
975 | "license": "MIT",
976 | "dependencies": {
977 | "domelementtype": "^2.3.0",
978 | "domhandler": "^5.0.3",
979 | "domutils": "^3.1.0",
980 | "entities": "^4.5.0"
981 | }
982 | },
983 | "node_modules/http-errors": {
984 | "version": "2.0.0",
985 | "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz",
986 | "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==",
987 | "license": "MIT",
988 | "dependencies": {
989 | "depd": "2.0.0",
990 | "inherits": "2.0.4",
991 | "setprototypeof": "1.2.0",
992 | "statuses": "2.0.1",
993 | "toidentifier": "1.0.1"
994 | },
995 | "engines": {
996 | "node": ">= 0.8"
997 | }
998 | },
999 | "node_modules/http-signature": {
1000 | "version": "1.2.0",
1001 | "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz",
1002 | "integrity": "sha512-CAbnr6Rz4CYQkLYUtSNXxQPUH2gK8f3iWexVlsnMeD+GjlsQ0Xsy1cOX+mN3dtxYomRy21CiOzU8Uhw6OwncEQ==",
1003 | "license": "MIT",
1004 | "dependencies": {
1005 | "assert-plus": "^1.0.0",
1006 | "jsprim": "^1.2.2",
1007 | "sshpk": "^1.7.0"
1008 | },
1009 | "engines": {
1010 | "node": ">=0.8",
1011 | "npm": ">=1.3.7"
1012 | }
1013 | },
1014 | "node_modules/iconv-lite": {
1015 | "version": "0.6.3",
1016 | "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz",
1017 | "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==",
1018 | "license": "MIT",
1019 | "dependencies": {
1020 | "safer-buffer": ">= 2.1.2 < 3.0.0"
1021 | },
1022 | "engines": {
1023 | "node": ">=0.10.0"
1024 | }
1025 | },
1026 | "node_modules/ignore-by-default": {
1027 | "version": "1.0.1",
1028 | "resolved": "https://registry.npmjs.org/ignore-by-default/-/ignore-by-default-1.0.1.tgz",
1029 | "integrity": "sha512-Ius2VYcGNk7T90CppJqcIkS5ooHUZyIQK+ClZfMfMNFEF9VSE73Fq+906u/CWu92x4gzZMWOwfFYckPObzdEbA==",
1030 | "license": "ISC"
1031 | },
1032 | "node_modules/inflection": {
1033 | "version": "1.13.4",
1034 | "resolved": "https://registry.npmjs.org/inflection/-/inflection-1.13.4.tgz",
1035 | "integrity": "sha512-6I/HUDeYFfuNCVS3td055BaXBwKYuzw7K3ExVMStBowKo9oOAMJIXIHvdyR3iboTCp1b+1i5DSkIZTcwIktuDw==",
1036 | "engines": [
1037 | "node >= 0.4.0"
1038 | ],
1039 | "license": "MIT"
1040 | },
1041 | "node_modules/inherits": {
1042 | "version": "2.0.4",
1043 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
1044 | "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==",
1045 | "license": "ISC"
1046 | },
1047 | "node_modules/ipaddr.js": {
1048 | "version": "1.9.1",
1049 | "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz",
1050 | "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==",
1051 | "license": "MIT",
1052 | "engines": {
1053 | "node": ">= 0.10"
1054 | }
1055 | },
1056 | "node_modules/is-binary-path": {
1057 | "version": "2.1.0",
1058 | "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz",
1059 | "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==",
1060 | "license": "MIT",
1061 | "dependencies": {
1062 | "binary-extensions": "^2.0.0"
1063 | },
1064 | "engines": {
1065 | "node": ">=8"
1066 | }
1067 | },
1068 | "node_modules/is-extglob": {
1069 | "version": "2.1.1",
1070 | "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
1071 | "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
1072 | "license": "MIT",
1073 | "engines": {
1074 | "node": ">=0.10.0"
1075 | }
1076 | },
1077 | "node_modules/is-glob": {
1078 | "version": "4.0.3",
1079 | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
1080 | "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
1081 | "license": "MIT",
1082 | "dependencies": {
1083 | "is-extglob": "^2.1.1"
1084 | },
1085 | "engines": {
1086 | "node": ">=0.10.0"
1087 | }
1088 | },
1089 | "node_modules/is-number": {
1090 | "version": "7.0.0",
1091 | "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
1092 | "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
1093 | "license": "MIT",
1094 | "engines": {
1095 | "node": ">=0.12.0"
1096 | }
1097 | },
1098 | "node_modules/is-typedarray": {
1099 | "version": "1.0.0",
1100 | "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz",
1101 | "integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==",
1102 | "license": "MIT"
1103 | },
1104 | "node_modules/isstream": {
1105 | "version": "0.1.2",
1106 | "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz",
1107 | "integrity": "sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==",
1108 | "license": "MIT"
1109 | },
1110 | "node_modules/jsbn": {
1111 | "version": "0.1.1",
1112 | "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz",
1113 | "integrity": "sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==",
1114 | "license": "MIT"
1115 | },
1116 | "node_modules/json-schema": {
1117 | "version": "0.4.0",
1118 | "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz",
1119 | "integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==",
1120 | "license": "(AFL-2.1 OR BSD-3-Clause)"
1121 | },
1122 | "node_modules/json-schema-traverse": {
1123 | "version": "0.4.1",
1124 | "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
1125 | "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==",
1126 | "license": "MIT"
1127 | },
1128 | "node_modules/json-stringify-safe": {
1129 | "version": "5.0.1",
1130 | "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz",
1131 | "integrity": "sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==",
1132 | "license": "ISC"
1133 | },
1134 | "node_modules/jsprim": {
1135 | "version": "1.4.2",
1136 | "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.2.tgz",
1137 | "integrity": "sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==",
1138 | "license": "MIT",
1139 | "dependencies": {
1140 | "assert-plus": "1.0.0",
1141 | "extsprintf": "1.3.0",
1142 | "json-schema": "0.4.0",
1143 | "verror": "1.10.0"
1144 | },
1145 | "engines": {
1146 | "node": ">=0.6.0"
1147 | }
1148 | },
1149 | "node_modules/lodash": {
1150 | "version": "4.17.21",
1151 | "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz",
1152 | "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==",
1153 | "license": "MIT"
1154 | },
1155 | "node_modules/long-timeout": {
1156 | "version": "0.1.1",
1157 | "resolved": "https://registry.npmjs.org/long-timeout/-/long-timeout-0.1.1.tgz",
1158 | "integrity": "sha512-BFRuQUqc7x2NWxfJBCyUrN8iYUYznzL9JROmRz1gZ6KlOIgmoD+njPVbb+VNn2nGMKggMsK79iUNErillsrx7w==",
1159 | "license": "MIT"
1160 | },
1161 | "node_modules/luxon": {
1162 | "version": "3.5.0",
1163 | "resolved": "https://registry.npmjs.org/luxon/-/luxon-3.5.0.tgz",
1164 | "integrity": "sha512-rh+Zjr6DNfUYR3bPwJEnuwDdqMbxZW7LOQfUN4B54+Cl+0o5zaU9RJ6bcidfDtC1cWCZXQ+nvX8bf6bAji37QQ==",
1165 | "license": "MIT",
1166 | "engines": {
1167 | "node": ">=12"
1168 | }
1169 | },
1170 | "node_modules/math-intrinsics": {
1171 | "version": "1.1.0",
1172 | "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz",
1173 | "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==",
1174 | "license": "MIT",
1175 | "engines": {
1176 | "node": ">= 0.4"
1177 | }
1178 | },
1179 | "node_modules/media-typer": {
1180 | "version": "0.3.0",
1181 | "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz",
1182 | "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==",
1183 | "license": "MIT",
1184 | "engines": {
1185 | "node": ">= 0.6"
1186 | }
1187 | },
1188 | "node_modules/merge-descriptors": {
1189 | "version": "1.0.3",
1190 | "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.3.tgz",
1191 | "integrity": "sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==",
1192 | "license": "MIT",
1193 | "funding": {
1194 | "url": "https://github.com/sponsors/sindresorhus"
1195 | }
1196 | },
1197 | "node_modules/methods": {
1198 | "version": "1.1.2",
1199 | "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz",
1200 | "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==",
1201 | "license": "MIT",
1202 | "engines": {
1203 | "node": ">= 0.6"
1204 | }
1205 | },
1206 | "node_modules/mime": {
1207 | "version": "1.6.0",
1208 | "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz",
1209 | "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==",
1210 | "license": "MIT",
1211 | "bin": {
1212 | "mime": "cli.js"
1213 | },
1214 | "engines": {
1215 | "node": ">=4"
1216 | }
1217 | },
1218 | "node_modules/mime-db": {
1219 | "version": "1.52.0",
1220 | "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz",
1221 | "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
1222 | "license": "MIT",
1223 | "engines": {
1224 | "node": ">= 0.6"
1225 | }
1226 | },
1227 | "node_modules/mime-types": {
1228 | "version": "2.1.35",
1229 | "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz",
1230 | "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
1231 | "license": "MIT",
1232 | "dependencies": {
1233 | "mime-db": "1.52.0"
1234 | },
1235 | "engines": {
1236 | "node": ">= 0.6"
1237 | }
1238 | },
1239 | "node_modules/minimatch": {
1240 | "version": "3.1.2",
1241 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
1242 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
1243 | "license": "ISC",
1244 | "dependencies": {
1245 | "brace-expansion": "^1.1.7"
1246 | },
1247 | "engines": {
1248 | "node": "*"
1249 | }
1250 | },
1251 | "node_modules/moment": {
1252 | "version": "2.30.1",
1253 | "resolved": "https://registry.npmjs.org/moment/-/moment-2.30.1.tgz",
1254 | "integrity": "sha512-uEmtNhbDOrWPFS+hdjFCBfy9f2YoyzRpwcl+DqpC6taX21FzsTLQVbMV/W7PzNSX6x/bhC1zA3c2UQ5NzH6how==",
1255 | "license": "MIT",
1256 | "engines": {
1257 | "node": "*"
1258 | }
1259 | },
1260 | "node_modules/moment-timezone": {
1261 | "version": "0.5.46",
1262 | "resolved": "https://registry.npmjs.org/moment-timezone/-/moment-timezone-0.5.46.tgz",
1263 | "integrity": "sha512-ZXm9b36esbe7OmdABqIWJuBBiLLwAjrN7CE+7sYdCCx82Nabt1wHDj8TVseS59QIlfFPbOoiBPm6ca9BioG4hw==",
1264 | "license": "MIT",
1265 | "dependencies": {
1266 | "moment": "^2.29.4"
1267 | },
1268 | "engines": {
1269 | "node": "*"
1270 | }
1271 | },
1272 | "node_modules/ms": {
1273 | "version": "2.0.0",
1274 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
1275 | "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==",
1276 | "license": "MIT"
1277 | },
1278 | "node_modules/negotiator": {
1279 | "version": "0.6.3",
1280 | "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz",
1281 | "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==",
1282 | "license": "MIT",
1283 | "engines": {
1284 | "node": ">= 0.6"
1285 | }
1286 | },
1287 | "node_modules/node-schedule": {
1288 | "version": "2.1.1",
1289 | "resolved": "https://registry.npmjs.org/node-schedule/-/node-schedule-2.1.1.tgz",
1290 | "integrity": "sha512-OXdegQq03OmXEjt2hZP33W2YPs/E5BcFQks46+G2gAxs4gHOIVD1u7EqlYLYSKsaIpyKCK9Gbk0ta1/gjRSMRQ==",
1291 | "license": "MIT",
1292 | "dependencies": {
1293 | "cron-parser": "^4.2.0",
1294 | "long-timeout": "0.1.1",
1295 | "sorted-array-functions": "^1.3.0"
1296 | },
1297 | "engines": {
1298 | "node": ">=6"
1299 | }
1300 | },
1301 | "node_modules/nodemon": {
1302 | "version": "2.0.22",
1303 | "resolved": "https://registry.npmjs.org/nodemon/-/nodemon-2.0.22.tgz",
1304 | "integrity": "sha512-B8YqaKMmyuCO7BowF1Z1/mkPqLk6cs/l63Ojtd6otKjMx47Dq1utxfRxcavH1I7VSaL8n5BUaoutadnsX3AAVQ==",
1305 | "license": "MIT",
1306 | "dependencies": {
1307 | "chokidar": "^3.5.2",
1308 | "debug": "^3.2.7",
1309 | "ignore-by-default": "^1.0.1",
1310 | "minimatch": "^3.1.2",
1311 | "pstree.remy": "^1.1.8",
1312 | "semver": "^5.7.1",
1313 | "simple-update-notifier": "^1.0.7",
1314 | "supports-color": "^5.5.0",
1315 | "touch": "^3.1.0",
1316 | "undefsafe": "^2.0.5"
1317 | },
1318 | "bin": {
1319 | "nodemon": "bin/nodemon.js"
1320 | },
1321 | "engines": {
1322 | "node": ">=8.10.0"
1323 | },
1324 | "funding": {
1325 | "type": "opencollective",
1326 | "url": "https://opencollective.com/nodemon"
1327 | }
1328 | },
1329 | "node_modules/nodemon/node_modules/debug": {
1330 | "version": "3.2.7",
1331 | "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz",
1332 | "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==",
1333 | "license": "MIT",
1334 | "dependencies": {
1335 | "ms": "^2.1.1"
1336 | }
1337 | },
1338 | "node_modules/nodemon/node_modules/ms": {
1339 | "version": "2.1.3",
1340 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
1341 | "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
1342 | "license": "MIT"
1343 | },
1344 | "node_modules/normalize-path": {
1345 | "version": "3.0.0",
1346 | "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
1347 | "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==",
1348 | "license": "MIT",
1349 | "engines": {
1350 | "node": ">=0.10.0"
1351 | }
1352 | },
1353 | "node_modules/nth-check": {
1354 | "version": "2.1.1",
1355 | "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz",
1356 | "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==",
1357 | "license": "BSD-2-Clause",
1358 | "dependencies": {
1359 | "boolbase": "^1.0.0"
1360 | },
1361 | "funding": {
1362 | "url": "https://github.com/fb55/nth-check?sponsor=1"
1363 | }
1364 | },
1365 | "node_modules/oauth-sign": {
1366 | "version": "0.9.0",
1367 | "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz",
1368 | "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==",
1369 | "license": "Apache-2.0",
1370 | "engines": {
1371 | "node": "*"
1372 | }
1373 | },
1374 | "node_modules/object-inspect": {
1375 | "version": "1.13.3",
1376 | "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.3.tgz",
1377 | "integrity": "sha512-kDCGIbxkDSXE3euJZZXzc6to7fCrKHNI/hSRQnRuQ+BWjFNzZwiFF8fj/6o2t2G9/jTj8PSIYTfCLelLZEeRpA==",
1378 | "license": "MIT",
1379 | "engines": {
1380 | "node": ">= 0.4"
1381 | },
1382 | "funding": {
1383 | "url": "https://github.com/sponsors/ljharb"
1384 | }
1385 | },
1386 | "node_modules/on-finished": {
1387 | "version": "2.4.1",
1388 | "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz",
1389 | "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==",
1390 | "license": "MIT",
1391 | "dependencies": {
1392 | "ee-first": "1.1.1"
1393 | },
1394 | "engines": {
1395 | "node": ">= 0.8"
1396 | }
1397 | },
1398 | "node_modules/parse5": {
1399 | "version": "7.2.1",
1400 | "resolved": "https://registry.npmjs.org/parse5/-/parse5-7.2.1.tgz",
1401 | "integrity": "sha512-BuBYQYlv1ckiPdQi/ohiivi9Sagc9JG+Ozs0r7b/0iK3sKmrb0b9FdWdBbOdx6hBCM/F9Ir82ofnBhtZOjCRPQ==",
1402 | "license": "MIT",
1403 | "dependencies": {
1404 | "entities": "^4.5.0"
1405 | },
1406 | "funding": {
1407 | "url": "https://github.com/inikulin/parse5?sponsor=1"
1408 | }
1409 | },
1410 | "node_modules/parse5-htmlparser2-tree-adapter": {
1411 | "version": "7.1.0",
1412 | "resolved": "https://registry.npmjs.org/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-7.1.0.tgz",
1413 | "integrity": "sha512-ruw5xyKs6lrpo9x9rCZqZZnIUntICjQAd0Wsmp396Ul9lN/h+ifgVV1x1gZHi8euej6wTfpqX8j+BFQxF0NS/g==",
1414 | "license": "MIT",
1415 | "dependencies": {
1416 | "domhandler": "^5.0.3",
1417 | "parse5": "^7.0.0"
1418 | },
1419 | "funding": {
1420 | "url": "https://github.com/inikulin/parse5?sponsor=1"
1421 | }
1422 | },
1423 | "node_modules/parse5-parser-stream": {
1424 | "version": "7.1.2",
1425 | "resolved": "https://registry.npmjs.org/parse5-parser-stream/-/parse5-parser-stream-7.1.2.tgz",
1426 | "integrity": "sha512-JyeQc9iwFLn5TbvvqACIF/VXG6abODeB3Fwmv/TGdLk2LfbWkaySGY72at4+Ty7EkPZj854u4CrICqNk2qIbow==",
1427 | "license": "MIT",
1428 | "dependencies": {
1429 | "parse5": "^7.0.0"
1430 | },
1431 | "funding": {
1432 | "url": "https://github.com/inikulin/parse5?sponsor=1"
1433 | }
1434 | },
1435 | "node_modules/parseurl": {
1436 | "version": "1.3.3",
1437 | "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz",
1438 | "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==",
1439 | "license": "MIT",
1440 | "engines": {
1441 | "node": ">= 0.8"
1442 | }
1443 | },
1444 | "node_modules/path-to-regexp": {
1445 | "version": "0.1.12",
1446 | "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.12.tgz",
1447 | "integrity": "sha512-RA1GjUVMnvYFxuqovrEqZoxxW5NUZqbwKtYz/Tt7nXerk0LbLblQmrsgdeOxV5SFHf0UDggjS/bSeOZwt1pmEQ==",
1448 | "license": "MIT"
1449 | },
1450 | "node_modules/performance-now": {
1451 | "version": "2.1.0",
1452 | "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz",
1453 | "integrity": "sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==",
1454 | "license": "MIT"
1455 | },
1456 | "node_modules/pg": {
1457 | "version": "8.13.1",
1458 | "resolved": "https://registry.npmjs.org/pg/-/pg-8.13.1.tgz",
1459 | "integrity": "sha512-OUir1A0rPNZlX//c7ksiu7crsGZTKSOXJPgtNiHGIlC9H0lO+NC6ZDYksSgBYY/thSWhnSRBv8w1lieNNGATNQ==",
1460 | "license": "MIT",
1461 | "dependencies": {
1462 | "pg-connection-string": "^2.7.0",
1463 | "pg-pool": "^3.7.0",
1464 | "pg-protocol": "^1.7.0",
1465 | "pg-types": "^2.1.0",
1466 | "pgpass": "1.x"
1467 | },
1468 | "engines": {
1469 | "node": ">= 8.0.0"
1470 | },
1471 | "optionalDependencies": {
1472 | "pg-cloudflare": "^1.1.1"
1473 | },
1474 | "peerDependencies": {
1475 | "pg-native": ">=3.0.1"
1476 | },
1477 | "peerDependenciesMeta": {
1478 | "pg-native": {
1479 | "optional": true
1480 | }
1481 | }
1482 | },
1483 | "node_modules/pg-cloudflare": {
1484 | "version": "1.1.1",
1485 | "resolved": "https://registry.npmjs.org/pg-cloudflare/-/pg-cloudflare-1.1.1.tgz",
1486 | "integrity": "sha512-xWPagP/4B6BgFO+EKz3JONXv3YDgvkbVrGw2mTo3D6tVDQRh1e7cqVGvyR3BE+eQgAvx1XhW/iEASj4/jCWl3Q==",
1487 | "license": "MIT",
1488 | "optional": true
1489 | },
1490 | "node_modules/pg-connection-string": {
1491 | "version": "2.7.0",
1492 | "resolved": "https://registry.npmjs.org/pg-connection-string/-/pg-connection-string-2.7.0.tgz",
1493 | "integrity": "sha512-PI2W9mv53rXJQEOb8xNR8lH7Hr+EKa6oJa38zsK0S/ky2er16ios1wLKhZyxzD7jUReiWokc9WK5nxSnC7W1TA==",
1494 | "license": "MIT"
1495 | },
1496 | "node_modules/pg-int8": {
1497 | "version": "1.0.1",
1498 | "resolved": "https://registry.npmjs.org/pg-int8/-/pg-int8-1.0.1.tgz",
1499 | "integrity": "sha512-WCtabS6t3c8SkpDBUlb1kjOs7l66xsGdKpIPZsg4wR+B3+u9UAum2odSsF9tnvxg80h4ZxLWMy4pRjOsFIqQpw==",
1500 | "license": "ISC",
1501 | "engines": {
1502 | "node": ">=4.0.0"
1503 | }
1504 | },
1505 | "node_modules/pg-pool": {
1506 | "version": "3.7.0",
1507 | "resolved": "https://registry.npmjs.org/pg-pool/-/pg-pool-3.7.0.tgz",
1508 | "integrity": "sha512-ZOBQForurqh4zZWjrgSwwAtzJ7QiRX0ovFkZr2klsen3Nm0aoh33Ls0fzfv3imeH/nw/O27cjdz5kzYJfeGp/g==",
1509 | "license": "MIT",
1510 | "peerDependencies": {
1511 | "pg": ">=8.0"
1512 | }
1513 | },
1514 | "node_modules/pg-protocol": {
1515 | "version": "1.7.0",
1516 | "resolved": "https://registry.npmjs.org/pg-protocol/-/pg-protocol-1.7.0.tgz",
1517 | "integrity": "sha512-hTK/mE36i8fDDhgDFjy6xNOG+LCorxLG3WO17tku+ij6sVHXh1jQUJ8hYAnRhNla4QVD2H8er/FOjc/+EgC6yQ==",
1518 | "license": "MIT"
1519 | },
1520 | "node_modules/pg-types": {
1521 | "version": "2.2.0",
1522 | "resolved": "https://registry.npmjs.org/pg-types/-/pg-types-2.2.0.tgz",
1523 | "integrity": "sha512-qTAAlrEsl8s4OiEQY69wDvcMIdQN6wdz5ojQiOy6YRMuynxenON0O5oCpJI6lshc6scgAY8qvJ2On/p+CXY0GA==",
1524 | "license": "MIT",
1525 | "dependencies": {
1526 | "pg-int8": "1.0.1",
1527 | "postgres-array": "~2.0.0",
1528 | "postgres-bytea": "~1.0.0",
1529 | "postgres-date": "~1.0.4",
1530 | "postgres-interval": "^1.1.0"
1531 | },
1532 | "engines": {
1533 | "node": ">=4"
1534 | }
1535 | },
1536 | "node_modules/pgpass": {
1537 | "version": "1.0.5",
1538 | "resolved": "https://registry.npmjs.org/pgpass/-/pgpass-1.0.5.tgz",
1539 | "integrity": "sha512-FdW9r/jQZhSeohs1Z3sI1yxFQNFvMcnmfuj4WBMUTxOrAyLMaTcE1aAMBiTlbMNaXvBCQuVi0R7hd8udDSP7ug==",
1540 | "license": "MIT",
1541 | "dependencies": {
1542 | "split2": "^4.1.0"
1543 | }
1544 | },
1545 | "node_modules/picomatch": {
1546 | "version": "2.3.1",
1547 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
1548 | "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
1549 | "license": "MIT",
1550 | "engines": {
1551 | "node": ">=8.6"
1552 | },
1553 | "funding": {
1554 | "url": "https://github.com/sponsors/jonschlinkert"
1555 | }
1556 | },
1557 | "node_modules/postgres-array": {
1558 | "version": "2.0.0",
1559 | "resolved": "https://registry.npmjs.org/postgres-array/-/postgres-array-2.0.0.tgz",
1560 | "integrity": "sha512-VpZrUqU5A69eQyW2c5CA1jtLecCsN2U/bD6VilrFDWq5+5UIEVO7nazS3TEcHf1zuPYO/sqGvUvW62g86RXZuA==",
1561 | "license": "MIT",
1562 | "engines": {
1563 | "node": ">=4"
1564 | }
1565 | },
1566 | "node_modules/postgres-bytea": {
1567 | "version": "1.0.0",
1568 | "resolved": "https://registry.npmjs.org/postgres-bytea/-/postgres-bytea-1.0.0.tgz",
1569 | "integrity": "sha512-xy3pmLuQqRBZBXDULy7KbaitYqLcmxigw14Q5sj8QBVLqEwXfeybIKVWiqAXTlcvdvb0+xkOtDbfQMOf4lST1w==",
1570 | "license": "MIT",
1571 | "engines": {
1572 | "node": ">=0.10.0"
1573 | }
1574 | },
1575 | "node_modules/postgres-date": {
1576 | "version": "1.0.7",
1577 | "resolved": "https://registry.npmjs.org/postgres-date/-/postgres-date-1.0.7.tgz",
1578 | "integrity": "sha512-suDmjLVQg78nMK2UZ454hAG+OAW+HQPZ6n++TNDUX+L0+uUlLywnoxJKDou51Zm+zTCjrCl0Nq6J9C5hP9vK/Q==",
1579 | "license": "MIT",
1580 | "engines": {
1581 | "node": ">=0.10.0"
1582 | }
1583 | },
1584 | "node_modules/postgres-interval": {
1585 | "version": "1.2.0",
1586 | "resolved": "https://registry.npmjs.org/postgres-interval/-/postgres-interval-1.2.0.tgz",
1587 | "integrity": "sha512-9ZhXKM/rw350N1ovuWHbGxnGh/SNJ4cnxHiM0rxE4VN41wsg8P8zWn9hv/buK00RP4WvlOyr/RBDiptyxVbkZQ==",
1588 | "license": "MIT",
1589 | "dependencies": {
1590 | "xtend": "^4.0.0"
1591 | },
1592 | "engines": {
1593 | "node": ">=0.10.0"
1594 | }
1595 | },
1596 | "node_modules/proxy-addr": {
1597 | "version": "2.0.7",
1598 | "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz",
1599 | "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==",
1600 | "license": "MIT",
1601 | "dependencies": {
1602 | "forwarded": "0.2.0",
1603 | "ipaddr.js": "1.9.1"
1604 | },
1605 | "engines": {
1606 | "node": ">= 0.10"
1607 | }
1608 | },
1609 | "node_modules/psl": {
1610 | "version": "1.15.0",
1611 | "resolved": "https://registry.npmjs.org/psl/-/psl-1.15.0.tgz",
1612 | "integrity": "sha512-JZd3gMVBAVQkSs6HdNZo9Sdo0LNcQeMNP3CozBJb3JYC/QUYZTnKxP+f8oWRX4rHP5EurWxqAHTSwUCjlNKa1w==",
1613 | "license": "MIT",
1614 | "dependencies": {
1615 | "punycode": "^2.3.1"
1616 | },
1617 | "funding": {
1618 | "url": "https://github.com/sponsors/lupomontero"
1619 | }
1620 | },
1621 | "node_modules/pstree.remy": {
1622 | "version": "1.1.8",
1623 | "resolved": "https://registry.npmjs.org/pstree.remy/-/pstree.remy-1.1.8.tgz",
1624 | "integrity": "sha512-77DZwxQmxKnu3aR542U+X8FypNzbfJ+C5XQDk3uWjWxn6151aIMGthWYRXTqT1E5oJvg+ljaa2OJi+VfvCOQ8w==",
1625 | "license": "MIT"
1626 | },
1627 | "node_modules/punycode": {
1628 | "version": "2.3.1",
1629 | "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz",
1630 | "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==",
1631 | "license": "MIT",
1632 | "engines": {
1633 | "node": ">=6"
1634 | }
1635 | },
1636 | "node_modules/qs": {
1637 | "version": "6.13.0",
1638 | "resolved": "https://registry.npmjs.org/qs/-/qs-6.13.0.tgz",
1639 | "integrity": "sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==",
1640 | "license": "BSD-3-Clause",
1641 | "dependencies": {
1642 | "side-channel": "^1.0.6"
1643 | },
1644 | "engines": {
1645 | "node": ">=0.6"
1646 | },
1647 | "funding": {
1648 | "url": "https://github.com/sponsors/ljharb"
1649 | }
1650 | },
1651 | "node_modules/range-parser": {
1652 | "version": "1.2.1",
1653 | "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz",
1654 | "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==",
1655 | "license": "MIT",
1656 | "engines": {
1657 | "node": ">= 0.6"
1658 | }
1659 | },
1660 | "node_modules/raw-body": {
1661 | "version": "2.5.2",
1662 | "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.2.tgz",
1663 | "integrity": "sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==",
1664 | "license": "MIT",
1665 | "dependencies": {
1666 | "bytes": "3.1.2",
1667 | "http-errors": "2.0.0",
1668 | "iconv-lite": "0.4.24",
1669 | "unpipe": "1.0.0"
1670 | },
1671 | "engines": {
1672 | "node": ">= 0.8"
1673 | }
1674 | },
1675 | "node_modules/raw-body/node_modules/iconv-lite": {
1676 | "version": "0.4.24",
1677 | "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz",
1678 | "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==",
1679 | "license": "MIT",
1680 | "dependencies": {
1681 | "safer-buffer": ">= 2.1.2 < 3"
1682 | },
1683 | "engines": {
1684 | "node": ">=0.10.0"
1685 | }
1686 | },
1687 | "node_modules/readdirp": {
1688 | "version": "3.6.0",
1689 | "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz",
1690 | "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==",
1691 | "license": "MIT",
1692 | "dependencies": {
1693 | "picomatch": "^2.2.1"
1694 | },
1695 | "engines": {
1696 | "node": ">=8.10.0"
1697 | }
1698 | },
1699 | "node_modules/request": {
1700 | "version": "2.88.2",
1701 | "resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz",
1702 | "integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==",
1703 | "deprecated": "request has been deprecated, see https://github.com/request/request/issues/3142",
1704 | "license": "Apache-2.0",
1705 | "dependencies": {
1706 | "aws-sign2": "~0.7.0",
1707 | "aws4": "^1.8.0",
1708 | "caseless": "~0.12.0",
1709 | "combined-stream": "~1.0.6",
1710 | "extend": "~3.0.2",
1711 | "forever-agent": "~0.6.1",
1712 | "form-data": "~2.3.2",
1713 | "har-validator": "~5.1.3",
1714 | "http-signature": "~1.2.0",
1715 | "is-typedarray": "~1.0.0",
1716 | "isstream": "~0.1.2",
1717 | "json-stringify-safe": "~5.0.1",
1718 | "mime-types": "~2.1.19",
1719 | "oauth-sign": "~0.9.0",
1720 | "performance-now": "^2.1.0",
1721 | "qs": "~6.5.2",
1722 | "safe-buffer": "^5.1.2",
1723 | "tough-cookie": "~2.5.0",
1724 | "tunnel-agent": "^0.6.0",
1725 | "uuid": "^3.3.2"
1726 | },
1727 | "engines": {
1728 | "node": ">= 6"
1729 | }
1730 | },
1731 | "node_modules/request/node_modules/qs": {
1732 | "version": "6.5.3",
1733 | "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.3.tgz",
1734 | "integrity": "sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA==",
1735 | "license": "BSD-3-Clause",
1736 | "engines": {
1737 | "node": ">=0.6"
1738 | }
1739 | },
1740 | "node_modules/retry-as-promised": {
1741 | "version": "7.0.4",
1742 | "resolved": "https://registry.npmjs.org/retry-as-promised/-/retry-as-promised-7.0.4.tgz",
1743 | "integrity": "sha512-XgmCoxKWkDofwH8WddD0w85ZfqYz+ZHlr5yo+3YUCfycWawU56T5ckWXsScsj5B8tqUcIG67DxXByo3VUgiAdA==",
1744 | "license": "MIT"
1745 | },
1746 | "node_modules/safe-buffer": {
1747 | "version": "5.2.1",
1748 | "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
1749 | "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==",
1750 | "funding": [
1751 | {
1752 | "type": "github",
1753 | "url": "https://github.com/sponsors/feross"
1754 | },
1755 | {
1756 | "type": "patreon",
1757 | "url": "https://www.patreon.com/feross"
1758 | },
1759 | {
1760 | "type": "consulting",
1761 | "url": "https://feross.org/support"
1762 | }
1763 | ],
1764 | "license": "MIT"
1765 | },
1766 | "node_modules/safer-buffer": {
1767 | "version": "2.1.2",
1768 | "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
1769 | "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==",
1770 | "license": "MIT"
1771 | },
1772 | "node_modules/semver": {
1773 | "version": "5.7.2",
1774 | "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz",
1775 | "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==",
1776 | "license": "ISC",
1777 | "bin": {
1778 | "semver": "bin/semver"
1779 | }
1780 | },
1781 | "node_modules/send": {
1782 | "version": "0.19.0",
1783 | "resolved": "https://registry.npmjs.org/send/-/send-0.19.0.tgz",
1784 | "integrity": "sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==",
1785 | "license": "MIT",
1786 | "dependencies": {
1787 | "debug": "2.6.9",
1788 | "depd": "2.0.0",
1789 | "destroy": "1.2.0",
1790 | "encodeurl": "~1.0.2",
1791 | "escape-html": "~1.0.3",
1792 | "etag": "~1.8.1",
1793 | "fresh": "0.5.2",
1794 | "http-errors": "2.0.0",
1795 | "mime": "1.6.0",
1796 | "ms": "2.1.3",
1797 | "on-finished": "2.4.1",
1798 | "range-parser": "~1.2.1",
1799 | "statuses": "2.0.1"
1800 | },
1801 | "engines": {
1802 | "node": ">= 0.8.0"
1803 | }
1804 | },
1805 | "node_modules/send/node_modules/encodeurl": {
1806 | "version": "1.0.2",
1807 | "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz",
1808 | "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==",
1809 | "license": "MIT",
1810 | "engines": {
1811 | "node": ">= 0.8"
1812 | }
1813 | },
1814 | "node_modules/send/node_modules/ms": {
1815 | "version": "2.1.3",
1816 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
1817 | "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
1818 | "license": "MIT"
1819 | },
1820 | "node_modules/sequelize": {
1821 | "version": "6.37.5",
1822 | "resolved": "https://registry.npmjs.org/sequelize/-/sequelize-6.37.5.tgz",
1823 | "integrity": "sha512-10WA4poUb3XWnUROThqL2Apq9C2NhyV1xHPMZuybNMCucDsbbFuKg51jhmyvvAUyUqCiimwTZamc3AHhMoBr2Q==",
1824 | "funding": [
1825 | {
1826 | "type": "opencollective",
1827 | "url": "https://opencollective.com/sequelize"
1828 | }
1829 | ],
1830 | "license": "MIT",
1831 | "dependencies": {
1832 | "@types/debug": "^4.1.8",
1833 | "@types/validator": "^13.7.17",
1834 | "debug": "^4.3.4",
1835 | "dottie": "^2.0.6",
1836 | "inflection": "^1.13.4",
1837 | "lodash": "^4.17.21",
1838 | "moment": "^2.29.4",
1839 | "moment-timezone": "^0.5.43",
1840 | "pg-connection-string": "^2.6.1",
1841 | "retry-as-promised": "^7.0.4",
1842 | "semver": "^7.5.4",
1843 | "sequelize-pool": "^7.1.0",
1844 | "toposort-class": "^1.0.1",
1845 | "uuid": "^8.3.2",
1846 | "validator": "^13.9.0",
1847 | "wkx": "^0.5.0"
1848 | },
1849 | "engines": {
1850 | "node": ">=10.0.0"
1851 | },
1852 | "peerDependenciesMeta": {
1853 | "ibm_db": {
1854 | "optional": true
1855 | },
1856 | "mariadb": {
1857 | "optional": true
1858 | },
1859 | "mysql2": {
1860 | "optional": true
1861 | },
1862 | "oracledb": {
1863 | "optional": true
1864 | },
1865 | "pg": {
1866 | "optional": true
1867 | },
1868 | "pg-hstore": {
1869 | "optional": true
1870 | },
1871 | "snowflake-sdk": {
1872 | "optional": true
1873 | },
1874 | "sqlite3": {
1875 | "optional": true
1876 | },
1877 | "tedious": {
1878 | "optional": true
1879 | }
1880 | }
1881 | },
1882 | "node_modules/sequelize-pool": {
1883 | "version": "7.1.0",
1884 | "resolved": "https://registry.npmjs.org/sequelize-pool/-/sequelize-pool-7.1.0.tgz",
1885 | "integrity": "sha512-G9c0qlIWQSK29pR/5U2JF5dDQeqqHRragoyahj/Nx4KOOQ3CPPfzxnfqFPCSB7x5UgjOgnZ61nSxz+fjDpRlJg==",
1886 | "license": "MIT",
1887 | "engines": {
1888 | "node": ">= 10.0.0"
1889 | }
1890 | },
1891 | "node_modules/sequelize/node_modules/debug": {
1892 | "version": "4.4.0",
1893 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz",
1894 | "integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==",
1895 | "license": "MIT",
1896 | "dependencies": {
1897 | "ms": "^2.1.3"
1898 | },
1899 | "engines": {
1900 | "node": ">=6.0"
1901 | },
1902 | "peerDependenciesMeta": {
1903 | "supports-color": {
1904 | "optional": true
1905 | }
1906 | }
1907 | },
1908 | "node_modules/sequelize/node_modules/ms": {
1909 | "version": "2.1.3",
1910 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
1911 | "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
1912 | "license": "MIT"
1913 | },
1914 | "node_modules/sequelize/node_modules/semver": {
1915 | "version": "7.6.3",
1916 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz",
1917 | "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==",
1918 | "license": "ISC",
1919 | "bin": {
1920 | "semver": "bin/semver.js"
1921 | },
1922 | "engines": {
1923 | "node": ">=10"
1924 | }
1925 | },
1926 | "node_modules/sequelize/node_modules/uuid": {
1927 | "version": "8.3.2",
1928 | "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz",
1929 | "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==",
1930 | "license": "MIT",
1931 | "bin": {
1932 | "uuid": "dist/bin/uuid"
1933 | }
1934 | },
1935 | "node_modules/serve-static": {
1936 | "version": "1.16.2",
1937 | "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.16.2.tgz",
1938 | "integrity": "sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==",
1939 | "license": "MIT",
1940 | "dependencies": {
1941 | "encodeurl": "~2.0.0",
1942 | "escape-html": "~1.0.3",
1943 | "parseurl": "~1.3.3",
1944 | "send": "0.19.0"
1945 | },
1946 | "engines": {
1947 | "node": ">= 0.8.0"
1948 | }
1949 | },
1950 | "node_modules/setprototypeof": {
1951 | "version": "1.2.0",
1952 | "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz",
1953 | "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==",
1954 | "license": "ISC"
1955 | },
1956 | "node_modules/side-channel": {
1957 | "version": "1.1.0",
1958 | "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz",
1959 | "integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==",
1960 | "license": "MIT",
1961 | "dependencies": {
1962 | "es-errors": "^1.3.0",
1963 | "object-inspect": "^1.13.3",
1964 | "side-channel-list": "^1.0.0",
1965 | "side-channel-map": "^1.0.1",
1966 | "side-channel-weakmap": "^1.0.2"
1967 | },
1968 | "engines": {
1969 | "node": ">= 0.4"
1970 | },
1971 | "funding": {
1972 | "url": "https://github.com/sponsors/ljharb"
1973 | }
1974 | },
1975 | "node_modules/side-channel-list": {
1976 | "version": "1.0.0",
1977 | "resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.0.tgz",
1978 | "integrity": "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==",
1979 | "license": "MIT",
1980 | "dependencies": {
1981 | "es-errors": "^1.3.0",
1982 | "object-inspect": "^1.13.3"
1983 | },
1984 | "engines": {
1985 | "node": ">= 0.4"
1986 | },
1987 | "funding": {
1988 | "url": "https://github.com/sponsors/ljharb"
1989 | }
1990 | },
1991 | "node_modules/side-channel-map": {
1992 | "version": "1.0.1",
1993 | "resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz",
1994 | "integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==",
1995 | "license": "MIT",
1996 | "dependencies": {
1997 | "call-bound": "^1.0.2",
1998 | "es-errors": "^1.3.0",
1999 | "get-intrinsic": "^1.2.5",
2000 | "object-inspect": "^1.13.3"
2001 | },
2002 | "engines": {
2003 | "node": ">= 0.4"
2004 | },
2005 | "funding": {
2006 | "url": "https://github.com/sponsors/ljharb"
2007 | }
2008 | },
2009 | "node_modules/side-channel-weakmap": {
2010 | "version": "1.0.2",
2011 | "resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz",
2012 | "integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==",
2013 | "license": "MIT",
2014 | "dependencies": {
2015 | "call-bound": "^1.0.2",
2016 | "es-errors": "^1.3.0",
2017 | "get-intrinsic": "^1.2.5",
2018 | "object-inspect": "^1.13.3",
2019 | "side-channel-map": "^1.0.1"
2020 | },
2021 | "engines": {
2022 | "node": ">= 0.4"
2023 | },
2024 | "funding": {
2025 | "url": "https://github.com/sponsors/ljharb"
2026 | }
2027 | },
2028 | "node_modules/simple-update-notifier": {
2029 | "version": "1.1.0",
2030 | "resolved": "https://registry.npmjs.org/simple-update-notifier/-/simple-update-notifier-1.1.0.tgz",
2031 | "integrity": "sha512-VpsrsJSUcJEseSbMHkrsrAVSdvVS5I96Qo1QAQ4FxQ9wXFcB+pjj7FB7/us9+GcgfW4ziHtYMc1J0PLczb55mg==",
2032 | "license": "MIT",
2033 | "dependencies": {
2034 | "semver": "~7.0.0"
2035 | },
2036 | "engines": {
2037 | "node": ">=8.10.0"
2038 | }
2039 | },
2040 | "node_modules/simple-update-notifier/node_modules/semver": {
2041 | "version": "7.0.0",
2042 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz",
2043 | "integrity": "sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==",
2044 | "license": "ISC",
2045 | "bin": {
2046 | "semver": "bin/semver.js"
2047 | }
2048 | },
2049 | "node_modules/sorted-array-functions": {
2050 | "version": "1.3.0",
2051 | "resolved": "https://registry.npmjs.org/sorted-array-functions/-/sorted-array-functions-1.3.0.tgz",
2052 | "integrity": "sha512-2sqgzeFlid6N4Z2fUQ1cvFmTOLRi/sEDzSQ0OKYchqgoPmQBVyM3959qYx3fpS6Esef80KjmpgPeEr028dP3OA==",
2053 | "license": "MIT"
2054 | },
2055 | "node_modules/split2": {
2056 | "version": "4.2.0",
2057 | "resolved": "https://registry.npmjs.org/split2/-/split2-4.2.0.tgz",
2058 | "integrity": "sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==",
2059 | "license": "ISC",
2060 | "engines": {
2061 | "node": ">= 10.x"
2062 | }
2063 | },
2064 | "node_modules/sshpk": {
2065 | "version": "1.18.0",
2066 | "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.18.0.tgz",
2067 | "integrity": "sha512-2p2KJZTSqQ/I3+HX42EpYOa2l3f8Erv8MWKsy2I9uf4wA7yFIkXRffYdsx86y6z4vHtV8u7g+pPlr8/4ouAxsQ==",
2068 | "license": "MIT",
2069 | "dependencies": {
2070 | "asn1": "~0.2.3",
2071 | "assert-plus": "^1.0.0",
2072 | "bcrypt-pbkdf": "^1.0.0",
2073 | "dashdash": "^1.12.0",
2074 | "ecc-jsbn": "~0.1.1",
2075 | "getpass": "^0.1.1",
2076 | "jsbn": "~0.1.0",
2077 | "safer-buffer": "^2.0.2",
2078 | "tweetnacl": "~0.14.0"
2079 | },
2080 | "bin": {
2081 | "sshpk-conv": "bin/sshpk-conv",
2082 | "sshpk-sign": "bin/sshpk-sign",
2083 | "sshpk-verify": "bin/sshpk-verify"
2084 | },
2085 | "engines": {
2086 | "node": ">=0.10.0"
2087 | }
2088 | },
2089 | "node_modules/statuses": {
2090 | "version": "2.0.1",
2091 | "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz",
2092 | "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==",
2093 | "license": "MIT",
2094 | "engines": {
2095 | "node": ">= 0.8"
2096 | }
2097 | },
2098 | "node_modules/supports-color": {
2099 | "version": "5.5.0",
2100 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
2101 | "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
2102 | "license": "MIT",
2103 | "dependencies": {
2104 | "has-flag": "^3.0.0"
2105 | },
2106 | "engines": {
2107 | "node": ">=4"
2108 | }
2109 | },
2110 | "node_modules/to-regex-range": {
2111 | "version": "5.0.1",
2112 | "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
2113 | "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
2114 | "license": "MIT",
2115 | "dependencies": {
2116 | "is-number": "^7.0.0"
2117 | },
2118 | "engines": {
2119 | "node": ">=8.0"
2120 | }
2121 | },
2122 | "node_modules/toidentifier": {
2123 | "version": "1.0.1",
2124 | "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz",
2125 | "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==",
2126 | "license": "MIT",
2127 | "engines": {
2128 | "node": ">=0.6"
2129 | }
2130 | },
2131 | "node_modules/toposort-class": {
2132 | "version": "1.0.1",
2133 | "resolved": "https://registry.npmjs.org/toposort-class/-/toposort-class-1.0.1.tgz",
2134 | "integrity": "sha512-OsLcGGbYF3rMjPUf8oKktyvCiUxSbqMMS39m33MAjLTC1DVIH6x3WSt63/M77ihI09+Sdfk1AXvfhCEeUmC7mg==",
2135 | "license": "MIT"
2136 | },
2137 | "node_modules/touch": {
2138 | "version": "3.1.1",
2139 | "resolved": "https://registry.npmjs.org/touch/-/touch-3.1.1.tgz",
2140 | "integrity": "sha512-r0eojU4bI8MnHr8c5bNo7lJDdI2qXlWWJk6a9EAFG7vbhTjElYhBVS3/miuE0uOuoLdb8Mc/rVfsmm6eo5o9GA==",
2141 | "license": "ISC",
2142 | "bin": {
2143 | "nodetouch": "bin/nodetouch.js"
2144 | }
2145 | },
2146 | "node_modules/tough-cookie": {
2147 | "version": "2.5.0",
2148 | "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz",
2149 | "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==",
2150 | "license": "BSD-3-Clause",
2151 | "dependencies": {
2152 | "psl": "^1.1.28",
2153 | "punycode": "^2.1.1"
2154 | },
2155 | "engines": {
2156 | "node": ">=0.8"
2157 | }
2158 | },
2159 | "node_modules/tunnel-agent": {
2160 | "version": "0.6.0",
2161 | "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz",
2162 | "integrity": "sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==",
2163 | "license": "Apache-2.0",
2164 | "dependencies": {
2165 | "safe-buffer": "^5.0.1"
2166 | },
2167 | "engines": {
2168 | "node": "*"
2169 | }
2170 | },
2171 | "node_modules/tweetnacl": {
2172 | "version": "0.14.5",
2173 | "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz",
2174 | "integrity": "sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==",
2175 | "license": "Unlicense"
2176 | },
2177 | "node_modules/type-is": {
2178 | "version": "1.6.18",
2179 | "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz",
2180 | "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==",
2181 | "license": "MIT",
2182 | "dependencies": {
2183 | "media-typer": "0.3.0",
2184 | "mime-types": "~2.1.24"
2185 | },
2186 | "engines": {
2187 | "node": ">= 0.6"
2188 | }
2189 | },
2190 | "node_modules/undefsafe": {
2191 | "version": "2.0.5",
2192 | "resolved": "https://registry.npmjs.org/undefsafe/-/undefsafe-2.0.5.tgz",
2193 | "integrity": "sha512-WxONCrssBM8TSPRqN5EmsjVrsv4A8X12J4ArBiiayv3DyyG3ZlIg6yysuuSYdZsVz3TKcTg2fd//Ujd4CHV1iA==",
2194 | "license": "MIT"
2195 | },
2196 | "node_modules/undici": {
2197 | "version": "6.21.0",
2198 | "resolved": "https://registry.npmjs.org/undici/-/undici-6.21.0.tgz",
2199 | "integrity": "sha512-BUgJXc752Kou3oOIuU1i+yZZypyZRqNPW0vqoMPl8VaoalSfeR0D8/t4iAS3yirs79SSMTxTag+ZC86uswv+Cw==",
2200 | "license": "MIT",
2201 | "engines": {
2202 | "node": ">=18.17"
2203 | }
2204 | },
2205 | "node_modules/undici-types": {
2206 | "version": "6.20.0",
2207 | "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.20.0.tgz",
2208 | "integrity": "sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg==",
2209 | "license": "MIT"
2210 | },
2211 | "node_modules/unpipe": {
2212 | "version": "1.0.0",
2213 | "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz",
2214 | "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==",
2215 | "license": "MIT",
2216 | "engines": {
2217 | "node": ">= 0.8"
2218 | }
2219 | },
2220 | "node_modules/uri-js": {
2221 | "version": "4.4.1",
2222 | "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz",
2223 | "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==",
2224 | "license": "BSD-2-Clause",
2225 | "dependencies": {
2226 | "punycode": "^2.1.0"
2227 | }
2228 | },
2229 | "node_modules/utils-merge": {
2230 | "version": "1.0.1",
2231 | "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz",
2232 | "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==",
2233 | "license": "MIT",
2234 | "engines": {
2235 | "node": ">= 0.4.0"
2236 | }
2237 | },
2238 | "node_modules/uuid": {
2239 | "version": "3.4.0",
2240 | "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz",
2241 | "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==",
2242 | "deprecated": "Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details.",
2243 | "license": "MIT",
2244 | "bin": {
2245 | "uuid": "bin/uuid"
2246 | }
2247 | },
2248 | "node_modules/validator": {
2249 | "version": "13.12.0",
2250 | "resolved": "https://registry.npmjs.org/validator/-/validator-13.12.0.tgz",
2251 | "integrity": "sha512-c1Q0mCiPlgdTVVVIJIrBuxNicYE+t/7oKeI9MWLj3fh/uq2Pxh/3eeWbVZ4OcGW1TUf53At0njHw5SMdA3tmMg==",
2252 | "license": "MIT",
2253 | "engines": {
2254 | "node": ">= 0.10"
2255 | }
2256 | },
2257 | "node_modules/vary": {
2258 | "version": "1.1.2",
2259 | "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz",
2260 | "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==",
2261 | "license": "MIT",
2262 | "engines": {
2263 | "node": ">= 0.8"
2264 | }
2265 | },
2266 | "node_modules/verror": {
2267 | "version": "1.10.0",
2268 | "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz",
2269 | "integrity": "sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==",
2270 | "engines": [
2271 | "node >=0.6.0"
2272 | ],
2273 | "license": "MIT",
2274 | "dependencies": {
2275 | "assert-plus": "^1.0.0",
2276 | "core-util-is": "1.0.2",
2277 | "extsprintf": "^1.2.0"
2278 | }
2279 | },
2280 | "node_modules/whatwg-encoding": {
2281 | "version": "3.1.1",
2282 | "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-3.1.1.tgz",
2283 | "integrity": "sha512-6qN4hJdMwfYBtE3YBTTHhoeuUrDBPZmbQaxWAqSALV/MeEnR5z1xd8UKud2RAkFoPkmB+hli1TZSnyi84xz1vQ==",
2284 | "license": "MIT",
2285 | "dependencies": {
2286 | "iconv-lite": "0.6.3"
2287 | },
2288 | "engines": {
2289 | "node": ">=18"
2290 | }
2291 | },
2292 | "node_modules/whatwg-mimetype": {
2293 | "version": "4.0.0",
2294 | "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-4.0.0.tgz",
2295 | "integrity": "sha512-QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg==",
2296 | "license": "MIT",
2297 | "engines": {
2298 | "node": ">=18"
2299 | }
2300 | },
2301 | "node_modules/wkx": {
2302 | "version": "0.5.0",
2303 | "resolved": "https://registry.npmjs.org/wkx/-/wkx-0.5.0.tgz",
2304 | "integrity": "sha512-Xng/d4Ichh8uN4l0FToV/258EjMGU9MGcA0HV2d9B/ZpZB3lqQm7nkOdZdm5GhKtLLhAE7PiVQwN4eN+2YJJUg==",
2305 | "license": "MIT",
2306 | "dependencies": {
2307 | "@types/node": "*"
2308 | }
2309 | },
2310 | "node_modules/xtend": {
2311 | "version": "4.0.2",
2312 | "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz",
2313 | "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==",
2314 | "license": "MIT",
2315 | "engines": {
2316 | "node": ">=0.4"
2317 | }
2318 | }
2319 | }
2320 | }
2321 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "dayoffapi",
3 | "version": "1.0.0",
4 | "description": "API to determine the holiday date",
5 | "main": "app.js",
6 | "scripts": {
7 | "app": "node app.js",
8 | "dev": "nodemon app.js"
9 | },
10 | "author": "Gerin Sena Pratama",
11 | "license": "ISC",
12 | "dependencies": {
13 | "cheerio": "^1.0.0-rc.12",
14 | "dotenv": "^16.4.7",
15 | "express": "^4.18.2",
16 | "node-schedule": "^2.1.1",
17 | "nodemon": "^2.0.22",
18 | "pg": "^8.13.1",
19 | "request": "^2.88.2",
20 | "sequelize": "^6.37.5"
21 | }
22 | }
23 |
--------------------------------------------------------------------------------
/public/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Dayoff-API
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
dayoff-API
14 | Api untuk mengecek hari libur dan cuti bersama
15 |
16 |
17 |
Format Response
18 |
19 | {
20 | "tanggal": "2023-01-1",
21 | "keterangan": "Tahun Baru 2023",
22 | "is_cuti": true or false
23 | }
24 |
25 |
26 |
27 |
Cara Akses API
28 |
29 | - Mendapatkan data hari libur tahun sekarang /api
30 | - Mendapatkan data hari libur pada tahun 2020 /api?year=2020
31 | - Mendapatkan data hari libur di bulan 5 pada tahun saat ini /api?month=5
32 | - Mendapatkan data hari libur di bulan 5 pada tahun 2023 /api?month=5&year=2023
33 |
34 |
35 |
36 |
Cara Kerja API ini?
37 |
38 | API ini mengambil data dari tanggalan.com dengan cara di scraping setiap 1 bulan sekali menggunakan github action.
39 |
40 |
41 |
42 |
Kontribusi
43 |
44 | Jika anda ingin berkontribusi di projek ini silahkan kunjungi repository saya di github github.com/gerinsp/dayoff-API
45 |
46 |
47 |
48 |
49 |
--------------------------------------------------------------------------------
/services/scraper.js:
--------------------------------------------------------------------------------
1 | const path = require("path");
2 |
3 | const scraper = (cheerio, request, fs, schedule) => {
4 | console.log("scraper running..");
5 |
6 | let yearNow = new Date().getFullYear();
7 | console.log("update data baru " + yearNow);
8 | return scraperData(yearNow);
9 |
10 | function scraperData(year) {
11 | return new Promise((resolve, reject) => {
12 | request("https://www.tanggalan.com/" + year, (error, response, html) => {
13 | if (!error && response.statusCode == 200) {
14 | const $ = cheerio.load(html);
15 | const data = [];
16 |
17 | $("article ul").each((i, ul) => {
18 | const $ul = $(ul);
19 | const Tahun = $ul.find("li b").eq(0).text();
20 | const strBulan = $ul.find("li a").eq(0).text();
21 | const cleanedStr = strBulan.replace(/\d+/g, "");
22 |
23 | const mapBulan = {
24 | januari: "01",
25 | februari: "02",
26 | maret: "03",
27 | april: "04",
28 | mei: "05",
29 | juni: "06",
30 | juli: "07",
31 | agustus: "08",
32 | september: "09",
33 | oktober: "10",
34 | november: "11",
35 | desember: "12",
36 | };
37 |
38 | const Bulan = cleanedStr.toLowerCase().trim();
39 | const kodeBulan = mapBulan[Bulan];
40 |
41 | $ul
42 | .find("li")
43 | .eq(3)
44 | .find("tbody tr")
45 | .each((i, tr) => {
46 | const $tr = $(tr);
47 | const namaHariLibur = $tr.find("td").eq(1).text();
48 | const tanggal = $tr.find("td").eq(0).text();
49 | if (tanggal.includes("-")) {
50 | const date = tanggal.split("-");
51 | const start = parseInt(date[0]);
52 | const end = parseInt(date[1]);
53 |
54 | for (let i = start; i <= end; i++) {
55 | data.push({
56 | tanggal: Tahun + "-" + kodeBulan + "-" + i.toString(),
57 | keterangan: namaHariLibur,
58 | });
59 | }
60 | } else {
61 | data.push({
62 | tanggal: Tahun + "-" + kodeBulan + "-" + tanggal,
63 | keterangan: namaHariLibur,
64 | });
65 | }
66 | });
67 | });
68 |
69 | const dataJson = JSON.stringify(data);
70 | const filename = `${year}.json`;
71 | const foldername = "data";
72 | const filePath = path.join(foldername, filename);
73 |
74 | // Pastikan folder ada sebelum menyimpan file
75 | fs.mkdir(foldername, { recursive: true }, (err) => {
76 | if (err) return reject(err);
77 |
78 | fs.writeFile(filePath, dataJson, (err) => {
79 | if (err) return reject(err);
80 | console.log(`File ${filename} berhasil dibuat`);
81 | });
82 | });
83 |
84 | resolve(data); // Kembalikan path file
85 | } else {
86 | console.log(error);
87 | reject(error);
88 | }
89 | });
90 | });
91 | }
92 | };
93 |
94 | module.exports = scraper;
95 |
--------------------------------------------------------------------------------
/vercel.json:
--------------------------------------------------------------------------------
1 | {
2 | "version": 2,
3 | "name": "dayoff-API",
4 | "builds": [
5 | { "src": "app.js", "use": "@vercel/node" },
6 | {
7 | "src": "public/**",
8 | "use": "@vercel/static"
9 | }
10 | ],
11 | "routes": [
12 | {
13 | "src": "/api(.*)",
14 | "dest": "/app.js",
15 | "headers": {
16 | "Cache-Control": "public, s-maxage=60, stale-while-revalidate",
17 | "Access-Control-Allow-Origin": "*"
18 | }
19 | },
20 | {
21 | "src": "/(.*)",
22 | "dest": "public/index.html"
23 | }
24 | ]
25 | }
26 |
--------------------------------------------------------------------------------