-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 1.85 KB
/
package.json
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
{
"name": "nextjs-template",
"version": "0.0.0",
"license": "MIT",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"build": "tsc && next build",
"preview": "next start -p 4000",
"lint": "next lint",
"prepare": "husky"
},
"dependencies": {
"@hookform/resolvers": "3.10.0",
"@iconify/react": "5.2.0",
"@mantine/core": "7.16.2",
"@mantine/hooks": "7.16.2",
"@mantine/notifications": "7.16.2",
"@reduxjs/toolkit": "2.5.1",
"@tanstack/react-query": "5.66.0",
"@tanstack/react-query-devtools": "5.66.0",
"axios": "1.7.9",
"clsx": "2.1.1",
"hash-wasm": "4.12.0",
"next": "15.1.6",
"next-auth": "4.24.11",
"nextjs-progressbar": "0.0.16",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-hook-form": "7.54.2",
"react-redux": "9.2.0",
"tailwind-merge": "3.0.1",
"type-fest": "4.33.0",
"zod": "3.24.1"
},
"devDependencies": {
"@babel/core": "7.26.7",
"@commitlint/cli": "19.7.1",
"@commitlint/config-conventional": "19.7.1",
"@eslint/js": "9.19.0",
"@tailwindcss/postcss": "4.0.3",
"@types/node": "22.13.1",
"@types/react": "19.0.8",
"@types/react-dom": "19.0.3",
"eslint": "9.19.0",
"eslint-config-next": "15.1.6",
"eslint-config-prettier": "10.0.1",
"eslint-import-resolver-typescript": "3.7.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-prettier": "5.2.3",
"eslint-plugin-react": "7.37.4",
"eslint-plugin-react-hooks": "5.1.0",
"husky": "9.1.7",
"lint-staged": "15.4.3",
"postcss": "8.5.1",
"postcss-preset-mantine": "1.17.0",
"postcss-simple-vars": "7.0.1",
"prettier": "3.4.2",
"prettier-plugin-tailwindcss": "0.6.11",
"tailwindcss": "4.0.3",
"typescript": "5.7.3",
"typescript-eslint": "8.23.0"
}
}