-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.67 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
{
"name": "renovate-executor",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"build": "npm run format && npm run lint && tsc",
"dev": "tsx watch src/index.ts",
"lint": "eslint ./src",
"format": "prettier --write ./src"
},
"type": "module",
"keywords": [],
"author": "SteffTek <info@stefftek.de>",
"license": "MIT",
"description": "",
"devDependencies": {
"@codedependant/semantic-release-docker": "^5.0.3",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.16.0",
"@saithodev/semantic-release-backmerge": "^4.0.1",
"@types/cors": "^2.8.17",
"@types/dockerode": "^3.3.32",
"@types/express": "^5.0.0",
"@types/node": "^22.10.1",
"@types/node-cron": "^3.0.11",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.7",
"@typescript-eslint/eslint-plugin": "^8.17.0",
"@typescript-eslint/parser": "^8.17.0",
"eslint": "^9.16.0",
"eslint-config-prettier": "^10.0.0",
"eslint-config-typescript": "^3.0.0",
"globals": "^15.13.0",
"prettier": "^3.4.2",
"semantic-release": "^24.0.0",
"ts-node": "^10.9.2",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
},
"engines": {
"node": ">=20.6.0"
},
"dependencies": {
"@gitbeaker/rest": "^42.0.0",
"@kubernetes/client-node": "^1.0.0",
"@octokit/auth-token": "^5.1.1",
"@octokit/rest": "^21.0.2",
"@octokit/webhooks": "^13.4.1",
"ansi-colors": "^4.1.3",
"cors": "^2.8.5",
"dockerode": "^4.0.2",
"dotenv": "^16.4.7",
"express": "^4.21.1",
"helmet": "^8.0.0",
"node-cache": "^5.1.2",
"node-cron": "^3.0.3",
"swagger-jsdoc": "6.2.8",
"swagger-ui-express": "^5.0.1"
}
}