-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 847 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 847 Bytes
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
{
"name": "example",
"version": "1.0.0",
"description": "",
"main": "index.js",
"dependencies": {
"@apollo/client": "3.13.8",
"isomorphic-unfetch": "^3.1.0",
"next": "12.3.4",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@graphql-codegen/cli": "2.11.7",
"@graphql-codegen/import-types-preset": "2.2.3",
"@graphql-codegen/typescript": "2.7.3",
"@graphql-codegen/typescript-operations": "2.5.3",
"@graphql-codegen/typescript-react-apollo": "3.3.7",
"@types/react": "18.2.31",
"typescript": "4.9.5"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"codegen": "graphql-codegen --config codegen.yml",
"dev": "next dev",
"build": "yarn codegen && next build",
"start": "next start"
},
"author": "",
"license": "ISC"
}