-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.47 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
{
"name": "web",
"version": "0.0.0",
"license": "MIT",
"private": true,
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"check-types": "tsc --noemit",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"format": "prettier --write . --ignore-unknown --ignore-path .gitignore",
"prepare": "husky install"
},
"dependencies": {
"@headlessui/react": "^1.7.13",
"@react-hook/media-query": "^1.1.1",
"@supabase/auth-helpers-nextjs": "^0.5.6",
"@supabase/auth-helpers-react": "^0.3.1",
"@supabase/auth-ui-react": "^0.3.5",
"@supabase/auth-ui-shared": "^0.1.3",
"@supabase/supabase-js": "^2.11.0",
"framer-motion": "^10.8.3",
"next": "^13.2.4",
"react": "18.2.0",
"react-device-detect": "^2.2.3",
"react-dom": "18.2.0",
"react-hot-toast": "^2.4.0",
"react-merge-refs": "2.0.1",
"react-parallax-tilt": "^1.7.117",
"swr": "2.1.0",
"tailwindcss": "3.2.7"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"@types/node": "^18.15.3",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"autoprefixer": "^10.4.14",
"eslint": "^8.36.0",
"eslint-config-next": "^13.2.4",
"husky": "^8.0.3",
"lint-staged": "^13.2.0",
"postcss": "8.4.21",
"prettier": "2.8.4",
"supabase": "^1.50.8",
"typescript": "^5.0.2"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown --ignore-path .gitignore"
}
}