-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.5 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.5 KB
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
{
"name": "twitch-viewer-bot",
"version": "1.0.0",
"description": "Twitch Viewer Service with Web Interface",
"main": "dist/index.js",
"author": "BitcircuitEU",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/BitcircuitEU/twitch-viewer-bot.git"
},
"bugs": {
"url": "https://github.com/BitcircuitEU/twitch-viewer-bot/issues"
},
"homepage": "https://github.com/BitcircuitEU/twitch-viewer-bot#readme",
"keywords": [
"twitch",
"viewer",
"bot",
"automation",
"proxy"
],
"scripts": {
"start": "node dist/index.js",
"dev": "ts-node-dev --respawn src/index.ts",
"build": "tsc",
"test": "jest",
"typeorm": "typeorm-ts-node-commonjs"
},
"dependencies": {
"@azure/identity": "^4.5.0",
"@microsoft/microsoft-graph-client": "^3.0.7",
"@types/axios": "^0.9.36",
"axios": "^1.7.9",
"bcrypt": "^5.1.1",
"crypto-js": "^4.2.0",
"ejs": "^3.1.9",
"express": "^4.18.2",
"puppeteer": "^21.10.0",
"reflect-metadata": "^0.2.1",
"socket.io": "^4.7.4",
"sqlite3": "^5.1.7",
"typeorm": "^0.3.20",
"winston": "^3.11.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/crypto-js": "^4.2.1",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/node": "^20.17.13",
"@types/puppeteer": "^5.4.7",
"@types/socket.io": "^3.0.1",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.3.3"
}
}