-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.42 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.42 KB
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
{
"name": "kazoo-indexing",
"version": "1.0.0",
"description": "indexing api for reper.io and kazoo",
"license": "MPL2",
"main": "index.js",
"repository": "git@github.com:reperio/kazoo-indexing.git",
"author": "Brad Gardner <bradgardner@sevenhillstechnology.com>",
"scripts": {
"test": "jest --coverage",
"start": "yarn build && node $NODE_DEBUG_OPTION dist/index.js",
"watch": "yarn lint && tsc -w",
"build": "yarn lint && tsc",
"lint": "tslint --project tsconfig.json",
"tsc": "tsc",
"dev": "yarn tsc && node $NODE_DEBUG_OPTION dist/index.js",
"start-webhook": "yarn build && node $NODE_DEBUG_OPTION dist/server.js",
"start-messagebroker": "yarn build && node $NODE_DEBUG_OPTION dist/rabbitListener.js"
},
"dependencies": {
"@types/elasticsearch": "^5.0.34",
"@types/lodash": "^4.14.134",
"@types/moment-timezone": "^0.5.12",
"@types/node": "^12.0.7",
"@types/request-promise-native": "^1.0.16",
"amqplib": "^0.5.5",
"commander": "^2.19.0",
"elasticsearch": "^15.4.1",
"hapi": "^18.1.0",
"lodash": "^4.17.11",
"moment": "^2.23.0",
"moment-timezone": "^0.5.26",
"request": "^2.88.0",
"request-promise-native": "^1.0.5",
"tslint": "^5.17.0",
"typescript": "^3.5.1",
"winston": "^3.1.0",
"winston-daily-rotate-file": "^3.5.1"
},
"devDependencies": {
"@types/amqplib": "^0.5.13",
"@types/hapi": "^18.0.2"
}
}