-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
93 lines (93 loc) · 2.72 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"private": true,
"scripts": {
"start": "PORT=3434 next-remote-watch ./data",
"dev": "PORT=3434 next dev",
"build": "next build && tsx ./scripts/generate-sitemap",
"serve": "PORT=3435 next start",
"analyze": "cross-env ANALYZE=true next build",
"lint": "next lint --fix --dir pages --dir components --dir lib --dir layouts --dir scripts --dir pages",
"prepare": "husky install",
"typecheck": "npx tsc -b",
"upgrade": "rimraf package-lock.json && npx taze major -w && ni"
},
"dependencies": {
"@octokit/graphql": "^7.0.0",
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/typography": "^0.5.9",
"@vercel/edge-config": "^0.4.1",
"autoprefixer": "^10.4.14",
"clsx": "^1.2.1",
"contentlayer": "^0.3.4",
"esbuild": "^0.18.11",
"github-slugger": "^2.0.0",
"gray-matter": "^4.0.3",
"image-size": "^1.0.2",
"isomorphic-unfetch": "^4.0.2",
"mdx-bundler": "^9.2.1",
"next": "^14.2.3",
"next-themes": "^0.2.1",
"postcss": "^8.4.25",
"postcss-loader": "^7.3.3",
"react": "^18.3.1",
"react-chartjs-2": "^5.2.0",
"react-dom": "^18.3.1",
"react-share": "^4.4.1",
"reading-time": "^1.5.0",
"rehype-autolink-headings": "^6.1.1",
"rehype-katex": "^6.0.3",
"rehype-preset-minify": "^6.0.0",
"rehype-prism-plus": "^1.6.1",
"rehype-slug": "^5.1.0",
"remark-gfm": "^3.0.1",
"remark-math": "^5.1.1",
"sharp": "^0.32.1",
"smoothscroll-polyfill": "^0.4.4",
"swr": "^2.2.0",
"tailwindcss": "^3.3.2",
"typed.js": "^2.0.132"
},
"devDependencies": {
"@commitlint/cli": "^17.6.6",
"@commitlint/config-conventional": "^17.6.6",
"@next/bundle-analyzer": "^13.4.9",
"@svgr/webpack": "^8.0.1",
"@types/react": "18.2.21",
"chart.js": "^4.4.0",
"cross-env": "^7.0.3",
"dedent": "^1.0.0",
"eslint": "^8.44.0",
"eslint-config-next": "^14.2.3",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^5.0.0-alpha.2",
"file-loader": "^6.2.0",
"globby": "^13.2.2",
"husky": "^8.0.3",
"inquirer": "^9.2.7",
"lint-staged": "^15.2.10",
"next-remote-watch": "^2.0.0",
"prettier": "^3.0.0",
"prettier-plugin-tailwindcss": "^0.3.0",
"rehype": "^12.0.1",
"remark-frontmatter": "^4.0.1",
"remark-parse": "^10.0.2",
"remark-stringify": "^10.0.3",
"tsx": "^4.7.1",
"typescript": "5.1.6",
"unified": "^10.1.2",
"unist-util-visit": "^5.0.0"
},
"lint-staged": {
"*.+(js|jsx|ts|tsx)": [
"eslint --fix"
],
"*.+(js|jsx|ts|tsx|json|css)": [
"prettier --write"
]
},
"optionalDependencies": {
"@esbuild/linux-x64": "^0.18.11",
"esbuild-linux-64": "^0.15.18"
}
}