generated from timlrx/tailwind-nextjs-starter-blog
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.56 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.56 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
{
"name": "Lapidix-Dev-Blog",
"version": "2.0.2",
"private": true,
"scripts": {
"start": "next dev",
"dev": "cross-env INIT_CWD=$PWD next dev",
"build": "cross-env NODE_OPTIONS='--experimental-json-modules --no-warnings' next build",
"sentry:upload": "sentry-cli releases set-commits \"$VERCEL_GIT_COMMIT_SHA\" --auto --ignore-missing || true",
"serve": "next start",
"analyze": "cross-env ANALYZE=true next build",
"lint": "next lint --fix --dir pages --dir app --dir components --dir lib --dir layouts --dir scripts"
},
"dependencies": {
"@next/bundle-analyzer": "14.2.5",
"@sentry/nextjs": "^8.33.1",
"@tailwindcss/forms": "^0.5.4",
"@tailwindcss/typography": "^0.5.9",
"@vercel/analytics": "^1.1.1",
"@vercel/kv": "^3.0.0",
"autoprefixer": "^10.4.13",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"contentlayer": "0.3.4",
"esbuild": "^0.21.5",
"github-slugger": "^1.4.0",
"gray-matter": "^4.0.2",
"image-size": "1.0.0",
"next": "14.2.35",
"next-contentlayer": "0.3.4",
"next-themes": "^0.2.1",
"pliny": "0.1.6",
"postcss": "^8.4.24",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"reading-time": "1.5.0",
"rehype-autolink-headings": "^6.1.0",
"rehype-citation": "^1.0.2",
"rehype-katex": "^6.0.3",
"rehype-preset-minify": "6.0.0",
"rehype-prism-plus": "^1.6.0",
"rehype-slug": "^5.1.0",
"remark": "^14.0.2",
"remark-gfm": "^3.0.1",
"remark-math": "^5.1.1",
"sharp": "^0.33.5",
"tailwind-merge": "^2.4.0",
"tailwindcss": "^3.3.3",
"unist-util-visit": "^4.1.0"
},
"devDependencies": {
"@sentry/cli": "^2.58.2",
"@svgr/webpack": "^8.0.1",
"@types/mdx": "^2.0.5",
"@types/react": "^18.3.3",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"eslint-config-next": "14.2.5",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.0",
"lint-staged": "^13.0.0",
"next-i18next": "^14.0.3",
"prettier": "^3.0.0",
"prettier-plugin-tailwindcss": "^0.4.1",
"react-rough-notation": "^1.0.5",
"twemoji": "^14.0.2",
"typed.js": "^2.0.16",
"typescript": "^5.5.4"
},
"resolutions": {
"kbar": "0.1.0-beta.44"
},
"lint-staged": {
"*.+(js|jsx|ts|tsx)": [
"eslint --fix"
],
"*.+(js|jsx|ts|tsx|json|css|md|mdx)": [
"prettier --write"
]
},
"packageManager": "yarn@3.6.1",
"engines": {
"node": ">=22.0.0"
}
}