Files
CapaKraken/package.json
T
Hartmut ae92923c28 feat: Sprint 1 — Alive Enterprise animation foundation
Animation primitives (6 new components):
- AnimatedNumber: count-up with easeOutExpo, de-DE locale formatting
- ShimmerSkeleton: diagonal gradient sweep replacing animate-pulse
- FadeIn: framer-motion viewport-triggered fade + slide
- StaggerList/StaggerItem: staggered children entrance
- Sparkline: pure SVG inline trend chart with draw-in animation
- ProgressRing: animated circular progress with CSS transitions

Sidebar & page transitions:
- Sliding nav indicator (framer-motion layoutId animation)
- Icon frame hover glow (brand-color shadow)
- Smooth section collapse/expand (AnimatePresence height animation)
- PageTransition wrapper (fade-up on route change)
- AnimatedModal component (scale + fade with custom bezier)
- Notification badge bounce on count increase

Dashboard animations:
- StatCards: AnimatedNumber count-up + staggered FadeIn + budget color tinting
- WidgetContainer: fade-slide-up on mount
- Chargeability: animated percentages + inline utilization bars
- ProjectTable/MyProjects: animated numbers + staggered row entrance

Shimmer skeletons & table animations:
- Replaced animate-pulse across 20+ loading states with shimmer gradient
- Staggered row entrance (fadeSlideIn) on Resources, Projects, Allocations tables
- hover-lift utility class for subtle card/row elevation on hover
- Content-shaped skeletons (avatars, text bars, badges)

Light mode surface depth:
- Mesh gradient page background (subtle accent-tinted corners)
- Enhanced card shadows (two-layer depth)
- Sidebar glassmorphism upgrade (bg-white/60, backdrop-blur-2xl, saturate-150)
- Toolbar sticky backdrop blur
- Enhanced focus ring with brand-color glow

Co-Authored-By: claude-flow <ruv@ruv.net>
2026-03-19 00:48:55 +01:00

38 lines
1.1 KiB
JSON

{
"name": "planarchy",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "turbo dev",
"build": "turbo build",
"lint": "turbo lint",
"test": "turbo test",
"test:unit": "turbo test:unit",
"test:e2e": "turbo test:e2e",
"db:push": "pnpm --filter @planarchy/db db:push",
"db:migrate": "pnpm --filter @planarchy/db db:migrate",
"db:seed": "pnpm --filter @planarchy/db db:seed",
"db:studio": "pnpm --filter @planarchy/db db:studio",
"db:reset:dispo": "pnpm --filter @planarchy/db db:reset:dispo",
"db:import:dispo": "pnpm --filter @planarchy/db db:import:dispo",
"db:readiness:demand-assignment": "pnpm --filter @planarchy/db db:readiness:demand-assignment",
"format": "prettier --write \"**/*.{ts,tsx,md,json}\"",
"typecheck": "turbo typecheck"
},
"devDependencies": {
"@planarchy/eslint-config": "workspace:*",
"@planarchy/tsconfig": "workspace:*",
"prettier": "^3.3.3",
"turbo": "^2.3.3",
"typescript": "^5.6.3"
},
"engines": {
"node": ">=20.0.0",
"pnpm": ">=9.0.0"
},
"packageManager": "pnpm@9.14.2",
"dependencies": {
"framer-motion": "^12.38.0"
}
}