forked from timlrx/tailwind-nextjs-starter-blog
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.86 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.86 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "tailwind-nextjs-starter-blog",
"version": "2.4.0",
"private": true,
"scripts": {
"start": "next dev",
"dev": "cross-env INIT_CWD=$PWD next dev",
"build": "cross-env INIT_CWD=$PWD next build && cross-env NODE_OPTIONS='--experimental-json-modules' node ./scripts/postbuild.mjs",
"serve": "next start",
"analyze": "cross-env ANALYZE=true next build",
"lint": "next lint --dir pages --dir app --dir components --dir lib --dir layouts --dir scripts",
"lint:fix": "next lint --fix --dir pages --dir app --dir components --dir lib --dir layouts --dir scripts",
"typecheck": "contentlayer2 build && tsc --noEmit",
"prepare": "husky"
},
"dependencies": {
"@headlessui/react": "2.2.9",
"@next/bundle-analyzer": "15.5.12",
"@pmndrs/assets": "^1.6.0",
"@react-spring/web": "10.0.3",
"@react-three/drei": "^10.7.7",
"@react-three/fiber": "^9.5.0",
"@react-three/postprocessing": "^3.0.4",
"@tailwindcss/forms": "^0.5.11",
"@tailwindcss/postcss": "^4.1.18",
"@tailwindcss/typography": "^0.5.19",
"autoprefixer": "^10.4.13",
"body-scroll-lock": "^3.1.5",
"contentlayer2": "0.5.8",
"esbuild": "0.27.3",
"github-slugger": "^2.0.0",
"gray-matter": "^4.0.3",
"hast-util-from-html-isomorphic": "^2.0.0",
"image-size": "2.0.2",
"leva": "^0.10.1",
"next": "15.5.12",
"next-contentlayer2": "0.5.8",
"next-themes": "^0.4.6",
"pliny": "0.4.1",
"postcss": "^8.5.6",
"react": "19.2.4",
"react-dom": "19.2.4",
"reading-time": "1.5.0",
"rehype-autolink-headings": "^7.1.0",
"rehype-citation": "^2.3.2",
"rehype-katex": "^7.0.1",
"rehype-katex-notranslate": "^1.1.4",
"rehype-preset-minify": "7.0.1",
"rehype-prism-plus": "^2.0.2",
"rehype-slug": "^6.0.0",
"remark": "^15.0.1",
"remark-gfm": "^4.0.1",
"remark-github-blockquote-alert": "^2.0.1",
"remark-math": "^6.0.0",
"tailwindcss": "^4.1.18",
"three": "0.183.2",
"unist-util-visit": "^5.1.0",
"zustand": "5.0.12"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^9.18.0",
"@svgr/webpack": "^8.1.0",
"@types/mdx": "^2.0.13",
"@types/react": "^19.2.13",
"@types/three": "0.183.1",
"@typescript-eslint/eslint-plugin": "^8.54.0",
"@typescript-eslint/parser": "^8.54.0",
"cross-env": "^10.1.0",
"eslint": "^9.18.0",
"eslint-config-next": "15.5.12",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"globals": "^17.3.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.8.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"typescript": "^5.9.3"
},
"lint-staged": {
"*.+(js|jsx|ts|tsx)": [
"yarn eslint --fix"
],
"*.+(js|jsx|ts|tsx|json|css|md|mdx)": [
"yarn prettier --write"
]
},
"packageManager": "yarn@3.6.1"
}