2025-11-28 14:59:49 +00:00
|
|
|
{
|
|
|
|
|
"name": "@data-peek/web",
|
2026-04-10 10:34:53 +00:00
|
|
|
"version": "0.19.1",
|
2025-11-28 14:59:49 +00:00
|
|
|
"private": true,
|
|
|
|
|
"scripts": {
|
|
|
|
|
"dev": "next dev --turbopack",
|
|
|
|
|
"build": "next build",
|
|
|
|
|
"start": "next start",
|
|
|
|
|
"lint": "eslint .",
|
|
|
|
|
"typecheck": "tsc --noEmit",
|
|
|
|
|
"db:generate": "drizzle-kit generate",
|
|
|
|
|
"db:migrate": "drizzle-kit migrate",
|
|
|
|
|
"db:push": "drizzle-kit push",
|
2025-12-05 03:29:01 +00:00
|
|
|
"db:studio": "drizzle-kit studio",
|
2025-12-11 14:47:41 +00:00
|
|
|
"admin:grant-license": "tsx scripts/grant-license.ts",
|
|
|
|
|
"admin:grant-educator": "tsx scripts/grant-educator-license.ts"
|
2025-11-28 14:59:49 +00:00
|
|
|
},
|
|
|
|
|
"dependencies": {
|
|
|
|
|
"@clerk/nextjs": "^6.35.5",
|
|
|
|
|
"@radix-ui/react-slot": "^1.2.4",
|
2026-04-07 05:17:17 +00:00
|
|
|
"@sentry/nextjs": "^10.47.0",
|
2026-04-02 09:04:27 +00:00
|
|
|
"@vercel/analytics": "^2.0.1",
|
2025-11-28 14:59:49 +00:00
|
|
|
"class-variance-authority": "^0.7.1",
|
|
|
|
|
"clsx": "^2.1.1",
|
2025-12-03 11:14:38 +00:00
|
|
|
"dodopayments": "^2.6.1",
|
2025-12-06 08:02:17 +00:00
|
|
|
"dotenv": "^16.4.7",
|
2025-11-28 14:59:49 +00:00
|
|
|
"drizzle-orm": "^0.44.7",
|
feat: overhauled marketing website and documentation with high-end animations (#150)
* feat: revamped marketing website and documentation with high-end animations and glassmorphism
- Redesigned marketing site (apps/web) with a terminal-inspired, professional aesthetic.
- Implemented Hero v2 with cinematic, spring-based animations matching the release video.
- Added interactive Pokemon Buddy draggable widget inspired by the desktop app.
- Integrated react-scan for performance auditing.
- Applied consistent glassmorphism, border-flow animations, and Geist Mono typography.
- Revamped Databases, Blog, Comparison, and Download pages for visual consistency.
- Updated documentation (apps/docs) landing page with matching motion choreography and living background.
- Fixed fs module resolution issues in the web app and optimized build stability for React 19.
* chore(docs): remove internal marketing playbook and tracker files
Remove Reddit playbook and analytics tracker docs from the public documentation set, and update marketing navigation to keep the docs section consistent.
Made-with: Cursor
* fix: address review feedback for marketing overhaul
- Extract download page metadata into layout.tsx (SEO regression fix)
- Move react-scan to devDependencies, dynamic import to avoid prod bundle
- Soften unverified '10,000+ developers' claim in CTA
- Restore StructuredData for FAQ rich snippets
- Restore close-on-scroll for mobile menu in header
- Remove `as any` spreads from motion.div — use className directly
- Gate Pokemon buddy behind NEXT_PUBLIC_ENABLE_POKEMON_BUDDY flag
- Fix mood interval priority inversion (excited was unreachable)
* chore: add lock file
* feat: add framer-motion animations to docs pages
---------
Co-authored-by: pullfrog[bot] <226033991+pullfrog[bot]@users.noreply.github.com>
2026-04-07 12:19:02 +00:00
|
|
|
"framer-motion": "12.38.0",
|
2025-12-16 07:48:53 +00:00
|
|
|
"gray-matter": "^4.0.3",
|
2025-11-28 14:59:49 +00:00
|
|
|
"lucide-react": "^0.555.0",
|
feat: overhauled marketing website and documentation with high-end animations (#150)
* feat: revamped marketing website and documentation with high-end animations and glassmorphism
- Redesigned marketing site (apps/web) with a terminal-inspired, professional aesthetic.
- Implemented Hero v2 with cinematic, spring-based animations matching the release video.
- Added interactive Pokemon Buddy draggable widget inspired by the desktop app.
- Integrated react-scan for performance auditing.
- Applied consistent glassmorphism, border-flow animations, and Geist Mono typography.
- Revamped Databases, Blog, Comparison, and Download pages for visual consistency.
- Updated documentation (apps/docs) landing page with matching motion choreography and living background.
- Fixed fs module resolution issues in the web app and optimized build stability for React 19.
* chore(docs): remove internal marketing playbook and tracker files
Remove Reddit playbook and analytics tracker docs from the public documentation set, and update marketing navigation to keep the docs section consistent.
Made-with: Cursor
* fix: address review feedback for marketing overhaul
- Extract download page metadata into layout.tsx (SEO regression fix)
- Move react-scan to devDependencies, dynamic import to avoid prod bundle
- Soften unverified '10,000+ developers' claim in CTA
- Restore StructuredData for FAQ rich snippets
- Restore close-on-scroll for mobile menu in header
- Remove `as any` spreads from motion.div — use className directly
- Gate Pokemon buddy behind NEXT_PUBLIC_ENABLE_POKEMON_BUDDY flag
- Fix mood interval priority inversion (excited was unreachable)
* chore: add lock file
* feat: add framer-motion animations to docs pages
---------
Co-authored-by: pullfrog[bot] <226033991+pullfrog[bot]@users.noreply.github.com>
2026-04-07 12:19:02 +00:00
|
|
|
"motion-dom": "^12.38.0",
|
|
|
|
|
"motion-utils": "^12.36.0",
|
2025-12-06 08:02:17 +00:00
|
|
|
"next": "16.0.7",
|
2026-03-07 05:26:01 +00:00
|
|
|
"next-mdx-remote": "^6.0.0",
|
2025-11-28 14:59:49 +00:00
|
|
|
"postgres": "^3.4.7",
|
|
|
|
|
"react": "19.2.0",
|
|
|
|
|
"react-dom": "19.2.0",
|
2025-12-16 07:48:53 +00:00
|
|
|
"reading-time": "^1.5.0",
|
2025-12-16 08:22:56 +00:00
|
|
|
"rehype-pretty-code": "^0.14.1",
|
2025-12-19 11:16:05 +00:00
|
|
|
"remark-gfm": "^4.0.1",
|
2025-11-28 14:59:49 +00:00
|
|
|
"resend": "^6.5.2",
|
2025-12-16 08:22:56 +00:00
|
|
|
"shiki": "^3.20.0",
|
2025-12-24 14:21:10 +00:00
|
|
|
"tailwind-merge": "^3.4.0",
|
|
|
|
|
"uuid": "^11.1.0"
|
2025-11-28 14:59:49 +00:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
|
|
|
|
"@tailwindcss/postcss": "^4",
|
2025-12-16 07:48:53 +00:00
|
|
|
"@types/mdx": "^2.0.13",
|
2025-11-28 14:59:49 +00:00
|
|
|
"@types/node": "^20.19.25",
|
|
|
|
|
"@types/react": "^19",
|
|
|
|
|
"@types/react-dom": "^19",
|
|
|
|
|
"drizzle-kit": "^0.31.7",
|
|
|
|
|
"eslint": "^9",
|
|
|
|
|
"eslint-config-next": "16.0.5",
|
feat: overhauled marketing website and documentation with high-end animations (#150)
* feat: revamped marketing website and documentation with high-end animations and glassmorphism
- Redesigned marketing site (apps/web) with a terminal-inspired, professional aesthetic.
- Implemented Hero v2 with cinematic, spring-based animations matching the release video.
- Added interactive Pokemon Buddy draggable widget inspired by the desktop app.
- Integrated react-scan for performance auditing.
- Applied consistent glassmorphism, border-flow animations, and Geist Mono typography.
- Revamped Databases, Blog, Comparison, and Download pages for visual consistency.
- Updated documentation (apps/docs) landing page with matching motion choreography and living background.
- Fixed fs module resolution issues in the web app and optimized build stability for React 19.
* chore(docs): remove internal marketing playbook and tracker files
Remove Reddit playbook and analytics tracker docs from the public documentation set, and update marketing navigation to keep the docs section consistent.
Made-with: Cursor
* fix: address review feedback for marketing overhaul
- Extract download page metadata into layout.tsx (SEO regression fix)
- Move react-scan to devDependencies, dynamic import to avoid prod bundle
- Soften unverified '10,000+ developers' claim in CTA
- Restore StructuredData for FAQ rich snippets
- Restore close-on-scroll for mobile menu in header
- Remove `as any` spreads from motion.div — use className directly
- Gate Pokemon buddy behind NEXT_PUBLIC_ENABLE_POKEMON_BUDDY flag
- Fix mood interval priority inversion (excited was unreachable)
* chore: add lock file
* feat: add framer-motion animations to docs pages
---------
Co-authored-by: pullfrog[bot] <226033991+pullfrog[bot]@users.noreply.github.com>
2026-04-07 12:19:02 +00:00
|
|
|
"react-scan": "^0.5.3",
|
2025-11-28 14:59:49 +00:00
|
|
|
"tailwindcss": "^4",
|
2025-12-06 08:02:17 +00:00
|
|
|
"tsx": "^4.19.4",
|
2025-11-28 14:59:49 +00:00
|
|
|
"typescript": "^5"
|
|
|
|
|
}
|
|
|
|
|
}
|