-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.38 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.38 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
49
50
51
52
53
54
55
56
57
58
{
"name": "offworld",
"private": true,
"workspaces": {
"packages": [
"apps/*",
"packages/*"
],
"catalog": {
"@convex-dev/better-auth": "^0.10.9",
"@edge-runtime/vm": "^5.0.0",
"@types/node": "^25.2.0",
"alchemy": "^0.83.2",
"better-auth": "1.4.13",
"convex": "^1.31.7",
"convex-test": "^0.0.41",
"dotenv": "^17.2.3",
"tsdown": "^0.20.1",
"typescript": "^5.9.3",
"vitest": "^4.0.18",
"zod": "^4.3.6"
}
},
"type": "module",
"scripts": {
"dev": "turbo dev",
"build": "turbo build",
"typecheck": "turbo typecheck",
"test": "turbo test",
"dev:native": "turbo -F native dev",
"dev:web": "turbo -F web dev",
"dev:server": "turbo -F @offworld/backend dev",
"dev:setup": "turbo -F @offworld/backend dev:setup",
"check": "oxlint && oxfmt --write",
"build:cli": "turbo -F offworld build && bun link --cwd apps/cli",
"ow:dev": "bun run --cwd apps/cli ow:dev --",
"clean:vite": "turbo -F web clean:vite",
"bump": "bun run scripts/bump-version.ts",
"verify:versions": "bun run scripts/verify-versions.ts"
},
"dependencies": {
"dotenv": "^17.2.3",
"zod": "^4.3.6"
},
"devDependencies": {
"@clack/prompts": "^1.0.0",
"@offworld/config": "workspace:*",
"oxfmt": "^0.28.0",
"oxlint": "^1.43.0",
"turbo": "^2.8.3",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"engines": {
"node": ">=18"
},
"packageManager": "bun@1.3.5"
}