-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 957 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
40
41
42
43
44
45
46
47
48
{
"name": "alliancebot",
"version": "3.0.0",
"description": "Discord bot",
"engines": {
"node": "16.14.0",
"npm": "8.3.1"
},
"main": "main.js",
"scripts": {
"start": "node main.js",
"test": "jest",
"watch": "jest --watch"
},
"jest": {
"testPathIgnorePatterns": [
"/commands/test.js"
]
},
"author": "Californ1a",
"license": "ISC",
"dependencies": {
"@pm2/io": "^5.0.0",
"@twurple/api": "^5.0.18",
"@twurple/auth": "^5.0.18",
"colors": "^1.4.0",
"diff": "^4.0.2",
"discord.js": "^13.8.1",
"dotenv": "^8.2.0",
"duration-js": "^4.0.0",
"firebase-admin": "^9.0.0",
"fs-extra": "^9.0.1",
"github-create-issue": "^2.0.0",
"html-entities": "^1.3.1",
"moment": "^2.27.0",
"mysql": "^2.18.1",
"node-fetch": "^2.6.0",
"parse-duration": "^0.4.4",
"pm2": "^5.2.0",
"steam-web": "^0.7.0",
"twit": "^2.2.11",
"xml2js": "^0.4.23"
},
"devDependencies": {
"jest": "^26.2.2",
"rewire": "^5.0.0"
}
}