-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 3.25 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 3.25 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "sanctuary-book-reader",
"private": true,
"version": "0.2.0",
"type": "module",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "bash -lc 'npm run web:guest & npm run dev:backend:guest; wait -n; kill 0'",
"dev:remote": "bash -lc 'npm run web:guest & npm run dev:backend:guest:remote; wait -n; kill 0'",
"dev:strict": "bash -lc 'npm run web:strict & npm run dev:backend:strict; wait -n; kill 0'",
"web:dev": "npm --workspace @sanctuary/web run dev",
"web:guest": "npm --workspace @sanctuary/web run dev:guest",
"web:strict": "npm --workspace @sanctuary/web run dev:strict",
"web:build": "npm --workspace @sanctuary/web run build",
"web:preview": "npm --workspace @sanctuary/web run preview",
"dev:frontend:guest": "npm run web:guest",
"dev:frontend:strict": "npm run web:strict",
"dev:backend:guest": "wrangler pages dev public --ip 127.0.0.1 --port 8788",
"dev:backend:guest:local": "wrangler pages dev public --ip 127.0.0.1 --port 8788",
"dev:backend:guest:remote": "bash -lc 'echo \"wrangler pages dev has no --remote in this Wrangler version; running local Pages dev. Use wrangler --remote commands to verify real D1/R2.\"; wrangler pages dev public --ip 127.0.0.1 --port 8788'",
"dev:backend:strict": "wrangler pages dev public --ip 127.0.0.1 --port 8788",
"build": "npm run web:build",
"preview": "npm run web:preview",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "eslint . --ext .ts,.tsx --fix",
"mobile:dev": "npm --workspace @sanctuary/mobile run start",
"mobile:web": "npm --workspace @sanctuary/mobile run web",
"mobile:android": "npm --workspace @sanctuary/mobile run android",
"desktop:dev": "npm --workspace @sanctuary/desktop run tauri:dev",
"desktop:build": "npm --workspace @sanctuary/desktop run tauri:build",
"v2:web": "npm run web:dev",
"v2:mobile": "npm run mobile:dev",
"v2:mobile:web": "npm run mobile:web",
"v2:mobile:android": "npm run mobile:android",
"v2:desktop:dev": "npm run desktop:dev",
"v2:desktop:build": "npm run desktop:build",
"v2:mirror:check": "node scripts/check-v2-mirror.mjs"
},
"dependencies": {
"@clerk/backend": "^2.31.1",
"@clerk/clerk-react": "^5.60.2",
"@testsprite/testsprite-mcp": "^0.0.25",
"epubjs": "^0.3.93",
"expo": "51.0.39",
"framer-motion": "^12.23.24",
"lucide-react": "^0.555.0",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-dropzone": "^14.3.8",
"react-native": "0.84.0",
"uuid": "^13.0.0",
"zustand": "^5.0.9"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20260131.0",
"@eslint/js": "^9.21.0",
"@tauri-apps/cli": "^2.10.0",
"@types/bun": "^1.3.6",
"@types/node": "^22.14.0",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.1",
"autoprefixer": "^10.4.20",
"eslint": "^10.0.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.19",
"globals": "^16.0.0",
"postcss": "^8.4.38",
"tailwindcss": "^3.4.13",
"typescript": "~5.8.2",
"typescript-eslint": "^8.25.0",
"vite": "^6.2.0",
"vite-plugin-pwa": "^0.11.3",
"wrangler": "^4.61.1"
}
}