1 |
{ |
2 |
"name": "sudobot", |
3 |
"description": "A Discord bot for moderation purposes.", |
4 |
"version": "4.85.2", |
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 |
"@discordjs/builders": "^0.13.0", |
35 |
"@discordjs/rest": "^0.4.1", |
36 |
"axios": "^0.27.2", |
37 |
"bcrypt": "^5.0.1", |
38 |
"bufferutil": "^4.0.6", |
39 |
"cors": "^2.8.5", |
40 |
"date-fns": "^2.29.1", |
41 |
"discord-api-types": "^0.32.1", |
42 |
"discord-modals": "^1.3.6", |
43 |
"discord.js": "^13.7.0", |
44 |
"dot-object": "^2.1.4", |
45 |
"dotenv": "^16.0.1", |
46 |
"enhanced-ms": "^2.2.0", |
47 |
"express": "^4.18.1", |
48 |
"express-rate-limit": "^6.6.0", |
49 |
"express-router": "^0.0.1", |
50 |
"express-validator": "^6.14.2", |
51 |
"googleapis": "^110.0.0", |
52 |
"jsonwebtoken": "^9.0.0", |
53 |
"mongoose": "^6.5.4", |
54 |
"ms": "^2.1.3", |
55 |
"pm2": "^5.2.0", |
56 |
"randomstring": "^1.2.2", |
57 |
"reflect-metadata": "^0.1.13", |
58 |
"ts-deepmerge": "^4.0.0", |
59 |
"uuid": "^9.0.0", |
60 |
"zod": "^3.17.2" |
61 |
}, |
62 |
"devDependencies": { |
63 |
"@commitlint/cli": "^17.0.3", |
64 |
"@commitlint/config-conventional": "^17.0.3", |
65 |
"@types/bcrypt": "^5.0.0", |
66 |
"@types/cors": "^2.8.12", |
67 |
"@types/dot-object": "^2.1.2", |
68 |
"@types/express": "^4.17.13", |
69 |
"@types/jsonwebtoken": "^8.5.9", |
70 |
"@types/mongoose-sequence": "^3.0.7", |
71 |
"@types/ms": "^0.7.31", |
72 |
"@types/node": "^17.0.33", |
73 |
"@types/randomstring": "^1.1.8", |
74 |
"@types/supertest": "^2.0.12", |
75 |
"@types/uuid": "^8.3.4", |
76 |
"@typescript-eslint/eslint-plugin": "^5.36.2", |
77 |
"@typescript-eslint/parser": "^5.36.2", |
78 |
"eslint": "^8.23.0", |
79 |
"eslint-plugin-unused-imports": "^2.0.0", |
80 |
"husky": "^8.0.1", |
81 |
"jest": "^29.2.2", |
82 |
"nodemon": "^2.0.16", |
83 |
"supertest": "^6.3.1", |
84 |
"ts-jest": "^29.0.3", |
85 |
"ts-node": "^10.9.1", |
86 |
"typescript": "^4.6.4" |
87 |
}, |
88 |
"scripts": { |
89 |
"watch": "nodemon ./src/index.ts --ext ts", |
90 |
"dev": "ts-node ./src/index.ts", |
91 |
"flag:prod": "ts-node ./src/index.ts --prod", |
92 |
"deploy": "node ./deploy-commands.js", |
93 |
"start:node": "node ./build/index.js", |
94 |
"flag:dev": "node ./build/index.js --dev", |
95 |
"build": "tsc", |
96 |
"clean": "bash -c 'rm -r build'", |
97 |
"prepare": "sh -c \"husky install; sh ./init.sh\" || echo \"Error while trying to prepare project.\"", |
98 |
"start": "pm2 start ./ecosystem.config.js --no-daemon", |
99 |
"lint": "eslint . --ext .ts", |
100 |
"lint:fix": "eslint . --ext .ts --fix", |
101 |
"test": "jest -t --testPathPattern tests/*" |
102 |
} |
103 |
} |