-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.2 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.2 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
{
"name": "folo.is",
"type": "module",
"private": true,
"packageManager": "pnpm@10.15.0",
"scripts": {
"build": "next build",
"dev": "next dev --turbo -p 2222",
"lint": "eslint",
"lint:fix": "eslint --fix",
"prepare": "simple-git-hooks",
"start": "next start",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@openpanel/nextjs": "^1.0.8",
"@radix-ui/react-accordion": "^1.2.12",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-slot": "^1.2.3",
"@t3-oss/env-nextjs": "^0.13.8",
"better-auth": "^1.3.7",
"canvas-confetti": "^1.9.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"es-toolkit": "1.39.6",
"foxact": "0.2.49",
"geist": "1.4.2",
"gray-matter": "4.0.3",
"jotai": "2.12.5",
"lucide-react": "^0.525.0",
"motion": "^12.23.12",
"next": "^15.5.0",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-fast-marquee": "1.6.5",
"react-use-measure": "2.1.7",
"rehype-stringify": "10.0.1",
"remark-parse": "11.0.0",
"remark-rehype": "11.1.2",
"swr": "^2.3.6",
"tailwind-merge": "^3.3.1",
"unified": "11.0.5",
"zod": "^3.25.76"
},
"devDependencies": {
"@egoist/tailwindcss-icons": "^1.9.0",
"@iconify-json/logos": "^1.2.9",
"@iconify-json/mingcute": "^1.2.5",
"@iconify-json/simple-icons": "^1.2.48",
"@iconify-json/skill-icons": "^1.2.3",
"@tailwindcss/postcss": "^4.1.12",
"@tailwindcss/typography": "^0.5.16",
"@types/canvas-confetti": "^1.9.0",
"@types/node": "^22.17.2",
"@types/react": "^19.1.11",
"@types/react-dom": "^19.1.7",
"better-call": "^1.0.16",
"code-inspector-plugin": "0.20.15",
"drizzle-orm": "^0.44.4",
"eslint": "^9.34.0",
"eslint-config-hyoban": "^4.0.9",
"lint-staged": "^16.1.5",
"postcss": "^8.5.6",
"simple-git-hooks": "^2.13.1",
"tailwindcss": "^4.1.12",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.9.2"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"sharp",
"simple-git-hooks",
"unrs-resolver"
]
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}