-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.21 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
{
"name": "wundergraph-nextjs-react-query",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "run-p dev wundergraph open",
"wundergraph": "wunderctl up --debug",
"open": "wait-on -d 500 http://localhost:9991 && open-cli http://localhost:3000",
"build:wundergraph": "wunderctl generate --debug",
"build:next": "next build",
"build": "npm run build:wundergraph && npm run build:next",
"dev": "next dev",
"check": "tsc --noEmit",
"test": "jest"
},
"dependencies": {
"@tanstack/react-query": "^4.16.1",
"@wundergraph/nextjs": "^0.9.5",
"@wundergraph/react-query": "^0.7.5",
"@wundergraph/sdk": "^0.138.0",
"graphql": "^16.3.0",
"next": "^13.1.1",
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"devDependencies": {
"@jest/globals": "^29.3.1",
"@types/node": "^17.0.15",
"@types/node-fetch": "^2.6.2",
"@types/react": "^18.0.6",
"autoprefixer": "^10.4.7",
"jest": "^29.3.1",
"node-fetch": "^2.6.7",
"npm-run-all": "^4.1.5",
"open-cli": "^7.0.1",
"postcss": "^8.4.19",
"tailwindcss": "^3.1.4",
"ts-jest": "^29.0.3",
"ts-node": "^10.8.0",
"typescript": "^4.8.2",
"wait-on": "^6.0.1"
}
}