forceplusplus/package.json
adithyagenie 4119d8a143
Basic implementation of Codeforces contest reminders
Signed-off-by: adithyagenie <adithyagenie@gmail.com>
2024-06-13 20:36:30 +05:30

34 lines
853 B
JSON

{
"name": "forceplusplus",
"version": "1.0.0",
"description": "A contest schedule reminder",
"main": "index.js",
"scripts": {
"build": "tsc",
"start": "node ./out/index.js",
"dev": "node --watch ./out/index.js"
},
"keywords": [],
"author": "",
"license": "AGPL-3.0",
"dependencies": {
"grammy": "^1.24.1",
"dotenv": "^16.4.5",
"node-schedule": "^2.1.1",
"@grammyjs/parse-mode": "^1.10.0",
"fastify": "^4.27.0",
"leetcode-query": "^1.2.3",
"codeforces-api-ts": "^3.0.1"
},
"devDependencies": {
"@grammyjs/types": "^3.8.0",
"typescript": "^5.4.5",
"@types/node-schedule": "^2.1.7",
"eslint": "^9.4.0",
"typescript-eslint": "^7.12.0",
"@eslint/js": "^9.4.0",
"@types/eslint__js": "^8.42.3",
"@types/node": "^20.14.2",
"@types/node-fetch": "^2.6.11"
}
}