-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 920 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
38
39
40
{
"name": "create-graphql-react-app",
"version": "1.0.3",
"description": "A starter project for a fullstack GraphQL app with React, GraphQL Codegen, GraphQL Yoga and Vite.",
"main": "index.js",
"workspaces": [
"backend",
"client"
],
"scripts": {
"codegen": "graphql-codegen --config codegen.ts"
},
"bin": {
"create-graphql-react-app": "./index.js"
},
"type": "module",
"keywords": [
"graphql",
"react",
"graphql-codegen",
"graphql-yoga",
"vite"
],
"engines": {
"node": ">=18.0.0"
},
"author": "Tuval Simha",
"license": "ISC",
"dependencies": {
"@graphql-typed-document-node/core": "3.2.0",
"graphql": "16.8.1"
},
"devDependencies": {
"@graphql-codegen/cli": "5.0.2",
"@graphql-codegen/typescript": "4.0.0",
"@graphql-codegen/typescript-resolvers": "4.0.0",
"typescript": "5.4.5",
"@parcel/watcher": "2.4.1"
}
}