-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
85 lines (85 loc) · 2.62 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
{
"name": "blog",
"version": "1.0.0",
"scripts": {
"dev": "next dev",
"test": "npx vitest",
"build": "next build",
"postbuild": "next-sitemap",
"start": "next start",
"style:lint": "next lint",
"style:prettier": "prettier --check '**/*.{js,jsx,ts,tsx}'",
"style:all": "pnpm run style:lint && pnpm run style:prettier",
"format": "prettier --write '**/*.{js,jsx,ts,tsx}'",
"storybook": "storybook dev -p 6006",
"build-storybook": "npx contentlayer build && storybook build"
},
"dependencies": {
"@giscus/react": "^2.2.8",
"@vercel/analytics": "^1.0.0",
"@vercel/og": "^0.5.3",
"clsx": "^1.2.1",
"contentlayer": "^0.3.1",
"date-fns": "^2.29.3",
"eslint": "8.39.0",
"eslint-config-next": "13.3.1",
"grapheme-splitter": "^1.0.4",
"hastscript": "^7.2.0",
"lucide-react": "^0.176.0",
"next": "13.3.1",
"next-contentlayer": "^0.3.1",
"next-sitemap": "^4.0.7",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-tooltip": "5.11.1",
"react-typist-component": "^1.0.5",
"react-wrap-balancer": "^0.4.0",
"rehype-autolink-headings": "^6.1.1",
"rehype-pretty-code": "^0.9.5",
"rehype-slug": "^5.1.0",
"remark-gfm": "^3.0.1",
"shiki": "^0.14.1",
"tailwind-merge": "^1.12.0",
"unified": "^10.1.2",
"vitest": "^0.30.1",
"zustand": "^4.3.7"
},
"devDependencies": {
"@babel/core": "^7.21.4",
"@ianvs/prettier-plugin-sort-imports": "^3.7.2",
"@next/env": "^13.3.1",
"@storybook/addon-essentials": "^7.0.6",
"@storybook/addon-interactions": "^7.0.6",
"@storybook/addon-links": "^7.0.6",
"@storybook/addons": "^7.0.6",
"@storybook/api": "^7.0.6",
"@storybook/blocks": "^7.0.6",
"@storybook/components": "^7.0.6",
"@storybook/core-events": "^7.0.6",
"@storybook/nextjs": "^7.0.6",
"@storybook/react": "^7.0.6",
"@storybook/testing-library": "^0.1.0",
"@storybook/theming": "^7.0.6",
"@storybook/types": "^7.0.6",
"@tailwindcss/typography": "^0.5.9",
"@types/node": "18.16.0",
"@types/react": "18.0.38",
"@types/react-dom": "18.0.11",
"autoprefixer": "^10.4.14",
"css-loader": "^6.7.3",
"eslint-plugin-storybook": "^0.6.11",
"eslint-plugin-tailwindcss": "^3.11.0",
"postcss": "^8.4.23",
"postcss-loader": "^7.2.4",
"prettier": "2.8.8",
"prettier-plugin-tailwindcss": "^0.2.7",
"prop-types": "^15.8.1",
"storybook": "^7.0.6",
"storybook-tailwind-dark-mode": "^1.0.22",
"style-loader": "^3.3.2",
"tailwindcss": "^3.3.1",
"ts-node": "^10.9.1",
"typescript": "^5.0.4",
"webpack": "^5.80.0"
}
}