Files
fivedevs.com/new-site/package.json
Chris Smith 3b5cd5d58d add vercel analytics to new-site/
Wires @vercel/analytics into the root layout. Free tier on Hobby
plan covers the first ~2,500 events/mo. No cookie banner needed.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-04-30 12:28:12 +02:00

35 lines
784 B
JSON

{
"name": "new-site",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint"
},
"dependencies": {
"@mdx-js/loader": "^3.1.1",
"@mdx-js/react": "^3.1.1",
"@next/mdx": "^16.2.4",
"@types/mdx": "^2.0.13",
"@vercel/analytics": "^2.0.1",
"gray-matter": "^4.0.3",
"next": "16.2.4",
"react": "19.2.4",
"react-dom": "19.2.4",
"remark-gfm": "^4.0.1"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@tailwindcss/typography": "^0.5.19",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "16.2.4",
"tailwindcss": "^4",
"typescript": "^5"
}
}