-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.31 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.31 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
{
"name": "new-next-starter",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"commit": "cz",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"typecheck": "tsc --noEmit",
"start": "next start",
"prepare": "husky",
"generate:ui": "bunx --bun shadcn@latest add"
},
"dependencies": {
"@bprogress/next": "^3.2.12",
"@radix-ui/react-slot": "^1.2.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.539.0",
"next": "16.2.3",
"next-themes": "^0.4.6",
"react": "19.2.5",
"react-dom": "19.2.5",
"sonner": "^2.0.7",
"tailwind-merge": "^3.3.1"
},
"devDependencies": {
"@biomejs/biome": "^2.4.11",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.5",
"tailwindcss": "^4",
"tw-animate-css": "^1.3.7",
"typescript": "^5"
},
"lint-staged": {
"*.{css,js,jsx,mjs,cjs,scss,ts,tsx,json,md,toml,yaml,yml}": "biome check --write --no-errors-on-unmatched"
},
"overrides": {
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3"
}
}