forked from clarkio/ttv-chat-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.83 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-light",
"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",
"debug": "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",
"prebuild": "echo prebuild... && npm run copy-assets",
"build": "echo build... && npm run compile",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect",
"compile": "npm run compile-client && npm run compile-server",
"compile-client": "echo compiling client... & tsc -p ./src/client",
"compile-server": "echo compiling server... & tsc -p ./src/server",
"compile-copy-assets": "npm run compile && npm run copy-assets",
"compile-copy-assets-watch": "npm run compile-watch && npm run copy-assets",
"copy-assets": "copyfiles -au 1 ./src/assets/**/* ./src/assets/* ./src/views/* ./src/server/effects.json dist/"
},
"author": "Brian Clark",
"license": "MIT",
"dependencies": {
"audio-loader": "^1.0.3",
"audio-play": "^2.2.1",
"bindings": "^1.4.0",
"body-parser": "^1.18.3",
"discord.js": "^11.3.2",
"dotenv": "^5.0.1",
"es6-promise": "^4.2.5",
"express": "^4.16.3",
"hoek": "^5.0.3",
"isomorphic-fetch": "^2.2.1",
"mp3-duration": "^1.1.0",
"obs-websocket-js": "^2.0.1",
"play-sound": "^1.1.3",
"pug": "^2.0.3",
"request-promise-native": "^1.0.5",
"socket.io": "^2.1.0",
"socket.io-client": "^2.1.1",
"tmi.js": "^1.4.2",
"ts-node": "^7.0.1",
"uws": "^9.14.0",
"ws": "^6.0.0"
},
"snyk": true,
"devDependencies": {
"@types/chroma-js": "^1.4.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/request-promise-native": "^1.0.15",
"@types/socket.io": "^1.4.38",
"@types/socket.io-client": "^1.4.32",
"@types/tmi.js": "^1.4.0",
"@types/ws": "^6.0.1",
"copyfiles": "^2.1.0",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^3.0.1",
"eslint-plugin-import": "^2.14.0",
"nodemon": "^1.19.2",
"obs-websocket-js-types": "^4.4.0",
"snyk": "^1.156.0",
"tslint": "^5.20.0",
"tslint-config-airbnb-base": "^0.2.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.0.3"
},
"eslintIgnore": [
"/dist"
]
}