-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
39 lines (39 loc) · 1004 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
36
37
38
39
{
"name": "hubs-discord-bot",
"version": "0.0.5",
"description": "A Discord bot that does helpful things related to Hubs rooms.",
"repository": "github:Hubs-Foundation/hubs-discord-bot",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"local": "NODE_TLS_REJECT_UNAUTHORIZED=0 npm start",
"lint": "eslint src",
"test": "tape tests/*.js"
},
"keywords": [
"hubs"
],
"author": "Marshall Polaris <[email protected]>",
"license": "MPL-2.0",
"engines": {
"node": ">=8.0.0"
},
"dependencies": {
"@sentry/node": "^5.23.0",
"bufferutil": "^4.0.1",
"discord.js": "^12.4.1",
"dotenv": "^8.2.0",
"erlpack": "github:hammerandchisel/erlpack",
"escape-string-regexp": "^2.0.0",
"moment-timezone": "^0.5.27",
"node-schedule": "^1.3.2",
"phoenix": "^1.4.11",
"ws": "^6.2.1",
"zucc": "^0.1.2"
},
"devDependencies": {
"eslint": "^6.7.2",
"eslint-plugin-node": "^10.0.0",
"tape": "^4.11.0"
}
}