forked from wundergraph/wundergraph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.36 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
{
"name": "wundergraph-astro-relay",
"type": "module",
"version": "0.0.1",
"scripts": {
"start": "npm run dev",
"dev": "npm run build:wundergraph && concurrently \"npm run wundergraph\" \"npm run relay\" \"astro dev\"",
"build": "npm run build:wundergraph && relay-compiler && astro build",
"preview": "astro preview",
"astro": "astro",
"relay": "relay-compiler --watch",
"wundergraph": "wunderctl up",
"build:wundergraph": "wunderctl generate"
},
"dependencies": {
"@wundergraph/react-relay": "^0.4.33",
"@wundergraph/sdk": "^0.184.2",
"astro": "^2.4.1",
"react": "^18.2.0",
"react-relay": "^15.0.0",
"relay-runtime": "^15.0.0"
},
"devDependencies": {
"@types/react-relay": "^14.1.3",
"@types/relay-runtime": "^14.1.10",
"babel-plugin-relay": "^14.1.0",
"concurrently": "^8.0.1",
"relay-compiler": "^15.0.0",
"vite-plugin-relay": "^2.0.0"
},
"relay": {
"src": "./src",
"artifactDirectory": "./src/__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": true
}
}