-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 929 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
{
"name": "wundergraph-nextjs",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "run-p dev wundergraph open",
"wundergraph": "wunderctl up",
"generate": "wunderctl generate",
"open": "wait-on -d 500 http://localhost:9991 && open-cli http://localhost:3000",
"build": "pnpm generate && next build && pnpm check",
"dev": "next dev",
"check": "tsc --noEmit"
},
"dependencies": {
"@wundergraph/nextjs": "^0.15.9",
"@wundergraph/sdk": "^0.184.2",
"graphql": "^16.3.0",
"jose": "^4.11.1",
"next": "^14.0.1",
"next-auth": "^4.24.4",
"react": "^18.2.0",
"react-dom": "^18.0.0",
"swr": "^2.2.0"
},
"devDependencies": {
"@types/node": "^18.16.0",
"@types/react": "^18.0.6",
"node-fetch": "^2.6.7",
"npm-run-all": "^4.1.5",
"open-cli": "^7.0.1",
"ts-node": "^10.8.0",
"typescript": "^5.1.6",
"wait-on": "^6.0.1"
}
}