forked from TipoftheHats/tally-lights
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.89 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.89 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
60
{
"name": "tally-lights",
"version": "0.0.0",
"scripts": {
"lint": "npm-run-all -s lint:*",
"lint:prettier": "prettier --list-different \"**/*.{ts,tsx,json,md,yml,js}\"",
"fix": "npm-run-all -s fix:*",
"fix:prettier": "prettier --write \"**/*.{ts,tsx,json,md,yml,js}\"",
"test": "npm -v",
"prebuild": "npm t",
"build": "trash dist && tsc -p tsconfig.json",
"watch": "tsc -p tsconfig.json --watch",
"base-station": "node build/base-station",
"light": "node build/light"
},
"description": "Project to implement tally lights for OBS or an ATEM",
"main": "dist/index.js",
"dependencies": {
"@sentry/node": "^5.13.1",
"app-root-path": "^3.0.0",
"atem-connection": "^2.0.0-nightly-20200117-174823-3f8cfe7.0",
"clone": "^2.1.2",
"convict": "^5.2.0",
"fast-deep-equal": "^3.1.1",
"johnny-five": "^1.4.0",
"lodash.debounce": "^4.0.8",
"mkdirp": "^1.0.3",
"obs-websocket-js": "^4.0.1",
"raspi-io": "^11.0.0",
"socket.io": "^2.3.0",
"socket.io-client": "^2.3.0",
"tslib": "^1.11.1",
"winston": "^3.2.1",
"winston-transport": "^4.3.0"
},
"devDependencies": {
"@gamesdonequick/eslint-config": "^2.1.0",
"@gamesdonequick/prettier-config": "^2.2.0",
"@supportclass/tsconfig-base": "^1.0.2",
"@types/app-root-path": "^1.2.4",
"@types/clone": "^0.1.30",
"@types/convict": "^4.2.1",
"@types/johnny-five": "^1.3.0",
"@types/lodash.debounce": "^4.0.6",
"@types/mkdirp": "^1.0.0",
"@types/node": "^13.7.7",
"@types/socket.io": "^2.1.4",
"@types/socket.io-client": "^1.4.32",
"eslint": "^6.8.0",
"husky": "^4.2.3",
"lint-staged": "^10.0.8",
"npm-run-all": "^4.1.5",
"prettier": "^1.19.1",
"trash-cli": "^3.0.0",
"typed-socket.io": "^0.6.0",
"typescript": "^3.8.3"
},
"repository": "https://github.com/markschwartzkopf/pi-lightboard",
"license": "MIT"
}