UNPKG

initgen

Version:

A beautiful, interactive CLI tool to scaffold modern web and backend projects with React, Next.js, Vue, Node.js, Python Flask/Django, shadcn/ui and more. Zero configuration, production-ready projects in seconds with Tailwind CSS v4!

61 lines (60 loc) 1.64 kB
export const stackCommands = { 'react-vite': { command: null, // Will be set dynamically based on TS choice name: 'React (Vite)', needsInstall: false, // We install automatically }, 'vite-tailwind': { command: null, // Will be set dynamically based on TS choice name: 'Vite + React + Tailwind v4', needsInstall: false, // We install everything during setup setupTailwind: true, }, 'vite-shadcn': { command: null, // Will be set dynamically based on TS choice name: 'Vite + React + Tailwind + shadcn/ui', needsInstall: false, // We install everything during setup setupTailwind: true, setupShadcn: true, }, nextjs: { command: null, // Will be set dynamically based on TS choice name: 'Next.js', needsInstall: false, }, 'nextjs-shadcn': { command: null, // Will be set dynamically based on TS choice name: 'Next.js + shadcn/ui', needsInstall: false, setupShadcn: true, }, vue: { command: null, // Will be set dynamically based on TS choice name: 'Vue (Vite)', needsInstall: false, }, 'node-express': { name: 'Node.js + Express', manual: true, }, 'node-prisma': { name: 'Node.js + Express + Prisma (PostgreSQL)', manual: true, }, 'node-drizzle': { name: 'Node.js + Express + Drizzle (PostgreSQL)', manual: true, }, 'python-flask': { name: 'Python + Flask', manual: true, }, 'python-fastapi': { name: 'Python + FastAPI', manual: true, }, 'python-django': { name: 'Python + Django', manual: true, }, };