-
-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.71 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.71 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
{
"name": "v4.tailwindcss.com",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,mdx}\""
},
"dependencies": {
"@docsearch/react": "^3.9.0",
"@headlessui/react": "0.0.0-insiders.b6f355d1",
"@heroicons/react": "^2.2.0",
"@mdx-js/loader": "^3.1.1",
"@next/mdx": "16.1.6",
"@shikijs/transformers": "^1.29.2",
"@tailwindcss/postcss": "^4.2.1",
"clsx": "^2.1.1",
"dedent": "^1.6.0",
"fathom-client": "^3.7.2",
"feed": "^5.1.0",
"framer-motion": "^12.20.0",
"motion": "^12.20.0",
"next": "16.1.6",
"open-graph-scraper-lite": "^2.1.0",
"react": "19.2.4",
"react-dom": "19.2.4",
"shiki": "^1.29.2",
"tailwindcss": "^4.2.1"
},
"devDependencies": {
"@svgr/webpack": "^8.1.0",
"@tailwindcss/node": "^4.2.1",
"@types/hast": "^3.0.4",
"@types/mdx": "^2.0.13",
"@types/node": "^22.15.33",
"@types/react": "19.2.10",
"@types/react-dom": "19.2.3",
"eslint": "^9.39.2",
"eslint-config-next": "16.1.6",
"hast-util-to-jsx-runtime": "^2.3.6",
"prettier-plugin-svelte": "^3.4.0",
"prettier-plugin-tailwindcss": "0.7.2",
"typescript": "^5.8.3"
},
"prettier": {
"printWidth": 120,
"plugins": [
"prettier-plugin-svelte",
"prettier-plugin-tailwindcss"
],
"tailwindStylesheet": "./src/app/globals.css"
},
"postcss": {
"plugins": {
"@tailwindcss/postcss": {}
}
},
"packageManager": "[email protected]",
"pnpm": {
"overrides": {
"@types/react": "19.2.10",
"@types/react-dom": "19.2.3"
}
}
}