-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.15 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
{
"name": "test-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"generate": "graphql-codegen -r"
},
"dependencies": {
"@apollo/client": "^3.7.0",
"graphql": "^16.6.0",
"next": "12.3.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"styled-components": "^5.3.6"
},
"devDependencies": {
"@types/node": "18.11.2",
"@types/react": "18.0.21",
"@types/react-dom": "18.0.6",
"@types/styled-components": "^5.1.26",
"babel-plugin-styled-components": "^2.0.7",
"eslint": "8.25.0",
"eslint-config-next": "12.3.1",
"typescript": "4.8.4",
"@graphql-codegen/add": "3.2.1",
"@graphql-codegen/cli": "2.13.7",
"@graphql-codegen/typed-document-node": "2.3.4",
"@graphql-codegen/typescript": "2.7.4",
"@graphql-codegen/typescript-apollo-client-helpers": "2.2.4",
"@graphql-codegen/typescript-document-nodes": "2.3.4",
"@graphql-codegen/typescript-operations": "2.5.4",
"@graphql-codegen/typescript-react-apollo": "3.3.4",
"@graphql-codegen/typescript-resolvers": "2.7.4"
}
}