-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
78 lines (78 loc) · 2.18 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
{
"name": "mofang",
"version": "0.3.0",
"private": true,
"description": "H5可视化构建工具",
"author": "wenxi",
"scripts": {
"lint": "vue-cli-service lint",
"electron:build": "vue-cli-service electron:build --win --mac",
"electron:build:mac": "vue-cli-service electron:build --mac",
"electron:build:win": "vue-cli-service electron:build --win",
"electron:serve": "vue-cli-service electron:serve",
"postinstall": "electron-builder install-app-deps"
},
"dependencies": {
"camelcase": "^5.3.1",
"codemirror": "5.42.0",
"lodash": "^4.17.11",
"magic-ui": "../magic-ui",
"material-design-icons-iconfont": "^4.0.5",
"pretty": "^2.0.0",
"qiniu": "^7.2.1",
"roboto-fontface": "*",
"shortid": "^2.2.14",
"uppercamelcase": "^3.0.0",
"vant": "^1.6.17",
"vue": "^2.6.10",
"vue-apollo": "^3.0.0-beta.29",
"vue-class-component": "^7.0.2",
"vue-codemirror": "^4.0.6",
"vue-color": "^2.7.0",
"vue-property-decorator": "^8.1.0",
"vue-router": "^3.0.6",
"vuetify": "^1.5.14",
"vuex": "^3.1.0"
},
"devDependencies": {
"@types/lodash": "^4.14.123",
"@vue/cli-plugin-babel": "^3.7.0",
"@vue/cli-plugin-eslint": "^3.7.0",
"@vue/cli-plugin-typescript": "^3.7.0",
"@vue/cli-service": "3.7.0",
"@vue/eslint-config-airbnb": "^4.0.0",
"@vue/eslint-config-typescript": "^4.0.0",
"babel-eslint": "^10.0.1",
"electron": "^3.1.3",
"electron-updater": "3.2.3",
"eslint": "^5.16.0",
"eslint-plugin-graphql": "^3.0.3",
"eslint-plugin-vue": "^5.2.2",
"graphql-tag": "^2.10.1",
"less": "^3.9.0",
"less-loader": "^4.1.0",
"lint-staged": "^8.1.5",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2",
"typescript": "^3.4.4",
"vue-cli-plugin-apollo": "^0.20.0",
"vue-cli-plugin-electron-builder": "^1.3.1",
"vue-cli-plugin-vuetify": "^0.5.0",
"vue-template-compiler": "^2.6.10",
"vuetify-loader": "^1.2.2"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.js": [
"vue-cli-service lint",
"git add"
],
"*.vue": [
"vue-cli-service lint",
"git add"
]
},
"main": "background.js"
}