-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 811 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 811 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
31
32
33
34
35
36
37
{
"name": "bot-discord",
"version": "2.1.2",
"description": "",
"main": "index.ts",
"engines": {
"node": "20.x"
},
"scripts": {
"start": "ts-node src/index.ts",
"start-dev": "ts-node-dev src/index.ts",
"start-prod": "node dist/index.js",
"build": "tsc",
"watch": "tsc -w"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/node": "^20.11.19",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.3.3"
},
"dependencies": {
"async-mutex": "^0.5.0",
"axios": "^1.6.7",
"client-oauth2": "^4.3.3",
"discord.js": "^14.14.1",
"dotenv": "^16.4.4",
"glob": "^7.0.0",
"mongodb": "^6.3.0",
"node-cron": "^3.0.3",
"pino": "^9.1.0",
"pino-pretty": "^11.1.0"
}
}