-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 986 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
{
"name": "@keystone-6/example-nextjs-keystone",
"version": "0.0.1",
"private": true,
"license": "MIT",
"scripts": {
"keystone:dev": "keystone dev",
"keystone:build": "keystone build",
"keystone:start": "keystone start",
"next:dev": "next dev -p 4000",
"next:build": "next build",
"build": "yarn keystone:build && yarn next build",
"start": "next start"
},
"dependencies": {
"@apollo/client": "^3.7.3",
"@keystone-6/auth": "^6.0.0",
"@keystone-6/core": "^4.0.0",
"@keystone-6/fields-document": "^6.0.0",
"@preconstruct/next": "^4.0.0",
"graphql-request": "^5.0.0",
"graphql-yoga": "^3.1.0",
"next": "^13.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/node": "18.11.14",
"@types/react": "^18.0.9",
"@types/react-dom": "^18.0.4",
"typescript": "~4.9.4"
},
"repository": "https://github.com/keystonejs/keystone/tree/main/examples/nextjs-keystone"
}