-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
101 lines (101 loc) · 3.33 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "xlug",
"description": "Link shortener tool that allows you to create shorter and more manageable versions of long URLs.",
"version": "3.0.0",
"main": "index.js",
"keywords": [],
"author": "iswilljr <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"db:_link": "supabase link --project-ref $SUPABASE_PROJECT_REF --password $SUPABASE_PASSWORD",
"db:_push": "supabase db push --password $SUPABASE_PASSWORD",
"db:gen:local": "(supabase gen types typescript --local > src/types/supabase.d.ts) && eslint --fix src/types/supabase.d.ts",
"db:gen:linked": "(supabase gen types typescript --linked > src/types/supabase.d.ts) && eslint --fix src/types/supabase.d.ts",
"db:link": "pnpm with-env db:_link",
"db:lint": "supabase db lint",
"db:push": "pnpm with-env db:_push",
"db:reset": "supabase db reset || supabase start",
"db:start": "supabase status || supabase start",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"format": "prettier --ignore-unknown --write .",
"postinstall": "husky",
"with-env": "dotenv -- pnpm run"
},
"dependencies": {
"@hookform/resolvers": "3.6.0",
"@radix-ui/react-dialog": "1.1.1",
"@radix-ui/react-dropdown-menu": "2.1.1",
"@radix-ui/react-scroll-area": "1.1.0",
"@radix-ui/react-select": "^2.1.1",
"@radix-ui/react-separator": "1.1.0",
"@radix-ui/react-slot": "1.1.0",
"@supabase/auth-helpers-nextjs": "0.10.0",
"@supabase/auth-helpers-react": "0.5.0",
"@supabase/supabase-js": "2.43.5",
"@tremor/react": "3.17.3",
"@vercel/analytics": "1.3.1",
"cheerio": "1.0.0-rc.12",
"class-variance-authority": "0.7.0",
"clsx": "2.1.1",
"cmdk": "1.0.0",
"countries-list": "3.1.0",
"date-fns": "3.6.0",
"framer-motion": "11.2.11",
"html-to-image": "1.11.11",
"lucide-react": "0.396.0",
"nanoid": "5.0.7",
"next": "14.2.4",
"next-themes": "0.3.0",
"pushmodal": "1.0.4",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-hook-form": "7.52.0",
"react-hotkeys-hook": "4.5.0",
"react-qr-code": "2.0.15",
"react-textarea-autosize": "8.5.3",
"redaxios": "0.5.1",
"sonner": "1.5.0",
"swr": "2.2.5",
"tailwind-merge": "2.3.0",
"use-clipboard-copy": "0.2.0",
"use-local-storage-state": "19.3.1",
"vaul": "0.9.1",
"zod": "3.23.8",
"zustand": "4.5.2"
},
"devDependencies": {
"@types/node": "20.14.7",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"autoprefixer": "10.4.19",
"dotenv-cli": "7.4.2",
"encoding": "0.1.13",
"eslint": "8.57.0",
"eslint-config-next": "14.2.4",
"eslint-config-prettier": "9.1.0",
"eslint-config-standard-jsx": "11.0.0",
"eslint-config-standard-with-typescript": "43.0.1",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-react": "7.34.3",
"eslint-plugin-react-hooks": "4.6.2",
"husky": "9.0.11",
"knip": "5.22.2",
"lint-staged": "15.2.7",
"postcss": "8.4.38",
"prettier": "3.3.2",
"prettier-plugin-tailwindcss": "0.6.5",
"supabase": "1.178.2",
"tailwindcss": "3.4.4",
"tailwindcss-animate": "1.0.7",
"typescript": "5.5.2"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "pnpm eslint --fix",
"*": "prettier -wu"
}
}