-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
Copy pathpackage.json
50 lines (50 loc) · 1.22 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
{
"name": "bpmn-js-example-properties-panel",
"version": "0.0.0",
"description": "A bpmn-js modeler + properties panel example",
"scripts": {
"all": "run-s build",
"build": "webpack --mode production",
"dev": "webpack-dev-server --static=public --open",
"start": "run-s dev"
},
"repository": {
"type": "git",
"url": "https://github.com/bpmn-io/bpmn-js-examples",
"directory": "properties-panel"
},
"keywords": [
"bpmnjs-example",
"bpmn-js-properties-panel"
],
"author": {
"name": "Nico Rehwaldt",
"url": "https://github.com/nikku"
},
"contributors": [
{
"name": "bpmn.io contributors",
"url": "https://github.com/bpmn-io"
}
],
"license": "MIT",
"dependencies": {
"@bpmn-io/properties-panel": "^3.23.0",
"bpmn-js": "^18.2.0",
"bpmn-js-properties-panel": "^5.23.0",
"jquery": "^3.5.1",
"min-dash": "^4.1.1"
},
"devDependencies": {
"copy-webpack-plugin": "^12.0.0",
"css-loader": "^7.1.2",
"less-loader": "^12.2.0",
"npm-run-all2": "^7.0.2",
"raw-loader": "^4.0.2",
"sirv-cli": "^3.0.0",
"style-loader": "^4.0.0",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.0"
}
}