-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.08 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
43
44
{
"name": "advanced-discord-bot",
"version": "1.0.0",
"description": "An advanced discord bot with a few stuff here and there",
"main": "src/index.ts",
"keywords": [
"discord",
"discord.js",
"discord.ts",
"advanced-discord-bot",
"discord-bot",
"discord-bot-games",
"github-discord-bot"
],
"engines": {
"node": "18.3.0"
},
"scripts": {
"start": "npx ts-node .",
"build": "tsc --build",
"prod": "tsc --build && node ./dist/src/index.js",
"dev": "ts-node-dev --respawn --transpile-only --poll ./src/index.ts",
"deploy-commands": "ts-node ./scripts/deploy-commands.ts",
"delete-commands": "ts-node ./scripts/delete-commands.ts"
},
"author": "notbeer",
"license": "GNU",
"dependencies": {
"axios": "^1.1.3",
"canvas": "^3.1.0",
"chalk": "^4.1.2",
"discord.js": "^14.18.0",
"dotenv": "^12.0.3",
"i18n": "^0.15.1",
"moment": "^2.30.1",
"mongoose": "^8.10.1"
},
"devDependencies": {
"@types/i18n": "^0.13.5",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.7.3"
}
}