This repo uses turborepo as monorepo manager and pnpm as a package manager. It includes the following packages/apps:
-
home
: a Next.js app that contains Storyflow's landing pages. -
app
: another Next.js app that contains Storyflow's dashboard and widget integration. -
studio
: another Next.js app that contains canvas based WYSIWYG editor. -
storyflow-widget
: a Typescript library that contains Storyflow's widget code. -
eslint-config-custom
:eslint
configurations (includeseslint-config-next
andeslint-config-prettier
) -
tsconfig
:tsconfig.json
s used throughout the monorepo
Each package/app is 100% TypeScript.
This turborepo has some additional tools already setup for you:
- TypeScript for static type checking
- ESLint for code linting
- Prettier for code formatting
To build all apps and packages, run the following command:
cd storyflow
pnpm run build
To develop all apps and packages, run the following command:
cd storyflow
pnpm run dev