-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
83 lines (83 loc) · 2.94 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "ttv-chat-bot",
"version": "0.1.0",
"description": "Twitch TV chat reader to control internet connected lights",
"main": "index.js",
"scripts": {
"prestart": "echo prestart... && npm run build && echo starting...",
"start": "node dist/server/index.js",
"dev": "nodemon -e ts,json -x \"ts-node --project src/server/tsconfig.json src/server/index.ts\"",
"dev-wsl": "OBS_SOCKETS_SERVER=ws://$(hostname).local:4455 nodemon -e ts,json -x \"ts-node --project src/server/tsconfig.json src/server/index.ts\"",
"prestart-wsl": "echo prestart... && npm run build && echo starting...",
"start-wsl": "OBS_SOCKETS_SERVER=ws://$(hostname).local:4455 node dist/server/index.js",
"debug": "node --inspect dist/server/index.js",
"debug-wsl": "OBS_SOCKETS_SERVER=ws://$(hostname).local:4455 node --inspect dist/server/index.js",
"predebug-compile": "npm run prestart",
"debug-compile": "node --inspect dist/server/index.js",
"debug-brk": "node --inspect-brk dist/server/index.js",
"predebug-compile-brk": "npm run prestart",
"debug-compile-brk": "node --inspect-brk dist/server/index.js",
"test": "snyk test",
"build": "echo build... && npm run compile",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect",
"compile": "tsc -p ./src/client && tsc -p ./src/server",
"compile-client": "tsc -p ./src/client"
},
"author": "Brian Clark",
"license": "MIT",
"dependencies": {
"bindings": "^1.4.0",
"body-parser": "^1.18.3",
"chroma-js": "^2.1.2",
"cookie-parser": "^1.4.6",
"csurf": "^1.11.0",
"dotenv": "^5.0.1",
"es6-promise": "^4.2.5",
"express": "^4.16.3",
"express-rate-limit": "^6.3.0",
"helmet": "^5.0.2",
"isomorphic-fetch": "^3.0.0",
"microsoft-cognitiveservices-speech-sdk": "^1.19.0",
"mp3-duration": "^1.1.0",
"obs-websocket-js": "^5.0.2",
"pug": "^3.0.1",
"socket.io": "^3.1.2",
"socket.io-client": "^3.1.3",
"tmi.js": "^1.8.5",
"ws": "^6.2.2"
},
"snyk": true,
"devDependencies": {
"@types/chroma-js": "^1.4.2",
"@types/cookie-parser": "^1.4.2",
"@types/csurf": "^1.11.2",
"@types/dotenv": "^4.0.3",
"@types/express": "^4.16.0",
"@types/isomorphic-fetch": "0.0.34",
"@types/jquery": "^3.3.31",
"@types/node": "^10.9.4",
"@types/node-fetch": "^2.1.2",
"@types/socket.io": "^1.4.40",
"@types/socket.io-client": "^1.4.32",
"@types/tmi.js": "^1.4.0",
"@types/ws": "^6.0.1",
"eslint": "^8.2.0",
"eslint-config-airbnb": "^19.0.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^3.0.1",
"eslint-plugin-import": "^2.14.0",
"inversify": "^5.0.5",
"nodemon": "^2.0.6",
"reflect-metadata": "^0.1.13",
"snyk": "^1.1021.0",
"ts-node": "^10.4.0",
"tslint": "^5.20.0",
"tslint-config-airbnb-base": "^0.2.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.8.2"
},
"eslintIgnore": [
"/dist"
]
}