-
-
Notifications
You must be signed in to change notification settings - Fork 96
/
Copy pathpackage.json
41 lines (41 loc) · 1 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
{
"name": "simple-discordjs-dashboard",
"version": "1.0.0",
"description": "A simple discord bot dashboard which focuses on the dashboard itself.",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "nodemon index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MrAugu/discord-bot-dashboard.git"
},
"keywords": [
"discord.js",
"bot",
"dashboard"
],
"author": "MrAugu#7917",
"license": "MIT",
"bugs": {
"url": "https://github.com/MrAugu/discord-bot-dashboard/issues"
},
"homepage": "https://github.com/MrAugu/discord-bot-dashboard#readme",
"dependencies": {
"body-parser": "^1.19.0",
"discord.js": "^13.1.0",
"ejs": "^3.1.6",
"express": "^4.17.1",
"express-session": "^1.17.2",
"memorystore": "^1.6.6",
"mongoose": "^5.13.7",
"passport": "^0.4.1",
"passport-discord": "^0.1.4"
},
"devDependencies": {
"chalk": "^2.4.2",
"nodemon": "^2.0.12",
"string-width": "^4.2.2"
}
}