forked from Miragon/camunda-web-modeler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 3.13 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
{
"name": "@wkspower/camunda-web-modeler",
"version": "0.0.5",
"description": "A browser-native BPMN and DMN modeler based on bpmn.io.",
"author": "Miragon GmbH <[email protected]>",
"homepage": "https://github.com/FlowSquad/camunda-web-modeler",
"repository": {
"type": "git",
"url": "git+https://github.com/FlowSquad/camunda-web-modeler.git"
},
"scripts": {
"clean": "rimraf dist index.js index.d.ts",
"docs": "npx typedoc src --exclude src/index.ts --exclude src/types --exclude src/components --exclude src/bpmnio --disableSources --out dist/docs",
"build": "npx tsc && npx tsc -p tsconfig.index.json && yarn docs && yarn bundle && copyfiles -u 1 \"src/types/*.d.ts\" dist",
"bundle": "npx rollup -c",
"lint": "npx eslint src --ext .js,.jsx,.ts,.tsx"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"keywords": [
"miragon",
"modeler",
"camunda",
"bpmnio",
"bpmn",
"dmn"
],
"license": "Apache-2.0",
"files": [
"dist/",
"index.d.ts",
"index.js"
],
"main": "index.js",
"directories": {
"lib": "dist/"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@material-ui/styles": "^4.11.4",
"@seznam/compose-react-refs": "^1.0.6",
"@uiw/react-monacoeditor": "^3.2.2",
"bpmn-js": "^8.7.0",
"bpmn-js-properties-panel": "^0.46.0",
"camunda-bpmn-moddle": "^5.1.2",
"camunda-dmn-moddle": "^1.1.0",
"clsx": "^2.0.0",
"deepmerge": "^4.2.2",
"diagram-js-origin": "^1.3.2",
"dmn-js": "^10.3.0",
"dmn-js-properties-panel": "^0.7.0",
"react-split-pane": "^0.1.92"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-replace": "^5.0.2",
"@types/react": "^17.0.11",
"@typescript-eslint/eslint-plugin": "^4.27.0",
"@typescript-eslint/parser": "^4.27.0",
"babel-eslint": "^10.1.0",
"copyfiles": "^2.4.1",
"eslint": "^7.28.0",
"eslint-config-airbnb-typescript": "^14.0.2",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-app": "^6.2.2",
"eslint-plugin-react-hooks": "^4.2.0",
"react": "^17.0.0",
"rollup": "^2.78.0",
"rollup-plugin-css-only": "^4.3.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.36.0",
"tslib": "^2.3.0",
"typedoc": "^0.25.1",
"typescript": "^5.2.2"
},
"peerDependencies": {
"react": "^17.0.0"
}
}