-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.12 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.12 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
{
"name": "gitpreflight",
"private": true,
"packageManager": "bun@1.3.5",
"workspaces": [
"apps/*",
"packages/*"
],
"engines": {
"node": ">=22.14.0"
},
"dependencies": {
"@convex-dev/better-auth": "0.10.10",
"better-auth": "1.4.9",
"convex": "^1.31.7"
},
"devDependencies": {
"gitpreflight": "workspace:*",
"@types/node": "^22.13.4",
"concurrently": "^9.1.2",
"tsup": "^8.4.0",
"typescript": "^5.7.3"
},
"scripts": {
"dev": "concurrently -n convex,web -c cyan,magenta \"bun run dev:convex\" \"bun run dev:web\"",
"dev:web": "bun --elide-lines=0 --filter web dev",
"dev:convex": "bun --elide-lines=0 run convex:dev",
"build": "bun --workspaces --if-present run build",
"typecheck": "bun --workspaces --if-present run typecheck",
"lint": "bun --workspaces --if-present run lint",
"test": "bun --workspaces --if-present run test",
"convex:codegen:maybe": "bun scripts/convex-codegen-maybe.ts",
"convex:codegen": "bun scripts/with-repo-env.ts -- bun x convex codegen",
"convex:dev": "bun scripts/with-repo-env.ts -- bun x convex dev"
}
}