-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.45 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.45 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
81
82
83
84
85
{
"name": "frontend-fjunction",
"version": "1.1.0",
"private": true,
"engines": {
"node": "20.x"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"check-types": "tsc --pretty --noEmit",
"format": "prettier --check --ignore-path .gitignore .",
"format:fix": "prettier --write --ignore-path .gitignore .",
"prepare": "husky",
"test:lighthouse": "lhci autorun",
"check:unused": "knip",
"check:size": "size-limit"
},
"dependencies": {
"@google/generative-ai": "^0.24.1",
"@radix-ui/react-dialog": "^1.1.1",
"@radix-ui/react-dropdown-menu": "^2.1.1",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-popover": "^1.1.2",
"@radix-ui/react-select": "^2.1.2",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-tabs": "^1.1.1",
"@radix-ui/react-toast": "^1.2.2",
"@radix-ui/react-tooltip": "^1.1.4",
"@supabase/ssr": "^0.8.0",
"@supabase/supabase-js": "^2.108.0",
"@vercel/analytics": "^1.6.1",
"autoprefixer": "10.4.15",
"class-variance-authority": "^0.7.0",
"classnames": "^2.5.1",
"clsx": "^2.1.0",
"framer-motion": "^12.26.2",
"github-slugger": "^2.0.0",
"gray-matter": "^4.0.3",
"lucide-react": "^0.331.0",
"markdown-to-jsx": "^7.4.7",
"mobile-device-detect": "^0.4.3",
"next": "15.x",
"next-themes": "^0.2.1",
"node-html-parser": "^7.0.1",
"postcss": "^8.5.6",
"quill-blot-formatter": "^1.0.5",
"react": "19.x",
"react-confetti": "^6.1.0",
"react-dom": "19.x",
"react-icons": "^5.0.1",
"react-markdown": "^10.1.0",
"react-quill": "^2.0.0",
"rss-parser": "^3.13.0",
"tailwind-merge": "^2.2.1",
"tailwindcss": "3.3.3",
"tailwindcss-animate": "^1.0.7",
"typescript": "5.2.2",
"zod": "^3.22.4"
},
"devDependencies": {
"@lhci/cli": "^0.15.1",
"@size-limit/preset-app": "^12.0.0",
"@tailwindcss/typography": "^0.5.19",
"@types/node": "22.x",
"@types/react": "19.x",
"@types/react-dom": "19.x",
"dotenv": "^17.2.3",
"eslint": "8.49.0",
"eslint-config-next": "15.x",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.0.11",
"knip": "^5.80.2",
"prettier": "^3.2.5",
"rehype-autolink-headings": "^7.1.0",
"rehype-pretty-code": "^0.14.1",
"rehype-slug": "^6.0.0",
"shiki": "^3.21.0",
"size-limit": "^12.0.0",
"velite": "^0.3.1",
"webpack": "^5.91.0"
}
}