-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
112 lines (112 loc) · 3.46 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
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
{
"name": "doinfine",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "yarn barrel && next build",
"start": "next dev",
"lint": "next lint",
"test": "jest",
"e2e": "playwright test",
"format": "prettier --write ./src",
"barrel": "barrelsby --delete --config barrelsby.json",
"generate-prisma": "prisma generate --schema=./src/prisma/schema.prisma",
"postinstall": "prisma generate --schema=./src/prisma/schema.prisma",
"migrate-dev": "prisma migrate dev --create-only"
},
"dependencies": {
"@casl/ability": "^6.5.0",
"@casl/react": "^3.1.0",
"@chakra-ui/icons": "^2.1.1",
"@chakra-ui/next-js": "^2.2.0",
"@chakra-ui/react": "^2.8.2",
"@chakra-ui/system": "^2.6.2",
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@getbrevo/brevo": "^1.0.1",
"@mdx-js/loader": "^3.0.0",
"@mdx-js/react": "^3.0.0",
"@next-auth/prisma-adapter": "^1.0.5",
"@next/mdx": "^14.0.4",
"@paystack/inline-js": "^2.13.0",
"@prisma/client": "5.18.0",
"@sendgrid/client": "^8.1.0",
"@sendgrid/mail": "^8.1.0",
"@supabase/auth-helpers-react": "^0.4.1",
"@supabase/ssr": "^0.0.10",
"@supabase/supabase-js": "^2.31.0",
"@tanstack/react-query": "5.17.0",
"@types/mdx": "^2.0.10",
"@vercel/analytics": "^1.0.2",
"@vercel/kv": "^0.2.2",
"@xstate/immer": "^0.3.2",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"date-fns": "^2.30.0",
"downshift": "^7.6.0",
"emoji-picker-react": "^4.5.2",
"formidable": "^3.5.0",
"framer-motion": "^10.0.1",
"immer": "^9.0.19",
"jsonwebtoken": "^9.0.0",
"mixpanel": "^0.18.0",
"mixpanel-browser": "^2.48.1",
"next": "^14.2.5",
"next-api-decorators": "^2.0.2",
"next-mdx-remote": "^4.4.1",
"next-pwa": "^5.6.0",
"nodemailer": "^6.9.13",
"path-to-regexp": "^6.2.1",
"pluralize": "^8.0.0",
"postinstall": "^0.8.0",
"ramda": "^0.28.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.43.5",
"react-icons": "^4.12.0",
"react-image-crop": "^10.1.5",
"react-intersection-observer": "^9.5.2",
"react-paystack": "^5.0.0",
"react-responsive-carousel": "^3.2.23",
"react-slick": "^0.29.0",
"react-use": "^17.4.0",
"recharts": "^2.12.7",
"resend": "^4.0.0",
"scroll-carousel-react": "^1.0.0",
"sharp": "^0.33.5",
"typescript": "^5.3.3",
"use-debounce": "^9.0.3",
"uuid": "^9.0.0",
"xstate": "^4.37.1"
},
"devDependencies": {
"@playwright/test": "^1.33.0",
"@tanstack/react-query-devtools": "5.17.0",
"@testing-library/dom": "^9.2.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/formidable": "^3.4.0",
"@types/node": "18.14.6",
"@types/pluralize": "^0.0.29",
"@types/ramda": "^0.28.23",
"@types/react": "^18.2.47",
"@types/react-dom": "^18.2.18",
"@types/testing-library__jest-dom": "^5.14.5",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"barrelsby": "^2.5.1",
"eslint": "^8.56.0",
"eslint-config-next": "^14.0.4",
"eslint-config-prettier": "^9.1.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"next-router-mock": "^0.9.2",
"prettier": "^3.1.1",
"prisma": "5.18.0",
"supabase": "^1.88.0"
},
"prisma": {
"schema": "src/prisma/schema.prisma"
}
}