This repository was archived by the owner on Jan 16, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (67 loc) · 2.06 KB
/
package.json
File metadata and controls
71 lines (67 loc) · 2.06 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
61
62
63
64
65
66
67
68
69
70
71
{
"name": "toxic-mod",
"version": "2.1.3",
"description": "The Discord Moderation Bot with a little bot of Attitude!.",
"author": "TheRealToxicDev <toxic.dev09@gmail.com>",
"license": "MIT",
"main": "index.js",
"engineStrict" : true,
"scripts": {
"start": "node index.js",
"web": "node website/server.js",
"bot": "node client/index.js"
},
"dependencies": {
"body-parser": "^1.19.0",
"colors": "^1.4.0",
"connect-mongo": "^3.2.0",
"cookie-parser": "^1.4.5",
"discord.js": "^12.5.1",
"ejs": "^3.1.5",
"express": "^4.17.1",
"express-session": "^1.17.1",
"fs": "0.0.1-security",
"infinityapi.js": "^1.0.6",
"infinity-bots": "latest",
"infinitybots-votes.js": "^1.0.3",
"ibl-autopost": "^1.0.8",
"install": "^0.13.0",
"marked": "^2.1.2",
"memorystore": "^1.6.2",
"module-alias": "^2.2.2",
"moment": "^2.27.0",
"mongoose": "^5.10.5",
"ms": "^2.1.2",
"node-fetch": "^2.6.1",
"npm-run-all": "^4.1.5",
"parse-ms": "^2.1.0",
"passport": "^0.4.1",
"passport-discord": "^0.1.4",
"path": "^0.12.7",
"simplified-logger": "^1.0.3",
"unirest": "^0.6.0",
"voidbots": "^2.6.3"
},
"engines" : {
"node" : "16.x"
},
"_moduleAliases": {
"@root": ".",
"@Client": "./client",
"@Cmds": "./client/cmds",
"@Utils": "./client/utils",
"@Embeds": "./client/utils/embeds",
"@Images": "./client/utils/images",
"@Colors": "./client/utils/colors",
"@Structure": "./client/struct",
"@Templates": "./utilitys/temp",
"@Permissions": "./utilitys/discord",
"@Authorization": "./utilitys/auth",
"@LegalInfo": "./website/public/legal/md",
"@Storage": "./utilitys/storage",
"@Routes": "./website/routes",
"@Settings": "./settings",
"@Database": "./models",
"@modules": "./modules"
}
}