-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.68 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "slaurbot",
"version": "1.0.0",
"description": "",
"main": "dist/server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc -p .",
"watch": "tsc -p . --watch",
"clean": "rm -rf dist/",
"start": "heroku local web",
"express": "node dist/express-server.js",
"lint": "eslint .",
"lintfix": "eslint --fix .",
"sheo": "node dist/sheo-server.js",
"slaurbot": "node dist/slaurbot-server.js"
},
"author": "slaurent22",
"license": "GPL-3.0-only",
"engines": {
"node": ">16.6.0"
},
"dependencies": {
"@d-fischer/logger": "^4.0.0",
"@twurple/api": "^5.0.13",
"@twurple/auth": "^5.0.13",
"@twurple/chat": "^5.0.13",
"@twurple/easy-bot": "^5.0.13",
"@twurple/pubsub": "^5.0.13",
"axios": "^0.23.0",
"deepequal": "0.0.1",
"discord.js": "^14.12.1",
"express": "^4.17.1",
"got": "^11.8.0",
"humanize-duration": "^3.24.0",
"ioredis": "^4.19.2",
"marked": "^4.0.12",
"node-cleanup": "^2.1.2",
"queue": "^6.0.2",
"rate-limiter-flexible": "^2.1.16",
"source-map-support": "^0.5.19",
"uuid": "^8.3.2",
"uwuifier": "^2.0.2"
},
"devDependencies": {
"@types/argparse": "^2.0.8",
"@types/express": "^4.17.9",
"@types/humanize-duration": "^3.18.1",
"@types/ioredis": "^4.17.8",
"@types/marked": "^1.2.0",
"@types/node-cleanup": "^2.1.1",
"@types/source-map-support": "^0.5.3",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.27.0",
"@typescript-eslint/parser": "^4.27.0",
"dotenv": "^8.2.0",
"eslint": "^7.32.0",
"eslint-plugin-import": "^2.22.1",
"typescript": "^5.1.6"
}
}