A platform for managing MOAs and other similar agreements.
npm run devnpm run specThis project uses Prettier to maintain a consistent code style.
Format all files in the codebase:
npm run formatCheck for formatting issues without changing files:
npm run format:checkIf you’re using VS Code:
- Install the Prettier - Code formatter extension.
- Open your settings.json (Command Palette → "Preferences: Open Settings (JSON)") and add:
{
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true
}
- Save any file — it will be automatically formatted.
Note: Build output folders and dependencies (like .next and node_modules) are ignored via .prettierignore.