-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.19 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.19 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
{
"name": "auth-form-nextjs",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@fontsource/roboto": "^5.0.8",
"@hookform/resolvers": "^3.3.1",
"@mui/icons-material": "^5.14.11",
"@mui/material": "^5.14.11",
"lodash": "^4.17.21",
"next": "^13.5.4",
"next-auth": "^4.23.2",
"react": "latest",
"react-dom": "latest",
"react-hook-form": "^7.47.0",
"react-icons": "^4.11.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/lodash": "^4.14.199",
"@types/node": "latest",
"@types/react": "latest",
"@types/react-dom": "latest",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "latest",
"eslint-config-next": "latest",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"typescript": "latest"
}
}