Files
calendar/packages/platform/examples/base/package.json
T
Volnei MunhozGitHubDevin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
7c373ddad6 feat: Introduce biome (#25664)
* Configure biome

* Fix companion build

* fix: remove generated files from formatter ignore list to enable proper formatting

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

* fix: add explicit stripe dependency to @calcom/features to fix type resolution

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

* fix: rename const require to nodeRequire in generate-swagger.ts to avoid TypeScript reserved identifier conflict

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

* fix: add guard for document in makeBodyVisible to prevent test environment teardown errors

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

* fix: replace ESLint with Biome CLI in embed-code-generator.e2e.ts

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

* fix: address cubic review comments

- Fix invalid --reporter-path Biome CLI option by using shell redirection
- Fix packages/lib lint report filename (app-store.json -> lib.json)
- Add typescript-eslint and eslint back to companion for lint:react-compiler
- Add missing restricted import rules to biome.json:
  - packages/lib: add ../trpc/** and @trpc/server restrictions
  - packages/trpc: add ../apps/web/** restriction

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

* chore: regenerate companion bun.lock after adding eslint dependencies

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

* Remove remaining eslint things

* add tailwind directives

---------

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

35 lines
835 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": "biome lint .",
"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": {
"@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"
}
}