-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 911 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 911 Bytes
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": "poke-draft-discord-bot",
"version": "1.0.0",
"engines": {
"node": "16.x",
"npm": "*"
},
"description": "A discord bot to faciliate a Pokemon Draft League",
"main": "index.js",
"scripts": {
"start": "node src/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon --inspect=0.0.0.0:9229 src/index.js"
},
"author": "John Hernley",
"license": "MIT",
"dependencies": {
"@discordjs/builders": "^0.11.0",
"@discordjs/rest": "^0.2.0-canary.0",
"csvtojson": "^2.0.10",
"discord-api-types": "^0.26.1",
"discord.js": "^13.5.0",
"dotenv": "^16.0.1",
"mysql2": "^2.3.3",
"node-fetch": "^2.6.1",
"wait-port": "^0.2.9"
},
"devDependencies": {
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"nodemon": "^2.0.15",
"prettier": "^2.3.2"
}
}