-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 634 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 634 Bytes
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
{
"name": "ten-bot",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "ts-node src/bot.ts",
"dev": "nodemon --exec ts-node src/bot.ts",
"build": "tsc",
"clean": "rimraf dist",
"start": "node dist/bot.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/node": "^20.14.8",
"nodemon": "^3.1.4",
"rimraf": "^5.0.7",
"ts-node": "^10.9.2",
"typescript": "^5.5.2"
},
"dependencies": {
"chalk": "4.1.2",
"cron": "^3.1.7",
"discord.js": "^14.15.3",
"dotenv": "^16.4.5",
"mysql2": "^3.10.1"
}
}