-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
78 lines (78 loc) · 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@fallingfish/dbds",
"version": "3.4.0",
"description": "TypeScript type generator for PostgreSQL databases",
"keywords": [
"sql",
"postgresql",
"typescript",
"generation",
"typings",
"graphql",
"dataloader",
"dao"
],
"homepage": "https://github.com/ProjectXero/dbds",
"bugs": "https://github.com/ProjectXero/dbds/issues",
"license": "MIT",
"author": {
"name": "Matthew Lanigan (rintaun)",
"email": "[email protected]",
"url": "https://github.com/rintaun"
},
"files": [
"src",
"bin",
"dist"
],
"main": "./dist/index.js",
"bin": {
"dbds": "./bin/dbds"
},
"repository": "github:ProjectXero/dbds",
"scripts": {
"build": "tsc",
"typecheck": "tsc --noEmit --project .",
"lint": "eslint '**/*.{j,t}s{,on{,c,5}}'",
"lint:fix": "yarn -s lint --fix",
"test": "jest --runInBand",
"fullvalidate": "yarn install && yarn typecheck && yarn lint && yarn test",
"prepack": "yarn build"
},
"dependencies": {
"case": "^1.6.3",
"dataloader": "^2.1.0",
"slonik": "^33.0.4",
"slonik-sql-tag-raw": "^2.0.0",
"yargs": "^17.6.2"
},
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@databases/pg-test": "^3.1.2",
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/git": "^10.0.1",
"@types/config": "^3.3.0",
"@types/jest": "^29.2.4",
"@types/node": "^18.11.12",
"@types/yargs": "^17.0.17",
"@typescript-eslint/eslint-plugin": "^5.46.0",
"@typescript-eslint/parser": "^5.46.0",
"config": "^3.3.8",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jsonc": "^2.5.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.2",
"jest": "^29.3.1",
"pinst": "^3.0.0",
"prettier": "^2.8.1",
"semantic-release": "^19.0.5",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1"
},
"peerDependencies": {
"typescript": ">= 4.9.0",
"zod": "^3.20.0"
}
}