-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.2 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
{
"name": "steward",
"version": "0.0.0",
"description": "Kubernetes shared cluster provisioning for knative",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"files": [
"build/src"
],
"license": "Apache-2.0",
"keywords": [],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"check": "gts check",
"clean": "gts clean",
"compile": "tsc -p .",
"fix": "gts fix",
"start": "node .",
"dev:start": "npm-run-all compile start",
"dev:watch": "nodemon --watch src -e ts,ejs --exec npm run dev:start",
"prepare": "npm run compile",
"pretest": "npm run compile",
"posttest": "npm run check"
},
"devDependencies": {
"@types/express": "^4.17.6",
"@types/node": "^10.17.19",
"gts": "^1.1.2",
"nodemon": "^1.19.4",
"npm-run-all": "^4.1.5",
"ts-node": "^8.8.2",
"typescript": "~3.5.0"
},
"dependencies": {
"@kubernetes/client-node": "^0.11.1",
"ejs": "^3.0.2",
"express": "^4.17.1",
"google-auth-library": "^6.0.0",
"js-yaml": "^3.13.1",
"ts-node": "^8.8.2",
"typescript": "~3.5.0",
"@types/express": "^4.17.6",
"@types/node": "^10.17.19",
"gts": "^1.1.2",
}
}