-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.23 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.23 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
{
"name": "buzztrip",
"private": true,
"packageManager": "bun@1.3.1",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"dev:web": "turbo run dev --filter=@buzztrip/web --filter=@buzztrip/backend",
"dev:admin": "turbo run dev --filter=@buzztrip/admin --filter=@buzztrip/backend",
"sherif": "bunx sherif@latest -p ./apps/mobile",
"lint": "turbo lint && bun sherif",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,md,mdx}\"",
"clean:all": "turbo run clean:all",
"update": "turbo run update"
},
"devDependencies": {
"@buzztrip/tsconfig": "workspace:*",
"@headless-tree/core": "^1.5.0",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.1",
"prettier": "^3.6.2",
"prettier-plugin-organize-imports": "^4.3.0",
"prettier-plugin-tailwindcss": "^0.6.14",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"shadcn": "^3.5.0",
"turbo": "^2.5.8",
"typescript": "^5.9.3"
},
"trustedDependencies": [
"browser-tabs-lock",
"core-js",
"esbuild",
"keccak",
"react-native-elements",
"sharp",
"workerd"
],
"resolutions": {
"@polar-sh/sdk": "^0.34.3",
"convex": "^1.27.5"
}
}