-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) Β· 2.2 KB
/
package.json
File metadata and controls
76 lines (76 loc) Β· 2.2 KB
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
{
"$schema": "https://json.schemastore.org/package.json",
"name": "dev-blog",
"version": "1.0.0",
"private": true,
"type": "module",
"license": "MIT",
"engines": {
"node": ">=22.0.0",
"pnpm": ">=10.0.0"
},
"packageManager": "pnpm@10.30.3",
"scripts": {
"dev": "pnpm copy:images && next dev -p 3036",
"build": "pnpm copy:images && next build",
"start": "next start",
"lint": "eslint",
"lint:fix": "eslint --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"type:check": "tsc --noEmit -p ./tsconfig.json",
"copy:images": "node scripts/copy-content-images.mjs",
"install:vercel": "bash ./scripts/vercel-submodule-workaround.sh && pnpm install",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@giscus/react": "^3.1.0",
"@vercel/analytics": "^1.6.1",
"@vercel/kv": "^3.0.0",
"@vercel/speed-insights": "^1.3.1",
"clsx": "^2.1.1",
"framer-motion": "^12.23.26",
"fuse.js": "^7.1.0",
"gray-matter": "^4.0.3",
"next": "^16.0.10",
"next-mdx-remote": "^6.0.0",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"remark-breaks": "^4.0.0",
"remark-gfm": "^4.0.1",
"sharp": "^0.34.5",
"shiki": "^3.20.0",
"tailwind-merge": "^3.4.0",
"tailwind-variants": "^3.2.2",
"yet-another-react-lightbox": "^3.27.0",
"zod": "^4.2.0"
},
"devDependencies": {
"@chromatic-com/storybook": "^4.1.3",
"@next/eslint-plugin-next": "^16.0.10",
"@storybook/addon-a11y": "^10.1.9",
"@storybook/addon-docs": "^10.1.9",
"@storybook/addon-onboarding": "^10.1.9",
"@storybook/nextjs-vite": "^10.1.9",
"@svgr/webpack": "^8.1.0",
"@tailwindcss/postcss": "^4.1.18",
"@types/node": "^24.10.4",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"eslint": "^9.39.2",
"eslint-config-next": "^16.1.6",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-storybook": "^10.1.9",
"lefthook": "^2.0.12",
"prettier": "^3.7.4",
"prettier-plugin-tailwindcss": "^0.7.2",
"storybook": "^10.1.9",
"tailwindcss": "^4.1.18",
"typescript": "^5.9.3",
"typescript-eslint": "^8.49.0"
}
}