-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.72 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.72 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
{
"name": "binje",
"version": "0.9.0",
"private": true,
"workspaces": [
"apps/mobile"
],
"packageManager": "bun@1.3.11",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"test": "bash -lc 'shopt -s globstar; bun test lib/**/*.test.ts app/**/*.test.ts'",
"mobile:start": "bun --cwd apps/mobile start",
"mobile:android": "bun --cwd apps/mobile android",
"mobile:ios": "bun --cwd apps/mobile ios",
"mobile:lint": "bun --cwd apps/mobile lint",
"mobile:test": "bun --cwd apps/mobile test",
"mobile:typecheck": "bun --cwd apps/mobile typecheck"
},
"dependencies": {
"@base-ui/react": "^1.6.0",
"clsx": "^2.1.1",
"hls.js": "^1.6.16",
"lucide": "^1.31.0",
"lucide-react": "^1.25.0",
"morphicons": "^1.7.0",
"motion": "^13.1.0",
"next": "16.2.6",
"react": "19.2.3",
"react-dom": "19.2.3",
"sonner": "^2.0.7",
"tailwind-merge": "^3.6.0",
"tw-animate-css": "^1.4.0",
"undici": "7.28.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.3.3",
"@types/node": "^20.19.43",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"eslint": "^9.39.5",
"eslint-config-next": "16.2.6",
"shadcn": "^4.14.0",
"tailwindcss": "^4.3.3",
"typescript": "^5.9.3"
},
"overrides": {
"postcss": "^8.5.10",
"sharp": "^0.35.3",
"fast-uri": "^3.1.2",
"js-yaml": "^4.1.2",
"hono": "^4.12.18",
"@hono/node-server": "^1.19.13",
"qs": "^6.15.2",
"body-parser": "^2.3.0",
"ip-address": "^10.1.1",
"uuid": "^11.1.1"
},
"ignoreScripts": [
"sharp",
"unrs-resolver"
],
"trustedDependencies": [
"sharp",
"unrs-resolver"
]
}