* fix: lock package versions to exact versions from yarn.lock Replace version ranges (^, ~) with exact resolved versions from yarn.lock to ensure consistent dependency resolution across all environments. This change affects 26 package.json files with 89 version updates including: - TypeScript: ^5.9.0-beta -> 5.9.2 - Zod: ^3.22.4 -> 3.25.76 - React: ^18 -> 18.2.0 - Various Radix UI, Vite, PostCSS, and other dependencies Co-Authored-By: Volnei Munhoz <volnei.munhoz@gmail.com> * fix: preserve npm alias format for @radix-ui packages The previous commit incorrectly converted npm aliases like 'npm:@radix-ui/react-dialog@^1.0.4' to just '1.0.4', which broke yarn install as it tried to find non-existent packages. This fix restores the npm alias format while keeping the pinned versions: - @radix-ui/react-dialog-atoms: npm:@radix-ui/react-dialog@1.0.4 - @radix-ui/react-tooltip-atoms: npm:@radix-ui/react-tooltip@1.0.6 Co-Authored-By: Volnei Munhoz <volnei.munhoz@gmail.com> * refactor: move dev dependencies to devDependencies section Move 26 dependencies that are clearly development-only to the devDependencies section across 10 packages: - Testing: @types/jest, jest, ts-jest, @golevelup/ts-jest - Build tools: typescript, ts-node, concurrently, dotenv-cli - Linting: eslint-*, eslint-config-*, eslint-plugin-* - Types: @types/express, @types/turndown, @types/uuid This improves dependency organization and ensures production builds don't include unnecessary development dependencies. Co-Authored-By: Volnei Munhoz <volnei.munhoz@gmail.com> --------- Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Co-authored-by: Keith Williams <keithwillcode@gmail.com>
49 lines
1.5 KiB
JSON
49 lines
1.5 KiB
JSON
{
|
|
"name": "@calcom/api",
|
|
"version": "1.0.0",
|
|
"description": "Public API for Cal.com",
|
|
"main": "index.ts",
|
|
"repository": "git@github.com:calcom/api.git",
|
|
"author": "Cal.com Inc.",
|
|
"private": true,
|
|
"scripts": {
|
|
"build": "next build",
|
|
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf .next",
|
|
"dev": "PORT=3003 next dev",
|
|
"lint": "eslint .",
|
|
"lint:fix": "eslint . --ext .ts,.js,.tsx,.jsx --fix",
|
|
"start": "PORT=3003 next start",
|
|
"docker-start-api": "PORT=80 next start",
|
|
"type-check": "tsc --pretty --noEmit",
|
|
"type-check:ci": "tsc-absolute --pretty --noEmit"
|
|
},
|
|
"devDependencies": {
|
|
"@calcom/eslint-config": "workspace:*",
|
|
"@calcom/tsconfig": "workspace:*",
|
|
"@calcom/types": "workspace:*",
|
|
"node-mocks-http": "1.16.2",
|
|
"typescript": "5.9.2"
|
|
},
|
|
"dependencies": {
|
|
"@calcom/app-store": "workspace:*",
|
|
"@calcom/dayjs": "workspace:*",
|
|
"@calcom/emails": "workspace:*",
|
|
"@calcom/features": "workspace:*",
|
|
"@calcom/lib": "workspace:*",
|
|
"@calcom/prisma": "workspace:*",
|
|
"@calcom/trpc": "workspace:*",
|
|
"@prisma/nextjs-monorepo-workaround-plugin": "^6.16.1",
|
|
"@sentry/nextjs": "^9.15.0",
|
|
"bcryptjs": "^2.4.3",
|
|
"memory-cache": "^0.2.0",
|
|
"next": "15.4.10",
|
|
"next-api-middleware": "^1.0.1",
|
|
"next-axiom": "^0.17.0",
|
|
"next-swagger-doc": "^0.3.6",
|
|
"next-validations": "^0.2.0",
|
|
"tzdata": "^1.0.30",
|
|
"uuid": "^8.3.2",
|
|
"zod": "3.25.76"
|
|
}
|
|
}
|