-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
53 lines (53 loc) · 1.48 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
{
"name": "elastalert2-server",
"version": "5.12.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": "^6.6.0",
"bunyan": "^1.8.15",
"cors": "^2.8.5",
"elasticsearch": "^16.7.3",
"express": "^4.21.2",
"joi": "^17.13.3",
"lodash": "^4.17.21",
"mkdirp": "^3.0.1",
"randomstring": "^1.3.0",
"swagger-ui-express": "^5.0.1",
"ws": "^8.18.0"
},
"devDependencies": {
"@tsoa/cli": "^6.6.0",
"@types/bunyan": "^1.8.11",
"@types/cors": "^2.8.17",
"@types/elasticsearch": "^5.0.43",
"@types/express": "^4.17.21",
"@types/express-serve-static-core": "^4.19.5",
"@types/lodash": "^4.17.13",
"@types/node": "^22.10.2",
"@types/randomstring": "^1.3.0",
"@types/swagger-ui-express": "^4.1.7",
"@types/ws": "^8.5.13",
"concurrently": "^9.1.0",
"nodemon": "^3.1.9",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
},
"scripts": {
"dev": "concurrently \"nodemon\" \"nodemon --config nodemon-spec.json\"",
"build": "tsoa spec-and-routes && tsc",
"start": "node dist/index.js",
"serve": "nodemon --inspect --watch dist/ -d 1 ./dist/index.js",
"tsc:watch": "tsc -w",
"tsc:build": "tsc"
}
}