-
Notifications
You must be signed in to change notification settings - Fork 447
/
package.json
143 lines (143 loc) · 5.59 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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
{
"name": "MQTTX",
"version": "1.11.0",
"description": "MQTT desktop client",
"author": "EMQX Team <[email protected]>",
"scripts": {
"version": "yarn run gen:version && git add -A .",
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"gen:version": "node ./scripts/gen-version.js",
"electron:build": "yarn run gen:version && vue-cli-service electron:build --win --linux --mac",
"electron:build-win": "yarn run gen:version && vue-cli-service electron:build --win",
"electron:build-linux": "yarn run gen:version && vue-cli-service electron:build --linux",
"electron:build-mac": "yarn run gen:version && vue-cli-service electron:build --mac",
"electron:serve": "yarn run gen:version && vue-cli-service electron:serve",
"electron:serve:sql_debug": "export VUE_APP_SQL_DEBUG=true && yarn electron:serve",
"postinstall": "electron-builder install-app-deps",
"postuninstall": "electron-builder install-app-deps",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.vue\" \"src/**/*.scss\" \"web/**/*.ts\" \"web/**/*.vue\" \"web/**/*.scss\" \"cli/**/*.ts\" \"cli/**/*.js\"",
"lint": "eslint --fix --ext .ts,.vue src",
"test:e2e": "vue-cli-service test:e2e",
"test:unit": "vue-cli-service test:unit",
"db:log": "TS_NODE_PROJECT=tsconfig.commonjs.json ts-node ./node_modules/.bin/typeorm schema:log -f ormconfig.ts",
"db:migration:show": "TS_NODE_PROJECT=tsconfig.commonjs.json ts-node ./node_modules/.bin/typeorm migration:show -f ormconfig.ts",
"db:migration:generate": "TS_NODE_PROJECT=tsconfig.commonjs.json ts-node ./node_modules/.bin/typeorm migration:generate -f ormconfig.ts --pretty",
"db:migration:create": "TS_NODE_PROJECT=tsconfig.commonjs.json ts-node ./node_modules/.bin/typeorm migration:create -f ormconfig.ts",
"db:migration:run": "TS_NODE_PROJECT=tsconfig.commonjs.json ts-node ./node_modules/.bin/typeorm migration:run -f ormconfig.ts",
"db:migration:revert": "TS_NODE_PROJECT=tsconfig.commonjs.json ts-node ./node_modules/.bin/typeorm migration:revert -f ormconfig.ts",
"db:migration:sync": "TS_NODE_PROJECT=tsconfig.commonjs.json ts-node ./node_modules/.bin/typeorm schema:sync -f ormconfig.ts",
"db:migration:clean": "TS_NODE_PROJECT=tsconfig.commonjs.json ts-node ./node_modules/.bin/typeorm schema:drop -f ormconfig.ts",
"db:diagram": "TS_NODE_PROJECT=tsconfig.commonjs.json ts-node ./node_modules/.bin/typeorm-uml ormconfig.ts -d ./src/database/database.png"
},
"main": "background.js",
"engines": {
"node": ">=16"
},
"dependencies": {
"appdata-path": "^1.0.0",
"avsc": "^5.7.7",
"axios": "^0.21.2",
"cbor": "^9.0.1",
"compare-versions": "^6.0.0-rc.2",
"core-js": "^2.6.11",
"crypto-js": "^4.2.0",
"csvtojson": "^2.0.10",
"echarts": "^5.4.3",
"electron-store": "^8.0.2",
"electron-updater": "^5.0.5",
"element-ui": "^2.15.5",
"fs-extra": "^8.1.0",
"js-yaml": "^4.1.0",
"json-bigint": "^1.0.0",
"json2csv": "^5.0.3",
"log4js": "^6.4.0",
"moment": "^2.29.4",
"monaco-editor": "^0.25.2",
"mqtt": "4.3.7",
"msgpackr": "^1.11.0",
"prismjs": "^1.29.0",
"protobufjs": "^7.2.5",
"reflect-metadata": "^0.1.13",
"rxjs": "6.2.0",
"sqlite3": "^5.0.4",
"sudo-prompt": "^9.2.1",
"typedi": "^0.8.0",
"typeorm": "^0.2.34",
"typeorm-typedi-extensions": "^0.2.3",
"vm2": "^3.9.18",
"vue": "^2.6.12",
"vue-class-component": "^7.0.2",
"vue-click-outside": "^1.1.0",
"vue-clipboard2": "^0.3.1",
"vue-i18n": "^8.11.2",
"vue-markdown": "^2.2.4",
"vue-property-decorator": "^8.5.1",
"vue-router": "^3.4.9",
"vue-rx": "6.2.0",
"vuex": "^3.0.1",
"vuex-class": "^0.3.2",
"xlsx": "^0.17.0",
"xml-js": "^1.6.11"
},
"devDependencies": {
"@types/chai": "^4.1.0",
"@types/electron-devtools-installer": "^2.2.0",
"@types/fs-extra": "^8.0.0",
"@types/js-yaml": "^4.0.5",
"@types/json-bigint": "^1.0.4",
"@types/json2csv": "^5.0.3",
"@types/lodash": "^4.14.142",
"@types/mocha": "^5.2.7",
"@types/node": "^14.16.0",
"@types/prismjs": "^1.26.0",
"@types/sqlite3": "^3.1.8",
"@types/ws": "^8.2.1",
"@typescript-eslint/eslint-plugin": "^3.8.0",
"@typescript-eslint/parser": "^3.8.0",
"@vue/cli-plugin-babel": "^3.12.1",
"@vue/cli-plugin-e2e-cypress": "^3.12.1",
"@vue/cli-plugin-typescript": "^3.12.1",
"@vue/cli-plugin-unit-mocha": "^3.12.1",
"@vue/cli-service": "^4.5.13",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/test-utils": "1.0.0-beta.29",
"babel-plugin-component": "^1.1.1",
"babel-plugin-prismjs": "^2.1.0",
"chai": "^4.1.2",
"electron": "^13.6.6",
"electron-devtools-installer": "^3.2.0",
"eslint": "6.5.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.3.0",
"lint-staged": "^10.4.2",
"monaco-editor-webpack-plugin": "^4.0.0",
"prettier": "^2.0.5",
"sass": "~1.32.13",
"sass-loader": "^8.0.2",
"typeorm-uml": "^1.6.4",
"typescript": "^3.7.4",
"vue-cli-plugin-electron-builder": "^2.1.1",
"vue-template-compiler": "^2.6.12"
},
"browserslist": [
"> 1%",
"last 2 versions"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{vue,ts,js,scss}": [
"prettier --write \"src/**/*.ts\" \"src/**/*.vue\" \"src/**/*.scss\" \"web/**/*.ts\" \"web/**/*.vue\" \"web/**/*.scss\" \"cli/**/*.ts\" \"cli/**/*.js\""
]
},
"license": "Apache-2.0",
"repository": "https://github.com/emqx/MQTTX",
"resolutions": {
"electron-builder": "23.0.2"
}
}