forked from kubero-dev/kubero
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.26 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
{
"name": "kubero",
"version": "1.9.0",
"description": "Heroku clone on Kubernetes",
"main": "dist/index.js",
"author": "Gianni Carafa",
"scripts": {
"install": "npx tsc",
"build": "npx tsc",
"start": "node dist/index.js",
"swaggerwatch": "npx swagger-ui-watcher swagger.json",
"swaggergen": "node ./swagger.js",
"dev": "concurrently \"npx tsc --watch\" \"nodemon -q --ext 'ts,json' dist/index.js\"",
"debug": "concurrently \"npx tsc --watch\" \"nodemon -q dist/index.js\"",
"test": "ENV_FILE=.env.test jest"
},
"dependencies": {
"@kubernetes/client-node": "^0.16.3",
"@nerdvision/gitlab-js": "^1.0.0-alpha.12",
"@octokit/core": "^3.6.0",
"@octokit/webhooks": "^9.26.0",
"axios": "^0.27.2",
"bitbucket": "^2.9.0",
"connect-history-api-fallback": "^1.6.0",
"cors": "^2.8.5",
"cross-fetch": "^3.1.5",
"debug": "^4.3.4",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-session": "^1.17.3",
"git-url-parse": "^13.1.0",
"gitea-js": "^1.2.0",
"kubernetes-client": "^9.0.0",
"lodash.get": "^4.4.2",
"lodash.set": "^4.3.2",
"passport": "0.5",
"passport-github2": "^0.1.12",
"passport-http-bearer": "^1.0.1",
"passport-local": "^1.0.0",
"passport-oauth2": "^1.6.1",
"socket.io": "^4.5.1",
"sshpk": "^1.17.0",
"ssl-root-cas": "^1.3.1",
"swagger-ui-express": "^4.5.0",
"typescript": "^4.6.4",
"uuid": "^8.3.2",
"yaml": "^2.1.1"
},
"devDependencies": {
"@types/git-url-parse": "^9.0.1",
"@types/connect-history-api-fallback": "^1.3.5",
"@types/cookie-session": "^2.0.44",
"@types/cors": "^2.8.12",
"@types/debug": "^4.1.7",
"@types/express": "^4.17.13",
"@types/express-session": "^1.17.5",
"@types/jest": "^29.2.4",
"@types/lodash.set": "^4.3.7",
"@types/node": "^17.0.34",
"@types/passport": "^1.0.10",
"@types/passport-github2": "^1.2.5",
"@types/passport-http-bearer": "^1.0.37",
"@types/passport-local": "^1.0.34",
"@types/sshpk": "^1.17.0",
"@types/swagger-ui-express": "^4.1.3",
"@types/uuid": "^8.3.4",
"concurrently": "^7.2.0",
"jest": "^29.3.1",
"nodemon": "^2.0.16",
"swagger-autogen": "^2.21.5",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1"
}
}