-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
88 lines (88 loc) · 2.33 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
{
"name": "ts-iview-admin",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"test:e2e": "vue-cli-service test:e2e",
"test:unit": "vue-cli-service test:unit"
},
"dependencies": {
"axios": "^0.18.0",
"clipboard": "^2.0.4",
"codemirror": "^5.47.0",
"core-js": "^2.6.5",
"countup": "^1.8.2",
"cropperjs": "^1.5.1",
"dayjs": "^1.8.14",
"echarts": "^4.2.1",
"iview": "^3.4.2",
"js-cookie": "^2.2.0",
"register-service-worker": "^1.6.2",
"simplemde": "^1.11.2",
"tree-table-vue": "^1.1.0",
"v-click-outside-x": "^4.0.3",
"v-org-tree": "^1.0.12",
"vue": "^2.6.10",
"vue-class-component": "^7.0.2",
"vue-i18n": "^8.11.2",
"vue-property-decorator": "^8.1.0",
"vue-router": "^3.0.3",
"vuedraggable": "^2.21.0",
"vuex": "^3.0.1",
"vuex-class": "^0.3.2",
"wangeditor": "^3.1.1",
"xlsx": "^0.14.3"
},
"devDependencies": {
"@types/clipboard": "^2.0.1",
"@types/codemirror": "0.0.74",
"@types/echarts": "^4.1.9",
"@types/jest": "^23.1.4",
"@types/js-cookie": "^2.2.2",
"@types/simplemde": "^1.11.7",
"@types/xlsx": "0.0.36",
"@vue/cli-plugin-babel": "^3.8.0",
"@vue/cli-plugin-e2e-cypress": "^3.8.0",
"@vue/cli-plugin-eslint": "^3.8.0",
"@vue/cli-plugin-pwa": "^3.8.0",
"@vue/cli-plugin-typescript": "^3.8.0",
"@vue/cli-plugin-unit-jest": "^3.8.0",
"@vue/cli-service": "^3.8.0",
"@vue/eslint-config-prettier": "^4.0.1",
"@vue/eslint-config-typescript": "^4.0.0",
"@vue/test-utils": "1.0.0-beta.29",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^5.16.0",
"eslint-plugin-vue": "^5.0.0",
"less": "^3.0.4",
"less-loader": "^4.1.0",
"lint-staged": "^8.1.7",
"mockjs": "^1.0.1-beta3",
"ts-jest": "^23.0.0",
"typescript": "^3.4.3",
"vue-template-compiler": "^2.6.10"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.js": [
"vue-cli-service lint",
"git add"
],
"*.vue": [
"vue-cli-service lint",
"git add"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}