-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.71 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
56
{
"name": "grats-relay",
"version": "1.0.0",
"description": "Grats + Relay Example App",
"type": "module",
"scripts": {
"lint": "eslint .",
"grats": "grats",
"relay": "relay-compiler",
"format": "prettier --write .",
"vite": "vite ./client",
"server": "nodemon --watch 'server/**/*.ts' --exec tsx server/server.ts",
"build": "grats && relay-compiler && tsc && vite build ./client",
"start": "concurrently --prefix-colors yellow,blue,magenta,cyan -n server,client,relay,grats \"npm run server\" \"npm run vite\" \"npm run relay -- --watch\" \"npm run grats -- --watch\""
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.12.0",
"@eslint/compat": "^1.1.0",
"@eslint/js": "^9.4.0",
"@types/node": "^20.11.0",
"@types/react": "^18.2.47",
"@types/react-dom": "^18.2.18",
"@types/react-relay": "^18.2.1",
"@types/relay-runtime": "^19.0.3",
"@vitejs/plugin-react": "^5.0.4",
"babel-plugin-relay": "^16.2.0",
"concurrently": "^8.2.2",
"eslint": "9.x",
"eslint-plugin-react": "^7.34.2",
"eslint-plugin-relay": "^1.8.3",
"globals": "^15.4.0",
"grats": "0.0.0-main-8b055f47",
"grats-ts-plugin": "^0.0.2",
"nodemon": "^3.1.3",
"prettier": "^3.2.5",
"process": "^0.11.10",
"relay-compiler": "^20.1.1",
"tsx": "^4.20.6",
"typescript": "^5.3.3",
"typescript-eslint": "^7.13.0",
"vite": "^7.1.9"
},
"dependencies": {
"@graphql-yoga/plugin-persisted-operations": "^3.3.1",
"graphql": "^16.8.1",
"graphql-yoga": "^5.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-relay": "^20.1.1",
"relay-runtime": "^20.1.1"
},
"prettier": {}
}