-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.94 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.94 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
{
"name": "fishy-stream",
"version": "0.1.0",
"private": true,
"type": "module",
"workspaces": [
"packages/providers",
"packages/scraper"
],
"scripts": {
"dev": "concurrently \"convex dev\" \"vite --port 3000\" \"bun run --cwd packages/scraper dev\"",
"dev:mobile": "concurrently \"convex dev\" \"vite --host 0.0.0.0\" \"bun run --cwd packages/scraper dev\"",
"build:providers": "bun run --cwd packages/providers build",
"build:scraper": "bun run --cwd packages/scraper build",
"build": "bun run build:providers && bun run build:scraper && tsc -b && vite build",
"build:android": "bun run build && bunx cap sync android",
"cap:sync": "bunx cap sync",
"cap:android": "bunx cap open android",
"preview": "vite preview",
"lint:providers": "bun run --cwd packages/providers lint",
"lint:scraper": "bun run --cwd packages/scraper lint",
"lint": "bun run lint:providers && bun run lint:scraper && tsc --noEmit",
"test": "vitest run",
"format": "prettier --write \"**/*.{ts,tsx,json,css}\"",
"icons": "bun scripts/generate-icons.ts"
},
"dependencies": {
"@capacitor/android": "8.5.1",
"@capacitor/cli": "8.5.1",
"@capacitor/core": "8.5.1",
"@clerk/react": "6.15.0",
"@clerk/themes": "2.4.57",
"@cloudflare/puppeteer": "1.4.0",
"@fishy/ui": "git+https://github.com/official-notfishvr/fishy-ui.git",
"class-variance-authority": "0.7.1",
"convex": "1.45.0",
"hls.js": "1.7.2",
"lucide-react": "1.39.0",
"react": "19.2.8",
"react-dom": "19.2.8",
"react-router-dom": "7.18.3"
},
"devDependencies": {
"@tailwindcss/vite": "4.3.3",
"@types/bun": "latest",
"@types/react": "19.2.18",
"@types/react-dom": "19.2.5",
"@vitejs/plugin-react": "6.1.1",
"concurrently": "10.0.5",
"prettier": "3.9.6",
"sharp": "0.35.4",
"tailwindcss": "4.3.3",
"typescript": "~7.0.2",
"vite": "8.2.2",
"vitest": "4.1.11"
}
}