-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
98 lines (98 loc) · 2.73 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
{
"name": "vue-ts-demo",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"report": "vue-cli-service build --report",
"lint": "vue-cli-service lint",
"test:unit": "vue-cli-service test:unit --coverage=true",
"test": "npm run lint && npm run test:unit",
"predeploy": "vue-cli-service build --mode predeploy"
},
"prettier": {
"singleQuote": true,
"semi": true,
"proseWrap": "never",
"printWidth": 100
},
"dependencies": {
"@chenfengyuan/vue-qrcode": "1.0.2",
"@download/blockies": "1.0.3",
"@riophae/vue-treeselect": "0.0.38",
"@toast-ui/vue-editor": "1.1.1",
"@vue/composition-api": "0.5.0",
"ant-design-vue": "1.4.12",
"axios": "0.19.2",
"bpmn-js": "6.3.4",
"bpmn-js-properties-panel": "0.33.1",
"camunda-bpmn-moddle": "4.4.0",
"clipboard": "2.0.6",
"core-js": "2.6.11",
"dayjs": "1.8.24",
"driver.js": "0.9.8",
"echarts": "4.7.0",
"js-cookie": "2.2.1",
"quill": "1.3.7",
"sha256": "0.2.0",
"tailwindcss": "1.4.4",
"tree-table-vue": "1.1.0",
"v-charts": "1.19.0",
"view-design": "4.1.3",
"vue": "2.6.11",
"vue-class-component": "7.2.3",
"vue-count-to": "1.0.13",
"vue-i18n": "8.15.4",
"vue-json-viewer": "2.2.8",
"vue-property-decorator": "8.4.2",
"vue-quill-editor": "3.0.6",
"vue-router": "3.1.6",
"vuex": "3.1.3",
"vuex-class": "0.3.2"
},
"devDependencies": {
"@types/echarts": "4.4.3",
"@types/jest": "25.2.1",
"@types/mockjs": "1.0.2",
"@types/quill": "2.0.3",
"@types/sha256": "0.2.0",
"@typescript-eslint/eslint-plugin": "2.23.0",
"@typescript-eslint/parser": "2.23.0",
"@vue/cli-plugin-babel": "3.12.1",
"@vue/cli-plugin-eslint": "4.3.1",
"@vue/cli-plugin-typescript": "4.3.1",
"@vue/cli-plugin-unit-jest": "4.3.1",
"@vue/cli-service": "4.3.1",
"@vue/eslint-config-prettier": "4.0.1",
"@vue/eslint-config-typescript": "5.0.2",
"@vue/test-utils": "1.0.0-beta.32",
"babel-eslint": "10.1.0",
"babel-plugin-import": "1.13.0",
"eslint": "6.7.2",
"eslint-plugin-vue": "6.2.2",
"less": "2.7.3",
"less-loader": "4.1.0",
"lint-staged": "10.0.8",
"mockjs": "1.1.0",
"raw-loader": "4.0.0",
"stylus": "0.54.7",
"stylus-loader": "3.0.2",
"typescript": "3.8.3",
"vue-template-compiler": "2.6.11"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,ts,vue}": [
"vue-cli-service lint"
],
"**/tests/unit/**/*.spec.{j,t}s?(x)": [
"vue-cli-service test:unit --coverage=true"
]
},
"jest": {
"preset": "@vue/cli-plugin-unit-jest/presets/typescript-and-babel"
}
}