This commit is contained in:
2026-01-08 02:50:06 -03:00
parent 05c9e7e670
commit 134698e7ab
3 changed files with 16 additions and 1 deletions

View File

@@ -3,6 +3,7 @@ import path from "path";
import crypto from "crypto";
import express from "express";
import multer from "multer";
import 'dotenv/config'
const {
FILE_LOCATION,

13
package-lock.json generated
View File

@@ -9,6 +9,7 @@
"version": "1.0.0",
"license": "ISC",
"dependencies": {
"dotenv": "^17.2.3",
"express": "^5.2.1",
"multer": "^2.0.2"
}
@@ -192,6 +193,18 @@
"node": ">= 0.8"
}
},
"node_modules/dotenv": {
"version": "17.2.3",
"resolved": "https://registry.npmjs.org/dotenv/-/dotenv-17.2.3.tgz",
"integrity": "sha512-JVUnt+DUIzu87TABbhPmNfVdBDt18BLOWjMUFJMSi/Qqg7NTYtabbvSNJGOJ7afbRuv9D/lngizHtP7QyLQ+9w==",
"license": "BSD-2-Clause",
"engines": {
"node": ">=12"
},
"funding": {
"url": "https://dotenvx.com"
}
},
"node_modules/dunder-proto": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz",

View File

@@ -4,12 +4,13 @@
"description": "",
"license": "ISC",
"author": "",
"type": "commonjs",
"type": "module",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"dotenv": "^17.2.3",
"express": "^5.2.1",
"multer": "^2.0.2"
}