-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 985 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 985 Bytes
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
{
"name": "camunda",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"start": "tsc && node dist/index.js",
"start:worker:setup": "tsc && node dist/workers/setup-worker.js",
"start:worker:checkVariables": "tsc && node dist/workers/check-variables-worker.js",
"start:worker:wrapup": "tsc && node dist/workers/wrap-up-worker.js",
"deploy:process": "tsc && node dist/deployProcess.js",
"start:process": "tsc && node dist/startProcess.js",
"manage:task:action_1": "tsc && node dist/task/action_1.js",
"manage:task:action_2": "tsc && node dist/task/action_2.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^1.6.7",
"camunda-external-task-client-js": "^2.1.0"
},
"devDependencies": {
"@types/camunda-external-task-client-js": "^1.3.6",
"@types/node": "^16.11.16",
"typescript": "^4.5.5"
}
}