export const ALLOWED_UNITS = [ 'cups', 'tbsp', 'tsp', 'oz', 'fl_oz', 'g', 'kg', 'ml', 'l', 'pieces', 'slices', 'cloves', 'pinch', 'whole', 'can', 'package', 'bunch' ] as const; export type AllowedUnit = typeof ALLOWED_UNITS[number]; export const BCRYPT_ROUNDS = 12; export const JWT_EXPIRES_IN = '24h'; export const PASSWORD_RESET_EXPIRES_HOURS = 1; export const ACCOUNT_DELETION_DAYS = 15; export const TOMBSTONE_RETENTION_DAYS = 30; export const MAX_RECIPE_SCALE = 3; export const MIN_RECIPE_SCALE = 1; export const DEFAULT_PAGE_LIMIT = 20; export const MAX_PAGE_LIMIT = 50;