generated from stevenrugg/next-starter-blog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.93 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "next-starter-blog",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -p 4000",
"build": "next build",
"start": "next start",
"lint": "next lint --config ./.eslintrc.js",
"postinstall": "husky install",
"postbuild": "next-sitemap --config next-sitemap.js",
"format": "yarn prettier --config ./.prettierrc.js --write ."
},
"dependencies": {
"@heroicons/react": "^1.0.6",
"@tailwindcss/typography": "^0.5.2",
"animate.css": "^4.1.1",
"clsx": "^1.1.1",
"daisyui": "^4.12.10",
"framer-motion": "^6.3.0",
"gray-matter": "^4.0.3",
"hugeicons-react": "^0.3.0",
"jotai": "^1.6.4",
"mdx-prism": "^0.3.4",
"next": "^14.2.15",
"next-mdx-remote": "^4.0.3",
"next-seo": "^5.4.0",
"next-themes": "^0.1.1",
"prism-themes": "^1.9.0",
"react": "^18.0.0",
"react-bootstrap": "^2.10.5",
"react-dom": "^18.0.0",
"react-tippy": "^1.4.0",
"tailwind": "^4.0.0"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/node": "^17.0.45",
"@types/react": "^18.0.1",
"@types/react-dom": "^18.0.0",
"@types/tailwindcss": "^3.0.11",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"autoprefixer": "^10.4.4",
"cz-conventional-changelog": "3.3.0",
"eslint": "8.13.0",
"eslint-config-next": "12.1.4",
"eslint-config-prettier": "^8.5.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.7",
"next-sitemap": "^2.5.20",
"postcss": "^8.4.12",
"prettier": "^2.6.2",
"react-type-animation": "^3.2.0",
"tailwind-merge": "^1.3.0",
"tailwindcss": "^3.0.23",
"typescript": "^5.6.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"yarn format"
],
"*.{css,scss,md,html,json}": [
"yarn format"
]
}
}