-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 717 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 717 Bytes
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
{
"name": "chatbot",
"version": "1.0.0",
"description": "twitch chat bot of the coding buddies community",
"main": "app.ts",
"scripts": {
"start": "tsc && node ./build/app.js",
"test": "jest"
},
"keywords": [],
"author": "Coding Buddies",
"license": "MIT",
"dependencies": {
"@types/node": "^20.10.5",
"@types/ws": "^8.5.10",
"axios": "^1.13.5",
"dotenv": "^16.3.1",
"express": "^5.2.1",
"obs-websocket-js": "^5.0.7",
"typescript": "^5.3.3",
"websocket": "^1.0.34",
"ws": "^8.15.1"
},
"devDependencies": {
"@types/express": "^5.0.6",
"@types/jest": "^29.5.11",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2"
}
}