This commit is contained in:
Jonah Fintz 2024-10-21 08:32:53 +02:00
parent 7ba64d9945
commit 1c620b036f
19 changed files with 2745 additions and 91 deletions

30
package.json Normal file
View file

@ -0,0 +1,30 @@
{
"name": "wooldatafetcher",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"build": "tsc -p tsconfig.json",
"start": "ts-node --files ./src/app.ts",
"dev": "nodemon"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@supabase/supabase-js": "^2.45.4",
"@types/uuid": "^10.0.0",
"axios": "^1.7.3",
"dayjs": "^1.11.13",
"fastify": "^5.0.0",
"jsdom": "^25.0.1",
"uuid": "^10.0.0"
},
"devDependencies": {
"@types/jsdom": "^21.1.7",
"@types/node": "^22.7.5",
"nodemon": "^3.1.4",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
}
}