-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 2.98 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
99
{
"name": "clubwho-csgo-graphics",
"version": "1.0.0",
"description": "",
"homepage": "",
"author": {
"name": "Ewan Lyon",
"email": "[email protected]",
"url": "https://ewanlyon.com"
},
"files": [
"dashboard",
"graphics",
"extension.js",
"extension"
],
"keywords": [
"",
"nodecg-bundle"
],
"nodecg": {
"bundleDependencies": {
"nodecg-csgo-manager": "^0.3.0"
},
"compatibleRange": "^1.7.1",
"dashboardPanels": [
{
"name": "showhide",
"title": "Show/Hide",
"width": 3,
"file": "elements.html",
"workspace": "Clubwho Graphics"
}
],
"graphics": [
{
"file": "map.html",
"width": 1920,
"height": 1080
},
{
"file": "fui.html",
"width": 1920,
"height": 1080
}
]
},
"repository": "https://github.com/nodecg/nodecg.git",
"license": "MIT",
"dependencies": {
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.56",
"@types/clone": "^2.1.0",
"@types/react-redux": "^7.1.11",
"clone": "^2.1.2",
"gsap": "^3.5.1",
"parcel": "^1.12.4",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-is": "^16.13.1",
"react-redux": "^7.2.2",
"react-twemoji": "^0.3.0",
"redux": "^4.0.5",
"styled-components": "^5.2.0",
"trash-cli": "^3.1.0",
"typeface-roboto": "1.1.13",
"use-nodecg": "^0.4.1-1"
},
"devDependencies": {
"@gamesdonequick/prettier-config": "^2.2.0",
"@types/react-dom": "^16.9.8",
"@types/styled-components": "^5.1.3",
"@typescript-eslint/eslint-plugin": "^4.4.0",
"@typescript-eslint/parser": "^4.4.0",
"eslint": "^7.10.0",
"eslint-config-prettier": "^6.12.0",
"eslint-config-react": "^1.1.7",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.3",
"eslint-plugin-react-hooks": "^4.1.2",
"prettier": "^2.1.2",
"typescript": "^4.0.3"
},
"scripts": {
"build": "npm run build:extension && npm run build:dashboard && npm run build:graphics",
"build:extension": "trash extension && tsc -b ./src/extensions/tsconfig.json",
"build:dashboard": "trash dashboard && parcel build src/dashboard/*.html --out-dir dashboard --public-url ./ --no-content-hash",
"build:graphics": "trash graphics && parcel build src/graphics/*.html --out-dir graphics --public-url ./ --no-content-hash",
"watch:dashboard": "trash dashboard && parcel watch src/dashboard/*.html --out-dir dashboard --public-url ./",
"watch:graphics": "trash graphics && parcel watch src/graphics/*.html --out-dir graphics --public-url ./",
"watch:extension": "tsc -b ./src/extensions/tsconfig.json --watch",
"schema-types": "trash src/types/schemas && nodecg schema-types",
"start:solo": "node ../.. --bundlesEnabled=csgo-layouts",
"start": "node ../..",
"lint": "eslint ./src/**/*.{ts,tsx}",
"lint:fix": "eslint ./src/**/*.{ts,tsx} --fix"
}
}