-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
117 lines (117 loc) · 3.47 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
{
"name": "infinityone",
"productName": "InfinityOne",
"version": "2.0.0-rc5",
"private": true,
"license": "MIT",
"copyright": "E-MetroTel Global Inc.",
"description": "InfinityOne Desktop Application",
"author": {
"name": "E-MetroTel Global Inc.",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/infinityoneframework/infinityone-electron.git"
},
"bugs": {
"url": "https://github.com/infinityoneframework/infinityone-electron/issues"
},
"engins": {
"node": ">=10.0.0"
},
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"test:unit": "vue-cli-service test:unit",
"lint": "vue-cli-service lint",
"electron:build": "vue-cli-service electron:build",
"electron:serve": "vue-cli-service electron:serve",
"electron:publish": "vue-cli-service electron:build -p always",
"i18n:report": "vue-cli-service i18n:report --src './src/**/*.?(js|vue)' --locales './src/locales/**/*.json'",
"i18n:help": "vue-cli-service i18n:report --help",
"postinstall": "electron-builder install-app-deps",
"postuninstall": "electron-builder install-app-deps",
"electron:generate-icons": "electron-icon-builder --input=./public/icon.png --output=build --flatten"
},
"main": "background.js",
"keywords": [
"Infinity One",
"Group Chat app",
"electron-app",
"electron",
"Desktop app",
"InstantMessaging",
"WebRTC",
"E-MetroTel",
"Unified Communications",
"Collaboration",
"Telecommunications"
],
"dependencies": {
"@mdi/font": "^3.6.95",
"auto-launch": "^5.0.5",
"console": "^0.7.2",
"core-js": "^3.6.5",
"electron-is-dev": "^1.2.0",
"electron-log": "^4.2.2",
"electron-updater": "^4.3.4",
"electron-window-state": "^5.0.3",
"gsap": "^3.6.1",
"jitsi-meet-electron-utils": "github:jitsi/jitsi-meet-electron-utils#v2.0.16",
"node-json-db": "^1.1.0",
"request": "^2.88.2",
"roboto-fontface": "*",
"semver": "^7.3.2",
"vue": "^2.6.11",
"vue-i18n": "^8.17.3",
"vue-router": "^3.2.0",
"vuetify": "^2.2.11",
"vuetify-confirm": "^2.0.5",
"vuex": "^3.4.0",
"vuex-pathify": "^1.4.1"
},
"devDependencies": {
"@intlify/vue-i18n-loader": "^1.0.0",
"@vue/cli-plugin-babel": "~4.4.0",
"@vue/cli-plugin-eslint": "~4.4.0",
"@vue/cli-plugin-router": "~4.4.0",
"@vue/cli-plugin-unit-mocha": "~4.4.0",
"@vue/cli-plugin-vuex": "~4.4.0",
"@vue/cli-service": "~4.4.0",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/test-utils": "^1.0.3",
"axios": "^0.21.1",
"babel-eslint": "^10.1.0",
"chai": "^4.1.2",
"electron": "^9.4.4",
"electron-devtools-installer": "^3.1.0",
"electron-icon-builder": "^1.0.2",
"electron-notarize": "^1.0.0",
"eslint": "^6.7.2",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-vue": "^6.2.2",
"lint-staged": "^9.5.0",
"node-sass": "^4.12.0",
"null-loader": "^4.0.0",
"prettier": "^1.19.1",
"sass": "^1.19.0",
"sass-loader": "^8.0.2",
"vue-cli-plugin-axios": "^0.0.4",
"vue-cli-plugin-electron-builder": "^2.0.0-rc.4",
"vue-cli-plugin-i18n": "^1.0.1",
"vue-cli-plugin-vuetify": "^2.0.6",
"vue-devtools": "^5.1.4",
"vue-template-compiler": "^2.6.11",
"vuetify-loader": "^1.3.0"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,vue}": [
"vue-cli-service lint",
"git add"
]
}
}