-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.45 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.45 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "gaia-react-site",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build && node scripts/prerender.mjs",
"build:no-prerender": "tsc -b && vite build",
"preview": "vite preview",
"prerender": "node scripts/prerender.mjs",
"typecheck": "tsc --noEmit",
"lint": "eslint --fix --max-warnings=0 --cache --cache-location ./node_modules/.cache/eslint .",
"lint-dry": "eslint --max-warnings=0 .",
"format": "prettier --write \"src/**/*.{ts,tsx,html,md,css,json}\" \"*.{html,md,json}\"",
"lint-all": "tsc --noEmit && eslint --max-warnings=0 . && prettier --check \"src/**/*.{ts,tsx,html,md,css,json}\""
},
"dependencies": {
"@calcom/embed-react": "^1.5.3",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"tailwind-merge": "^3.5.0"
},
"devDependencies": {
"@gaia-react/lint": "^1.1.1",
"@tailwindcss/vite": "^4.2.4",
"@types/node": "^25.6.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"eslint": "^9.39.4",
"prettier": "^3.8.3",
"prettier-plugin-tailwindcss": "^0.8.0",
"puppeteer": "^24.42.0",
"tailwindcss": "^4.2.4",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.0",
"vite": "^8.0.10"
},
"engines": {
"node": ">=22.19.0"
},
"packageManager": "pnpm@10.33.0",
"pnpm": {
"onlyBuiltDependencies": [
"puppeteer"
]
}
}