forked from zoton2/nodecg-vue-ts-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.79 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
{
"name": "nodecg-vue-ts-template",
"version": "1.0.0",
"description": "Template for NodeCG bundles that use Vue.js and TypeScript.",
"homepage": "https://github.com/zoton2/nodecg-vue-ts-template#readme",
"bugs": {
"url": "https://github.com/zoton2/nodecg-vue-ts-template/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zoton2/nodecg-vue-ts-template.git"
},
"license": "MIT",
"author": "zoton2",
"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",
"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",
"start": "node ../..",
"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.1.45",
"@types/clone": "^0.1.30",
"@typescript-eslint/eslint-plugin": "^2.29.0",
"@typescript-eslint/parser": "^2.29.0",
"@vue/component-compiler-utils": "^3.1.2",
"clone": "^2.1.2",
"cross-env": "^7.0.2",
"css-loader": "^3.5.2",
"deepmerge": "^4.2.2",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-vue": "^6.2.2",
"fibers": "^5.0.0",
"file-loader": "^6.0.0",
"fork-ts-checker-webpack-plugin": "^4.1.3",
"globby": "^11.0.0",
"hard-source-webpack-plugin": "^0.13.1",
"html-webpack-plugin": "^4.2.0",
"json-schema-to-typescript": "^8.2.0",
"mini-css-extract-plugin": "^0.9.0",
"npm-run-all": "^4.1.5",
"sass": "^1.26.3",
"sass-loader": "^8.0.2",
"trash-cli": "^3.0.0",
"ts-loader": "^7.0.1",
"typescript": "^3.8.3",
"vue": "^2.6.11",
"vue-class-component": "^7.2.3",
"vue-hot-reload-api": "^2.3.4",
"vue-loader": "^15.9.1",
"vue-property-decorator": "^8.4.1",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.6.11",
"vuetify": "^2.2.23",
"vuetify-loader": "^1.4.3",
"vuex": "^3.2.0",
"vuex-class": "^0.3.2",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-livereload-plugin": "^2.3.0"
},
"nodecg": {
"compatibleRange": "^1.6.0",
"dashboardPanels": [
{
"name": "example",
"title": "Example",
"file": "example.html"
}
],
"graphics": [
{
"file": "example.html",
"width": 1920,
"height": 1080
}
]
}
}