forked from bff-backup/code
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.59 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.59 KB
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
{
"name": "nextjs-relay",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "npm run dev",
"dev": "npm run build:wundergraph && concurrently \"npm run wundergraph\" \"npm run relay\" \"next dev --port 3000\"",
"build": "npm run build:wundergraph && relay-compiler && next build",
"lint": "next lint",
"relay": "relay-compiler --watch",
"build:wundergraph": "wunderctl generate",
"wundergraph": "wunderctl up --debug"
},
"dependencies": {
"@types/node": "18.15.11",
"@types/react": "18.0.34",
"@types/react-dom": "18.0.11",
"@wundergraph/react-relay": "^0.4.33",
"@wundergraph/sdk": "^0.184.2",
"autoprefixer": "10.4.14",
"eslint": "8.38.0",
"eslint-config-next": "14.0.1",
"next": "14.0.1",
"postcss": "8.4.21",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-relay": "^15.0.0",
"relay-runtime": "^15.0.0",
"tailwindcss": "3.3.1",
"typescript": "5.0.4"
},
"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
},
"devDependencies": {
"@types/react-relay": "^14.1.3",
"@types/relay-runtime": "^14.1.10",
"babel-plugin-relay": "^15.0.0",
"concurrently": "^8.0.1",
"relay-compiler": "^15.0.0"
}
}