-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.26 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
{
"name": "betterlance",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "npm run generate-supabase-types && next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"generate-supabase-types": "source .env.local && npx openapi-typescript $NEXT_PUBLIC_SUPABASE_URL/rest/v1/?apikey=$NEXT_PUBLIC_SUPABASE_ANON_KEY --output src/types/supabase.ts"
},
"dependencies": {
"@heroicons/react": "^1.0.5",
"@hookform/error-message": "^2.0.0",
"@hookform/resolvers": "^2.8.8",
"@supabase/supabase-js": "^1.30.7",
"@tailwindcss/line-clamp": "^0.3.1",
"classnames": "^2.3.1",
"next": "12.1.0",
"react": "17.0.2",
"react-beautiful-dnd": "^13.1.0",
"react-dom": "17.0.2",
"react-hook-form": "^7.27.1",
"react-spring": "^9.4.3",
"react-toastify": "^8.2.0",
"react-use": "^17.3.2",
"swr": "^1.2.2",
"uuid": "^8.3.2",
"yup": "^0.32.11"
},
"devDependencies": {
"@types/node": "17.0.21",
"@types/react": "17.0.39",
"@types/react-beautiful-dnd": "^13.1.2",
"@types/uuid": "^8.3.4",
"autoprefixer": "^10.4.2",
"eslint": "8.10.0",
"eslint-config-next": "12.1.0",
"postcss": "^8.4.7",
"tailwindcss": "^3.0.23",
"typescript": "4.5.5"
}
}