-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
127 lines (127 loc) · 3.76 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "runback",
"version": "0.4.2",
"description": "Broadcast graphics for fighting games",
"homepage": "https://github.com/opeik/runback",
"bugs": {
"url": "https://github.com/opeik/runback/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/opeik/runback.git"
},
"license": "GPL-3.0",
"author": "Sandro Stikić (opeik)",
"scripts": {
"autofix": "run-s autofix:*",
"autofix:browser": "eslint --fix --ext .ts,.vue src/dashboard && eslint --fix --ext .ts,.vue src/graphics && eslint --fix --ext .ts src/browser_shared",
"autofix:extension": "eslint --fix --ext .ts src/extension",
"autofix:types": "eslint --fix --ext .d.ts types",
"build": "run-s build:*",
"build:browser": "cross-env NODE_ENV=production webpack",
"build:extension": "tsc -b tsconfig.extension.json",
"clean": "trash node_modules/.cache && trash dashboard && trash graphics && trash extension",
"typeschemas": "node script/typeschemas.js",
"watch": "run-p watch:*",
"watch:browser": "webpack -w",
"watch:extension": "tsc -b tsconfig.extension.json -w"
},
"devDependencies": {
"@mdi/font": "^5.4.55",
"@types/clone": "^0.1.30",
"@types/node": "^14.0.27",
"@typescript-eslint/eslint-plugin": "^3.8.0",
"@typescript-eslint/parser": "^3.8.0",
"@vue/component-compiler-utils": "^3.2.0",
"clone": "^2.1.2",
"cross-env": "^7.0.2",
"css-loader": "^4.2.0",
"deepmerge": "^4.2.2",
"eslint": "^7.6.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-vue": "^6.2.2",
"fibers": "^5.0.0",
"file-loader": "^6.0.0",
"fork-ts-checker-webpack-plugin": "^5.0.14",
"globby": "^11.0.1",
"hard-source-webpack-plugin": "^0.13.1",
"html-webpack-plugin": "^4.3.0",
"json-schema-to-typescript": "^9.1.1",
"mini-css-extract-plugin": "^0.9.0",
"npm-run-all": "^4.1.5",
"prettier": "2.1.1",
"sass": "^1.26.10",
"sass-loader": "^9.0.2",
"trash-cli": "^3.1.0",
"ts-loader": "^8.0.2",
"tslib": "^2.0.0",
"typescript": "^3.9.7",
"vue": "^2.6.11",
"vue-class-component": "^7.2.5",
"vue-devtools": "^5.1.4",
"vue-hot-reload-api": "^2.3.4",
"vue-loader": "^15.9.3",
"vue-property-decorator": "^9.0.0",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.6.11",
"vuetify": "^2.3.7",
"vuetify-loader": "^1.6.0",
"vuex": "^3.5.1",
"vuex-class": "^0.3.2",
"vuex-class-state2way": "^1.0.1",
"vuex-module-decorators": "^1.0.1",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-livereload-plugin": "^2.3.0",
"@types/country-list": "^2.1.0",
"@types/file-saver": "^2.0.1",
"@types/got": "^9.6.11",
"@types/semver": "^7.3.4",
"@types/uuid": "^8.3.0",
"@types/vfile-message": "^2.0.0",
"@types/xregexp": "^4.3.0"
},
"nodecg": {
"compatibleRange": "^1.7.2",
"dashboardPanels": [
{
"name": "runback",
"title": "Runback",
"file": "runback.html",
"fullbleed": true
}
],
"graphics": [
{
"file": "scoreboard.html",
"width": 1920,
"height": 1080
},
{
"file": "commentary.html",
"width": 1920,
"height": 1080
}
]
},
"dependencies": {
"buffer": "^5.6.0",
"cjk-regex": "^2.0.0",
"country-list": "^2.2.0",
"events": "^3.2.0",
"file-saver": "^2.0.2",
"fitty": "^2.3.2",
"got": "^11.8.1",
"i18n-iso-countries": "^6.1.0",
"kuroshiro": "^1.1.2",
"kuroshiro-analyzer-kuromoji": "^1.1.0",
"pure-uuid": "^1.6.1",
"semver": "^7.3.2",
"stream": "0.0.2",
"timers": "^0.1.1",
"transliteration": "^2.2.0",
"vue-router": "^3.4.5",
"xregexp": "^4.4.1"
}
}