-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 2.3 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"private": true,
"workspaces": [
"./bundle-src",
"./scores-src"
],
"version": "0.0.0",
"scripts": {
"nodecg": "cd ../.. && npm start",
"postinstall": "patch-package && husky install",
"lint": "yarn eslint '{bundle,scores}-src/**/*.{js,jsx,ts,tsx}'",
"prettier:fix": "yarn prettier --write '{bundle,scores}-src/**/*.{js,jsx,ts,tsx}'"
},
"name": "ystv-sports-graphics",
"license": "Apache-2.0",
"nodecg": {
"compatibleRange": "^1.1.1",
"dashboardPanels": [
{
"name": "sports-graphics-controller",
"title": "SportsGraphicsController",
"file": "dashboard.html",
"headerColor": "#FAAF18",
"fullbleed": true
},
{
"name": "select-event",
"title": "Select Event",
"file": "select-event.html",
"dialog": true,
"width": 6,
"dialogButtons": [
{
"name": "confirm",
"type": "confirm"
},
{
"name": "dismiss",
"type": "dismiss"
}
]
}
],
"graphics": [
{
"file": "graphics.html",
"width": 1920,
"height": 1080
}
],
"mount": [
{
"directory": "bundle-src/public",
"endpoint": "public"
}
]
},
"packageManager": "[email protected]",
"devDependencies": {
"@size-limit/preset-app": "^7.0.8",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"@ury1350/prettier-config": "^1.0.1",
"cypress": "^12",
"cypress-file-upload": "^5.0.8",
"cypress-terminal-report": "^5.0.0",
"eslint": "latest",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-react": "latest",
"husky": ">=6",
"lint-staged": ">=10",
"patch-package": "^6.4.7",
"prettier": "^2.6.1",
"size-limit": "^7.0.8",
"typescript": "^4.9.4"
},
"prettier": "@ury1350/prettier-config",
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint"
]
},
"size-limit": [
{
"path": "scores-src/dist/assets/index.*",
"limit": "1.5 mb",
"running": false
},
{
"path": "scores-src/dist/assets/vendor.*",
"limit": "1.5 mb",
"running": false
}
],
"_test": {}
}