This commit is contained in:
2022-10-20 15:18:57 +02:00
committed by GitHub
parent fb7416dbec
commit a1af82501c
15 changed files with 429 additions and 768 deletions

View File

@@ -1,21 +1,22 @@
{
"version": "1.3.0",
"license": "MIT",
"type": "module",
"main": "dist",
"scripts": {
"dev": "tsnd src/index.ts",
"build": "tsc"
"dev": "tsc -w",
"build": "tsc",
"start": "node ."
},
"dependencies": {
"axios": "^0.27.2",
"cloudflare": "^2.9.1",
"cron": "^1.8.2",
"dotenv": "^16.0.1",
"winston": "^3.7.2"
"axios": "^1.1.3",
"dotenv": "^16.0.3",
"node-cron": "^3.0.2",
"winston": "^3.8.2"
},
"devDependencies": {
"@types/cloudflare": "^2.7.8",
"@types/cron": "^1.7.3",
"ts-node-dev": "^1.1.8",
"typescript": "^4.6.4"
"@types/node": "18",
"@types/node-cron": "^3.0.4",
"typescript": "^4.8.4"
}
}