-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.55 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
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "booking",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "concurrently \"next dev\" \"yarn graphql\"",
"build": "next build",
"start": "next start",
"graphql": "graphql-codegen --config ./.graphqlrc.yml --watch"
},
"dependencies": {
"@apollo/client": "^3.7.9",
"@chakra-ui/icons": "^2.0.17",
"@chakra-ui/react": "^2.5.1",
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@sentry/nextjs": "^7.38.0",
"apollo-link-scalars": "^4.0.1",
"chakra-ui-steps": "^1.8.0",
"formik": "^2.2.9",
"framer-motion": "^7.6.7",
"graphql": "^16.6.0",
"graphql-scalars": "^1.20.1",
"next": "^13.1.6",
"next-superjson-plugin": "^0.5.4",
"react": "18.2.0",
"react-beforeunload": "^2.5.3",
"react-confetti": "^6.1.0",
"react-dom": "18.2.0",
"react-use": "^17.4.0",
"superjson": "^1.12.2"
},
"devDependencies": {
"@graphql-codegen/cli": "^3.0.0",
"@graphql-codegen/introspection": "^3.0.0",
"@graphql-codegen/typescript-operations": "^3.0.0",
"@graphql-codegen/typescript-react-apollo": "^3.3.7",
"@types/node": "^18.14.0",
"@types/react": "^18.0.28",
"@types/react-beforeunload": "^2.1.1",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"concurrently": "^7.6.0",
"eslint": "^8.34.0",
"eslint-config-next": "^13.1.6",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^2.8.4",
"typescript": "^4.9.5",
"vercel": "^28.16.2"
}
}