-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.15 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.15 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
{
"name": "fullstack-template",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"build": "next build",
"check": "eslint . && tsc --noEmit",
"db": "prisma",
"dev": "next dev --turbo",
"fmt:check": "prettier --check \"**/*.{ts,tsx,js,jsx,mdx}\" --cache",
"fmt:write": "prettier --write \"**/*.{ts,tsx,js,jsx,mdx}\" --cache",
"postinstall": "prisma generate",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"preview": "next build && next start",
"start": "next start",
"typecheck": "tsc --noEmit",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,mdx}": [
"prettier --write",
"eslint --fix"
]
},
"dependencies": {
"@aws-sdk/client-s3": "^3.937.0",
"@aws-sdk/s3-request-presigner": "^3.937.0",
"@bprogress/next": "^3.2.12",
"@hono/zod-validator": "^0.7.5",
"@hookform/resolvers": "^5.2.2",
"@prisma/client": "^6.19.0",
"@radix-ui/react-avatar": "^1.1.11",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@t3-oss/env-nextjs": "^0.13.8",
"better-auth": "^1.4.5",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"hono": "^4.10.6",
"lucide-react": "^0.516.0",
"next": "16.0.7",
"next-themes": "^0.4.6",
"react": "19.2.0",
"react-dom": "19.2.0",
"react-hook-form": "^7.66.1",
"react-icons": "^5.5.0",
"tailwind-merge": "^3.4.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@tailwindcss/postcss": "^4.1.17",
"@types/node": "^20.19.25",
"@types/react": "19.2.6",
"@types/react-dom": "19.2.3",
"eslint": "^9.39.1",
"eslint-config-next": "16.0.3",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.6.2",
"prettier-plugin-organize-imports": "^4.3.0",
"prettier-plugin-tailwindcss": "^0.6.14",
"prisma": "^6.19.0",
"tailwindcss": "^4.1.17",
"tw-animate-css": "^1.4.0",
"typescript": "^5.9.3"
},
"packageManager": "pnpm@10.23.0"
}