forked from Karql/elastalert2-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.51 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.51 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
45
46
47
48
49
50
51
52
53
54
{
"name": "elastalert2-server",
"version": "5.0.0",
"description": "A server that runs ElastAlert2 and exposes REST API's for manipulating rules and alerts.",
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/karql/elastalert2-server.git"
},
"directories": {
"lib": "./lib",
"test": "./test"
},
"dependencies": {
"@tsoa/runtime": "^5.0.0",
"bunyan": "^1.8.15",
"cors": "^2.8.5",
"elasticsearch": "^16.7.3",
"express": "^4.18.2",
"joi": "^17.10.1",
"lodash": "^4.17.21",
"mkdirp": "^3.0.1",
"randomstring": "^1.3.0",
"swagger-ui-express": "^5.0.0",
"ws": "^8.14.1"
},
"devDependencies": {
"@tsoa/cli": "^5.1.1",
"@types/bunyan": "^1.8.8",
"@types/cors": "^2.8.14",
"@types/elasticsearch": "^5.0.40",
"@types/express": "^4.17.17",
"@types/express-serve-static-core": "^4.17.36",
"@types/lodash": "^4.14.198",
"@types/mkdirp": "^1.0.2",
"@types/node": "^20.6.0",
"@types/randomstring": "^1.1.8",
"@types/swagger-ui-express": "^4.1.3",
"@types/ws": "^8.5.5",
"concurrently": "^8.2.1",
"nodemon": "^3.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"scripts": {
"dev": "concurrently \"nodemon\" \"nodemon --config nodemon-spec.json\"",
"build": "tsoa spec-and-routes && tsc",
"start": "sh ./scripts/start.sh",
"serve": "nodemon --inspect --watch dist/ -d 1 ./dist/index.js",
"tsc:watch": "tsc -w",
"tsc:build": "tsc"
}
}