-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
92 lines (92 loc) · 2.61 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
{
"name": "vinproma",
"productName": "vinproma",
"version": "0.4.1",
"private": true,
"author": {
"name": "Jens Grønhøj Stigaard",
"email": "[email protected]"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/jensstigaard/vinproma.git"
},
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"electron:build": "vue-cli-service electron:build",
"electron:serve": "vue-cli-service electron:serve",
"postinstall": "electron-builder install-app-deps",
"postuninstall": "electron-builder install-app-deps",
"web-assets-prod": "cd src/web-frontend && yarn prod",
"web-assets-watch": "cd src/web-frontend && yarn watch"
},
"main": "background.js",
"dependencies": {
"@fortawesome/fontawesome-free": "^5.15",
"electron": "^13.6.6",
"electron-window-state": "^5",
"express": "^4.17",
"ip": "^1.1",
"vmix-js-utils": "^3",
"vue": "^2.6",
"vue-class-component": "^7.2",
"vue-debounce-decorator": "^1",
"vue-directive-long-press": "^1",
"vue-vmix-conn-plugin": "^1",
"vuetify": "^2",
"vuex": "^3.6",
"vuex-electron": "^1",
"ws": "^7"
},
"devDependencies": {
"@types/cookie-parser": "^1.4",
"@types/electron-devtools-installer": "^2.2.0",
"@types/express": "^4.17",
"@types/ip": "^1.1.0",
"@types/node": "12",
"@types/ws": "^7.4.0",
"@typescript-eslint/eslint-plugin": "^4.11.1",
"@typescript-eslint/parser": "4.4.0",
"@vue/cli-plugin-eslint": "^4.5",
"@vue/cli-plugin-typescript": "^4.5",
"@vue/cli-plugin-vuex": "^4.5",
"@vue/cli-service": "^4.5",
"@vue/eslint-config-prettier": "^6.0",
"@vue/eslint-config-typescript": "^7.0",
"body-parser": "^1.19",
"bufferutil": "^4.0",
"cookie-parser": "^1.4",
"deepmerge": "^4.2",
"electron-devtools-installer": "^3.1.1",
"eslint": "^6",
"eslint-plugin-prettier": "^3.3.0",
"eslint-plugin-vue": "^7.4.0",
"fibers": "^5.0.0",
"lint-staged": "^10.5",
"prettier": "^2.2.1",
"pug": "^3.0.3",
"pug-plain-loader": "^1.1",
"sass": "^1",
"sass-loader": "^10",
"typescript": "~4.0.5",
"utf-8-validate": "^5",
"vue-cli-plugin-electron-builder": "^2.0",
"vue-cli-plugin-pug": "^2.0",
"vue-cli-plugin-vuetify": "^2.0",
"vue-property-decorator": "^9",
"vue-template-compiler": "^2.6",
"vuetify-loader": "^1.3.0"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,vue,ts}": [
"vue-cli-service lint",
"git add"
]
}
}