-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
97 lines (97 loc) · 2.7 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
{
"name": "Robo-Kit",
"version": "1.0.0",
"private": true,
"description": "Robo-Kit",
"author": "scalecube.io <[email protected]>",
"license": "ISC",
"repository": "https://github.com/scalecube/robokit.git",
"homepage": "https://github.com/scalecube/robolit",
"bugs": "https://github.com/scalecube/robokit/issues",
"keywords": [
"probot",
"github",
"probot-app"
],
"scripts": {
"dev": "./node_modules/.bin/nodemon",
"robokit": "node ./robokit.js",
"robokit-k8s": "node ./robokit-k8s.js",
"start": "./node_modules/.bin/probot run ./index.js",
"lint": "./node_modules/.bin/standard --fix",
"build": "browserify ./app/views/main.js -o ./app/views/bundle.js --debug -t [ babelify --presets [ @babel/preset-env @babel/preset-react ] ]",
"watch": "watchify ./app/views/main.js -o ./app/views/bundle.js --debug -t [ babelify --presets [ @babel/preset-env @babel/preset-react ] ]"
},
"dependencies": {
"@octokit/auth": "^1.1.1",
"api-key-auth": "^0.2.2",
"auth-routes": "0.0.1",
"axios": "^0.19.2",
"axios-cookiejar-support": "^0.5.1",
"body-parser": "^1.18.3",
"connect-ensure-login": "^0.1.1",
"cookie-parser": "^1.4.4",
"cookie-session": "^2.0.0-beta.3",
"cors": "^2.8.5",
"cron": "^1.8.2",
"express-access-token": "^1.0.3",
"express-jwt": "^5.1.0",
"express-jwt-authz": "^2.3.1",
"github-oauth": "^0.2.2",
"jquery": "^3.5.1",
"js-yaml": "^3.13.1",
"lodash": "^4.17.20",
"mongodb": "^3.4.1",
"mui-datatables": "^2.14.0",
"node-vault": "^0.9.13",
"node-vault-client": "^0.5.6",
"nodejs-websocket": "^1.7.2",
"passport": "^0.4.1",
"passport-github": "^1.1.0",
"passport-github-token": "^2.2.0",
"plotly.js": "^1.55.2",
"probot": "^9.11.5",
"probot-scheduler": "^2.0.0-beta.1",
"react": "^16.13.0",
"react-copy-to-clipboard": "^5.0.2",
"react-dom": "^16.13.0",
"react-plotly.js": "^2.4.0",
"react-tools": "^0.13.3",
"request": "^2.88.0",
"request-promise": "^4.2.5",
"rxjs": "^6.6.3",
"rxjs-compat": "^6.6.3",
"serve-static": "1.14.1",
"websocket": "^1.0.32"
},
"devDependencies": {
"@babel/core": "^7.8.7",
"@babel/preset-env": "^7.8.7",
"@babel/preset-react": "^7.8.3",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babelify": "^10.0.0",
"smee-client": "^1.1.0",
"nock": "^11.4.0",
"nodemon": "^2.0.0",
"standard": "^14.3.1"
},
"engines": {
"node": ">= 8.3.0"
},
"standard": {
"env": [
"jest"
]
},
"nodemonConfig": {
"exec": "npm start",
"watch": [
".env",
"."
]
},
"jest": {
"testEnvironment": "node"
}
}