-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.21 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
{
"name": "dash",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"dev:secure": "next dev --experimental-https",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier . --write",
"test": "jest",
"generate-types:x": "bash scripts/generate-types.sh",
"generate-types": "supabase gen types typescript --local > src/types/generated/database.types.ts",
"prepare": "husky",
"lint-staged": "lint-staged",
"supabase:update": "npm update supabase --save-dev && npm run db:stop:no-backup && npm run db:start",
"db:reset": "supabase db reset",
"db:stop": "supabase stop",
"db:stop:no-backup": "supabase stop --no-backup",
"db:start": "supabase start"
},
"dependencies": {
"@radix-ui/react-avatar": "^1.0.4",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slot": "^1.0.2",
"@supabase/auth-ui-react": "^0.4.7",
"@supabase/auth-ui-shared": "^0.1.8",
"@supabase/ssr": "^0.0.10",
"@supabase/supabase-js": "^2.39.3",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"lucide-react": "^0.321.0",
"next": "14.1.0",
"next-themes": "^0.2.1",
"react": "^18",
"react-dom": "^18",
"sonner": "^1.3.1",
"tailwind-merge": "^2.2.1",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.22.4"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@testing-library/jest-dom": "^6.3.0",
"@testing-library/react": "^14.1.2",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.19.1",
"autoprefixer": "^10.0.1",
"cssnano": "^6.0.3",
"eslint": "^8",
"eslint-config-next": "^14.1.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.0.10",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.0",
"postcss": "^8",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.11",
"server-only": "^0.0.1",
"supabase": "^1.136.3",
"tailwindcss": "^3.3.0",
"typescript": "^5"
}
}