-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.52 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
67
{
"name": "bpmn-server-mongo",
"version": "1.0.1",
"description": "BPMN 2.0 Server including Modeling, Execution and Presistence, an open source for Node.js",
"license": "MIT",
"scripts": {
"build": "tsc --build",
"clean": "rimraf dist"
},
"repository": {
"type": "git",
"url": "git+https:github.com/bpmnServer/bpmn-server-mongo.git"
},
"keywords": [
"BPMN",
"BPMN 2.0",
"Workflow",
"Node.js",
"TypeScript"
],
"author": {
"name": "ralphhanna"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"src/**/*.ts",
"dist/**/*.js",
"dist/**/*.js.map",
"dist/**/*.d.ts",
"README.md"
],
"dependencies": {
"bcrypt": "^5.0.1",
"body-parser": "^1.19.0",
"bpmn-server": "file:../bpmn-server",
"bpmn-moddle": "^8.1.0",
"camunda-bpmn-moddle": "^4.4.0",
"chai": "^4.2.0",
"chalk": "^2.4.2",
"compression": "^1.7.4",
"core-js": "^3.6.5",
"debug": "^4.3.1",
"dotenv": "^8.2.0",
"errorhandler": "^1.5.1",
"fs-extra": "^9.1.0",
"mongodb": "^3.6.0",
"nodemon": "^3.0.1",
"typedoc-plugin-markdown": "^3.17.1",
"uuid": "^8.3.0"
},
"devDependencies": {
"@types/mime": "^1.3.1",
"@types/node": "^12.12.7",
"@types/serve-static": "^1.13.5",
"prettier": "^2.0.5",
"react-dom": "^18.2.0",
"rimraf": "^5.0.5",
"ts-node": "^10.9.2",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=12.0.0"
}
}