npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

create-gmacko-app

v0.1.1

Published

Create a new Gmacko app with Next.js, Expo, tRPC, and more

Readme

create-gmacko-app

npm version License: MIT

Create a new Gmacko app with Next.js, Expo, tRPC, and more.

Quick Start

npx create-gmacko-app my-app

Description

create-gmacko-app is a CLI tool designed to bootstrap production-ready, full-stack applications with a modern tech stack. It sets up a monorepo using Turborepo and pnpm workspaces, integrating web and mobile platforms with a shared backend and seamless AI workflows.

CLI Options

| Option | Description | | :------------------------------- | :------------------------------------------------------------------------------------------------------------------ | | <app-name> | Name of the app to create | | --yes, -y | Accept all defaults without prompting | | --prune | Remove unused integration packages | | --no-install | Skip pnpm install | | --no-git | Skip git init | | --no-ai | Exclude AI workflow system | | --no-provision | Exclude provisioning script | | --web | Include Next.js web app (default: true) | | --no-web | Exclude Next.js web app | | --mobile | Include Expo mobile app (default: true) | | --no-mobile | Exclude Expo mobile app | | --tanstack-start | Include TanStack Start app | | --no-tanstack-start | Exclude TanStack Start app (default) | | --integrations <list> | Comma-separated list of integrations (sentry, posthog, stripe, revenuecat, notifications, email, realtime, storage) | | --email-provider <provider> | Email provider (resend, sendgrid) | | --realtime-provider <provider> | Realtime provider (pusher, ably) | | --storage-provider <provider> | Storage provider (uploadthing) | | --package-scope <scope> | Package scope (default: @gmacko) |

Example Usage

Recommended Setup (Default)

Includes Next.js, Expo, Sentry, and PostHog.

npx create-gmacko-app my-app

Core Minimal Setup

Only the bare essentials without additional integrations.

npx create-gmacko-app my-app --integrations ""

Full Featured Setup

Enable all integrations and extra apps.

npx create-gmacko-app my-app --tanstack-start --integrations sentry,posthog,stripe,revenuecat,notifications,email,realtime,storage

Web Only Setup

Skip the mobile app and AI features.

npx create-gmacko-app my-app --no-mobile --no-ai

Tech Stack

  • Monorepo Management: Turborepo + pnpm workspaces
  • Web Framework: Next.js 15
  • Mobile Framework: Expo SDK 54 / React Native 0.81
  • Optional Framework: TanStack Start
  • Type-safe API: tRPC v11 with OpenAPI support
  • Database Layer: Drizzle ORM + Neon Postgres
  • Authentication: Better-auth
  • Design System: Tailwind CSS v4 + shadcn/ui components

Optional Integrations

  • Monitoring: Sentry
  • Analytics: PostHog
  • Payments: Stripe (web)
  • Mobile Subscriptions: RevenueCat (mobile)
  • Communication: Push notifications (Expo) and Email (Resend/SendGrid)
  • Realtime Data: Pusher or Ably
  • File Storage: UploadThing

Repository

The source code is available on GitHub: https://github.com/gmackorg/create-gmacko-app

License

MIT