-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.55 KB
/
package.json
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": "next-template",
"private": true,
"scripts": {
"build": "next build",
"clean": "bun run rm -rf node_modules dist .next bun.lockb .tsbuildinfo test-results test-coverage-results",
"copy-env": "cp .env.example .env",
"dev": "next dev --turbo",
"format": "prettier --write --ignore-unknown \"**/*.{ts,tsx,md}\"",
"format:check": "prettier \"**/*\" --ignore-unknown --list-different",
"format:write": "prettier \"**/*\" --ignore-unknown --list-different --write",
"lint": "biome lint --write ./src/**",
"prepare": "husky",
"preview": "next build && next start",
"start": "next start",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"test:watch": "vitest",
"ui:add": "bun x shadcn-ui@latest add"
},
"lint-staged": {
"**/*.{ts,tsx,js,jsx,cjs,mjs,json}": [
"biome lint --apply ."
],
"*": [
"prettier --write"
]
},
"dependencies": {
"@biomejs/biome": "1.9.4",
"@radix-ui/react-avatar": "^1.1.1",
"@radix-ui/react-dropdown-menu": "^2.1.2",
"@radix-ui/react-slot": "1.1.0",
"@t3-oss/env-nextjs": "0.11.1",
"@tailwindcss/postcss": "4.0.0-beta.8",
"@tanstack/react-query": "5.62.15",
"clsx": "2.1.1",
"geist": "1.3.1",
"hono": "4.6.15",
"lucide-react": "0.469.0",
"next": "15.1.3",
"next-themes": "0.4.4",
"react": "19.0.0",
"react-dom": "19.0.0",
"sharp": "0.33.5",
"tailwind-merge": "2.6.0",
"tailwind-variants": "0.3.0",
"tailwindcss": "4.0.0-beta.8",
"tailwindcss-animate": "1.0.7",
"zod": "3.24.1"
},
"devDependencies": {
"@commitlint/cli": "19.6.0",
"@commitlint/config-conventional": "19.6.0",
"@tailwindcss/typography": "0.5.15",
"@tanstack/react-query-devtools": "^5.62.7",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.1.0",
"@testing-library/user-event": "14.5.2",
"@trivago/prettier-plugin-sort-imports": "5.2.0",
"@types/node": "22.10.2",
"@types/react": "19.0.2",
"@types/react-dom": "19.0.2",
"@vitejs/plugin-react": "4.3.4",
"@vitest/coverage-v8": "2.1.8",
"@vitest/ui": "2.1.8",
"fluid-tailwind": "1.0.4",
"husky": "9.1.7",
"jsdom": "25.0.1",
"lint-staged": "15.2.11",
"prettier": "3.4.2",
"prettier-plugin-packagejson": "2.5.6",
"prettier-plugin-tailwindcss": "0.6.9",
"typescript": "5.7.2",
"vite-tsconfig-paths": "5.1.4",
"vitest": "2.1.8",
"vitest-fail-on-console": "0.7.1"
},
"trustedDependencies": [
"@biomejs/biome"
]
}