forked from wundergraph/wundergraph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·33 lines (33 loc) · 954 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
{
"name": "wundergraph-inject-bearer",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "run-p dev wundergraph open",
"wundergraph": "cd .wundergraph && wunderctl up -e ./../.env --debug",
"generate": "cd .wundergraph && wunderctl generate -e ./../.env --debug",
"open": "wait-on -d 500 http://localhost:9991 && open-cli http://localhost:3003",
"build": "next build",
"dev": "next dev --port 3003",
"wunderctl": "wunderctl",
"check": "tsc --noEmit"
},
"dependencies": {
"@wundergraph/nextjs": "^0.0.35",
"@wundergraph/sdk": "^0.96.1",
"graphql": "^16.3.0",
"next": "^12.1.6",
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"devDependencies": {
"@types/node": "^17.0.15",
"@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": "^4.7.2",
"wait-on": "^6.0.1"
}
}