- Introduced NumberField for price input and TextareaField for service description in the ServiceDataCard component. - Updated ServiceCard component to display the new description and price fields, enhancing service details visibility. - Added formatMoney utility for consistent currency formatting across the application. - Updated GraphQL fragments and types to include price and description fields for services.
26 lines
559 B
JSON
26 lines
559 B
JSON
{
|
|
"name": "@repo/utils",
|
|
"version": "0.0.0",
|
|
"license": "MIT",
|
|
"type": "module",
|
|
"scripts": {
|
|
"test:unit": "vitest"
|
|
},
|
|
"exports": {
|
|
"./datetime-format": "./src/datetime-format.ts",
|
|
"./customer": "./src/customer.ts",
|
|
"./money": "./src/money.ts"
|
|
},
|
|
"dependencies": {
|
|
"@repo/typescript-config": "workspace:*",
|
|
"dayjs": "catalog:",
|
|
"radashi": "catalog:",
|
|
"vite-tsconfig-paths": "catalog:",
|
|
"vitest": "catalog:",
|
|
"zod": "catalog:"
|
|
},
|
|
"devDependencies": {
|
|
"@repo/eslint-config": "workspace:*"
|
|
}
|
|
}
|