forked from alexnguyennz/grocery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.01 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
{
"name": "grocery",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"vercel-build": "prisma generate && next build",
"start": "next start",
"lint": "next lint",
"test": "jest --watch"
},
"dependencies": {
"@emotion/react": "^11.10.6",
"@emotion/server": "^11.10.0",
"@fontsource/mulish": "^4.5.14",
"@mantine/carousel": "^5.10.5",
"@mantine/core": "^5.10.5",
"@mantine/dates": "^5.10.5",
"@mantine/form": "^5.10.5",
"@mantine/hooks": "^5.10.5",
"@mantine/modals": "^5.10.5",
"@mantine/next": "^5.10.5",
"@mantine/notifications": "^5.10.5",
"@prisma/client": "^4.14.0",
"@stripe/react-stripe-js": "^1.16.5",
"@stripe/stripe-js": "^1.47.0",
"@supabase/auth-helpers-nextjs": "^0.5.4",
"@supabase/auth-helpers-react": "^0.3.1",
"@supabase/auth-ui-react": "^0.2.6",
"@supabase/supabase-js": "^2.4.1",
"@tabler/icons-react": "^2.5.0",
"@tanstack/react-query": "^4.24.9",
"@types/node": "18.11.13",
"@types/react": "18.0.26",
"@types/react-dom": "18.0.9",
"dayjs": "^1.11.7",
"embla-carousel-react": "^7.0.9",
"eslint": "8.29.0",
"eslint-config-next": "^13.2.4",
"html-react-parser": "^3.0.4",
"next": "^13.2.4",
"react": "^18.2.0",
"react-cool-onclickoutside": "^1.7.0",
"react-dom": "^18.2.0",
"stripe": "^11.12.0",
"superjson": "^1.12.2",
"typescript": "4.9.4",
"use-places-autocomplete": "^4.0.0",
"zustand": "^4.3.2"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"autoprefixer": "^10.4.13",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"jest-mock-extended": "^3.0.4",
"postcss": "^8.4.20",
"prettier": "^2.8.4",
"prettier-plugin-tailwindcss": "^0.2.4",
"prisma": "^4.14.0",
"resize-observer-polyfill": "^1.5.1",
"supabase": "^1.37.1",
"tailwindcss": "^3.2.4"
}
}