-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.23 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.23 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
{
"name": "rinae.dev",
"version": "0.1.0",
"private": true,
"packageManager": "pnpm@10.30.3",
"scripts": {
"dev": "next --turbopack",
"build": "next build",
"postbuild": "pagefind --site .next/server/app --output-path out/_pagefind",
"start": "next start",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"dependencies": {
"@giscus/react": "^3.1.0",
"@radix-ui/react-slot": "^1.2.4",
"@tabler/icons-react": "^3.36.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.548.0",
"next": "^16.1.6",
"next-view-transitions": "^0.3.5",
"nextra": "^4.6.1",
"nextra-theme-blog": "^4.6.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"tailwind-merge": "^3.5.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.2.0",
"@types/node": "^24.10.13",
"@types/react": "^19.2.14",
"lefthook": "^2.1.1",
"lint-staged": "^16.2.7",
"pagefind": "^1.4.0",
"postcss": "^8.5.6",
"prettier": "^3.8.1",
"tailwindcss": "^4.2.0",
"tw-animate-css": "^1.4.0",
"typescript": "^5.9.3"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,cjs,mjs,json,md,mdx,css,scss}": [
"prettier --write"
]
}
}