-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
Copy pathpackage.json
50 lines (50 loc) · 1.23 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-transaction-boundaries",
"version": "0.0.0",
"description": "Integrate the transaction boundaries extension in bpmn-js modeler",
"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": "transaction-boundaries"
},
"keywords": [
"bpmnjs-example"
],
"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.26.0",
"@babel/preset-env": "^7.26.0",
"babel-loader": "^9.2.1",
"copy-webpack-plugin": "^12.0.0",
"css-loader": "^7.1.2",
"npm-run-all2": "^7.0.2",
"sirv-cli": "^3.0.0",
"style-loader": "^4.0.0",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1"
},
"dependencies": {
"bpmn-js": "^18.2.0",
"camunda-transaction-boundaries": "^1.1.2",
"diagram-js": "^15.1.0",
"jquery": "^3.6.1",
"min-dash": "^4.0.0"
}
}