forked from bpmnServer/bpmn-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json.bak
88 lines (88 loc) · 2.41 KB
/
package.json.bak
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "bpmn-server",
"version": "1.2.0",
"description": "BPMN 2.0 Server including Modeling, Execution and Presistence, an open source for Node.js",
"main": "dist/index.js",
"module": "index.js",
"license": "MIT",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc --build",
"clean": "tsc --build --clean",
"start:watch": "nodemon app",
"start": "tsc-watch --project . --outDir ./dist --onSuccess \"nodemon ./examples/acl.js\"",
"startx": "node app.ts",
"test": "mocha -R dot",
"posttest": "eslint . --cache && npm run toc",
"wintest": "node_modules/.bin/mocha",
"toc": "node scripts/generate-api-toc ./docs/API.md,./docs/Examples.md",
"test-md": "node scripts/test-markdown.js ./docs/API.md && node scripts/test-markdown.js ./docs/Examples.md"
},
"repository": {
"type": "git",
"url": "git+https:github.com/ralphhanna/bpmn-server.git"
},
"keywords": [
"BPMN",
"BPMN 2.0",
"Workflow",
"Node.js",
"TypeScript"
],
"author": {
"name": "ralphhanna"
},
"dependencies": {
"bpmn-moddle": "^7.0.2",
"camunda-bpmn-moddle": "^4.4.0",
"chai": "^4.2.0",
"core-js": "^3.6.5",
"cron-parser": "^2.16.3",
"express": "^4.14.0",
"iso8601-duration": "^1.2.0",
"mocha": "^7.1.2",
"mocha-cakes-2": "^3.3.0",
"moment": "^2.29.4",
"mongodb": "^3.6.0",
"mongoose": "^6.5.1",
"nodemon": "^2.0.4",
"pug": "^3.0.2",
"ts-node": "^8.10.1",
"uuid": "^8.3.0",
"@sendgrid/mail": "^7.4.2",
"bcrypt": "^5.0.1",
"body-parser": "^1.19.0",
"chalk": "^2.4.2",
"compression": "^1.7.4",
"connect-busboy": "^0.0.2",
"connect-flash": "^0.1.1",
"connect-mongo": "^3.2.0",
"cookie-parser": "^1.4.5",
"debug": "^4.3.1",
"dotenv": "^8.2.0",
"errorhandler": "^1.5.1",
"express-flash": "^0.0.2",
"express-session": "^1.17.1",
"fs-extra": "^9.1.0",
"lodash": "^4.17.20",
"lusca": "^1.7.0",
"morgan": "^1.10.0",
"multer": "*",
"nock": "^12.0.3"
},
"devDependencies": {
"@types/express": "^4.17.7",
"@types/express-serve-static-core": "^4.17.9",
"@types/mime": "^1.3.1",
"@types/node": "^12.12.7",
"@types/serve-static": "^1.13.5",
"prettier": "^2.0.5",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typedoc-plugin-markdown": "^3.6.0",
"typescript": ">=3.9.7"
},
"engines": {
"node": ">=12.0.0"
}
}