-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.48 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
{
"name": "guessai",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"prepare": "husky install"
},
"dependencies": {
"@headlessui/react": "^1.7.13",
"@heroicons/react": "^2.0.17",
"@supabase/auth-helpers-nextjs": "0.5.8",
"@supabase/supabase-js": "^2.17.0",
"@types/node": "18.15.11",
"@types/react": "18.0.33",
"@types/react-dom": "18.0.11",
"autoprefixer": "10.4.14",
"axios": "^1.3.5",
"clsx": "^1.2.1",
"date-fns": "^2.29.3",
"encoding": "^0.1.13",
"eslint": "8.38.0",
"eslint-config-next": "13.2.4",
"framer-motion": "^10.11.2",
"next": "13.2.4",
"openai": "^3.2.1",
"postcss": "8.4.21",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.43.9",
"react-toastify": "^9.1.2",
"server-only": "^0.0.1",
"swr": "^2.1.3",
"tailwindcss": "3.3.1",
"typescript": "5.0.4"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"@typescript-eslint/parser": "^5.58.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-tailwindcss": "^3.11.0",
"husky": "^8.0.3",
"prettier": "^2.8.7",
"supabase": "^1.49.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "yarn lint:fix"
}
}