-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.61 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.61 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
{
"name": "cal-companion",
"version": "1.7.6",
"private": true,
"workspaces": ["apps/*", "packages/*"],
"scripts": {
"mobile": "cd apps/mobile && bunx expo start",
"mobile:ios": "cd apps/mobile && bunx expo run:ios",
"mobile:android": "cd apps/mobile && bunx expo run:android",
"mobile:web": "cd apps/mobile && bunx expo start --web",
"mobile:export": "cd apps/mobile && bunx expo export",
"ext": "bun --filter extension dev",
"ext:build": "bun --filter extension build",
"ext:build:prod": "bun --filter extension build:prod",
"ext:zip": "bun --filter extension zip",
"ext:zip:prod": "bun --filter extension zip:prod",
"ext:build:all": "bun --filter extension build:all",
"ext:build:all:prod": "bun --filter extension build:all:prod",
"typecheck": "bun --filter '*' typecheck",
"typecheck:chat": "bun --filter '@calcom/chat' typecheck",
"lint": "biome lint .",
"lint:react-compiler": "bun --filter mobile lint:react-compiler",
"check:no-cal-hostnames": "bash apps/mobile/scripts/check-no-cal-hostnames.sh",
"lint:all": "bun run lint && bun run lint:react-compiler && bun run check:no-cal-hostnames",
"format": "biome format --write .",
"format:check": "biome format .",
"check": "biome check --write .",
"check:ci": "biome ci ."
},
"devDependencies": {
"@biomejs/biome": "2.3.10",
"@types/node": "22.19.6",
"husky": "9.0.11",
"lint-staged": "15.2.0",
"typescript": "5.9.3"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx,json,css,md}": [
"biome format --write"
]
},
"overrides": {
"axios": "^1.15.0"
}
}