-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
73 lines (73 loc) · 2.2 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
{
"name": "neuron-dashboard-src",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"dev:pc": "export VUE_APP_HOST=http://localhost:7003 && yarn serve",
"dev:server": "export VUE_APP_HOST=ws://iot-platform.cloud:6170 && yarn serve",
"dev:test": "export VUE_APP_HOST=http://124.70.166.104:7000 && yarn serve",
"dev:en": "export VUE_APP_HOST=http://124.70.166.104:7000 && export VUE_APP_LANG_EN=true && yarn serve",
"build": "vue-cli-service build",
"build:en": "VUE_APP_LANG_EN=true vue-cli-service build",
"lint": "vue-cli-service lint"
},
"dependencies": {
"@emqx/emqx-ui": "^1.1.4",
"@types/js-cookie": "^3.0.3",
"@vueuse/core": "^4.8.1",
"axios": "^0.21.4",
"base64-js": "^1.5.1",
"blueimp-md5": "^2.19.0",
"core-js": "^3.6.5",
"dateformat": "^5.0.2",
"dayjs": "^1.10.4",
"echarts": "^5.2.2",
"element-plus": "1.0.2-beta.48",
"js-cookie": "^3.0.5",
"lodash": "^4.17.21",
"qiankun": "^2.7.0",
"vue": "3.2.19",
"vue-i18n": "9.1.4",
"vue-router": "^4.0.0-0",
"vuex": "^4.0.0-0",
"xe-utils": "^3.2.1",
"xlsx": "^0.17.5"
},
"devDependencies": {
"@types/blueimp-md5": "^2.18.0",
"@types/lodash": "^4.14.168",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"@vue/cli-plugin-babel": "~4.5.0",
"@vue/cli-plugin-eslint": "~4.5.0",
"@vue/cli-plugin-router": "~4.5.0",
"@vue/cli-plugin-typescript": "~4.5.0",
"@vue/cli-plugin-vuex": "~4.5.0",
"@vue/cli-service": "~4.5.0",
"@vue/compiler-sfc": "^3.2.0",
"@vue/eslint-config-airbnb": "^5.3.0",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/eslint-config-typescript": "^7.0.0",
"eslint": "^6.7.2",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-vue": "^7.0.0",
"husky": "^6.0.0",
"lint-staged": "^9.5.0",
"prettier": "^2.2.1",
"sass": "^1.42.1",
"sass-loader": "^8.0.2",
"type-fest": "1.1.0",
"typescript": "~4.1.5",
"vue-loader": "16.8.1"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,vue,ts,tsx}": [
"vue-cli-service lint",
"git add"
]
}
}