-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.77 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": "brian-blog",
"version": "1.0.0",
"scripts": {
"cz": "git cz",
"dev": "next dev",
"build": "next build",
"serve": "next start",
"analyze": "ANALYZE=true pnpm build",
"lint": "next lint",
"prepare": "is-ci || husky install",
"preinstall": "npx only-allow pnpm -y"
},
"dependencies": {
"@next/bundle-analyzer": "^12.3.1",
"feed": "^4.2.2",
"next": "12.3.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"rehype-highlight": "^6.0.0"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@mdx-js/loader": "^2.1.3",
"@mdx-js/mdx": "^2.1.3",
"@mdx-js/node-loader": "^2.1.3",
"@tailwindcss/typography": "^0.5.7",
"@types/mdx": "^2.0.2",
"@types/node": "18.8.2",
"@types/react": "18.0.21",
"@types/react-syntax-highlighter": "^15.5.5",
"autoprefixer": "^10.4.12",
"commitizen": "^4.2.5",
"cssnano": "^5.1.13",
"cz-conventional-changelog": "3.3.0",
"eslint": "8.24.0",
"eslint-config-next": "12.3.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-mdx": "^2.0.5",
"gray-matter": "^4.0.3",
"husky": "^8.0.0",
"install": "^0.13.0",
"is-ci": "^3.0.1",
"lint-staged": "^13.0.3",
"marked": "^4.1.1",
"next-mdx-remote": "^4.1.0",
"postcss": "^8.4.17",
"postcss-import": "^15.0.0",
"prettier": "^2.7.1",
"prettier-plugin-tailwindcss": "^0.1.13",
"rehype-katex": "^6.0.2",
"rehype-mathjax": "^4.0.2",
"remark-gfm": "^3.0.1",
"remark-math": "^5.1.1",
"string-width": "^5.1.2",
"tailwindcss": "^3.1.8",
"typescript": "4.8.4"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md,mdx}": [
"prettier --ignore-unknown --write"
]
}
}