forked from wundergraph/wundergraph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1008 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
36
37
{
"name": "wundergraph-expo-swr-example",
"version": "1.0.0",
"private": true,
"dependencies": {
"@babel/runtime": "^7.21.0",
"@expo/webpack-config": "^18.0.1",
"@wundergraph/metro-config": "^0.0.1",
"@wundergraph/sdk": "^0.184.0",
"@wundergraph/swr": "^0.19.1",
"expo": "^48.0.11",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-native": "0.71.6",
"react-native-web": "~0.18.7",
"swr": "^2.2.0"
},
"devDependencies": {
"@babel/core": "^7.19.3",
"@types/react": "~18.0.27",
"@types/react-native": "~0.71.5",
"npm-run-all": "^4.1.5",
"typescript": "^4.6.3"
},
"scripts": {
"start": "run-p wundergraph expo",
"check": "tsc --noEmit",
"wundergraph": "wunderctl up",
"build:wundergraph": "wunderctl generate",
"build": "npm run build:wundergraph",
"wunderctl": "wunderctl",
"expo": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web"
}
}