-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.27 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
{
"name": "admin-formenu",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prettier": "prettier --write .",
"precommit": "lint-staged",
"prepare": "husky install"
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
]
},
"dependencies": {
"@flaticon/flaticon-uicons": "3.3.1",
"@headlessui/react": "2.2.0",
"@heroicons/react": "2.2.0",
"@hookform/resolvers": "3.10.0",
"@nextui-org/react": "2.6.11",
"framer-motion": "11.18.0",
"html-react-parser": "5.2.2",
"lodash": "4.17.21",
"next": "14.2.23",
"next-auth": "4.24.11",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-hook-form": "7.54.2",
"react-toastify": "11.0.3",
"remark": "15.0.1",
"remark-html": "16.0.1",
"remark-parse": "11.0.0",
"sharp": "0.33.5",
"zod": "3.24.1",
"zustand": "5.0.3"
},
"devDependencies": {
"@tailwindcss/forms": "0.5.10",
"@tailwindcss/typography": "0.5.16",
"autoprefixer": "10.4.20",
"eslint": "9.18.0",
"eslint-config-next": "14.2.23",
"eslint-config-prettier": "9.1.0",
"husky": "9.1.7",
"lint-staged": "15.3.0",
"postcss": "8.5.1",
"prettier": "3.4.2",
"prettier-plugin-tailwindcss": "0.6.9",
"tailwindcss": "3.4.17"
}
}