-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
76 lines (76 loc) · 2.15 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
{
"name": "camunda-modeler-wysiwyg-documentation-plugin",
"version": "1.0.1",
"description": "A Rich Text Editor for Documentation on Camunda Modeler",
"main": "index.js",
"scripts": {
"all": "run-s lint test build",
"build": "webpack",
"lint": "eslint . --fix",
"test": "karma start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sharedchains/camunda-wysiwyg-documentation.git"
},
"keywords": [
"camunda",
"modeler",
"plugin",
"wysiwyg",
"documentation"
],
"author": "Luca Bonora <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.17.7",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/preset-react": "^7.16.7",
"babel-loader": "^8.2.4",
"camunda-modeler-plugin-helpers": "^5.1.0",
"camunda-modeler-webpack-plugin": "^0.1.0",
"chai": "^4.3.6",
"copy-webpack-plugin": "^10.2.4",
"css-loader": "^6.7.1",
"eslint": "^7.32.0",
"eslint-plugin-bpmn-io": "^0.13.0",
"eslint-plugin-react": "^7.29.4",
"file-loader": "^6.2.0",
"karma": "^6.3.18",
"karma-chrome-launcher": "^3.1.1",
"karma-mocha": "^2.0.1",
"karma-sinon-chai": "^2.0.2",
"karma-webpack": "^5.0.0",
"less": "^4.1.2",
"less-loader": "^10.2.0",
"mocha": "^9.2.2",
"mocha-test-container-support": "^0.2.0",
"npm-run-all": "^4.1.5",
"puppeteer": "^13.5.2",
"raw-loader": "^4.0.2",
"react-svg-loader": "^3.0.3",
"sinon": "^9.2.4",
"sinon-chai": "^3.7.0",
"style-loader": "^3.3.1",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2",
"zip-webpack-plugin": "^4.0.1"
},
"dependencies": {
"@bpmn-io/properties-panel": "^0.19.0",
"@sh4red/bpmn-js-documentation-viewer": "1.0.0",
"bpmn-js": "^9.4.0",
"bpmn-js-properties-panel": "^1.5.0",
"camunda-bpmn-moddle": "^6.1.2",
"classnames": "^2.3.1",
"draft-js": "^0.11.7",
"draftjs-to-html": "^0.9.1",
"html-to-draftjs": "^1.5.0",
"jquery": "^3.6.0",
"lodash": "^4.17.21",
"min-dom": "^3.1.3",
"react-bpmn": "^0.2.0",
"react-dom": "^17.0.2",
"react-draft-wysiwyg": "^1.14.7"
}
}