-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.53 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
{
"name": "foundations-next",
"version": "0.1.0",
"private": true,
"scripts": {
"generate-imports": "tsx scripts/create-preview-imports.ts",
"dev": "concurrently \"npm run generate-imports -- --watch\" \"next dev\"",
"prebuild": "npm run generate-imports",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write ."
},
"dependencies": {
"@floating-ui/react": "^0.27.3",
"@hookform/resolvers": "^3.10.0",
"@mdx-js/mdx": "^3.1.0",
"@phosphor-icons/react": "^2.1.7",
"@radix-ui/react-slot": "^1.1.1",
"cva": "^1.0.0-beta.2",
"date-fns": "^4.1.0",
"motion": "^12.0.5",
"next": "15.1.6",
"next-themes": "^0.4.4",
"posthog-js": "^1.207.5",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-hook-form": "^7.54.2",
"rehype-autolink-headings": "^7.1.0",
"rehype-pretty-code": "^0.14.0",
"rehype-slug": "^6.0.0",
"rehype-stringify": "^10.0.1",
"remark-gfm": "^4.0.0",
"shiki": "^1.29.1",
"tailwind-merge": "^2.6.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4.0.0",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"concurrently": "^9.1.2",
"eslint": "^9",
"eslint-config-next": "15.1.6",
"eslint-config-prettier": "^10.0.1",
"postcss": "^8",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.11",
"tailwindcss": "^4.0.0",
"tsx": "^4.19.2",
"typescript": "^5"
}
}