-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 964 Bytes
/
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
{
"name": "twitch-quick-vote-bot",
"version": "0.0.1",
"description": "",
"type": "module",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"files": [
"build/src"
],
"license": "MIT",
"keywords": [],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "gts lint",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix",
"prepare": "npm.cmd run compile",
"pretest": "npm.cmd run compile",
"posttest": "npm.cmd run lint"
},
"devDependencies": {
"@types/express": "^4.17.14",
"@types/lodash": "^4.14.186",
"@types/node": "^14.11.2",
"gts": "^3.1.1",
"typescript": "~4.7.0"
},
"dependencies": {
"@twurple/auth": "^5.2.5",
"@twurple/chat": "^5.2.5",
"@types/mustache-express": "^1.2.2",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"lodash": "^4.17.21",
"mustache-express": "^1.3.2",
"socket.io": "^4.5.3"
}
}