-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.22 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.22 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
{
"name": "next14-template",
"version": "0.1.0",
"private": true,
"scripts": {
"prepare": "husky install",
"precommit": "lint-staged",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"husky": {},
"engines": {
"node": ">=16.0.0",
"npm": "please-use-yarn",
"yarn": ">=1.19.1"
},
"dependencies": {
"@hookform/resolvers": "^3.3.2",
"clsx": "^2.0.0",
"cssnano": "^6.0.2",
"date-fns": "^3.0.6",
"next": "14.0.4",
"next-usequerystate": "^1.13.2",
"react": "^18",
"react-dom": "^18",
"react-hook-form": "^7.49.2",
"swr": "^2.2.4",
"zod": "^3.22.4",
"zustand": "^4.4.7"
},
"devDependencies": {
"@types/date-fns": "^2.6.0",
"@types/node": "^20.10.5",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"autoprefixer": "^10.4.16",
"eslint": "^8.56.0",
"eslint-config-next": "^14.0.4",
"eslint-config-prettier": "^9.1.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"postcss": "^8",
"prettier": "^3.1.1",
"prettier-plugin-tailwindcss": "^0.5.9",
"tailwindcss": "^3.3.0",
"typescript": "^5.3.3"
}
}