-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 867 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 867 Bytes
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
{
"name": "slaking",
"version": "1.0.0",
"description": "Kubernetes service that monitors workloads for annotations and sends filtered logs to Slack channels",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"dev": "nodemon src/index.js",
"test": "jest",
"build": "docker build -t slaking .",
"deploy": "kubectl apply -f k8s/"
},
"keywords": [
"kubernetes",
"slack",
"logging",
"operator",
"monitoring"
],
"author": "",
"license": "MIT",
"dependencies": {
"@kubernetes/client-node": "^0.20.0",
"@slack/web-api": "^6.10.0",
"@slack/bolt": "^3.17.1",
"winston": "^3.11.0",
"yaml": "^2.3.4",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"cors": "^2.8.5",
"helmet": "^7.1.0"
},
"devDependencies": {
"nodemon": "^3.0.2",
"jest": "^29.7.0"
}
}