-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
52 lines (52 loc) · 1.44 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
{
"name": "nextjs-auth-prisma-template",
"version": "1.0.0",
"license": "MIT",
"author": {
"name": "Lukáš Huvar",
"email": "[email protected]",
"url": "https://huvik.dev/"
},
"scripts": {
"build": "yarn schema:generate && yarn hooks:generate && next build",
"dev": "next",
"hooks:generate": "graphql-codegen --config .graphqlrc.js",
"lint": "next lint",
"postinstall": "yarn prisma generate",
"schema:generate": "tsx src/lib/utils/build-schema.ts",
"start": "next start",
"prepare": "husky install"
},
"dependencies": {
"@next-auth/prisma-adapter": "1.0.6",
"@pothos/core": "3.30.0",
"@pothos/plugin-prisma": "3.51.1",
"@pothos/plugin-scope-auth": "3.19.2",
"@prisma/client": "4.14.1",
"graphql": "16.6.0",
"graphql-yoga": "3.9.1",
"next": "13.4.3",
"next-auth": "4.22.1",
"next-urql": "3.3.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-is": "18.2.0",
"urql": "2.2.3",
"~gql": "link:./src/lib/graphql"
},
"devDependencies": {
"@graphql-codegen/cli": "3.3.0",
"@graphql-codegen/client-preset": "3.0.1",
"@graphql-codegen/client-preset-swc-plugin": "0.2.0",
"@types/node": "20.2.3",
"@types/react": "18.2.6",
"eslint": "8.38.0",
"eslint-config-next": "13.4.3",
"husky": "8.0.3",
"prettier": "2.8.7",
"pretty-quick": "3.1.3",
"prisma": "4.14.1",
"tsx": "3.12.6",
"typescript": "5.0.4"
}
}