Files
calendar/packages/platform/examples/base/package.json
T
Volnei MunhozGitHubDevin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
44586c7dec chore: lock all package versions to match yarn.lock (#26204)
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: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
2025-12-26 11:54:30 -03:00

36 lines
875 B
JSON

{
"name": "@calcom/base",
"version": "0.1.0",
"private": true,
"scripts": {
"dev:e2e": "PORT=4322 next dev",
"dev": "PORT=4321 next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui"
},
"dependencies": {
"@calcom/atoms": "workspace:*",
"@prisma/client": "6.16.1",
"next": "16.1.0",
"prisma": "6.16.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-select": "5.8.0"
},
"devDependencies": {
"@calcom/eslint-config": "workspace:*",
"@playwright/test": "1.57.0",
"@tailwindcss/postcss": "4.1.15",
"@types/node": "20.17.23",
"@types/react": "18.0.26",
"@types/react-dom": "18.2.6",
"dotenv": "17.2.2",
"postcss": "8.5.6",
"tailwindcss": "4.1.17",
"typescript": "5.9.2"
}
}