-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.51 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.51 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
{
"name": "nextjs-init",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=24 <25"
},
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"format": "prettier --write .",
"typecheck": "tsc --noEmit",
"husky:init": "npx husky-init",
"test": "echo \"No tests yet\" && exit 0",
"prepare": "husky"
},
"dependencies": {
"@hookform/resolvers": "^5.1.0",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/themes": "^3.2.1",
"axios": "^1.7.9",
"clsx": "^2.1.1",
"jwt-decode": "^4.0.0",
"next": "^16.1.1",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-hook-form": "^7.57.0",
"react-hot-toast": "^2.5.2",
"zod": "^4.3.5"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@tailwindcss/postcss": "^4.1.18",
"@types/node": "^24.0.0",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"autoprefixer": "^10.4.23",
"eslint": "^9.39.2",
"eslint-config-next": "^16.1.1",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.4.0",
"eslint-plugin-unused-imports": "^4.1.4",
"husky": "^9.1.7",
"lint-staged": "^16.1.0",
"postcss": "^8.4.38",
"prettier": "^3.5.3",
"tailwindcss": "^4.0.0",
"typescript": "^5.8.3"
},
"lint-staged": {
"**/*.{js,ts,jsx,tsx}": [
"eslint --fix",
"prettier --write"
]
}
}