-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 889 Bytes
/
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
{
"name": "discordbot",
"version": "1.0.0",
"description": "Boilerplate for Discord Bots",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"start": "tsc && node $NODE_DEBUG_OPTION dist/app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SunriseM/DiscordBot.git"
},
"author": "SunriseM",
"license": "MIT",
"bugs": {
"url": "https://github.com/SunriseM/DiscordBot/issues"
},
"homepage": "https://github.com/SunriseM/DiscordBot#readme",
"devDependencies": {
"@types/dotenv": "^6.1.0",
"@types/glob": "^7.1.1",
"@types/mongodb": "^3.1.17",
"@types/mongoose": "^5.3.5",
"typescript": "^3.2.2"
},
"dependencies": {
"discord.js": "^11.4.2",
"dotenv": "^6.2.0",
"glob": "^7.1.3",
"moment": "^2.23.0",
"mongodb": "^3.1.10",
"mongoose": "^5.4.0",
"winston": "^3.1.0"
}
}