-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.06 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.06 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
{
"name": "nextjs-template",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest",
"test:run": "vitest run --passWithNoTests"
},
"dependencies": {
"@clerk/nextjs": "^7.0.7",
"@fortawesome/fontawesome-free": "^7.2.0",
"@hookform/resolvers": "^5.2.2",
"axios": "^1.14.0",
"next": "16.1.6",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-hook-form": "^7.72.0",
"sonner": "^2.0.7",
"swr": "^2.4.1",
"zod": "^4.3.6",
"zustand": "^5.0.12"
},
"devDependencies": {
"@testing-library/react": "^16.3.2",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitest/coverage-v8": "^4.1.2",
"eslint": "^9",
"eslint-config-next": "16.1.6",
"eslint-config-prettier": "^10.1.8",
"jsdom": "^29.0.2",
"prettier": "^3.8.1",
"typescript": "^5",
"vitest": "^4.1.2"
}
}