-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 727 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 727 Bytes
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
{
"name": "opendistro-alert-proxy",
"version": "1.0.0",
"description": "",
"license": "ISC",
"author": "",
"type": "module",
"main": "index.js",
"scripts": {
"start": "node src/app.ts",
"dev": "node --watch --inspect=0.0.0.0:9229 src/app.ts",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"devDependencies": {
"@types/node": "^24.10.1",
"@types/rison": "^0.1.0",
"@typescript-eslint/eslint-plugin": "^8.54.0",
"@typescript-eslint/parser": "^8.54.0",
"eslint": "^9.39.2",
"nodemon": "^3.1.11",
"typescript": "^5.9.3"
},
"engines": {
"node": "^25.0",
"npm": "^11.8"
},
"dependencies": {
"p-memoize": "^8.0.0",
"rison2": "^0.3.0"
}
}