forked from Astraive/orphix
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.2 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.2 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": "orphix",
"private": true,
"type": "module",
"workspaces": [
"apps/*",
"packages/*",
"apis/*"
],
"scripts": {
"dev": "bun --filter @orphix/desktop dev",
"dev:desktop": "bun --filter @orphix/desktop dev",
"dev:web": "bun --filter @orphix/web dev",
"dev:mobile": "bun --filter @orphix/mobile start",
"dev:link": "bun --filter @orphix/link-api start:dev",
"dev:convex": "cd convex && bunx convex dev",
"build": "bun --filter @orphix/desktop build",
"lint": "bunx eslint .",
"format": "bunx prettier --write .",
"format:check": "bunx prettier --check .",
"typecheck": "turbo typecheck",
"test": "bunx vitest run",
"convex:dev": "cd convex && bunx convex dev",
"convex:deploy": "cd convex && bunx convex deploy"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"eslint": "^9.0.0",
"eslint-config-prettier": "^10.0.0",
"prettier": "^3.4.0",
"turbo": "^2.0.0",
"typescript": "^5.5.0",
"typescript-eslint": "^8.0.0",
"vitest": "^3.0.0"
},
"packageManager": "bun@1.3.10",
"dependencies": {
"@convex-dev/auth": "^0.0.80",
"convex": "^1.17.0",
"electron": "^42.4.0",
"jose": "^6.2.3"
}
}