0673d667f8
* 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>
49 lines
1.4 KiB
JSON
49 lines
1.4 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": "16.1.0",
|
|
"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"
|
|
}
|
|
}
|