-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
66 lines (66 loc) · 2.11 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
{
"name": "wine-match",
"version": "0.1.0",
"private": false,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"export": "next build && next export",
"analyze": "cross-env ANALYZE=true next build",
"format:write": "prettier --write \"**/*.{ts,tsx,mdx}\" --cache",
"format:check": "prettier --check \"**/*.{ts,tsx,mdx}\" --cache",
"lint:debug": "eslint ./ --debug",
"lint:fix": "eslint ./ --fix"
},
"dependencies": {
"@algolia/autocomplete-js": "^1.8.1",
"@algolia/autocomplete-theme-classic": "^1.8.1",
"@heroicons/react": "^2.0.13",
"@next/font": "^13.1.1",
"@radix-ui/react-dialog": "^1.0.2",
"@radix-ui/react-dropdown-menu": "^2.0.2",
"@radix-ui/react-navigation-menu": "^1.1.1",
"@radix-ui/react-toast": "^1.1.2",
"@radix-ui/react-toggle": "^1.0.1",
"@radix-ui/react-tooltip": "^1.0.3",
"@supabase/auth-helpers-nextjs": "^0.5.2",
"@supabase/auth-helpers-react": "^0.3.1",
"@supabase/auth-ui-react": "^0.2.6",
"@supabase/supabase-js": "^2.0.6",
"@vercel/analytics": "^0.1.10",
"algoliasearch": "^4.14.2",
"class-variance-authority": "^0.4.0",
"clsx": "^1.2.1",
"next": "^13.1.1",
"next-themes": "^0.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-instantsearch-hooks-router-nextjs": "^6.42.0",
"react-instantsearch-hooks-web": "^6.30.1",
"tailwind-merge": "^1.9.1",
"tailwindcss-radix": "^2.6.1",
"zustand": "^4.2.0"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^3.7.1",
"@next/bundle-analyzer": "^13.1.6",
"@types/node": "^18.0.3",
"@types/react": "18.0.15",
"@types/react-dom": "18.0.6",
"autoprefixer": "^10.4.7",
"cross-env": "^7.0.3",
"cssnano": "^5.1.15",
"eslint": "8.19.0",
"eslint-config-next": "^13.1.1",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-tailwindcss": "^3.8.3",
"postcss": "^8.4.21",
"prettier": "^2.8.4",
"supabase": "^1.27.7",
"tailwindcss": "^3.1.6",
"typescript": "^4.7.4"
}
}