-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.2 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
{
"name": "nextjs-template-typescript",
"version": "0.1.0",
"private": true,
"author": {
"name": "Ubong George",
"url": "https://www.ubonggeorge.com"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install"
},
"dependencies": {
"react": "^18",
"react-dom": "^18",
"next": "14.2.13",
"@hookform/resolvers": "^3.9.1",
"@t3-oss/env-nextjs": "^0.11.1",
"@vercel/analytics": "^1.4.0",
"clsx": "^2.0.0",
"cva": "npm:class-variance-authority@^0.7.0",
"next-auth": "^4.24.10",
"next-themes": "^0.4.3",
"react-hook-form": "^7.53.0",
"tailwind-merge": "^2.5.4",
"zod": "^3.23.8"
},
"devDependencies": {
"typescript": "^5",
"@types/node": "^22",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.0.1",
"postcss": "^8",
"tailwindcss": "^3.4.14",
"eslint": "^8",
"eslint-config-next": "14.2.5",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-tailwindcss": "^3.17.5",
"@ianvs/prettier-plugin-sort-imports": "^4.1.1",
"prettier": "^3.3.3",
"husky": "^9.1.7",
"lint-staged": "^15.2.0"
}
}