-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
42 lines (42 loc) · 1.2 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
{
"name": "discord-easy-dashboard",
"version": "1.3.0",
"description": "💻 Complete framework to facilitate the creation of dashboard using discord.js and express",
"main": "index.js",
"scripts": {
"test": "node test/registerCommands.js && node test/test.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"types": "./index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/SimonLeclere/discord-easy-dashboard.git"
},
"keywords": [
"discord.js",
"discord",
"dashboard",
"discord-dashboard",
"discord-easy-dashboard"
],
"author": "Simon Leclère",
"license": "ISC",
"dependencies": {
"btoa": "^1.2.1",
"discord.js": "^14.9.0",
"ejs": "^3.1.6",
"express": "^4.17.1",
"express-session": "^1.17.2",
"morgan": "^1.10.0",
"serve-favicon": "^2.5.0"
},
"devDependencies": {
"dotenv": "^16.0.0",
"eslint": "^8.38.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1"
}
}