initia-devaxis
Version:
CLI to create full-stack React projects with Next.js (REST) or RedwoodJS (GraphQL)
18 lines (17 loc) • 425 B
TypeScript
export interface ProjectConfig {
name: string;
framework: "Next.js" | "RedwoodJS";
typescript: boolean;
eslint: boolean;
prettier: boolean;
tailwind?: boolean;
packageManager?: "npm" | "yarn" | "pnpm";
}
export interface CreateProjectOptions {
name: string;
framework: "nextjs" | "redwood";
typescript?: boolean;
eslint?: boolean;
prettier?: boolean;
tailwind?: boolean;
}