-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.03 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
{
"name": "beetsbot",
"version": "0.0.1",
"description": "Twitch Chat Bot",
"main": "src/index.js",
"private": true,
"scripts": {
"dev": "nodemon --exec babel-node src/index.js",
"build": "npx webpack",
"prebuild": "rimraf dist",
"start": "node dist/bundle.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "IrishBeets",
"devDependencies": {
"@babel/core": "^7.7.2",
"@babel/node": "^7.7.0",
"@babel/preset-env": "^7.7.1",
"eslint": "^6.1.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.6.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.1",
"nodemon": "^1.19.4",
"prettier": "^1.19.1",
"rimraf": "^3.0.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10"
},
"dependencies": {
"@discordjs/builders": "^0.10.0",
"@discordjs/rest": "^0.2.0-canary.0",
"axios": "^0.19.0",
"discord-api-types": "^0.26.0",
"discord.js": "^13.4.0",
"dotenv": "^8.6.0",
"tmi.js": "^1.5.0"
}
}