Files
warmbly/site/package.json
T
Matthew Meszaros 379d2e8bb7 feat: declare motion dependency for the marketing site
site/src/pages/index.astro imports { animate, inView, stagger } from
'motion' for its scroll/entrance animations, but the package was never
declared in site/package.json. astro build (Site CI) therefore failed to
resolve the import (Rollup: failed to resolve import "motion"). Add
motion@^12.34.0 (matching web/) and sync site/pnpm-lock.yaml so the
frozen-lockfile install + build pass.
2026-06-01 06:05:21 +02:00

21 lines
423 B
JSON

{
"name": "warmbly-site",
"type": "module",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro"
},
"dependencies": {
"@astrojs/sitemap": "^3.4.1",
"@fontsource/inter": "^5.2.6",
"@tailwindcss/vite": "^4.1.10",
"astro": "^5.9.3",
"motion": "^12.34.0",
"tailwindcss": "^4.1.10"
}
}