-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.24 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.24 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
{
"name": "nextjs-revision-hub",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build --turbopack",
"build:analyze": "set ANALYZE=true && npm run build",
"build:production": "NODE_ENV=production next build",
"start": "next start",
"lint": "eslint",
"lighthouse": "npx lighthouse http://localhost:3000 --output html --output-path ./lighthouse-report.html",
"perf:analyze": "npm run build:analyze",
"perf:test": "npm run build && npm run start & sleep 5 && npm run lighthouse && pkill -f 'next start'",
"size": "npx size-limit",
"type-check": "tsc --noEmit",
"android:add": "npx cap add android",
"android:sync": "npm run build && npx cap sync android",
"android:open": "npx cap open android",
"android:run": "npm run android:sync && npx cap run android",
"android:apk": "cd android && .\\gradlew assembleDebug && cd ..",
"android:update": "powershell -ExecutionPolicy Bypass -File update-apk.ps1",
"mobile:build": "npm run build && npx cap sync"
},
"dependencies": {
"@capacitor/android": "^7.4.3",
"@capacitor/cli": "^7.4.3",
"@capacitor/core": "^7.4.3",
"@google/genai": "^1.30.0",
"@headlessui/react": "^2.2.9",
"@supabase/supabase-js": "^2.90.1",
"@vercel/analytics": "^1.5.0",
"animejs": "^4.2.2",
"clsx": "^2.1.1",
"framer-motion": "^12.23.22",
"gsap": "^3.13.0",
"i18next": "^25.5.2",
"lenis": "^1.3.17",
"liquid-glass-react": "^1.1.1",
"lucide-react": "^0.544.0",
"next": "^15.5.7",
"react": "^19.1.2",
"react-dom": "^19.1.2",
"react-i18next": "^16.0.0",
"tailwind-merge": "^3.3.1",
"three": "^0.170.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@next/bundle-analyzer": "^15.5.4",
"@size-limit/preset-app": "^11.2.0",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/three": "^0.181.0",
"@vercel/speed-insights": "^1.2.0",
"eslint": "^9",
"eslint-config-next": "15.5.4",
"lighthouse": "^12.8.2",
"next-pwa": "^5.6.0",
"size-limit": "^11.2.0",
"tailwindcss": "^4",
"typescript": "^5",
"webpack-bundle-analyzer": "^4.10.2"
}
}