-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.03 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.03 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
{
"name": "devmodebot",
"version": "1.0.0",
"description": "Um bot para a comunidade devmode de Campos/RJ",
"main": "bot.js",
"scripts": {
"dev": "nodemon src/bot.js",
"lint": "eslint --ignore-path .gitignore .",
"lintfix": "eslint --ignore-path .gitignore . --fix",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node bot.js"
},
"keywords": [
"bot"
],
"author": "Lucas Seixas",
"license": "ISC",
"dependencies": {
"btc-value": "^3.0.1",
"discord.js": "^12.2.0",
"discord.js-commando": "github:discordjs/Commando",
"dotenv": "^8.2.0",
"esm": "^3.2.25"
},
"engines": {
"node": "12.16.x"
},
"devDependencies": {
"eslint": "^7.4.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.4",
"nodemon": "^2.0.4",
"prettier": "^2.0.5"
}
}