-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.87 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.87 KB
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
{
"name": "guardian",
"version": "1.7.0",
"main": "index.ts",
"type": "module",
"license": "Apache",
"scripts": {
"start": "bun tsx index.ts",
"dev": "bun tsx --watch shard.ts",
"start-no-shard": "bun tsx index.ts",
"dev-no-shard": "bun tsx --watch index.ts",
"docker:build": "docker build -t guardian-bot .",
"docker:run": "docker run -p 3000:3000 --env-file .env guardian-bot",
"docker:compose": "docker-compose up -d",
"docker:stop": "docker-compose down",
"format": "prettier --write .",
"check": "prettier --check ."
},
"dependencies": {
"@2toad/profanity": "^3.2.0",
"@iamtraction/google-translate": "^2.0.1",
"@sapphire/result": "^2.8.0",
"@sapphire/timestamp": "^1.0.5",
"@types/qrcode": "^1.5.6",
"ascii-table": "^0.0.9",
"axios": "^1.13.6",
"captcha-generator-alphanumeric": "^1.10.0",
"chalk": "^5.6.2",
"cli-table3": "^0.6.5",
"discord-gamecord": "^4.4.0",
"discord.js": "^14.7.1",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-rate-limit": "^8.2.1",
"format": "^0.2.2",
"generate-password": "^1.7.0",
"glob": "^8.0.3",
"mathjs": "^11.8.0",
"moment": "^2.29.4",
"mongoose": "^6.8.1",
"ms": "^2.1.3",
"node-fetch": "^3.3.1",
"prettier": "^3.8.1",
"qrcode": "^1.5.4",
"statcord.js": "^3.4.3",
"urban": "^0.3.4",
"weather-js": "^2.0.0",
"wikijs": "^6.4.1",
"winston": "^3.19.0"
},
"devDependencies": {
"@biomejs/biome": "^2.4.6",
"@types/express": "^5.0.6",
"@types/glob": "^8.1.0",
"@types/mathjs": "^9.4.1",
"@types/ms": "^2.1.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}