mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-12 07:43:10 +10:00
- Changed ESLint configuration to target TypeScript files and added parser options for better integration. - Updated various schemas across the application to replace `nestjs-zod/z` imports with `zod` for consistency. - Refactored password validation in authentication schemas to use `z.string()` instead of `z.password()`. - Enhanced date handling in user and resume schemas by introducing a new `dateSchema` utility. - Updated `.ncurc.json` to target minor upgrades for dependencies.
21 lines
436 B
JSON
21 lines
436 B
JSON
{
|
|
"name": "@reactive-resume/utils",
|
|
"version": "0.0.1",
|
|
"private": false,
|
|
"type": "commonjs",
|
|
"main": "./src/index.js",
|
|
"typings": "./src/index.d.ts",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"dependencies": {
|
|
"papaparse": "^5.4.1",
|
|
"dayjs": "^1.11.11",
|
|
"unique-names-generator": "^4.7.1",
|
|
"clsx": "^2.1.1",
|
|
"tailwind-merge": "^2.3.0",
|
|
"@swc/helpers": "~0.5.11",
|
|
"zod": "^3.24.1"
|
|
}
|
|
}
|