forked from Valks-Bots/partner-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 893 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
{
"name": "discord-bot",
"version": "1.0.0",
"description": "A partner automation discord bot.",
"main": "bot.js",
"scripts": {
"start": "cd src && nodemon -q bot.js",
"lint": "cd src && eslint --fix .",
"docs": "cd src && jsdoc -r --readme ../.github/README.md -d ../docs ."
},
"author": "valkyrienyanko",
"license": "ISC",
"engines": {
"node": "12.x"
},
"dependencies": {
"axios": "^0.19.2",
"chalk": "^4.0.0",
"dateformat": "^3.0.3",
"discord.js": "^12.0.1",
"dotenv": "^8.2.0",
"moment": "^2.24.0",
"pretty-ms": "^6.0.1",
"sqlite": "^3.0.3"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"nodemon": "^2.0.2"
}
}