- Implemented FormStep component for user input (name, email, address). - Created OtpStep component for OTP verification. - Developed SuccessStep component to display success messages based on account creation. - Introduced eligibility-check.store for managing state throughout the eligibility check process. - Added commitlint configuration for standardized commit messages. - Configured knip for workspace management and project structure.
19 lines
441 B
JSON
19 lines
441 B
JSON
{
|
|
"workspaces": {
|
|
"apps/portal": {
|
|
"entry": ["src/app/**/page.tsx", "src/app/**/layout.tsx", "src/app/**/route.ts"],
|
|
"project": ["src/**/*.{ts,tsx}"]
|
|
},
|
|
"apps/bff": {
|
|
"entry": ["src/main.ts"],
|
|
"project": ["src/**/*.ts"]
|
|
},
|
|
"packages/domain": {
|
|
"entry": ["*/index.ts"],
|
|
"project": ["**/*.ts"]
|
|
}
|
|
},
|
|
"ignore": ["**/dist/**", "**/*.d.ts"],
|
|
"ignoreDependencies": ["@types/*"]
|
|
}
|