-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.4 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
{
"name": "bookie",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prettier:write": "prettier --write ./src/**/*.{js,jsx,ts,tsx}"
},
"dependencies": {
"@headlessui/react": "^1.7.4",
"@heroicons/react": "^2.0.13",
"@hookform/resolvers": "^2.9.10",
"@radix-ui/react-dropdown-menu": "^2.0.2",
"@supabase/auth-helpers-nextjs": "^0.5.2",
"@supabase/auth-helpers-react": "^0.3.1",
"@supabase/supabase-js": "^2.2.2",
"@tailwindcss/forms": "^0.5.3",
"@tanstack/react-query": "^4.20.4",
"class-variance-authority": "^0.3.0",
"classnames": "^2.3.2",
"date-fns": "^2.29.3",
"next": "^13.2.3",
"react": "18.2.0",
"react-aria": "^3.22.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.34.0",
"react-stately": "^3.20.0",
"tailwind-merge": "^1.12.0",
"zod": "^3.19.1"
},
"devDependencies": {
"@tanstack/react-query-devtools": "^4.20.4",
"@trivago/prettier-plugin-sort-imports": "^4.0.0",
"@types/node": "^18.6.2",
"@types/react": "18.0.15",
"@types/react-dom": "18.0.6",
"autoprefixer": "^10.4.8",
"eslint": "8.20.0",
"eslint-config-next": "12.2.3",
"prettier": "^2.8.1",
"prettier-plugin-tailwindcss": "^0.2.1",
"supabase": "^1.28.4",
"tailwindcss": "^3.2.4",
"typescript": "^4.9.5"
}
}