1 |
{ |
2 |
"name": "sudobot", |
3 |
"description": "A Discord bot for moderation purposes.", |
4 |
"version": "5.82.1", |
5 |
"main": "build/index.js", |
6 |
"license": "GPL-3.0-or-later", |
7 |
"keywords": [ |
8 |
"bot", |
9 |
"discord-bot", |
10 |
"moderation", |
11 |
"automoderation", |
12 |
"discord-moderation", |
13 |
"discord-moderation-bot", |
14 |
"discord-automoderation", |
15 |
"discord-automoderation-bot" |
16 |
], |
17 |
"homepage": "https://github.com/onesoft-sudo/sudobot", |
18 |
"icon": "https://res.cloudinary.com/rakinar2/image/upload/v1659628446/SudoBot-new_cvwphw.png", |
19 |
"readme": "https://github.com/onesoft-sudo/sudobot#readme", |
20 |
"author": { |
21 |
"name": "Ar Rakin", |
22 |
"email": "[email protected]", |
23 |
"url": "https://virtual-designer.github.io" |
24 |
}, |
25 |
"repository": { |
26 |
"type": "git", |
27 |
"url": "https://github.com/onesoft-sudo/sudobot" |
28 |
}, |
29 |
"bugs": { |
30 |
"url": "https://github.com/onesoft-sudo/sudobot/issues", |
31 |
"email": "[email protected]" |
32 |
}, |
33 |
"dependencies": { |
34 |
"@prisma/client": "^5.0.0", |
35 |
"@types/uuid": "^9.0.2", |
36 |
"ascii-table3": "^0.8.2", |
37 |
"axios": "^1.4.0", |
38 |
"bcrypt": "^5.1.0", |
39 |
"chalk": "^4.1.2", |
40 |
"cors": "^2.8.5", |
41 |
"date-fns": "^2.30.0", |
42 |
"deepmerge": "^4.3.1", |
43 |
"discord.js": "^14.13.0", |
44 |
"dot-object": "^2.1.4", |
45 |
"dotenv": "^16.3.1", |
46 |
"express": "^4.18.2", |
47 |
"express-rate-limit": "^6.9.0", |
48 |
"json5": "^2.2.3", |
49 |
"jsonwebtoken": "^9.0.1", |
50 |
"pm2": "^5.3.0", |
51 |
"reflect-metadata": "^0.1.13", |
52 |
"tslib": "^2.6.1", |
53 |
"undici": "^5.23.0", |
54 |
"uuid": "^9.0.0", |
55 |
"zod": "^3.21.4" |
56 |
}, |
57 |
"devDependencies": { |
58 |
"@commitlint/cli": "^17.6.6", |
59 |
"@commitlint/config-conventional": "^17.6.6", |
60 |
"@types/bcrypt": "^5.0.0", |
61 |
"@types/cors": "^2.8.13", |
62 |
"@types/dot-object": "^2.1.2", |
63 |
"@types/express": "^4.17.17", |
64 |
"@types/jsonwebtoken": "^9.0.2", |
65 |
"@types/module-alias": "^2.0.2", |
66 |
"@types/node": "^20.4.0", |
67 |
"husky": "^8.0.3", |
68 |
"prisma": "^5.0.0", |
69 |
"ts-node": "^10.9.1", |
70 |
"typescript": "^5.1.6", |
71 |
"zod-to-json-schema": "^3.21.4" |
72 |
}, |
73 |
"scripts": { |
74 |
"start": "node build/index.js", |
75 |
"prepare": "husky install", |
76 |
"dev": "ts-node src/index.ts", |
77 |
"dev:watch": "nodemon src/index.ts", |
78 |
"lint": "eslint src/ --ext .ts", |
79 |
"lint:fix": "eslint src/ --ext .ts --fix", |
80 |
"build": "tsc", |
81 |
"start:prod": "pm2 start ./ecosystem.config.js", |
82 |
"deploy": "npx ts-node scripts/deploy-commands.ts", |
83 |
"gen:schema": "npx ts-node scripts/generate-config-schema.ts", |
84 |
"test": "node --test --require ts-node/register tests/**/*.test.ts" |
85 |
} |
86 |
} |