Files
calendar/packages/platform/examples/base/package.json
T
Volnei MunhozGitHubDevin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
0673d667f8 feat: upgrade api/v1 and example apps to Next.js 16.1.0 (#26104)
* feat: upgrade api/v1 and example apps to Next.js 16.1.0

- Update apps/api/v1 to Next.js 16.1.0
- Rename middleware.ts to proxy.ts per Next.js 16 migration
- Add turbopack config to next.config.js
- Update packages/platform/examples/base to Next.js 16.1.0
- Add eslint-disable to config files (following apps/web pattern)

Co-Authored-By: Volnei Munhoz <volnei.munhoz@gmail.com>

* chore: update yarn.lock for Next.js 16.1.0 upgrade

Co-Authored-By: Volnei Munhoz <volnei.munhoz@gmail.com>

---------

Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
2025-12-21 18:19:18 -03:00

36 lines
869 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.7.0",
"next": "16.1.0",
"prisma": "^6.7.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-select": "^5.8.0"
},
"devDependencies": {
"@calcom/eslint-config": "workspace:*",
"@playwright/test": "^1.45.3",
"@tailwindcss/postcss": "^4.0.0",
"@types/node": "^20.3.1",
"@types/react": "^18",
"@types/react-dom": "^18",
"dotenv": "^17.2.1",
"postcss": "8.5.6",
"tailwindcss": "^4.0.0",
"typescript": "5.9.2"
}
}