-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.31 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.31 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
{
"name": "website",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"type-check": "tsc --noEmit",
"quality": "pnpm type-check && pnpm lint && pnpm build",
"format": "prettier --write \"**/*.{js,cjs,mjs,jsx,ts,tsx,json,css,scss,md,mdx}\"",
"format:check": "prettier --check \"**/*.{js,cjs,mjs,jsx,ts,tsx,json,css,scss,md,mdx}\"",
"clean": "rm -rf .next out node_modules/.cache",
"studio": "sanity dev --port 3333",
"workshop:drip:cron": "tsx scripts/workshop-drip-cron.ts",
"setup:token": "bash scripts/setup-token.sh",
"feature:new": "tsx scripts/create-feature.ts",
"migrate:code-blocks": "tsx scripts/fix-code-blocks.ts",
"migrate:code-blocks:cli": "sanity exec scripts/fix-code-blocks-cli.ts --with-user-token"
},
"dependencies": {
"@hugeicons/core-free-icons": "^4.1.1",
"@hugeicons/react": "^1.1.6",
"@portabletext/react": "^6.0.3",
"@portabletext/to-html": "^5.0.2",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-slot": "^1.2.4",
"@sanity/client": "^7.21.0",
"@sanity/code-input": "^7.1.0",
"@sanity/image-url": "^2.1.1",
"@sanity/types": "^5.22.0",
"@upstash/redis": "^1.37.0",
"@vercel/analytics": "^2.0.1",
"@vercel/blob": "^2.3.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"geist": "^1.7.0",
"lucide-react": "^1.9.0",
"next": "16.2.4",
"next-sanity": "^12.3.0",
"next-themes": "^0.4.6",
"radix-ui": "^1.4.3",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"resend": "^6.12.2",
"sanity": "^5.22.0",
"shadcn": "^4.4.0",
"shiki": "^4.0.2",
"sonner": "^2.0.7",
"styled-components": "^6.4.1",
"tailwind-merge": "^3.5.0",
"tw-animate-css": "^1.4.0"
},
"devDependencies": {
"@tailwindcss/postcss": "4.2.4",
"@tailwindcss/typography": "^0.5.19",
"@types/node": "^25.6.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"dotenv": "^17.4.2",
"eslint": "^9.39.4",
"eslint-config-next": "^16.2.4",
"postcss": "^8.5.10",
"prettier": "^3.8.3",
"prettier-plugin-tailwindcss": "^0.7.3",
"tailwindcss": "4.2.4",
"tsx": "^4.21.0",
"typescript": "^6.0.3"
}
}