-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.09 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 3.09 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
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
102
103
104
{
"name": "bake",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"fix:lint": "eslint --fix .",
"typegen": "sanity schema extract && sanity typegen generate",
"prettier": "prettier --write .",
"tsc": "tsc --noEmit --incremental",
"analyze": "ANALYZE=true pnpm run build",
"bump:next": "pnpm install next@canary",
"bump": "pnpm run bump:next"
},
"dependencies": {
"@next/bundle-analyzer": "16.2.1",
"@next/eslint-plugin-next": "16.2.1",
"@radix-ui/react-aspect-ratio": "^1.1.8",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-visually-hidden": "^1.2.4",
"@sanity/client": "^7.20.0",
"@sanity/codegen": "^6.0.1",
"@sanity/icons": "^3.7.4",
"@sanity/image-url": "^2.0.3",
"@sanity/preview-url-secret": "^4.0.4",
"@sanity/ui": "^3.1.14",
"@sanity/util": "^5.18.0",
"@sanity/uuid": "^3.0.2",
"@sanity/vision": "^5.18.0",
"@vercel/analytics": "^2.0.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"embla-carousel-react": "^8.6.0",
"immer": "^11.1.4",
"lucide-react": "^1.6.0",
"next": "16.2.1",
"next-sanity": "^12.1.5",
"next-themes": "^0.4.6",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-screen-wake-lock": "^3.1.1",
"sanity": "^5.18.0",
"sanity-plugin-documents-pane": "^3.0.2",
"sanity-plugin-iframe-pane": "^5.0.11",
"sanity-plugin-media": "^4.1.1",
"schema-dts": "^2.0.0",
"server-only": "^0.0.1",
"tailwind-merge": "^3.5.0",
"tailwindcss-animate": "^1.0.7",
"use-debounce": "^10.1.0",
"valibot": "1.3.1",
"zustand": "^5.0.12"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^9.39.4",
"@tailwindcss/postcss": "^4.2.2",
"@types/node": "^25.5.0",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"babel-plugin-react-compiler": "1.0.0",
"baseline-browser-mapping": "^2.10.10",
"concurrently": "^9.2.1",
"eslint": "^9.39.4",
"eslint-config-next": "16.2.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"globals": "^17.4.0",
"postcss": "^8.5.8",
"prettier": "^3.8.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"tailwindcss": "^4.2.2",
"typescript": "^6.0.2",
"typescript-eslint": "^8.57.2"
},
"packageManager": "pnpm@10.33.0",
"pnpm": {
"peerDependencyRules": {
"allowAny": [
"react",
"react-dom"
]
},
"overrides": {
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"framer-motion": "12.7.4",
"motion-dom": "12.7.4"
}
}
}