-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
55 lines (55 loc) · 1.37 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
{
"name": "bpmn-js-example-properties-panel-extension",
"version": "0.0.0",
"description": "A properties panel extension example",
"main": "app/index.js",
"scripts": {
"all": "run-s build",
"build": "webpack",
"start": "run-s build serve",
"dev": "run-p \"build -- --watch\" serve",
"serve": "sirv public --dev"
},
"repository": {
"type": "git",
"url": "https://github.com/bpmn-io/bpmn-js-examples",
"directory": "properties-panel-extension"
},
"keywords": [
"bpmnjs-example",
"bpmn-js-properties-panel"
],
"author": {
"name": "Patrick Dehn",
"url": "https://github.com/pedesen"
},
"contributors": [
{
"name": "bpmn.io contributors",
"url": "https://github.com/bpmn-io"
}
],
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.16.5",
"@babel/plugin-transform-react-jsx": "^7.16.5",
"babel-loader": "^8.2.3",
"copy-webpack-plugin": "^10.1.0",
"css-loader": "^6.5.1",
"less": "^4.1.2",
"less-loader": "^10.2.0",
"npm-run-all": "^4.1.5",
"raw-loader": "^4.0.2",
"sirv-cli": "^1.0.14",
"style-loader": "^3.3.1",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1"
},
"dependencies": {
"@bpmn-io/properties-panel": "0.17.0",
"bpmn-js": "9.3.1",
"bpmn-js-properties-panel": "1.3.0",
"jquery": "^3.5.1",
"min-dash": "^3.7.0"
}
}