Files
GMW/services/frontend/package.json
T
asepharyana 611ba39973 refactor: replace GSAP animations with CSS animations across components
- Updated RootLayout to include a noise overlay class.
- Refactored LiveModerationFeed to use CSS animations for item entry.
- Simplified AmbientCanvas by removing WebGL and using pure CSS for ambient effects.
- Converted Chatbot to use CSS for floating window animations.
- Updated Card component to include a gradient border.
- Refactored PageTransition to use CSS for fade-scale animations.
- Enhanced SectionHeader with reveal-up animation class.
- Replaced GSAP animations in NavRail with CSS animations for item entry.
- Refactored VoiceStage to use CSS for speaker node animations and pulse rings.
- Removed GSAP dependencies from use-gsap-animation hook, implementing CSS-based stagger reveal.
2026-08-26 19:43:57 +07:00

37 lines
855 B
JSON

{
"name": "frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "biome check",
"format": "biome format --write"
},
"dependencies": {
"@orpc/client": "1.15.0",
"clsx": "^2.1.1",
"lucide-react": "^1.33.0",
"next": "16.3.2",
"next-themes": "^0.4.6",
"partysocket": "1.3.0",
"react": "19.2.8",
"react-dom": "19.2.8",
"swr": "^2.5.1",
"tailwind-merge": "^3.6.0"
},
"devDependencies": {
"@biomejs/biome": "2.5.10",
"@tailwindcss/postcss": "^4",
"@types/node": "^26.2.0",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/three": "^0.185.4",
"babel-plugin-react-compiler": "1.0.0",
"puppeteer-core": "^25.8.0",
"tailwindcss": "^4",
"typescript": "^7"
}
}