-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.11 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
{
"name": "devwars-bot",
"version": "0.0.0",
"description": "Official Twitch Bot for DevWars",
"author": "DevWars, LLC",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "node ./dist",
"dev": "ts-node-dev --respawn --transpile-only ./src",
"build": "tsc",
"test": "jest"
},
"dependencies": {
"@twurple/api": "^6.1.0",
"@twurple/auth": "^6.1.0",
"dotenv": "^16.0.3",
"lodash": "^4.17.21",
"node-fetch": "^2.6.9",
"socket.io": "^4.6.1",
"socket.io-client": "^4.6.1",
"tmi.js": "^1.8.5"
},
"devDependencies": {
"@babel/core": "^7.21.4",
"@babel/preset-env": "^7.21.4",
"@babel/preset-typescript": "^7.21.4",
"@types/jest": "^29.5.0",
"@types/lodash": "^4.14.192",
"@types/tmi.js": "^1.8.3",
"babel-jest": "^29.5.0",
"eslint": "^8.37.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.27.5",
"jest": "^29.5.0",
"ts-node-dev": "^2.0.0",
"typescript": "^5.0.4"
}
}