-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
55 lines (55 loc) · 1.49 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
{
"name": "twurple-bot",
"version": "1.6.1",
"description": "Twitch chat bot built with Twurple",
"scripts": {
"start": "npm run build && node dist/index.js",
"dev": "nodemon src/index.ts",
"dev:debug": "nodemon --inspect src/index.ts",
"build": "tsc",
"prebuild": "rimraf dist",
"format": "prettier --write '**/*.{js,ts,tsx,json}'"
},
"author": {
"name": "Vitalij Ryndin",
"email": "[email protected]",
"url": "https://crashmax.ru"
},
"license": "MIT",
"devDependencies": {
"@crashmax/prettier-config": "^3.2.1",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/lodash": "^4.14.180",
"@types/node": "^17.0.21",
"dotenv": "^16.0.0",
"nodemon": "^2.0.20",
"rimraf": "^3.0.2",
"strict-event-emitter-types": "^2.0.0",
"ts-node": "^10.7.0",
"tsconfig-paths": "^3.14.0",
"typescript": "^4.6.2"
},
"dependencies": {
"@twurple/api": "7.0.2",
"@twurple/auth": "7.0.2",
"@twurple/auth-tmi": "7.0.2",
"@twurple/chat": "7.0.2",
"@twurple/eventsub-http": "7.0.2",
"@twurple/eventsub-ngrok": "7.0.2",
"@twurple/eventsub-ws": "7.0.2",
"@twurple/pubsub": "7.0.2",
"cors": "^2.8.5",
"deckstrings": "^2.2.1",
"express": "^4.17.3",
"got": "^11.8.2",
"html-entities": "^2.3.2",
"lodash": "^4.17.21",
"lowdb-hybrid": "^3.0.0-pre.1",
"ms": "^3.0.0-canary.1",
"tmi.js": "^1.8.5",
"vm2": "^3.9.9",
"winston": "^3.6.0",
"youtube-search": "^1.1.6"
}
}