-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.08 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
{
"name": "stra-va-on-fire",
"version": "0.1.0",
"private": true,
"scripts": {
"add:component": "npx shadcn@latest add",
"build": "next build",
"check:all": "npm run typecheck && npm run lint",
"dev": "next dev",
"format": "prettier --write .",
"gen:types": "npx supabase gen types typescript --project-id cpmmqltoyvtgbizjuogt > lib/supabase/generated-types.ts && npm run zodify",
"grok": "npx tsx scripts/run-ngrok.ts",
"lint": "next lint",
"npm:clean": "rm -rf node_modules && rm -rf package-lock.json && npm i",
"prepare": "husky",
"start": "next start",
"typecheck": "tsc --noEmit",
"zodify": "npx supabase-to-zod --input lib/supabase/generated-types.ts --output lib/supabase/zod-schemas.ts"
},
"dependencies": {
"@radix-ui/react-avatar": "^1.1.0",
"@radix-ui/react-checkbox": "^1.1.1",
"@radix-ui/react-dropdown-menu": "^2.1.1",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@supabase/ssr": "^0.5.1",
"@supabase/supabase-js": "^2.45.3",
"@t3-oss/env-core": "^0.11.1",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"geist": "^1.3.1",
"google-one-tap": "^1.0.6",
"lucide-react": "^0.439.0",
"next": "14.2.8",
"next-themes": "^0.3.0",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.6",
"react": "^18",
"react-dom": "^18",
"sonner": "^1.5.0",
"supabase": "^1.191.3",
"tailwind-merge": "^2.5.2",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.23.8"
},
"devDependencies": {
"@tanstack/eslint-plugin-query": "^5.56.1",
"@types/google-one-tap": "^1.2.6",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@vercel/style-guide": "^6.0.0",
"dotenv": "^16.4.5",
"eslint": "^8",
"eslint-config-next": "14.2.8",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-unused-imports": "^4.1.3",
"husky": "^9.1.5",
"lint-staged": "^15.2.10",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"typescript": "^5"
}
}