Files
calendar/example-apps/credential-sync/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

31 lines
713 B
JSON

{
"name": "@calcom/example-app-credential-sync",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "PORT=5100 next dev",
"build": "next build",
"start": "next start",
"lint": "eslint ."
},
"dependencies": {
"@calcom/atoms": "workspace:*",
"@calcom/eslint-config": "workspace:*",
"@prisma/client": "6.16.1",
"next": "14.2.35",
"prisma": "6.16.1",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@types/node": "20.17.23",
"@types/react": "18.0.26",
"@types/react-dom": "18.2.6",
"autoprefixer": "10.4.19",
"dotenv": "16.6.1",
"postcss": "8.5.6",
"tailwindcss": "3.4.1",
"typescript": "4.9.5"
}
}