-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
package.json
55 lines (55 loc) · 1.4 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-async-extension",
"version": "0.0.0",
"description": "A properties panel async extension example",
"scripts": {
"all": "run-s build",
"build": "webpack --mode production",
"build:watch": "webpack-dev-server --static=public --open",
"dev": "run-p build:watch serve",
"start": "npm run dev",
"serve": "node server.js"
},
"repository": {
"type": "git",
"url": "https://github.com/bpmn-io/bpmn-js-examples",
"directory": "properties-panel-async-extension"
},
"keywords": [
"bpmnjs-example",
"bpmn-js-properties-panel"
],
"author": {
"name": "Maciej Barelkowski",
"url": "https://github.com/barmac"
},
"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",
"less": "^4.1.2",
"less-loader": "^12.0.0",
"npm-run-all2": "^7.0.0",
"raw-loader": "^4.0.2",
"style-loader": "^4.0.0",
"webpack": "^5.94.0",
"webpack-cli": "^5.0.0",
"webpack-dev-server": "^5.0.4"
},
"dependencies": {
"@bpmn-io/properties-panel": "^3.23.0",
"bpmn-js": "^18.1.1",
"bpmn-js-properties-panel": "^5.23.0",
"cors": "^2.8.5",
"express": "^4.19.2",
"htm": "^3.1.1",
"jquery": "^3.5.1",
"min-dash": "^4.1.1"
}
}