forked from piyushyadav1617/auth_frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.91 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "auth-frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint --fix",
"format:staged": "prettier --write $(git diff --staged --name-only --diff-filter d | xargs)",
"format": "prettier ./src --write",
"lint-staged": "lint-staged",
"prepare": "husky install"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.370.0",
"@aws-sdk/s3-request-presigner": "^3.370.0",
"@hookform/error-message": "^2.0.1",
"@hookform/resolvers": "^3.1.1",
"@radix-ui/react-alert-dialog": "^1.0.4",
"@radix-ui/react-avatar": "^1.0.3",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-dialog": "^1.0.4",
"@radix-ui/react-dropdown-menu": "^2.0.5",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-popover": "^1.0.6",
"@radix-ui/react-radio-group": "^1.1.3",
"@radix-ui/react-scroll-area": "^1.0.4",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slider": "^1.1.2",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-switch": "^1.0.3",
"@radix-ui/react-tabs": "^1.0.4",
"@radix-ui/react-toast": "^1.1.4",
"@radix-ui/react-tooltip": "^1.0.6",
"@reduxjs/toolkit": "^1.9.5",
"@tanstack/react-query": "^4.29.25",
"@tanstack/react-table": "^8.9.3",
"@total-typescript/ts-reset": "^0.4.2",
"@types/crypto-js": "^4.1.1",
"@types/node": "20.3.1",
"@types/react": "18.2.14",
"@types/react-dom": "18.2.6",
"autoprefixer": "10.4.14",
"axios": "^1.4.0",
"class-variance-authority": "^0.6.0",
"clsx": "^1.2.1",
"cmdk": "^0.2.0",
"crisp-sdk-web": "^1.0.19",
"crypto-js": "^4.1.1",
"jsonwebtoken": "^9.0.0",
"lucide-react": "^0.252.0",
"next": "13.4.7",
"next-auth": "^4.22.1",
"postcss": "8.4.24",
"qrcode.react": "^3.1.0",
"react": "18.2.0",
"react-color-palette": "^6.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.45.0",
"react-icons": "^4.10.1",
"react-otp-input": "^3.0.4",
"react-pro-sidebar": "^1.1.0-alpha.1",
"react-redux": "^8.1.1",
"recharts": "^2.7.2",
"redux": "^4.2.1",
"tailwind-merge": "^1.13.2",
"tailwindcss": "3.3.2",
"tailwindcss-animate": "^1.0.6",
"typescript": "5.1.3",
"uuid": "^9.0.1",
"yup": "^1.2.0",
"zustand": "^4.3.9"
},
"devDependencies": {
"@types/uuid": "^9.0.4",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"eslint": "^8.44.0",
"eslint-config-next": "^13.4.7",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react-refresh": "^0.4.1",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.0",
"lint-staged": "^13.2.3",
"prettier": "^2.8.8"
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"eslint . --quiet --fix",
"prettier --write"
]
}
}