-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.07 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.07 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
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
{
"name": "gymhub",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install",
"lintStaged": "lint-staged",
"webpack": "webpack-bundle-analyzer",
"lighthouse": "lhci autorun"
},
"dependencies": {
"@hookform/error-message": "^2.0.1",
"@hookform/resolvers": "^3.3.4",
"@sentry/nextjs": "^7.93.0",
"@tanstack/react-query": "^5.17.10",
"axios": "^1.6.5",
"classnames": "^2.5.1",
"cookies-next": "^4.1.1",
"date-fns": "^3.3.1",
"framer-motion": "^10.18.0",
"jotai": "^2.6.2",
"next": "^14.1.0",
"next-auth": "^4.24.5",
"react": "^18.2.0",
"react-datepicker": "^5.1.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.49.3",
"react-hot-toast": "^2.4.1",
"react-intersection-observer": "^9.8.1",
"sharp": "^0.33.2",
"swiper": "^11.0.5",
"yup": "^1.3.3"
},
"devDependencies": {
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@hookform/devtools": "^4.3.1",
"@lhci/cli": "^0.13.0",
"@tanstack/react-query-devtools": "^5.17.10",
"@types/gtag.js": "^0.0.18",
"@types/mixpanel-browser": "^2.48.1",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-datepicker": "^4.19.5",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^6.9.1",
"css-minimizer-webpack-plugin": "^6.0.0",
"eslint": "^8",
"eslint-config-next": "14.0.4",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"mixpanel-browser": "^2.48.1",
"prettier": "^3.2.2",
"sass": "^1.69.7",
"style-loader": "^3.3.4",
"sweetalert2": "^11.10.5",
"ts-loader": "^9.5.1",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"typescript": "^5.3.3",
"webpack": "^5.89.0",
"webpack-bundle-analyzer": "^4.10.1",
"webpack-cli": "^5.1.4"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
]
}
}