mirror of
https://github.com/warmbly/warmbly.git
synced 2026-08-24 00:00:36 +00:00
379d2e8bb7
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.
21 lines
423 B
JSON
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"
|
|
}
|
|
}
|