-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.57 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
{
"name": "melonade-time-keeper",
"version": "0.6.0",
"description": "Melonade tinme keeper",
"engines": {
"node": ">= 10.13 <11"
},
"devDependencies": {
"@types/ioredis": "^4.0.19",
"@types/jest": "^24.0.23",
"@types/koa": "^2.0.52",
"@types/koa-router": "^7.0.42",
"@types/mongoose": "^5.5.34",
"@types/node": "^10.17.5",
"@types/node-zookeeper-client": "^0.2.6",
"@types/ramda": "^0.26.33",
"jest": "^24.9.0",
"nodemon": "^1.19.4",
"prettier": "1.18.2",
"rimraf": "^2.7.1",
"ts-jest": "^26.3.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.7.2"
},
"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 --passWithNoTests",
"test:watch": "jest --watch",
"start:watch": "nodemon"
},
"author": "NV4RE",
"license": "Apache-2.0",
"dependencies": {
"@melonade/melonade-declaration": "^0.15.0",
"dotenv": "^8.2.0",
"ioredis": "^4.14.1",
"koa": "^2.11.0",
"koa-bodyparser": "^4.2.1",
"koa-compress": "^3.0.0",
"koa-router": "^7.4.0",
"mongoose": "^5.8.1",
"mongoose-lean-virtuals": "^0.4.4",
"node-rdkafka": "^2.7.4",
"node-zookeeper-client": "^1.1.0",
"ramda": "^0.26.1",
"tslib": "^1.10.0",
"uuid": "^3.3.3"
}
}