-
Notifications
You must be signed in to change notification settings - Fork 66
/
Copy pathpackage.json
49 lines (49 loc) · 1.32 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
{
"name": "folio",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbo",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write \"**/*.{ts,tsx,mdx}\" --cache",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@radix-ui/react-scroll-area": "^1.2.0",
"@vercel/analytics": "^1.3.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"framer-motion": "^11.11.9",
"fumadocs-core": "^14.0.2",
"fumadocs-docgen": "^1.3.0",
"fumadocs-mdx": "^11.0.0",
"lucide-react": "^0.453.0",
"next": "14.2.15",
"next-themes": "^0.3.0",
"next-view-transitions": "^0.3.2",
"react": "^18",
"react-aria-components": "^1.4.1",
"react-dom": "^18",
"tailwind-merge": "^2.5.4",
"tailwind-variants": "^0.2.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/mdx": "^2.0.13",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "14.2.15",
"postcss": "^8",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.8",
"tailwindcss": "^3.4.1",
"tailwindcss-animate": "^1.0.7",
"tailwindcss-react-aria-components": "^1.1.6",
"typescript": "^5"
}
}