forked from Karql/elastalert2-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.36 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
{
"name": "@bitsensor/elastalert",
"version": "4.0.0",
"description": "A server that runs ElastAlert and exposes REST API's for manipulating rules and alerts.",
"license": "MIT",
"main": "index.js",
"author": {
"name": "BitSensor",
"url": "https://bitsensor.io",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git+https://github.com/karql/elastalert.git"
},
"directories": {
"lib": "./lib",
"test": "./test"
},
"dependencies": {
"body-parser": "^1.15.2",
"bunyan": "^1.8.15",
"cors": "^2.8.5",
"elasticsearch": "^16.7.2",
"express": "^4.17.1",
"joi": "^17.4.0",
"lodash": "^4.17.21",
"mkdirp": "^1.0.4",
"randomstring": "^1.1.5",
"raven": "^2.6.1",
"ws": "^7.4.4"
},
"devDependencies": {
"@types/bunyan": "^1.8.6",
"@types/cors": "^2.8.10",
"@types/elasticsearch": "^5.0.37",
"@types/express": "^4.17.11",
"@types/lodash": "^4.14.168",
"@types/mkdirp": "^1.0.1",
"@types/node": "^14.14.35",
"@types/randomstring": "^1.1.6",
"@types/ws": "^7.4.0",
"eslint": "^4.17.0",
"husky": "^0.14.3",
"nodemon": "^2.0.7",
"typescript": "^4.2.3"
},
"scripts": {
"serve": "nodemon --inspect --watch dist/ -d 1 ./dist/index.js",
"tsc:watch": "tsc -w",
"tsc:build": "tsc",
"start": "sh ./scripts/start.sh"
}
}