forked from UKnowWhoIm/cowin-discord-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.06 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"name": "cowin-discord-bot",
"version": "0.3.0",
"description": "A discord app to get upcoming COWIN appointments based on commands",
"main": "./src/index.js",
"type": "module",
"scripts": {
"lint": "jshint src/*.js src/commands/*.js src/api/*.js src/models/*.js",
"test": "npm run lint",
"start": "node ./src/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/UKnowWhoIm/cowin-discord-bot.git"
},
"keywords": [
"discord-bot",
"cowin",
"vaccine"
],
"author": "UKnowWhoIm",
"license": "MIT",
"bugs": {
"url": "https://github.com/UKnowWhoIm/cowin-discord-bot/issues"
},
"homepage": "https://github.com/UKnowWhoIm/cowin-discord-bot#readme",
"dependencies": {
"axios": "^0.21.1",
"discord.js": "^12.5.3",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"jshint": "^2.13.0",
"luxon": "^1.27.0",
"mongoose": "^5.12.13",
"node-cron": "^3.0.0",
"path": "^0.12.7",
"string-similarity": "^4.0.4"
},
"devDependencies": {
"@types/agenda": "^4.1.0"
}
}