-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
53 lines (53 loc) · 1.63 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
{
"name": "tilloo",
"version": "4.0.14",
"description": "A distributed cron with cli and web ui",
"repository": "https://github.com/chriskinsman/tilloo.git",
"scripts": {
"lint": "eslint .",
"test": "echo \"Error: no test specified\" && exit 1",
"start:rabbit": "kubectl port-forward -n tilloo-services service/rabbitmq-service 5672",
"start:mongodb": "kubectl port-forward -n tilloo-services service/mongodb-service 27017",
"start:client": "vite preview web/client --port 4173",
"start:server": "PORT=8080 node ./web/server/index.js",
"start:scheduler": "kubectl port-forward -n tilloo-services service/scheduler-service 8081:80",
"start": "concurrently -c \"auto\" \"npm:start:*\""
},
"author": "Chris Kinsman",
"license": "MIT",
"bin": {
"tilloo-scheduler": "./bin/scheduler.js",
"tilloo-cli": "./bin/tilloo-cli.js",
"tilloo-worker": "./bin/worker.js",
"tilloo-web": "./web/server/index.js"
},
"dependencies": {
"@kubernetes/client-node": "^0.18.1",
"async": "^3.2.4",
"aws-sdk": "^2.1380.0",
"axios": "^1.4.0",
"body-parser": "^1.20.2",
"chokidar": "^3.5.3",
"commander": "^10.0.1",
"compression": "^1.7.4",
"connect-history-api-fallback": "^2.0.0",
"cron": "^2.3.0",
"dayjs": "^1.11.7",
"debug": "^4.3.4",
"easy-table": "^1.2.0",
"express": "^4.18.2",
"foo-foo-mq": "^8.0.1",
"moment": "^2.29.4",
"mongoose": "^7.1.1",
"serve-favicon": "^2.5.0",
"socket.io": "^4.6.1",
"tail": "^2.2.6"
},
"devDependencies": {
"concurrently": "^8.0.1",
"eslint": "^8.40.0"
},
"engines": {
"node": ">= 14.17.0"
}
}