-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.25 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.25 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
{
"dependencies": {
"axios": "^0.25.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"discord.js": "^14.6.0",
"express": "^4.18.2",
"humanize-duration": "^3.27.3",
"ioredis": "^4.28.5",
"klaw": "^4.0.1",
"module-alias": "^2.2.2",
"moment": "^2.29.4",
"moment-duration-format": "^2.3.2",
"moment-timezone": "^0.5.38",
"mongodb": "^4.12.1",
"pm2": "^5.2.2"
},
"name": "discordbot-boilerplate",
"version": "1.0.0",
"description": "A basic boilerplate using Discord.JS",
"main": "index.js",
"scripts": {
"dev": "node index.js",
"start": "node index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DanPlayz0/DiscordBot-Boilerplate.git"
},
"keywords": [
"discord",
"bot",
"boilerplate"
],
"author": "DanPlayz0",
"license": "MIT",
"bugs": {
"url": "https://github.com/DanPlayz0/DiscordBot-Boilerplate/issues"
},
"homepage": "https://github.com/DanPlayz0/DiscordBot-Boilerplate#readme",
"_moduleAliases": {
"@root": ".",
"@website": "./website/",
"@commands": "./commands/",
"@events": "./events/",
"@handlers": "./handlers/",
"@structures": "./structures/"
}
}