mirror of
https://github.com/catdevnull/transicion-desordenada-diablo
synced 2024-11-14 18:21:38 +00:00
container + mejorar performance MUCHO
pipeline o abrir archivo con open() o algo genera memory leaks...
This commit is contained in:
parent
16a2b6252a
commit
42aec50b7f
6 changed files with 77867 additions and 233 deletions
14
Containerfile
Normal file
14
Containerfile
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
FROM docker.io/alpine:3.18 as build
|
||||||
|
RUN apk add --no-cache npm esbuild
|
||||||
|
COPY package.json download_json.js /tmp/build
|
||||||
|
RUN cd /tmp/build && \
|
||||||
|
npm install && \
|
||||||
|
esbuild --bundle --format=cjs --platform=node --outfile=build.js download_json.js
|
||||||
|
|
||||||
|
FROM docker.io/alpine:3.18
|
||||||
|
RUN apk add --no-cache nodejs-current tini
|
||||||
|
COPY pki/ca_intermediate_root_bundle.pem /usr/lib/ca_intermediate_root_bundle.pem
|
||||||
|
COPY --from=build /tmp/build/build.js /usr/local/bin/download_json.js
|
||||||
|
ENV NODE_EXTRA_CA_CERTS=/usr/lib/ca_intermediate_root_bundle.pem
|
||||||
|
WORKDIR /data
|
||||||
|
CMD ["/sbin/tini", "node", "/usr/local/bin/download_json.js", "https://datos.gob.ar/data.json"]
|
195
download_json.js
195
download_json.js
|
@ -2,7 +2,6 @@
|
||||||
import { mkdir, open, writeFile } from "node:fs/promises";
|
import { mkdir, open, writeFile } from "node:fs/promises";
|
||||||
import { Agent, fetch, request, setGlobalDispatcher } from "undici";
|
import { Agent, fetch, request, setGlobalDispatcher } from "undici";
|
||||||
import { join, normalize } from "node:path";
|
import { join, normalize } from "node:path";
|
||||||
import { pipeline } from "node:stream/promises";
|
|
||||||
|
|
||||||
// FYI: al menos los siguientes dominios no tienen la cadena completa de certificados en HTTPS. tenemos que usar un hack (node_extra_ca_certs_mozilla_bundle) para conectarnos a estos sitios. (se puede ver con ssllabs.com) ojalá lxs administradorxs de estos servidores lo arreglen.
|
// FYI: al menos los siguientes dominios no tienen la cadena completa de certificados en HTTPS. tenemos que usar un hack (node_extra_ca_certs_mozilla_bundle) para conectarnos a estos sitios. (se puede ver con ssllabs.com) ojalá lxs administradorxs de estos servidores lo arreglen.
|
||||||
// www.enargas.gov.ar, transparencia.enargas.gov.ar, www.energia.gob.ar, www.economia.gob.ar, datos.yvera.gob.ar
|
// www.enargas.gov.ar, transparencia.enargas.gov.ar, www.energia.gob.ar, www.economia.gob.ar, datos.yvera.gob.ar
|
||||||
|
@ -29,109 +28,107 @@ if (!jsonUrlString) {
|
||||||
console.error("Especificamente el url al json porfa");
|
console.error("Especificamente el url al json porfa");
|
||||||
process.exit(1);
|
process.exit(1);
|
||||||
}
|
}
|
||||||
const jsonUrl = new URL(jsonUrlString);
|
downloadFromData(jsonUrlString);
|
||||||
const outputPath = jsonUrl.host;
|
|
||||||
await mkdir(outputPath, { recursive: true });
|
|
||||||
const errorFile = await open(join(outputPath, "errors.jsonl"), "w");
|
|
||||||
|
|
||||||
const jsonRes = await fetch(jsonUrl);
|
/**
|
||||||
// prettier-ignore
|
* @param {string} jsonUrlString
|
||||||
const parsed = /** @type {{ dataset: Dataset[] }} */(await jsonRes.json())
|
*/
|
||||||
await writeFile(join(outputPath, "data.json"), JSON.stringify(parsed));
|
async function downloadFromData(jsonUrlString) {
|
||||||
|
const jsonUrl = new URL(jsonUrlString);
|
||||||
|
const outputPath = jsonUrl.host;
|
||||||
|
await mkdir(outputPath, { recursive: true });
|
||||||
|
const errorFile = await open(join(outputPath, "errors.jsonl"), "w");
|
||||||
|
|
||||||
const jobs = parsed.dataset.flatMap((dataset) =>
|
const jsonRes = await fetch(jsonUrl);
|
||||||
dataset.distribution.map((dist) => ({
|
// prettier-ignore
|
||||||
dataset,
|
const parsed = /** @type {{ dataset: Dataset[] }} */(await jsonRes.json())
|
||||||
dist,
|
await writeFile(join(outputPath, "data.json"), JSON.stringify(parsed));
|
||||||
url: patchUrl(new URL(dist.downloadURL)),
|
|
||||||
}))
|
|
||||||
);
|
|
||||||
const totalJobs = jobs.length;
|
|
||||||
let nFinished = 0;
|
|
||||||
let nErrors = 0;
|
|
||||||
|
|
||||||
// por las dudas verificar que no hayan archivos duplicados
|
/** @type {DownloadJob[]} */
|
||||||
chequearIdsDuplicados();
|
const jobs = parsed.dataset.flatMap((dataset) =>
|
||||||
|
dataset.distribution.map((dist) => ({
|
||||||
|
dataset,
|
||||||
|
dist,
|
||||||
|
url: patchUrl(new URL(dist.downloadURL)),
|
||||||
|
outputPath,
|
||||||
|
attempts: 0,
|
||||||
|
}))
|
||||||
|
);
|
||||||
|
const totalJobs = jobs.length;
|
||||||
|
let nFinished = 0;
|
||||||
|
let nErrors = 0;
|
||||||
|
|
||||||
/** @type {Map< string, DownloadJob[] >} */
|
// por las dudas verificar que no hayan archivos duplicados
|
||||||
let jobsPerHost = new Map();
|
chequearIdsDuplicados(jobs);
|
||||||
for (const job of jobs) {
|
|
||||||
jobsPerHost.set(job.url.host, [
|
|
||||||
...(jobsPerHost.get(job.url.host) || []),
|
|
||||||
job,
|
|
||||||
]);
|
|
||||||
}
|
|
||||||
|
|
||||||
const greens = [...jobsPerHost.entries()].flatMap(([host, jobs]) => {
|
shuffleArray(jobs);
|
||||||
const nThreads = 8;
|
|
||||||
return Array(nThreads)
|
const nThreads = process.env.N_THREADS ? parseInt(process.env.N_THREADS) : 64;
|
||||||
|
const greens = Array(nThreads)
|
||||||
.fill(0)
|
.fill(0)
|
||||||
.map(() =>
|
.map(() =>
|
||||||
(async () => {
|
(async () => {
|
||||||
let job;
|
let job;
|
||||||
while ((job = jobs.pop())) {
|
while ((job = jobs.pop())) {
|
||||||
|
if (job.waitUntil) await waitUntil(job.waitUntil);
|
||||||
try {
|
try {
|
||||||
await downloadDistWithRetries(job);
|
await downloadDist(job);
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
await errorFile.write(
|
// algunos servidores usan 403 como coso para decir "calmate"
|
||||||
JSON.stringify({
|
// intentar hasta 15 veces con 15 segundos de por medio
|
||||||
url: job.url.toString(),
|
if (
|
||||||
...encodeError(error),
|
error instanceof StatusCodeError &&
|
||||||
}) + "\n"
|
error.code === 403 &&
|
||||||
);
|
job.url.host === "minsegar-my.sharepoint.com" &&
|
||||||
nErrors++;
|
job.attempts < 15
|
||||||
} finally {
|
) {
|
||||||
nFinished++;
|
jobs.unshift({
|
||||||
|
...job,
|
||||||
|
attempts: job.attempts + 1,
|
||||||
|
waitUntil: nowPlusNSeconds(15),
|
||||||
|
});
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
// si no fue un error de http, reintentar hasta 5 veces con 5 segundos de por medio
|
||||||
|
else if (
|
||||||
|
!(error instanceof StatusCodeError) &&
|
||||||
|
!(error instanceof TooManyRedirectsError) &&
|
||||||
|
job.attempts < 5
|
||||||
|
) {
|
||||||
|
jobs.unshift({
|
||||||
|
...job,
|
||||||
|
attempts: job.attempts + 1,
|
||||||
|
waitUntil: nowPlusNSeconds(5),
|
||||||
|
});
|
||||||
|
continue;
|
||||||
|
} else {
|
||||||
|
await errorFile.write(
|
||||||
|
JSON.stringify({
|
||||||
|
url: job.url.toString(),
|
||||||
|
...encodeError(error),
|
||||||
|
}) + "\n"
|
||||||
|
);
|
||||||
|
nErrors++;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
nFinished++;
|
||||||
}
|
}
|
||||||
})()
|
})()
|
||||||
);
|
);
|
||||||
});
|
process.stderr.write(`greens: ${greens.length}\n`);
|
||||||
process.stderr.write(`greens: ${greens.length}\n`);
|
|
||||||
|
|
||||||
const interval = setInterval(() => {
|
const interval = setInterval(() => {
|
||||||
process.stderr.write(`info: ${nFinished}/${totalJobs} done\n`);
|
process.stderr.write(`info: ${nFinished}/${totalJobs} done\n`);
|
||||||
}, 30000);
|
}, 30000);
|
||||||
await Promise.all(greens);
|
await Promise.all(greens);
|
||||||
clearInterval(interval);
|
clearInterval(interval);
|
||||||
if (nErrors > 0) console.error(`Finished with ${nErrors} errors`);
|
if (nErrors > 0) console.error(`Finished with ${nErrors} errors`);
|
||||||
|
|
||||||
/**
|
|
||||||
* @argument {DownloadJob} job
|
|
||||||
* @argument {number} tries
|
|
||||||
*/
|
|
||||||
async function downloadDistWithRetries(job, tries = 0) {
|
|
||||||
const { url } = job;
|
|
||||||
try {
|
|
||||||
await downloadDist(job);
|
|
||||||
} catch (error) {
|
|
||||||
// algunos servidores usan 403 como coso para decir "calmate"
|
|
||||||
// intentar hasta 15 veces con 15 segundos de por medio
|
|
||||||
if (
|
|
||||||
error instanceof StatusCodeError &&
|
|
||||||
error.code === 403 &&
|
|
||||||
url.host === "minsegar-my.sharepoint.com" &&
|
|
||||||
tries < 15
|
|
||||||
) {
|
|
||||||
await wait(15000);
|
|
||||||
return await downloadDistWithRetries(job, tries + 1);
|
|
||||||
}
|
|
||||||
// si no fue un error de http, reintentar hasta 5 veces con 5 segundos de por medio
|
|
||||||
else if (
|
|
||||||
!(error instanceof StatusCodeError) &&
|
|
||||||
!(error instanceof TooManyRedirectsError) &&
|
|
||||||
tries < 5
|
|
||||||
) {
|
|
||||||
await wait(5000);
|
|
||||||
return await downloadDistWithRetries(job, tries + 1);
|
|
||||||
} else throw error;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @argument {DownloadJob} job
|
* @argument {DownloadJob} job
|
||||||
*/
|
*/
|
||||||
async function downloadDist({ dist, dataset, url }) {
|
async function downloadDist({ dist, dataset, url, outputPath }) {
|
||||||
// sharepoint no le gusta compartir a bots lol
|
// sharepoint no le gusta compartir a bots lol
|
||||||
const spoofUserAgent = url.host.endsWith("sharepoint.com");
|
const spoofUserAgent = url.host.endsWith("sharepoint.com");
|
||||||
|
|
||||||
|
@ -159,16 +156,18 @@ async function downloadDist({ dist, dataset, url }) {
|
||||||
fileDirPath,
|
fileDirPath,
|
||||||
sanitizeSuffix(dist.fileName || dist.identifier)
|
sanitizeSuffix(dist.fileName || dist.identifier)
|
||||||
);
|
);
|
||||||
const outputFile = await open(filePath, "w");
|
|
||||||
|
|
||||||
if (!res.body) throw new Error("no body");
|
if (!res.body) throw new Error("no body");
|
||||||
await pipeline(res.body, outputFile.createWriteStream());
|
await writeFile(filePath, res.body);
|
||||||
}
|
}
|
||||||
|
|
||||||
/** @typedef DownloadJob
|
/** @typedef DownloadJob
|
||||||
* @prop {Dataset} dataset
|
* @prop {Dataset} dataset
|
||||||
* @prop {Distribution} dist
|
* @prop {Distribution} dist
|
||||||
* @prop {URL} url
|
* @prop {URL} url
|
||||||
|
* @prop {string} outputPath
|
||||||
|
* @prop {number} attempts
|
||||||
|
* @prop {Date=} waitUntil
|
||||||
*/
|
*/
|
||||||
/** @typedef Dataset
|
/** @typedef Dataset
|
||||||
* @prop {string} identifier
|
* @prop {string} identifier
|
||||||
|
@ -188,7 +187,10 @@ function sanitizeSuffix(path) {
|
||||||
return normalize(path).replace(/^(\.\.(\/|\\|$))+/, "");
|
return normalize(path).replace(/^(\.\.(\/|\\|$))+/, "");
|
||||||
}
|
}
|
||||||
|
|
||||||
function chequearIdsDuplicados() {
|
/**
|
||||||
|
* @param {DownloadJob[]} jobs
|
||||||
|
*/
|
||||||
|
function chequearIdsDuplicados(jobs) {
|
||||||
const duplicated = hasDuplicates(
|
const duplicated = hasDuplicates(
|
||||||
jobs.map((j) => `${j.dataset.identifier}/${j.dist.identifier}`)
|
jobs.map((j) => `${j.dataset.identifier}/${j.dist.identifier}`)
|
||||||
);
|
);
|
||||||
|
@ -206,9 +208,21 @@ function hasDuplicates(array) {
|
||||||
|
|
||||||
/** @argument {number} ms */
|
/** @argument {number} ms */
|
||||||
function wait(ms) {
|
function wait(ms) {
|
||||||
if (ms < 0) return Promise.resolve();
|
|
||||||
return new Promise((resolve) => setTimeout(resolve, ms));
|
return new Promise((resolve) => setTimeout(resolve, ms));
|
||||||
}
|
}
|
||||||
|
/** @argument {Date} date */
|
||||||
|
function waitUntil(date) {
|
||||||
|
return wait(Math.max(+new Date() - +date, 0));
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* genera una Date de ahora+n segundos
|
||||||
|
* @param {number} seconds
|
||||||
|
*/
|
||||||
|
function nowPlusNSeconds(seconds) {
|
||||||
|
let d = new Date();
|
||||||
|
d.setSeconds(d.getSeconds() + seconds);
|
||||||
|
return d;
|
||||||
|
}
|
||||||
|
|
||||||
function encodeError(error) {
|
function encodeError(error) {
|
||||||
if (error instanceof StatusCodeError)
|
if (error instanceof StatusCodeError)
|
||||||
|
@ -231,3 +245,12 @@ function patchUrl(url) {
|
||||||
}
|
}
|
||||||
return url;
|
return url;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// https://stackoverflow.com/a/12646864
|
||||||
|
/** @param {any[]} array */
|
||||||
|
function shuffleArray(array) {
|
||||||
|
for (let i = array.length - 1; i > 0; i--) {
|
||||||
|
const j = Math.floor(Math.random() * (i + 1));
|
||||||
|
[array[i], array[j]] = [array[j], array[i]];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
@ -5,13 +5,12 @@
|
||||||
"description": "",
|
"description": "",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"run": "env NODE_EXTRA_CA_CERTS=node_modules/node_extra_ca_certs_mozilla_bundle/ca_bundle/ca_intermediate_root_bundle.pem node download_json.js"
|
"run": "env NODE_EXTRA_CA_CERTS=pki/ca_intermediate_root_bundle.pem node download_json.js"
|
||||||
},
|
},
|
||||||
"keywords": [],
|
"keywords": [],
|
||||||
"author": "",
|
"author": "",
|
||||||
"license": "ISC",
|
"license": "ISC",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"node_extra_ca_certs_mozilla_bundle": "^1.0.5",
|
|
||||||
"undici": "^5.28.0"
|
"undici": "^5.28.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
|
77742
pki/ca_intermediate_root_bundle.pem
Normal file
77742
pki/ca_intermediate_root_bundle.pem
Normal file
File diff suppressed because it is too large
Load diff
1
pki/readme.md
Normal file
1
pki/readme.md
Normal file
|
@ -0,0 +1 @@
|
||||||
|
Generado por [node_extra_ca_certs_mozilla_bundle](https://www.npmjs.com/package/node_extra_ca_certs_mozilla_bundle), lo copiamos acá para que sea más fácil bundlearlo.
|
145
pnpm-lock.yaml
145
pnpm-lock.yaml
|
@ -5,9 +5,6 @@ settings:
|
||||||
excludeLinksFromLockfile: false
|
excludeLinksFromLockfile: false
|
||||||
|
|
||||||
dependencies:
|
dependencies:
|
||||||
node_extra_ca_certs_mozilla_bundle:
|
|
||||||
specifier: ^1.0.5
|
|
||||||
version: 1.0.5
|
|
||||||
undici:
|
undici:
|
||||||
specifier: ^5.28.0
|
specifier: ^5.28.0
|
||||||
version: 5.28.0
|
version: 5.28.0
|
||||||
|
@ -30,140 +27,6 @@ packages:
|
||||||
undici-types: 5.26.5
|
undici-types: 5.26.5
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/asynckit@0.4.0:
|
|
||||||
resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}
|
|
||||||
dev: false
|
|
||||||
|
|
||||||
/axios@0.27.2:
|
|
||||||
resolution: {integrity: sha512-t+yRIyySRTp/wua5xEr+z1q60QmLq8ABsS5O9Me1AsE5dfKqgnCFzwiCZZ/cGNd1lq4/7akDWMxdhVlucjmnOQ==}
|
|
||||||
dependencies:
|
|
||||||
follow-redirects: 1.15.3
|
|
||||||
form-data: 4.0.0
|
|
||||||
transitivePeerDependencies:
|
|
||||||
- debug
|
|
||||||
dev: false
|
|
||||||
|
|
||||||
/bluebird@3.7.2:
|
|
||||||
resolution: {integrity: sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==}
|
|
||||||
dev: false
|
|
||||||
|
|
||||||
/combined-stream@1.0.8:
|
|
||||||
resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==}
|
|
||||||
engines: {node: '>= 0.8'}
|
|
||||||
dependencies:
|
|
||||||
delayed-stream: 1.0.0
|
|
||||||
dev: false
|
|
||||||
|
|
||||||
/cross-env@6.0.3:
|
|
||||||
resolution: {integrity: sha512-+KqxF6LCvfhWvADcDPqo64yVIB31gv/jQulX2NGzKS/g3GEVz6/pt4wjHFtFWsHMddebWD/sDthJemzM4MaAag==}
|
|
||||||
engines: {node: '>=8.0'}
|
|
||||||
hasBin: true
|
|
||||||
dependencies:
|
|
||||||
cross-spawn: 7.0.3
|
|
||||||
dev: false
|
|
||||||
|
|
||||||
/cross-spawn@7.0.3:
|
|
||||||
resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==}
|
|
||||||
engines: {node: '>= 8'}
|
|
||||||
dependencies:
|
|
||||||
path-key: 3.1.1
|
|
||||||
shebang-command: 2.0.0
|
|
||||||
which: 2.0.2
|
|
||||||
dev: false
|
|
||||||
|
|
||||||
/csvtojson@2.0.10:
|
|
||||||
resolution: {integrity: sha512-lUWFxGKyhraKCW8Qghz6Z0f2l/PqB1W3AO0HKJzGIQ5JRSlR651ekJDiGJbBT4sRNNv5ddnSGVEnsxP9XRCVpQ==}
|
|
||||||
engines: {node: '>=4.0.0'}
|
|
||||||
hasBin: true
|
|
||||||
dependencies:
|
|
||||||
bluebird: 3.7.2
|
|
||||||
lodash: 4.17.21
|
|
||||||
strip-bom: 2.0.0
|
|
||||||
dev: false
|
|
||||||
|
|
||||||
/delayed-stream@1.0.0:
|
|
||||||
resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==}
|
|
||||||
engines: {node: '>=0.4.0'}
|
|
||||||
dev: false
|
|
||||||
|
|
||||||
/follow-redirects@1.15.3:
|
|
||||||
resolution: {integrity: sha512-1VzOtuEM8pC9SFU1E+8KfTjZyMztRsgEfwQl44z8A25uy13jSzTj6dyK2Df52iV0vgHCfBwLhDWevLn95w5v6Q==}
|
|
||||||
engines: {node: '>=4.0'}
|
|
||||||
peerDependencies:
|
|
||||||
debug: '*'
|
|
||||||
peerDependenciesMeta:
|
|
||||||
debug:
|
|
||||||
optional: true
|
|
||||||
dev: false
|
|
||||||
|
|
||||||
/form-data@4.0.0:
|
|
||||||
resolution: {integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==}
|
|
||||||
engines: {node: '>= 6'}
|
|
||||||
dependencies:
|
|
||||||
asynckit: 0.4.0
|
|
||||||
combined-stream: 1.0.8
|
|
||||||
mime-types: 2.1.35
|
|
||||||
dev: false
|
|
||||||
|
|
||||||
/is-utf8@0.2.1:
|
|
||||||
resolution: {integrity: sha512-rMYPYvCzsXywIsldgLaSoPlw5PfoB/ssr7hY4pLfcodrA5M/eArza1a9VmTiNIBNMjOGr1Ow9mTyU2o69U6U9Q==}
|
|
||||||
dev: false
|
|
||||||
|
|
||||||
/isexe@2.0.0:
|
|
||||||
resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
|
|
||||||
dev: false
|
|
||||||
|
|
||||||
/lodash@4.17.21:
|
|
||||||
resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==}
|
|
||||||
dev: false
|
|
||||||
|
|
||||||
/mime-db@1.52.0:
|
|
||||||
resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==}
|
|
||||||
engines: {node: '>= 0.6'}
|
|
||||||
dev: false
|
|
||||||
|
|
||||||
/mime-types@2.1.35:
|
|
||||||
resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==}
|
|
||||||
engines: {node: '>= 0.6'}
|
|
||||||
dependencies:
|
|
||||||
mime-db: 1.52.0
|
|
||||||
dev: false
|
|
||||||
|
|
||||||
/node_extra_ca_certs_mozilla_bundle@1.0.5:
|
|
||||||
resolution: {integrity: sha512-Y+wek3qK8WYybCIxArGTmCEJCJ/6uGud/HCJECBZPIgagF9ba90nhnQMxBcMUAwQaR53iphGYp0JzlVPpUBsjg==}
|
|
||||||
requiresBuild: true
|
|
||||||
dependencies:
|
|
||||||
axios: 0.27.2
|
|
||||||
cross-env: 6.0.3
|
|
||||||
csvtojson: 2.0.10
|
|
||||||
transitivePeerDependencies:
|
|
||||||
- debug
|
|
||||||
dev: false
|
|
||||||
|
|
||||||
/path-key@3.1.1:
|
|
||||||
resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
|
|
||||||
engines: {node: '>=8'}
|
|
||||||
dev: false
|
|
||||||
|
|
||||||
/shebang-command@2.0.0:
|
|
||||||
resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
|
|
||||||
engines: {node: '>=8'}
|
|
||||||
dependencies:
|
|
||||||
shebang-regex: 3.0.0
|
|
||||||
dev: false
|
|
||||||
|
|
||||||
/shebang-regex@3.0.0:
|
|
||||||
resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
|
|
||||||
engines: {node: '>=8'}
|
|
||||||
dev: false
|
|
||||||
|
|
||||||
/strip-bom@2.0.0:
|
|
||||||
resolution: {integrity: sha512-kwrX1y7czp1E69n2ajbG65mIo9dqvJ+8aBQXOGVxqwvNbsXdFM6Lq37dLAY3mknUwru8CfcCbfOLL/gMo+fi3g==}
|
|
||||||
engines: {node: '>=0.10.0'}
|
|
||||||
dependencies:
|
|
||||||
is-utf8: 0.2.1
|
|
||||||
dev: false
|
|
||||||
|
|
||||||
/undici-types@5.26.5:
|
/undici-types@5.26.5:
|
||||||
resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==}
|
resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==}
|
||||||
dev: true
|
dev: true
|
||||||
|
@ -174,11 +37,3 @@ packages:
|
||||||
dependencies:
|
dependencies:
|
||||||
'@fastify/busboy': 2.1.0
|
'@fastify/busboy': 2.1.0
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
/which@2.0.2:
|
|
||||||
resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
|
|
||||||
engines: {node: '>= 8'}
|
|
||||||
hasBin: true
|
|
||||||
dependencies:
|
|
||||||
isexe: 2.0.0
|
|
||||||
dev: false
|
|
||||||
|
|
Loading…
Reference in a new issue