-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 911 Bytes
/
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
{
"name": "discord-leetcode-bot",
"version": "1.0.0",
"description": "init commit",
"main": "index.js",
"scripts": {
"start": "ts-node src/index.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon --exec ts-node src/index.ts",
"build": "tsc",
"debug": "nodemon --inspect --exec ts-node src/index.ts",
"lint": "eslint . --fix",
"test:commands": "ts-node src/bot/Leetcode.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^1.6.8",
"cron": "^3.1.6",
"discord.js": "^14.14.1",
"dotenv": "^16.4.5",
"leetcode-query": "^1.2.3",
"moment-timezone": "^0.5.45",
"node-cron": "^3.0.3"
},
"devDependencies": {
"@types/node": "^20.11.24",
"@types/node-cron": "^3.0.11",
"eslint": "^8.0.0",
"nodemon": "^2.0.15",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}