* chore: lock all package versions to match yarn.lock This commit pins all dependency versions in package.json files to exact versions matching the yarn.lock file, removing ^ and ~ prefixes. Changes: - Locked 427 dependencies across 47 package.json files - Versions now match exactly what is resolved in yarn.lock - Ensures reproducible builds and prevents unexpected version drift This change improves build reproducibility by ensuring that the versions specified in package.json files match exactly what yarn.lock resolves to. Co-Authored-By: Volnei Munhoz <volnei.munhoz@gmail.com> * fix: add undeclared dependencies to trpc, ui, and platform-types packages - @calcom/trpc: add cookie, uuid and their type definitions - @calcom/ui: add Lexical packages, Radix UI components, classnames, sonner, react-easy-crop, zod - @calcom/platform-types: add @nestjs/common, @nestjs/swagger, libphonenumber-js, luxon, zod These dependencies were being used in the code but not declared in package.json, relying on hoisting from other packages. Co-Authored-By: Volnei Munhoz <volnei.munhoz@gmail.com> * chore: update yarn.lock after adding undeclared dependencies Co-Authored-By: Volnei Munhoz <volnei.munhoz@gmail.com> * fix: upgrade Prisma versions in example apps and pin remaining @types/node - Upgraded @prisma/client to 6.16.1 in example apps to match main app - Pinned @types/node to 20.17.23 in atoms, libraries, and example apps - Pinned @types/react to 18.0.26 and @types/react-dom to 18.2.6 in example apps Addresses PR review comments about Prisma version mismatch and unpinned @types/node Co-Authored-By: Volnei Munhoz <volnei.munhoz@gmail.com> * chore: remove unused and misplaced dependencies Removed unused dependencies: - @calcom/web: mime-types, posthog-node, react-date-picker, react-multi-email, react-phone-number-input, recoil, @vercel/edge-functions-ui, lottie-react, jotai - @calcom/features: @lexical/react, lexical, akismet-api, stripe-event-types Removed misplaced dependencies from @calcom/web (already in @calcom/ui): - @radix-ui/react-avatar, @radix-ui/react-dialog, @radix-ui/react-dropdown-menu - @radix-ui/react-hover-card, @radix-ui/react-id, @radix-ui/react-popover - @radix-ui/react-slider, @radix-ui/react-switch, @radix-ui/react-toggle-group - react-colorful Co-Authored-By: Volnei Munhoz <volnei.munhoz@gmail.com> * fix: add back jotai and react-phone-number-input dependencies These dependencies were incorrectly removed in the previous commit: - jotai: Required as peer dependency by @daily-co/daily-react - react-phone-number-input: CSS imported in WorkflowStepContainer.tsx Co-Authored-By: Volnei Munhoz <volnei.munhoz@gmail.com> * chore: update yarn.lock after Prisma version upgrade Updates yarn.lock to reflect: - @prisma/client upgraded from 6.7.0 to 6.16.1 in example apps - Removed unused @prisma/client@6.7.0 resolution Co-Authored-By: Volnei Munhoz <volnei.munhoz@gmail.com> * fix: align dependency versions per PR review feedback - @nestjs/common: 10.0.0 -> 10.3.3 in platform-types (match api-v2) - cookie: ^0.7.0 -> 0.7.0 in trpc (pin exact version) - uuid: ^8.3.2 -> 8.3.2 in trpc (pin exact version) - @types/cookie: ^0.6.0 -> 0.6.0 in trpc (pin exact version) - @types/uuid: ^8.3.4 -> 8.3.4 in trpc (pin exact version) Co-Authored-By: Volnei Munhoz <volnei.munhoz@gmail.com> * refactor: move root dependencies to proper packages - Remove all dependencies from root package.json (they were misplaced) - Add @evyweb/ioctopus, city-timezones, date-fns-tz, p-limit to @calcom/features - @daily-co/daily-js already exists in @calcom/web - @vercel/functions already exists in @calcom/features - date-fns already exists in @calcom/ui Co-Authored-By: Volnei Munhoz <volnei.munhoz@gmail.com> --------- Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
50 lines
1.3 KiB
JSON
50 lines
1.3 KiB
JSON
{
|
|
"name": "@calcom/features",
|
|
"sideEffects": false,
|
|
"private": true,
|
|
"description": "Cal.com's main collocation of features",
|
|
"authors": "Cal.com, Inc.",
|
|
"version": "1.0.0",
|
|
"main": "index.ts",
|
|
"scripts": {
|
|
"lint": "eslint .",
|
|
"dev:trigger": "npx trigger.dev@latest dev --analyze",
|
|
"deploy:trigger": "npx trigger.dev@latest deploy"
|
|
},
|
|
"dependencies": {
|
|
"@calcom/atoms": "workspace:*",
|
|
"@calcom/dayjs": "workspace:*",
|
|
"@calcom/lib": "workspace:*",
|
|
"@calcom/trpc": "workspace:*",
|
|
"@calcom/ui": "workspace:*",
|
|
"@evyweb/ioctopus": "1.2.0",
|
|
"@tanstack/react-table": "8.20.6",
|
|
"@tanstack/react-virtual": "3.10.9",
|
|
"@trigger.dev/sdk": "4.1.2",
|
|
"@vercel/functions": "1.4.0",
|
|
"city-timezones": "1.2.1",
|
|
"class-variance-authority": "0.7.1",
|
|
"date-fns-tz": "3.2.0",
|
|
"framer-motion": "10.12.8",
|
|
"p-limit": "6.2.0",
|
|
"react-select": "5.8.0",
|
|
"react-sticky-box": "2.0.4",
|
|
"recharts": "3.0.2",
|
|
"stripe-event-types": "3.1.0",
|
|
"web-push": "3.6.7",
|
|
"zustand": "4.5.2"
|
|
},
|
|
"peerDependencies": {
|
|
"react": "18.2.0",
|
|
"react-dom": "18.2.0",
|
|
"react-is": "^18.2.0",
|
|
"stripe": "^9.0.0 || ^15.0.0",
|
|
"zod": "^3.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@testing-library/react-hooks": "8.0.1",
|
|
"@types/web-push": "3.6.3",
|
|
"trigger.dev": "4.1.0"
|
|
}
|
|
}
|