-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
72 lines (72 loc) · 2.05 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
68
69
70
71
72
{
"name": "melonade-process-manager",
"version": "0.6.0",
"description": "workflow process manager",
"engines": {
"node": ">= 10.13 <11"
},
"author": "NV4RE",
"license": "Apache-2.0",
"scripts": {
"clean": "rimraf coverage build tmp",
"build": "npm run clean & tsc -p tsconfig.release.json",
"build:watch": "npm run clean & tsc -w -p tsconfig.release.json",
"lint": "tslint -t stylish --project \"tsconfig.json\"",
"test": "jest --coverage --forceExit",
"test:watch": "jest --watch",
"start:watch": "nodemon"
},
"dependencies": {
"@koa/cors": "^3.0.0",
"@melonade/melonade-declaration": "^0.23.0",
"cron-parser": "^2.13.0",
"debug": "^4.1.1",
"dotenv": "^8.2.0",
"expr-eval": "^2.0.2",
"ioredis": "^4.19.4",
"ioredis-lock": "^4.0.0",
"jsonpath": "^1.1.1",
"koa": "^2.13.1",
"koa-bodyparser": "^4.2.1",
"koa-compress": "^3.0.0",
"koa-router": "^7.4.0",
"lodash": "^4.17.21",
"mongoose": "^5.12.12",
"mongoose-lean-virtuals": "^0.4.4",
"node-rdkafka": "^2.10.1",
"node-zookeeper-client": "^1.1.1",
"ramda": "^0.26.1",
"tslib": "^1.10.0",
"uuid": "^3.3.3"
},
"devDependencies": {
"@types/debug": "^4.1.5",
"@types/ioredis": "^4.19.3",
"@types/jest": "^24.9.1",
"@types/jsonpath": "^0.2.0",
"@types/koa": "^2.0.52",
"@types/koa-bodyparser": "^4.3.0",
"@types/koa-router": "^7.0.42",
"@types/lodash": "^4.14.149",
"@types/mongoose": "^5.11.97",
"@types/node": "^10.17.5",
"@types/node-zookeeper-client": "^0.2.6",
"@types/ramda": "^0.26.33",
"@types/uuid": "^3.4.6",
"@types/zookeeper": "^3.4.1",
"ioredis-mock": "^4.18.2",
"jest": "^26.4.0",
"jest-date-mock": "^1.0.7",
"nodemon": "^2.0.4",
"prettier": "^2.0.4",
"prettier-tslint": "^0.4.2",
"rimraf": "^2.7.1",
"ts-jest": "^26.2.0",
"ts-node": "^8.5.0",
"tslint": "^5.20.1",
"tslint-config-prettier": "1.18.0",
"tslint-microsoft-contrib": "^6.2.0",
"tsutils": "^3.17.1",
"typescript": "^3.9.7"
}
}