-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.16 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.16 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
{
"name": "formula1",
"version": "0.0.1",
"keywords": [
"nodecg-bundle"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint './src/**/*.{js,jsx}' webpack.config.js",
"lint:fix": "eslint --fix './src/**/*.{js,jsx}' webpack.config.js",
"build": "cross-env NODE_ENV='production' NODE_PROJECT='config.webpack.json' webpack",
"watch": "cross-env NODE_ENV='production' NODE_PROJECT='config.webpack.json' webpack --watch"
},
"nodecg": {
"compatibleRange": "2",
"dashboardPanels": [
{
"name": "tower",
"title": "Tower",
"width": 3,
"file": "tower.html",
"headerColor": "#525F78"
},
{
"name": "teams",
"title": "Teams",
"width": 3,
"file": "teams.html",
"headerColor": "#525F78"
}
],
"graphics": [
{
"file": "tower.html",
"width": 1920,
"height": 1080
}
]
},
"dependencies": {
"nodecg": "",
"react": "",
"react-dom": "",
"react-flip-toolkit": "^7.1.0",
"underscore": "",
"@nodecg/react-hooks": ""
},
"devDependencies": {
}
}