forked from mehranbolhasani/Ganj
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.77 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
{
"name": "defter-ganj",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --port 3000",
"dev:simple": "./dev-start.sh",
"build": "next build",
"start": "next start",
"lint": "eslint --ignore-pattern 'scripts/**'",
"dev:setup": "node scripts/dev-setup.js",
"dev:clean": "rm -rf .next node_modules/.cache && npm install",
"dev:reset": "rm -rf .next node_modules package-lock.json && npm install",
"build:check": "node scripts/build-check.js",
"build:verify": "node scripts/build-check.js --check-only",
"test:cls": "node scripts/test-layout-shifts.js",
"type-check": "tsc --noEmit",
"lint:fix": "eslint . --fix",
"predev": "npm run type-check",
"prebuild": "npm run type-check && npm run lint"
},
"dependencies": {
"@hugeicons/core-free-icons": "^4.2.0",
"@hugeicons/react": "^1.1.6",
"@supabase/ssr": "^0.10.3",
"@supabase/supabase-js": "^2.107.0",
"@upstash/ratelimit": "^2.0.8",
"@upstash/redis": "^1.38.0",
"@vercel/analytics": "^2.0.1",
"@vercel/speed-insights": "^2.0.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"grammy": "^1.43.0",
"lucide-react": "^1.17.0",
"motion": "^12.40.0",
"next": "^16.0.10",
"next-themes": "^0.4.6",
"ogl": "^1.0.11",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"server-only": "^0.0.1",
"tailwind-merge": "^3.4.0",
"tailwindcss-animate": "^1.0.7",
"web-vitals": "^5.3.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^22.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"dotenv": "^17.2.3",
"eslint": "^9",
"eslint-config-next": "16.0.0",
"tailwindcss": "^4",
"tsx": "^4.20.6",
"typescript": "5.9.3"
}
}