forked from Would-You-Bot/client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.93 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "would-you",
"version": "1.4.13",
"description": "Would You is a popular Discord bot that allows you to play the classic game of Would You Rather with your friends!",
"main": "dist/cluster.js",
"scripts": {
"start": "node dist/cluster.js",
"dev": "pnpm run build && node dist/cluster.js",
"build": "tsc && pnpm run copy-files",
"copy-files": "copyfiles -u 1 src/**/*.ttf src/**/*.png src/**/*.psd dist/",
"format": "prettier --write \"src/**/*.ts\"",
"docker:build": "docker build -t dominikdoesdev/wy-bot ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/Would-You-Bot/client.git"
},
"keywords": [
"Discordjs",
"discord-bot",
"discord-js",
"discord",
"javascript"
],
"author": "Mezo, ForGetFulSkyBro",
"license": "MIT",
"bugs": {
"url": "https://github.com/Would-You-Bot/client/issues"
},
"homepage": "https://wouldyoubot.gg",
"prettier": {
"trailingComma": "all",
"tabWidth": 2,
"semi": true,
"singleQuote": false
},
"dependencies": {
"@discordjs/rest": "^2.2.0",
"@napi-rs/canvas": "^0.1.51",
"@sentry/node": "^7.109.0",
"@top-gg/sdk": "^3.1.6",
"@upstash/redis": "^1.30.1",
"amqplib": "^0.10.3",
"axios": "^1.6.8",
"canvabase": "^1.1.1",
"chalk-advanced": "^1.0.7",
"cron": "^3.1.7",
"cryptr": "^6.3.0",
"discord-api-types": "^0.37.79",
"discord-hybrid-sharding": "^2.1.9",
"discord.js": "^14.14.1",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"moment-timezone": "^0.5.45",
"mongoose": "^8.3.1",
"profanity-check": "^0.0.3",
"prom-client": "^15.1.1",
"quickchart-js": "^3.1.3",
"tslib": "^2.6.2",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/amqplib": "^0.10.5",
"@types/express": "^4.17.21",
"@types/uuid": "^9.0.7",
"copyfiles": "^2.4.1",
"nodemon": "3.0.1",
"prettier": "^3.2.5",
"typescript": "^5.4.4"
}
}