This repository has been archived by the owner on Jul 6, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.79 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": "next-app-router-mui-tailwind-starter",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install",
"cypress:open": "cypress open",
"cypress:run": "cypress run"
},
"type": "module",
"dependencies": {
"@auth/core": "^0.8.2",
"@headlessui/react": "^1.7.14",
"@heroicons/react": "^2.0.18",
"@hookform/resolvers": "^3.1.0",
"@mui/x-date-pickers": "^6.4.0",
"autoprefixer": "10.4.14",
"client-only": "^0.0.1",
"dayjs": "^1.11.7",
"next": "^13.4.4",
"notistack": "^3.0.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.43.9",
"recharts": "^2.6.2",
"server-only": "^0.0.1",
"spin-delay": "^1.2.0",
"swr": "^2.1.5",
"tailwindcss": "^3.3.2"
},
"devDependencies": {
"@hookform/devtools": "^4.3.1",
"@types/node": "^20.2.4",
"@types/react": "^18.2.12",
"@types/react-dom": "^18.2.5",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"cypress": "^12.14.0",
"eslint": "^8.40.0",
"eslint-config-next": "^13.4.4",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard-with-typescript": "^35.0.0",
"eslint-plugin-cypress": "^2.13.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-use-encapsulation": "^1.1.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"postcss": "^8.4.24",
"prettier": "2.8.8",
"prettier-plugin-tailwindcss": "^0.3.0",
"typescript": "^5.1.0-beta",
"zod": "^3.21.4"
},
"lint-staged": {
"**/*.{ts,tsx}": [
"eslint --cache --fix",
"prettier --write"
]
}
}