forked from wundergraph/wundergraph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.67 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "wundergraph-expo-relay",
"version": "1.0.0",
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "npm run dev",
"dev": "npm run build:wundergraph && concurrently \"npm run wundergraph\" \"npm run relay\"",
"expo:start": "expo start",
"build": "npm run build:wundergraph && relay-compiler",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"relay": "relay-compiler --watch",
"wundergraph": "wunderctl up",
"build:wundergraph": "wunderctl generate"
},
"dependencies": {
"@wundergraph/react-relay": "^0.4.33",
"@wundergraph/sdk": "^0.184.2",
"expo": "~48.0.15",
"expo-status-bar": "~1.4.4",
"react": "18.2.0",
"react-native": "0.71.7",
"react-relay": "^15.0.0",
"relay-runtime": "^15.0.0"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@types/react": "~18.0.14",
"@types/react-relay": "^14.1.3",
"@types/relay-runtime": "^14.1.10",
"@wundergraph/metro-config": "^0.0.1",
"babel-plugin-relay": "^15.0.0",
"concurrently": "^8.0.1",
"graphql": "^16.6.0",
"react-native-url-polyfill": "^1.3.0",
"relay-compiler": "^15.0.0",
"typescript": "^4.9.4"
},
"relay": {
"src": "./",
"artifactDirectory": "./__relay__generated__",
"language": "typescript",
"schema": "./.wundergraph/generated/wundergraph.schema.graphql",
"exclude": [
"**/node_modules/**",
"**/__mocks__/**",
"**/__generated__/**",
"**/.wundergraph/generated/**"
],
"persistConfig": {
"file": "./.wundergraph/operations/relay/persisted.json"
},
"eagerEsModules": false
},
"private": true
}