feat: fileService.ts

This commit is contained in:
Lucàs
2024-09-20 22:08:00 +02:00
parent b8d5751374
commit 0382499c0d
15 changed files with 1415 additions and 16 deletions
+18 -5
View File
@@ -3,19 +3,32 @@
"version": "1.0.0",
"main": "index.js",
"scripts": {
"dev": "npm run build && npm run start",
"start": "node build/index.js",
"build": "npx tsc"
"dev": "npm run format && npx ts-node ./src/index.ts",
"build": "npx tsc",
"format": "npx prettier . --write --log-level warn"
},
"keywords": [],
"author": "",
"authors": [
"Kévin Mitressé",
"Lucàs Vabre"
],
"license": "ISC",
"description": "",
"dependencies": {
"express": "^4.21.0"
"axios": "^1.7.7",
"dmn-js": "^16.7.1",
"dotenv": "^16.4.5",
"express": "^4.21.0",
"fs-extra": "^11.2.0",
"unzipper": "^0.12.3"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.5.5",
"@types/unzipper": "^0.10.10",
"prettier": "3.3.3",
"ts-node": "^10.9.2",
"typescript": "^5.6.2"
}
}