-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.95 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
62
63
64
65
{
"name": "stream-assist-bot",
"version": "1.3.0",
"description": "Twitch Bot for stream assistance, command interpretation, and additional processes.",
"main": "app.ts",
"module": "module",
"dependencies": {
"@sequelize/core": "7.0.0-alpha.37",
"@twurple/api": "7.1.0",
"@twurple/auth": "7.1.0",
"@twurple/chat": "7.1.0",
"@twurple/eventsub-base": "7.1.0",
"@twurple/eventsub-http": "7.1.0",
"@twurple/eventsub-ws": "7.1.0",
"@twurple/pubsub": "7.1.0",
"dayjs": "1.11.10",
"dotenv": "16.4.5",
"google-tts-api": "2.0.2",
"https": "1.0.0",
"inversify": "6.0.2",
"md5": "2.3.0",
"node-cron": "3.0.3",
"pg": "8.11.5",
"reflect-metadata": "0.2.2",
"sequelize": "6.37.3",
"sequelize-typescript": "2.1.6",
"tedious": "18.1.0",
"ts-node": "10.9.2",
"typescript": "5.4.5",
"uuid": "9.0.1",
"winston": "3.13.0",
"winston-daily-rotate-file": "5.0.0",
"ws": "8.16.0"
},
"devDependencies": {
"@types/jest": "29.5.12",
"@types/md5": "2.3.5",
"@types/node": "20.12.7",
"@types/node-cron": "3.0.11",
"@typescript-eslint/eslint-plugin": "7.7.0",
"@typescript-eslint/parser": "7.7.0",
"eslint": "8.56.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.29.1",
"jest": "29.7.0",
"jest-mock": "29.7.0",
"sequelize-cli": "6.6.2",
"ts-jest": "29.1.2"
},
"scripts": {
"start": "ts-node app.ts",
"dev": "ts-node app.ts",
"test": "jest --no-cache --detectOpenHandles",
"test-coverage": "jest --no-cache --coverage=true --detectOpenHandles",
"test-specific": "jest --no-cache --detectOpenHandles --watch ./bot/commands/eightballcommand.spec.ts",
"test-dev": "jest --no-cache --coverage=true --detectOpenHandles --watch"
},
"keywords": [
"twitch",
"bot",
"streaming"
],
"author": "Bryan Wood",
"license": "GPLv3"
}