-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.16 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.16 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
{
"name": "decode",
"private": true,
"type": "module",
"workspaces": {
"packages": [
"apps/*",
"packages/*"
],
"catalog": {
"convex": "^1.29.3",
"better-auth": "1.4.9",
"@convex-dev/better-auth": "^0.10.0",
"react-hook-form": "^7.68.0",
"zod": "4.1.13"
}
},
"scripts": {
"check": "biome check --write .",
"prepare": "husky",
"ruler:apply": "bunx @intellectronica/ruler@latest apply --local-only",
"dev": "turbo dev",
"build": "turbo build",
"check-types": "turbo check-types",
"dev:web": "turbo -F @decode/web dev",
"dev:native": "turbo -F @decode/native dev",
"dev:server": "turbo -F @decode/backend dev",
"dev:setup": "turbo -F @decode/backend dev:setup"
},
"dependencies": {},
"devDependencies": {
"turbo": "^2.5.4",
"@biomejs/biome": "2.3.8",
"ultracite": "6.3.9",
"husky": "^9.1.7",
"lint-staged": "^16.1.2"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,jsonc,css,scss,md,mdx}": [
"bun x ultracite fix"
]
},
"packageManager": "bun@1.3.1",
"overrides": {
"@types/react": "19.2.2",
"@types/react-dom": "19.2.2"
}
}