-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 895 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
{
"name": "prisma-hooks",
"version": "0.1.8",
"type": "module",
"description": "100% type-safe, generated react-query hooks for quering any model in your prisma-managed database.",
"main": "index.js",
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/bryantbrock/prisma-hooks.git"
},
"bin": {
"prisma-hooks": "./bin/generate.js"
},
"scripts": {
"build": "tsc --outDir dist"
},
"keywords": [
"prisma",
"hooks",
"react-query"
],
"author": "",
"license": "ISC",
"devDependencies": {
"@prisma/client": "^4.12.0",
"@types/node": "^18.15.11",
"@types/react": "^18.2.8",
"react-query": "^3.39.3",
"typescript": "^5.0.3"
},
"peerDependencies": {
"@prisma/client": "^4.12.0",
"react": "^18.2.0",
"react-query": "^3.39.3"
},
"dependencies": {
"yargs": "^17.7.1"
}
}