-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
43 lines (43 loc) · 1.04 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
{
"name": "postit-js-example-modeler",
"version": "0.0.0",
"description": "A simple modeler built with postit-js",
"scripts": {
"all": "run-s lint build",
"build": "webpack",
"dev": "run-p build:watch serve",
"build:watch": "webpack -w",
"serve": "serve public",
"lint": "eslint .",
"start": "run-p build:watch serve"
},
"private": "true",
"keywords": [
"postit-js-example"
],
"author": {
"name": "Niklas Kiefer",
"url": "https://github.com/pinussilvestrus"
},
"license": "MIT",
"devDependencies": {
"@sentry/webpack-plugin": "^2.0.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.8.1",
"eslint": "^8.42.0",
"eslint-plugin-bpmn-io": "^1.0.0",
"file-loader": "^6.2.0",
"npm-run-all": "^4.1.5",
"raw-loader": "^4.0.2",
"serve": "^14.2.0",
"style-loader": "^3.3.3",
"webpack": "^5.87.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"jquery": "^3.7.0",
"less": "^4.1.3",
"less-loader": "^11.1.3",
"postit-js-core": "file:../"
}
}