-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.43 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.43 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
{
"name": "francescoronel.com",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"export:webflow": "npx tsx scripts/export-webflow.ts",
"import:wordpress": "npx tsx scripts/import-wordpress.ts",
"migrate:images": "npx tsx scripts/migrate-images.ts",
"postbuild": "npx pagefind --site .next/server/app --output-path public/pagefind",
"lighthouse": "npx @lhci/cli autorun",
"lighthouse:local": "npx lighthouse http://localhost:3000 --output html --output-path ./lighthouse-report.html --chrome-flags='--headless=new'",
"audit:a11y": "npx pa11y-ci --config .pa11yci.json",
"audit:full": "npx unlighthouse --site http://localhost:3000",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"test:storybook": "vitest --project storybook --run",
"chromatic": "chromatic --exit-zero-on-changes",
"lint:md": "markdownlint-cli2 \"content/posts/**/*.mdx\""
},
"dependencies": {
"@tailwindcss/typography": "^0.5.19",
"@vercel/analytics": "^1.6.1",
"@vercel/blob": "2.3.1",
"@vercel/speed-insights": "^1.3.1",
"clsx": "^2.1.1",
"gray-matter": "^4.0.3",
"next": "16.2.3",
"next-cloudinary": "^6.17.5",
"next-mdx-remote": "^6.0.0",
"next-themes": "^0.4.6",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-tweet": "3.3.0",
"reading-time": "^1.5.0",
"rehype-autolink-headings": "^7.1.0",
"rehype-pretty-code": "^0.14.1",
"rehype-slug": "^6.0.0",
"remark-gfm": "^4.0.1",
"simple-icons": "16.13.0"
},
"devDependencies": {
"@chromatic-com/storybook": "^4.1.3",
"@storybook/addon-a11y": "10.3.3",
"@storybook/addon-docs": "10.3.3",
"@storybook/addon-mcp": "0.4.2",
"@storybook/addon-vitest": "10.3.3",
"@storybook/react-vite": "10.3.3",
"@tailwindcss/postcss": "^4",
"@tailwindcss/vite": "^4.2.1",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitest/browser-playwright": "^4.0.18",
"@vitest/coverage-v8": "^4.0.18",
"chromatic": "15.3.0",
"eslint": "^9",
"eslint-config-next": "16.1.6",
"eslint-plugin-storybook": "10.3.3",
"markdownlint-cli2": "0.22.0",
"pagefind": "^1.4.0",
"playwright": "^1.58.2",
"storybook": "10.3.3",
"tailwindcss": "^4",
"tsx": "4.21.0",
"typescript": "^5",
"vitest": "^4.0.18"
}
}