-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.42 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@constellation-network/metagraph-monitoring-service",
"version": "0.2.2",
"description": "Constellation metagraph monitoring service",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"./interfaces": {
"require": "./dist/interfaces.js",
"import": "./dist/interfaces.mjs"
},
"./services": {
"require": "./dist/services.js",
"import": "./dist/services.mjs"
},
"./default-restart-conditions": {
"require": "./dist/default-restart-conditions.js",
"import": "./dist/default-restart-conditions.mjs"
},
"./default-alert-conditions": {
"require": "./dist/default-alert-conditions.js",
"import": "./dist/default-alert-conditions.mjs"
},
"./restart-groups": {
"require": "./dist/restart-groups.js",
"import": "./dist/restart-groups.mjs"
},
"./shared": {
"require": "./dist/shared.js",
"import": "./dist/shared.mjs"
}
},
"scripts": {
"build": "tsup"
},
"author": "Marcus Girolneto <[email protected]>",
"homepage": "https://github.com/Constellation-Labs/metagraph-monitoring-service#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Constellation-Labs/metagraph-monitoring-service.git"
},
"bugs": {
"url": "https://github.com/Constellation-Labs/metagraph-monitoring-service/issues"
},
"license": "MIT",
"devDependencies": {
"@types/node": "^20.12.7",
"@types/ssh2": "^1.15.0",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^7.5.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0 || ^16.0.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.0.0",
"prettier": "^3.2.5",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"tsup": "^8.0.2",
"typescript": "^5.4.5"
},
"dependencies": {
"@aws-sdk/client-ssm": "^3.549.0",
"aws-sdk": "^2.1594.0",
"axios": "^1.6.8",
"commander": "^12.0.0",
"module-alias": "^2.2.3",
"moment": "^2.30.1",
"ssh2": "^1.15.0",
"winston": "^3.13.0",
"winston-daily-rotate-file": "^5.0.0"
}
}