-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.33 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.33 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
{
"name": "frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"generate-sdk": "npm exec openapi-ts",
"prepare": "husky"
},
"dependencies": {
"@hookform/resolvers": "^5.0.1",
"@tanstack/react-query": "^5.74.3",
"axios": "^1.8.4",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cookies-next": "^5.1.0",
"dayjs": "^1.11.13",
"next": "15.3.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-hook-form": "^7.55.0",
"retry-axios": "^3.1.3",
"tailwind-merge": "^3.2.0",
"zod": "^3.24.2",
"zustand": "^5.0.3"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@commitlint/cli": "^19.8.0",
"@commitlint/config-conventional": "^19.8.0",
"@hey-api/client-axios": "^0.4.0",
"@hey-api/openapi-ts": "^0.61.2",
"@svgr/webpack": "^8.1.0",
"@tailwindcss/postcss": "^4.1.4",
"@types/node": "^22.14.1",
"@types/react": "^19.1.2",
"@types/react-dom": "^19.1.2",
"husky": "^9.1.7",
"lint-staged": "^15.5.1",
"tailwindcss": "^4.1.4",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.8.3"
},
"lint-staged": {
"src/**/*.{ts,js,cjs,mjs,jsx,tsx}": [
"biome format . --write",
"biome check --colors force --apply --no-errors-on-unmatched --files-ignore-unknown=true"
]
}
}