-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.05 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 2.05 KB
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
{
"name": "kamayakoi",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"clean": "rm -rf .next",
"format": "prettier --write .",
"format:check": "prettier --check .",
"revalidate": "tsx lib/actions/cli-revalidate.ts",
"revalidate:events": "tsx lib/actions/cli-revalidate.ts events",
"revalidate:posts": "tsx lib/actions/cli-revalidate.ts posts",
"revalidate:products": "tsx lib/actions/cli-revalidate.ts products",
"revalidate:homepage": "tsx lib/actions/cli-revalidate.ts homepage"
},
"dependencies": {
"@portabletext/react": "^3.2.4",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@sanity/icons": "^3.7.4",
"@sanity/vision": "^4.22.0",
"@supabase/supabase-js": "^2.101.1",
"@vercel/analytics": "^1.6.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"embla-carousel-react": "^8.6.0",
"framer-motion": "^12.38.0",
"libphonenumber-js": "1.12.6",
"lucide-react": "^0.485.0",
"next": "^16.2.2",
"next-sanity": "^9.12.3",
"next-themes": "^0.4.6",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-phone-number-input": "^3.4.16",
"sanity": "^4.22.0",
"sonner": "^2.0.7",
"styled-components": "^6.3.12",
"tailwind-merge": "^3.5.0",
"tailwindcss-animate": "^1.0.7",
"tw-animate-css": "^1.4.0"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@tailwindcss/postcss": "^4.2.2",
"@types/node": "^20.19.39",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"eslint": "^9.39.4",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"knip": "^5.88.1",
"postcss": "^8.5.25",
"prettier": "^3.8.1",
"tailwindcss": "^4.2.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.58.0"
}
}