-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.26 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
56
57
58
59
60
61
62
63
64
65
66
{
"name": "bpmn-node",
"version": "1.0.1",
"homepage": "https://github.com/bpmnServer/bpmn-server/blob/rel2.0.0/docs/README.md",
"scripts": {
"setup": "ts-node src/scripts/setup.ts",
"cli": "ts-node src/scripts/cli.ts",
"build": "tsc --build && npx webpack",
"start": "ts-node src/app",
"clean": "tsc --build --clean",
"test": "ts-node src/test/setup.ts && ts-mocha -exit --config=src/test/.mocharc.json src/test/feature",
"----": "---------------------for Development Scripts Only -------------------------------------",
"dev:run": "nodemon -e ts --watch ./ --watch ../bpmn-server --exec \"tsc --build && tsc --build ../bpmn-server && node dist/app.js\"",
"dev:example": "nodemon -e ts --watch ./ --watch ../bpmn-server --exec \"tsc --build && tsc --build ../bpmn-server && node dist/scripts/buyCar.js\"",
"dev:test": "nodemon -e ts --watch ./ --watch ../bpmn-server/src --exec \"tsc --build && tsc --build ../bpmn-server && ts-mocha -exit --config=src/test/.mocharc.json src/test/feature/describe.js || exit 1\""
},
"description": "bpmn-web Demo App",
"author": {
"name": "bpmnServer RalphHanna"
},
"dependencies": {
"bpmn-server": "file:../bpmn-server",
"camunda-bpmn-moddle": "^4.4.0",
"chai": "^4.2.0",
"chalk": "^2.4.2",
"compression": "^1.7.4",
"cookie-parser": "^1.4.5",
"core-js": "^3.6.5",
"cron-parser": "^2.16.3",
"dayjs": "^1.11.10",
"debug": "^4.3.1",
"dotenv": "^8.6.0",
"errorhandler": "^1.5.1",
"moment": "^2.29.4",
"morgan": "^1.10.0",
"multer": "*",
"nock": "^12.0.3",
"nodemon": "^3.0.2",
"open": "^10.1.0",
"ts-loader": "^9.5.1",
"validator": "^13.11.0"
},
"devDependencies": {
"@types/debug": "4.1.7",
"@types/dotenv": "^8.2.0",
"@types/expect": "^24.3.0",
"@types/mime": "^3.0.1",
"@types/mocha": "^10.0.6",
"@types/node": "^20.1.3",
"@types/serve-static": "^1.15.1",
"allure-commandline": "^2.28.0",
"allure-mocha": "^2.15.1",
"fs-extra": "^11.2.0",
"glob": "^10.3.10",
"rimraf": "^5.0.5",
"ts-mocha": "^10.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.0.4",
"webpack": "^5.38.1",
"webpack-cli": "^4.7.2"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0"
}
}