forked from miyuesc/bpmn-process-designer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 2.39 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": "bpmn-process-designer",
"version": "0.0.1",
"description": "A process designer base on Vue 2.x and ElementUI",
"keywords": [
"bpmn",
"bpmn.js",
"vue"
],
"author": {
"name": "MiyueFE",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "[email protected]:miyuesc/bpmn-process-designer.git"
},
"scripts": {
"demo": "vue-cli-service serve",
"build": "vue-cli-service build --report"
},
"dependencies": {
"bpmn-js-sketchy": "^0.5.3",
"bpmn-js-task-resize": "^1.2.0",
"bpmn-js-token-simulation": "^0.10.0",
"core-js": "^3.8.1",
"diagram-js-minimap": "^2.0.4",
"highlight.js": "^10.5.0",
"min-dash": "^3.5.2",
"vue": "^2.6.11",
"vue-router": "^3.4.9",
"x2js": "^3.4.2",
"xml-js": "^1.6.11"
},
"devDependencies": {
"@vue/cli-plugin-babel": "~4.5.0",
"@vue/cli-plugin-eslint": "~4.5.0",
"@vue/cli-service": "~4.5.0",
"@vue/compiler-sfc": "^3.0.1",
"@vue/eslint-config-prettier": "^5.0.0",
"axios": "^0.21.1",
"babel-eslint": "^10.1.0",
"bpmn-js": "^8.8.3",
"bpmn-js-properties-panel": "^0.37.2",
"camunda-bpmn-moddle": "^4.4.1",
"compression-webpack-plugin": "^6.1.1",
"element-ui": "^2.13.2",
"eslint": "^6.7.2",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-vue": "^6.2.2",
"fs-extra": "^8.1.0",
"sass": "^1.30.0",
"sass-loader": "^8.0.2",
"script-ext-html-webpack-plugin": "^2.1.5",
"terser-webpack-plugin": "^4.2.3",
"vue-template-compiler": "^2.6.11",
"webpack-bundle-analyzer": "^3.9.0"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended",
"@vue/prettier"
],
"parserOptions": {
"parser": "babel-eslint"
},
"rules": {
"no-use-before-define": "off",
"no-unused-vars": "off",
"prettier/prettier": [
"warn",
{
"useTabs": false,
"singleQuote": false,
"printWidth": 160,
"semi": true,
"trailingComma": "none",
"bracketSpacing": true,
"jsxBracketSameLine": true,
"arrowParens": "avoid",
"requirePragma": false,
"proseWrap": "preserve"
}
]
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
],
"license": "Apache"
}