-
Notifications
You must be signed in to change notification settings - Fork 13k
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 807 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 807 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"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",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui"
},
"dependencies": {
"@calcom/atoms": "workspace:*",
"@prisma/client": "6.16.1",
"next": "16.1.5",
"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.3"
}
}