-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
63 lines (63 loc) · 1.52 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "discord-bot-list",
"version": "0.0.0",
"description": "A Open-Source Discord Bot List.",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"devStart": "nodemon src/index.js",
"format": "prettier --write \"src/**/*.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/TheHellTower/Discord-Bot-List.git"
},
"author": {
"name": "Sank6",
"email": "sankarshm@yahoo.com"
},
"maintainers": [
{
"name": "TheHellTower",
"email": "thehelltower@tuta.io"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/TheHellTower/Discord-Bot-List/issues"
},
"homepage": "https://github.com/TheHellTower/Discord-Bot-List#readme",
"devDependencies": {
"nodemon": "^3.0.1",
"prettier": "^3.0.0"
},
"dependencies": {
"body-parser": "^1.20.2",
"canvas-constructor": "^7.0.1",
"cookie-parser": "^1.4.6",
"discord.js": "^14.11.0",
"dotenv": "^16.3.1",
"ejs": "^3.1.9",
"express": "^4.18.2",
"express-rate-limit": "^6.8.0",
"express-session": "^1.17.3",
"glob": "^7.2.3",
"module-alias": "^2.2.3",
"mongoose": "^7.4.0",
"passport": "^0.6.0",
"passport-discord": "^0.1.4",
"recaptcha2": "^1.3.3",
"sanitize-html": "^2.11.0"
},
"engines": {
"node": ">=16.9.0"
},
"_moduleAliases": {
"@root": ".",
"@bot": "./src/bot",
"@utils": "./src/utils",
"@routes": "./src/routes",
"@models": "./src/models",
"@structures": "./src/structures"
}
}