-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
Copy pathpackage.json
37 lines (37 loc) · 882 Bytes
/
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
{
"name": "bpmn-js-example-deep-linking",
"version": "0.0.0",
"description": "An example how to bundle an app using bpmn-js for the browser",
"scripts": {
"all": "run-s build",
"build": "webpack --mode=production",
"dev": "webpack-dev-server --static=public --open",
"start": "npm run dev"
},
"repository": {
"type": "git",
"url": "https://github.com/bpmn-io/bpmn-js-examples"
},
"keywords": [
"bpmnjs-example"
],
"contributors": [
{
"name": "bpmn.io contributors",
"url": "https://github.com/bpmn-io"
}
],
"license": "MIT",
"devDependencies": {
"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"
},
"dependencies": {
"bpmn-js": "^18.2.0",
"webpack-dev-server": "^5.2.0"
}
}