forked from Sank6/Discord-Bot-List
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.24 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
{
"name": "discordbotlist",
"version": "3.0.0",
"description": "A discord bot list.",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"devStart": "nodemon src/index.js"
},
"dependencies": {
"body-parser": "1.19.0",
"canvas": "^2.6.1",
"canvas-constructor": "^4.1.0",
"cookie-parser": "^1.4.4",
"discord.js": "^12.2.0",
"express": "^4.16.3",
"express-session": "^1.17.1",
"is-html": "^2.0.0",
"is-url": "1.2.4",
"klasa": "^0.5.0",
"module-alias": "^2.2.2",
"mongoose": "^5.9.10",
"node-fetch": "^2.6.0",
"node-pre-gyp": "^0.14.0",
"passport": "^0.4.1",
"passport-discord": "^0.1.4",
"pug": "^3.0.0",
"recaptcha2": "^1.3.3",
"sanitize-html": "^1.27.4",
"showdown": "^1.9.1",
"unirest": "^0.6.0"
},
"devDependencies": {
"nodemon": "2.0.4"
},
"engines": {
"node": "12.x"
},
"_moduleAliases": {
"@root": ".",
"@bot": "./src/bot",
"@utils": "./src/utils",
"@routes": "./src/routes",
"@models": "./src/models",
"@structures": "./src/structures"
}
}