-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.81 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.81 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
{
"name": "joseph",
"version": "0.1.0",
"description": "A modern web application created with kens-webapps",
"private": true,
"scripts": {
"dev": "next dev --turbo",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"type-check": "tsc --noEmit",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky",
"test": "vitest",
"test:watch": "vitest --watch",
"test:ui": "vitest --ui"
},
"dependencies": {
"next": "15.3.5",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-hook-form": "7.60.0",
"zod": "4.0.5",
"@hookform/resolvers": "5.1.1",
"class-variance-authority": "0.7.1",
"clsx": "2.1.1",
"tailwind-merge": "3.3.1",
"lucide-react": "0.525.0",
"@radix-ui/react-dialog": "1.1.14",
"@radix-ui/react-toast": "1.2.14",
"@radix-ui/react-select": "2.2.5"
},
"devDependencies": {
"@types/node": "24.0.13",
"@types/react": "19.1.8",
"@types/react-dom": "19.1.6",
"eslint": "9.31.0",
"eslint-config-next": "15.3.5",
"typescript": "5.8.3",
"tailwindcss": "3.4.16",
"autoprefixer": "10.4.21",
"postcss": "8.5.6",
"prettier": "3.6.2",
"husky": "9.1.7",
"lint-staged": "16.1.2",
"@tailwindcss/forms": "0.5.10",
"@tailwindcss/typography": "0.5.16",
"vitest": "3.2.4",
"@vitejs/plugin-react": "4.6.0",
"@testing-library/react": "16.3.0",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/user-event": "14.6.1",
"jsdom": "26.1.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,css,md}": [
"prettier --write"
]
},
"overrides": {
"esbuild": "^0.25.4"
},
"engines": {
"node": ">=18.17.0"
}
}