-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.77 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
{
"name": "global-pod-autoscaler",
"version": "1.0.0",
"description": "Scaling your spot pool deployments over many clusters for high availability",
"main": "main.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npm run build && npm run start:prod",
"start:prod": "node dist/main.js",
"start:dev": "nodemon",
"build": "tsc && npm run copy-assets",
"copy-assets": "mkdir -p dist/proto && cp ./proto/* ./dist/proto/",
"generate-types": "node_modules/@grpc/proto-loader/build/bin/proto-loader-gen-types.js --keepCase --longs=String --enums=String --defaults --oneofs --includeComments --grpcLib=@grpc/grpc-js --outDir=types/proto/ proto/*.proto"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/aesher9o1/global-pod-autoscaler.git"
},
"keywords": [
"kubernetes",
"autoscaler"
],
"author": "aesher9o1",
"license": "MIT",
"bugs": {
"url": "https://github.com/aesher9o1/global-pod-autoscaler/issues"
},
"homepage": "https://github.com/aesher9o1/global-pod-autoscaler#readme",
"devDependencies": {
"@types/node": "^20.1.0",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"copyfiles": "^2.4.1",
"eslint": "^8.40.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^5.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"dependencies": {
"@grpc/grpc-js": "^1.8.14",
"@grpc/proto-loader": "^0.7.7",
"@kubernetes/client-node": "^0.18.1",
"dotenv": "^16.0.3",
"nodemon": "^2.0.22",
"winston": "^3.8.2",
"winston-timestamp-colorize": "^1.1.0"
}
}