-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 3.69 KB
/
package.json
File metadata and controls
117 lines (117 loc) · 3.69 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "barectory",
"version": "7.0.0",
"private": true,
"scripts": {
"clean": "rimraf \"{.next,node_modules,__generated__,.cache,src/framework/graphql/**/*.d.ts}\"",
"dev:rest": "next dev -p 3003",
"build:rest": "next build",
"codegen": "node -r dotenv/config $(yarn bin)/graphql-let",
"dev:gql": "yarn codegen && next dev -p 3001",
"build:gql": "yarn codegen && next build",
"start": "next start",
"lint": "next lint",
"postbuild:rest": "next-sitemap",
"prepare": "husky install"
},
"dependencies": {
"@apollo/client": "^3.5.8",
"@headlessui/react": "^1.4.3",
"@hookform/resolvers": "^2.8.8",
"@reach/portal": "^0.16.2",
"@stripe/react-stripe-js": "^1.7.0",
"@stripe/stripe-js": "^1.22.0",
"@tawk.to/tawk-messenger-react": "^1.0.0",
"apollo-upload-client": "^17.0.0",
"axios": "^0.25.0",
"body-scroll-lock": "^4.0.0-beta.0",
"camelcase-keys": "^7.0.2",
"classnames": "^2.3.1",
"dayjs": "^1.10.7",
"deepmerge": "^4.2.2",
"firebase": "^9.9.1",
"framer-motion": "6.2.3",
"jotai": "^1.6.0",
"js-cookie": "^3.0.1",
"little-state-machine": "^4.2.1",
"lodash": "^4.17.21",
"next": "12.0.10",
"next-absolute-url": "^1.2.2",
"next-auth": "^4.24.5",
"next-i18next": "^10.2.0",
"next-pwa": "^5.4.4",
"next-seo": "^5.1.0",
"overlayscrollbars": "^1.13.1",
"overlayscrollbars-react": "^0.2.3",
"rc-collapse": "^3.1.2",
"rc-rate": "^2.9.1",
"rc-slider": "^9.7.5",
"rc-table": "^7.22.2",
"react": "17.0.2",
"react-content-loader": "^6.1.0",
"react-copy-to-clipboard": "^5.0.4",
"react-device-detect": "^2.1.2",
"react-dom": "17.0.2",
"react-dropzone": "^12.0.3",
"react-google-autocomplete": "^2.7.0",
"react-hook-form": "^7.27.0",
"react-image-magnify": "^2.7.4",
"react-img-zoom": "^0.1.0",
"react-medium-image-zoom": "^4.3.5",
"react-otp-input": "^2.4.0",
"react-paystack": "^3.0.5",
"react-phone-input-2": "^2.15.0",
"react-query": "^3.34.15",
"react-responsive": "^9.0.0-beta.6",
"react-scroll": "^1.8.4",
"react-select": "^5.2.2",
"react-sticky-box": "^0.9.3",
"react-toastify": "^8.1.1",
"react-use": "^17.3.2",
"react-waypoint": "^10.1.0",
"sharp": "^0.30.1",
"swiper": "^7.4.1",
"tiny-invariant": "^1.2.0",
"yup": "^0.32.11"
},
"devDependencies": {
"@graphql-codegen/cli": "^2.6.1",
"@graphql-codegen/import-types-preset": "^2.1.10",
"@graphql-codegen/typescript": "^2.4.3",
"@graphql-codegen/typescript-operations": "^2.3.0",
"@graphql-codegen/typescript-react-apollo": "^3.2.5",
"@graphql-codegen/typescript-resolvers": "^2.5.0",
"@tailwindcss/forms": "^0.4.0",
"@tailwindcss/typography": "^0.5.1",
"@types/apollo-upload-client": "^17.0.0",
"@types/body-scroll-lock": "^3.1.0",
"@types/html-entities": "^1.3.4",
"@types/js-cookie": "^3.0.1",
"@types/lodash": "^4.14.178",
"@types/overlayscrollbars": "^1.12.1",
"@types/react": "17.0.39",
"@types/react-copy-to-clipboard": "^5.0.2",
"@types/react-mailchimp-subscribe": "^2.1.1",
"@types/react-scroll": "^1.8.3",
"@types/react-select": "^5.0.1",
"autoprefixer": "^10.4.2",
"eslint": "8.9.0",
"eslint-config-next": "12.0.10",
"eslint-config-prettier": "^8.3.0",
"graphql": "^16.3.0",
"graphql-let": "^0.18.6",
"husky": ">=6",
"lint-staged": ">=12.3.3",
"next-sitemap": "^2.1.14",
"postcss": "^8.4.6",
"prettier": "^2.5.1",
"prettier-plugin-tailwindcss": "^0.1.7",
"rimraf": "^3.0.2",
"tailwindcss": "^3.0.22",
"typescript": "4.5.5",
"yaml-loader": "^0.6.0"
},
"engines": {
"node": ">=12.20.0"
}
}