-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
100 lines (100 loc) · 3.12 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
{
"name": "bake",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"fix:lint": "next lint --fix",
"typegen": "sanity schema extract && sanity typegen generate",
"prettier": "prettier --write .",
"tsc": "tsc --noEmit --incremental",
"analyze": "ANALYZE=true pnpm run build",
"bump:compiler": "pnpm install -D babel-plugin-react-compiler@beta eslint-plugin-react-compiler@beta",
"bump:next": "pnpm install next@canary",
"bump": "pnpm run bump:compiler && pnpm run bump:next"
},
"dependencies": {
"@next/bundle-analyzer": "15.2.2",
"@next/eslint-plugin-next": "15.2.2",
"@radix-ui/react-aspect-ratio": "^1.1.2",
"@radix-ui/react-checkbox": "^1.1.4",
"@radix-ui/react-dialog": "^1.1.6",
"@radix-ui/react-dropdown-menu": "^2.1.6",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-label": "^2.1.2",
"@radix-ui/react-popover": "^1.1.6",
"@radix-ui/react-select": "^2.1.6",
"@radix-ui/react-slot": "^1.1.2",
"@radix-ui/react-switch": "^1.1.3",
"@radix-ui/react-visually-hidden": "^1.1.2",
"@sanity/client": "^6.28.3",
"@sanity/icons": "^3.7.0",
"@sanity/image-url": "^1.1.0",
"@sanity/preview-url-secret": "^2.1.6",
"@sanity/ui": "^2.15.5",
"@sanity/util": "^3.79.0",
"@sanity/uuid": "^3.0.2",
"@sanity/vision": "^3.79.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"embla-carousel-react": "^8.5.2",
"immer": "^10.1.1",
"lucide-react": "^0.479.0",
"next": "15.3.0-canary.2",
"next-sanity": "^9.9.0",
"next-themes": "^0.4.6",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-screen-wake-lock": "^3.0.4",
"sanity": "^3.79.0",
"sanity-plugin-documents-pane": "^2.4.0",
"sanity-plugin-iframe-pane": "^3.2.1",
"sanity-plugin-media": "^3.0.1",
"schema-dts": "^1.1.5",
"server-only": "^0.0.1",
"styled-components": "^6.1.15",
"tailwind-merge": "^3.0.2",
"tailwindcss-animate": "^1.0.7",
"use-debounce": "^10.0.4",
"valibot": "1.0.0-rc.4",
"zustand": "^5.0.3"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.0",
"@eslint/js": "^9.22.0",
"@tailwindcss/postcss": "^4.0.13",
"@types/node": "^22.13.10",
"@types/react": "19.0.10",
"@types/react-dom": "19.0.4",
"babel-plugin-react-compiler": "19.0.0-beta-bafa41b-20250307",
"eslint": "^9.22.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-compiler": "19.0.0-beta-bafa41b-20250307",
"eslint-plugin-react-hooks": "^5.2.0",
"globals": "^16.0.0",
"postcss": "^8.5.3",
"prettier": "^3.5.3",
"prettier-plugin-tailwindcss": "^0.6.11",
"tailwindcss": "^4.0.13",
"typescript": "^5.8.2",
"typescript-eslint": "^8.26.1"
},
"packageManager": "pnpm@10.6.2",
"pnpm": {
"peerDependencyRules": {
"allowAny": [
"react",
"react-dom"
]
},
"overrides": {
"@types/react": "19.0.10",
"@types/react-dom": "19.0.4"
}
}
}