-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
32 lines (32 loc) · 875 Bytes
/
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
{
"name": "kubernetes-gcp-dns-sync",
"version": "1.0.1",
"main": "index.js",
"repository": "git@github.com:jasperkuperus/kubernetes-gcp-dns-sync.git",
"author": "Jasper Kuperus <github@jasperkuperus.nl>",
"license": "MIT",
"scripts": {
"type": "tsc --skipLibCheck",
"prettier": "prettier --write \"**/*.ts\"",
"start": "ts-node -T ./src/index.ts"
},
"dependencies": {
"@google-cloud/dns": "^1.2.8",
"@kubernetes/client-node": "^0.11.1",
"@types/convict": "^4.2.1",
"@types/cron": "^1.7.2",
"@types/lodash": "^4.14.149",
"@types/node": "^13.9.0",
"@types/triple-beam": "^1.3.0",
"convict": "^5.2.0",
"cron": "^1.8.2",
"lodash": "^4.17.15",
"triple-beam": "^1.3.0",
"ts-node": "^8.6.2",
"typescript": "^3.8.3",
"winston": "^3.2.1"
},
"devDependencies": {
"prettier": "^1.19.1"
}
}