-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
46 lines (46 loc) · 1.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
{
"name": "bored-agent",
"version": "0.12.6",
"description": "Bored Agent",
"main": "dist/index.js",
"author": "Mirantis Inc.",
"license": "MIT",
"scripts": {
"dev": "skaffold dev --status-check=false",
"test": "yarn jest",
"dist": "yarn tsc",
"lint": "yarn run eslint . --max-warnings=0",
"build-image": "docker build -t bored-agent:latest ."
},
"devDependencies": {
"@types/is-url": "^1.2.30",
"@types/jest": "^29.5.14",
"@types/jsonwebtoken": "^9.0.7",
"@types/lodash": "^4.14.198",
"@types/node": "^22.10.2",
"@types/pino": "^7.0.5",
"@types/ws": "^8.5.13",
"@typescript-eslint/eslint-plugin": "^8.19.0",
"@typescript-eslint/parser": "^8.18.1",
"eslint": "^9.17.0",
"eslint-plugin-unused-imports": "^4.1.4",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.4.0",
"typescript": "^5.7.2"
},
"dependencies": {
"@kubernetes/client-node": "^0.22.3",
"bored-mplex": "^0.1.3",
"got": "^11.8.6",
"http-parser-js": "^0.5.9",
"https-proxy-agent": "^7.0.6",
"is-url": "^1.2.4",
"jsonwebtoken": "^9.0.0",
"lodash": "^4.17.21",
"pino": "^9.6.0",
"pino-pretty": "^13.0.0",
"ws": "^8.18.0",
"yaml": "^2.3.4"
}
}