-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
108 lines (108 loc) · 3.23 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "@trellisfw/monitor",
"version": "3.0.0",
"description": "A Trellis microservice to respond to monitor pings, spawn and check things internally, and respond with success or fail",
"main": "dist/index.js",
"type": "module",
"engines": {
"node": ">=14.0.0"
},
"repository": "https://gitlab.com/qlevercompany/trellis/monitor",
"author": "Aaron Ault <aultac@gmail.com>",
"license": "Apache-2.0",
"scripts": {
"build": "tsc -b",
"start": "node --enable-source-maps dist/index.js",
"test": "yarn build test && ava",
"test:debug": "ava -T 60m -sv",
"test:live": "cross-env NOCK_MODE=live yarn test",
"test:record": "cross-env NOCK_MODE=record yarn test"
},
"ava": {
"files": [
"**/*.test.ts"
],
"typescript": {
"extensions": [
"ts"
],
"rewritePaths": {
"src/": "dist/",
"test/": ".test/"
},
"compile": false
}
},
"dependencies": {
"@oada/client": "5.2.6",
"@oada/lib-config": "^4.0.0",
"@oada/lib-prom": "^4.0.1",
"@oada/pino-debug": "^4.0.1",
"debug": "^4.4.0",
"express": "^4.21.2",
"ksuid": "^3.0.0",
"micromatch": "^4.0.8",
"moment": "^2.30.1",
"node-cron": "^3.0.3",
"tiny-json-http": "^7.5.1",
"tslib": "^2.8.1"
},
"devDependencies": {
"@ava/typescript": "^5.0.0",
"@sinonjs/fake-timers": "^14.0.0",
"@tsconfig/node22": "^22.0.0",
"@types/convict": "^6.1.6",
"@types/debug": "^4.1.12",
"@types/express": "^5.0.0",
"@types/micromatch": "^4.0.9",
"@types/node": "22.10.2",
"@types/node-cron": "^3.0.11",
"@types/sinonjs__fake-timers": "^8.1.5",
"@types/tiny-json-http": "^7.3.4",
"@typescript-eslint/eslint-plugin": "^8.18.1",
"@typescript-eslint/parser": "^8.18.1",
"@yarnpkg/sdks": "^3.2.0",
"ava": "6.2.0",
"ava-nock": "^2.1.0",
"cross-env": "^7.0.3",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-xo": "^0.46.0",
"eslint-config-xo-typescript": "^7.0.0",
"eslint-formatter-pretty": "^6.0.1",
"eslint-import-resolver-node": "^0.3.9",
"eslint-plugin-array-func": "^5.0.2",
"eslint-plugin-ava": "^15.0.1",
"eslint-plugin-escompat": "^3.11.4",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-github": "^5.1.4",
"eslint-plugin-i18n-text": "^1.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-no-constructor-bind": "^2.0.4",
"eslint-plugin-no-only-tests": "^3.3.0",
"eslint-plugin-no-secrets": "^2.1.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-notice": "^1.0.0",
"eslint-plugin-optimize-regex": "^1.2.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-regexp": "^2.7.0",
"eslint-plugin-security": "^3.0.1",
"eslint-plugin-sonarjs": "^3.0.1",
"eslint-plugin-unicorn": "^56.0.1",
"isomorphic-timers-promises": "^1.0.1",
"minimist": "^1.2.8",
"nock": "^13.5.6",
"prettier": "^3.4.2",
"typescript": "^5.7.2"
},
"resolutions": {
"cross-spawn": "^7.0.5",
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.2/xlsx-0.20.2.tgz"
},
"packageManager": "yarn@4.5.3",
"volta": {
"node": "22.11.0"
}
}