This repository has been archived by the owner on Jan 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.61 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
{
"name": "mingly",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"postinstall": "husky install",
"prepare": "husky install"
},
"dependencies": {
"@headlessui/react": "^1.7.16",
"@heroicons/react": "^2.0.18",
"@hookform/resolvers": "^3.1.1",
"axios": "^1.4.0",
"chart.js": "^4.4.0",
"framer-motion": "^10.16.12",
"heroicons": "^2.0.18",
"i18next": "^23.6.0",
"json-stable-stringify": "^1.0.2",
"jsonwebtoken": "^9.0.0",
"jwt-decode": "^3.1.2",
"next": "^14.0.2",
"next-auth": "^4.22.1",
"next-i18next": "^14.0.3",
"react": "^18.2.0",
"react-chartjs-2": "^5.2.0",
"react-datepicker": "^4.16.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.45.1",
"react-hot-toast": "^2.4.1",
"react-i18next": "^13.3.1",
"tailwind-datepicker-react": "^1.4.2",
"typescript": "5.1.3",
"zod": "^3.22.4"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.4",
"@types/jsonwebtoken": "^9.0.2",
"@types/node": "20.3.1",
"@types/react": "18.2.12",
"@types/react-datepicker": "^4.15.0",
"@types/react-dom": "18.2.5",
"autoprefixer": "^10.4.14",
"eslint": "8.43.0",
"eslint-config-next": "13.4.6",
"eslint-config-prettier": "8.8.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"postcss": "^8.4.24",
"prettier": "3.0.0",
"tailwindcss": "^3.3.2"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"npm run lint --fix",
"npm run prettier --write --ignore-unknown"
]
}
}