-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.06 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
{
"private": true,
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"codegen": "graphql-codegen --config codegen.ts"
},
"dependencies": {
"@apollo/client": "^3.7.11",
"@chakra-ui/icons": "^2.0.2",
"@chakra-ui/react": "^2.2.1",
"@chakra-ui/theme-tools": "^2.0.2",
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.9.0",
"formik": "^2.2.9",
"framer-motion": "^6.3.0",
"graphql": "^16.6.0",
"next": "latest",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-is": "^18.2.0",
"yup": "^1.0.2"
},
"devDependencies": {
"@graphql-codegen/cli": "3.3.0",
"@graphql-codegen/client-preset": "3.0.0",
"@graphql-codegen/near-operation-file-preset": "^2.5.0",
"@graphql-codegen/typescript": "^3.0.4",
"@graphql-codegen/typescript-operations": "^3.0.4",
"@graphql-codegen/typescript-react-apollo": "^3.3.7",
"@types/node": "^18.0.0",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.7.2"
}
}