-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
executable file
·54 lines (54 loc) · 1.37 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
{
"name": "nextjs-blog",
"version": "0.1.0",
"engines": {
"node": ">=v22.11.0"
},
"packageManager": "[email protected]",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write ."
},
"dependencies": {
"@mdx-js/mdx": "^3.1.0",
"@stefanprobst/remark-extract-toc": "^2.2.0",
"@types/node": "22.8.6",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"github-slugger": "^2.0.0",
"glob": "^11.0.0",
"next": "15.0.2",
"next-intl": "^3.26.3",
"next-language-detector": "^1.1.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"rehype-github-alerts": "^3.0.0",
"rehype-slug": "^6.0.0",
"remark-breaks": "^4.0.0",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.0",
"remark-mdx-frontmatter": "^5.0.0",
"typescript": "5.6.3"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@tailwindcss/typography": "^0.5.8",
"@trivago/prettier-plugin-sort-imports": "^5.2.1",
"autoprefixer": "^10.4.20",
"eslint": "^9.18.0",
"eslint-config-next": "^15.1.5",
"postcss": "^8.4.47",
"prettier-plugin-tailwindcss": "^0.6.10",
"tailwindcss": "^3.4.14"
},
"prettier": {
"plugins": [
"@trivago/prettier-plugin-sort-imports",
"prettier-plugin-tailwindcss"
]
}
}