forked from sp15-team7/wadam
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.62 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.62 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "wadam",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=22.16.0"
},
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"type-check": "tsc --noEmit",
"pre-commit": "lint-staged",
"prepare": "husky"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix",
"bash -c 'tsc --noEmit'"
],
"**/*.{json,css,md}": [
"prettier --write"
]
},
"dependencies": {
"@hookform/resolvers": "^5.0.1",
"@radix-ui/react-aspect-ratio": "^1.1.7",
"@radix-ui/react-collapsible": "^1.1.11",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-dropdown-menu": "^2.1.15",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-popover": "^1.1.14",
"@radix-ui/react-progress": "^1.1.7",
"@radix-ui/react-radio-group": "^1.3.7",
"@radix-ui/react-slider": "^1.3.5",
"@radix-ui/react-slot": "^1.2.3",
"@tanstack/react-query": "^5.80.5",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"embla-carousel-autoplay": "~8.6.0",
"embla-carousel-react": "~8.6.0",
"immer": "^10.1.1",
"jwt-decode": "^4.0.0",
"ky": "^1.8.1",
"lodash-es": "^4.17.21",
"lucide-react": "^0.513.0",
"motion": "^12.16.0",
"next": "15.3.3",
"next-auth": "5.0.0-beta.28",
"next-themes": "^0.4.6",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-hook-form": "^7.57.0",
"react-intersection-observer": "^9.16.0",
"sonner": "^2.0.5",
"tailwind-merge": "^3.3.0",
"zod": "^3.25.51",
"zustand": "^5.0.5"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@eslint/eslintrc": "^3",
"@next/eslint-plugin-next": "^15.3.3",
"@tailwindcss/postcss": "^4",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "15.3.3",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unused-imports": "^4.1.4",
"husky": "^9.1.7",
"lint-staged": "^16.1.0",
"prettier": "^3.5.3",
"prettier-plugin-tailwindcss": "^0.6.12",
"tailwindcss": "^4",
"tw-animate-css": "^1.3.4",
"typescript": "^5"
},
"volta": {
"node": "22.16.0"
}
}