-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
Copy pathpackage.json
44 lines (44 loc) · 1.03 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
{
"name": "bpmn-js-example-minimap",
"version": "0.0.0",
"description": "Use the diagram-js minimap with the bpmn-js modeler",
"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"
},
"keywords": [
"bpmnjs-example"
],
"author": {
"name": "Philipp Fromme",
"url": "https://github.com/philippfromme"
},
"contributors": [
{
"name": "bpmn.io contributors",
"url": "https://github.com/bpmn-io"
}
],
"license": "MIT",
"devDependencies": {
"copy-webpack-plugin": "^12.0.0",
"css-loader": "^7.1.2",
"npm-run-all2": "^7.0.2",
"raw-loader": "^4.0.0",
"style-loader": "^4.0.0",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.0"
},
"dependencies": {
"bpmn-js": "^18.1.2",
"diagram-js-minimap": "^5.0.0",
"jquery": "^3.3.1"
}
}