-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
42 lines (42 loc) · 973 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
33
34
35
36
37
38
39
40
41
42
{
"name": "k8s-db-grants",
"version": "1.0.0",
"description": "",
"main": "build/src/index.js",
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"start": "node build/src/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"fix": "gts fix",
"lint": "gts lint",
"check": "gts check",
"clean": "gts clean",
"compile": "tsc",
"prepare": "npm run compile",
"pretest": "npm run compile",
"posttest": "npm run lint"
},
"author": "",
"license": "ISC",
"dependencies": {
"ajv": "^8.11.0",
"js-yaml": "^4.1.0",
"kubernetes-client": "^9.0.0",
"mysql2": "^3.9.8",
"pg": "^8.7.3",
"pg-format": "^1.0.4",
"pino": "^8.0.0",
"pino-pretty": "^8.0.0"
},
"devDependencies": {
"@types/mysql": "^2.15.21",
"@types/node": "^17.0.44",
"@types/pg": "^8.6.5",
"@types/pg-format": "^1.0.2",
"gts": "^3.1.0",
"jest": "^28.1.1",
"typescript": "~4.7.3"
}
}