-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (42 loc) · 1.21 KB
/
package.json
File metadata and controls
43 lines (42 loc) · 1.21 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
{
"name": "BetterRepo",
"private": true,
"repository": "github:Noisemaker111/BetterRepo",
"workspaces": {
"packages": [
"apps/*",
"packages/*"
],
"catalog": {
"dotenv": "^17.2.2",
"zod": "^4.1.13",
"typescript": "^5",
"convex": "^1.29.3",
"better-auth": "1.4.7",
"@convex-dev/better-auth": "^0.10.4",
"@tanstack/react-router": "^1.154.12",
"@tanstack/react-router-devtools": "^1.154.12",
"@tanstack/router-plugin": "^1.154.12"
}
},
"type": "module",
"scripts": {
"dev": "turbo dev",
"build": "turbo build",
"build:vercel": "cd packages/backend && bunx convex codegen && bunx convex deploy --cmd-url-env-var-name VITE_CONVEX_URL --cmd \"npm --prefix ../../apps/web run build\"", "check-types": "turbo check-types",
"check": "bun run check-types",
"dev:native": "turbo -F native dev",
"dev:web": "turbo -F web dev",
"dev:server": "turbo -F @BetterRepo/backend dev",
"dev:setup": "turbo -F @BetterRepo/backend dev:setup"
},
"dependencies": {
"dotenv": "catalog:",
"zod": "catalog:"
},
"devDependencies": {
"turbo": "^2.6.3",
"typescript": "catalog:"
},
"packageManager": "bun@1.3.3"
}