Files
calendar/packages/platform/examples/base/package.json
T
Rajiv SahalandGitHub eaa1ad6578 feat: e2e tests for Connect atoms (#23433)
* e2e tests for apple connect atom

* update globalEnv for turbo.json

* update pages for tests

* update playwright config so we can use env variables inside tests

* update packages

* update variable names

* update playwright config

* fix: import variables from env instead of separate files

* update env variables for atoms e2e yml
2025-09-17 11:20:38 +02:00

37 lines
867 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": "next lint",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui"
},
"dependencies": {
"@calcom/atoms": "*",
"@prisma/client": "6.7.0",
"next": "14.0.4",
"prisma": "^6.7.0",
"react": "^18",
"react-dom": "^18",
"react-select": "^5.8.0"
},
"devDependencies": {
"@playwright/test": "^1.45.3",
"@types/node": "^20.3.1",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.0.1",
"dotenv": "^17.2.1",
"eslint": "^8.34.0",
"eslint-config-next": "14.0.4",
"postcss": "^8",
"tailwindcss": "^3.3.0",
"typescript": "^5.9.0-beta"
}
}