-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
65 lines (65 loc) · 1.71 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
{
"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",
"clsx": "^1.1.1",
"framer-motion": "^6.3.0",
"gray-matter": "^4.0.3",
"jotai": "^1.6.4",
"mdx-prism": "^0.3.4",
"next": "12.1.4",
"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-dom": "18.0.0",
"react-tippy": "^1.4.0"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^3.2.0",
"@types/node": "17.0.23",
"@types/react": "18.0.1",
"@types/react-dom": "18.0.0",
"@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",
"tailwind-merge": "^1.3.0",
"tailwindcss": "^3.0.23",
"typescript": "4.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"
]
}
}