-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
108 lines (108 loc) · 2.98 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
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "hackers-ec-fe",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite --host",
"build": "tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"test": "vitest --coverage",
"test:ui": "vitest --ui",
"beauty": "prettier --write .",
"preview": "vite preview",
"check": "prettier . --check",
"prepare": "husky install",
"pre-commit": "lint-staged"
},
"dependencies": {
"@hookform/resolvers": "^3.6.0",
"@react-oauth/google": "^0.12.1",
"@reduxjs/toolkit": "^2.2.5",
"@types/react-copy-to-clipboard": "^5.0.7",
"axios": "^1.7.2",
"chart.js": "^4.4.3",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"clx": "^1.0.0",
"framer-motion": "^11.2.10",
"jwt-decode": "^4.0.0",
"lucide-react": "^0.394.0",
"nprogress": "^0.2.0",
"rc-progress": "^4.0.0",
"react": "^18.2.0",
"react-apexcharts": "^1.4.1",
"react-chartjs-2": "^5.2.0",
"react-copy-to-clipboard": "^5.1.0",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "^18.2.0",
"react-hook-form": "^7.51.5",
"react-icons": "^5.2.1",
"react-paginate": "^8.2.0",
"react-redux": "^9.1.2",
"react-router-dom": "^6.23.1",
"react-slick": "^0.30.2",
"react-spinners": "^0.13.8",
"react-top-loading-bar": "^2.3.1",
"slick-carousel": "^1.8.1",
"socket.io": "^4.7.5",
"socket.io-client": "^4.7.5",
"sonner": "^1.5.0",
"tailwind-merge": "^2.3.0",
"vitest-canvas-mock": "^0.3.3",
"zod": "^3.23.8"
},
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"@mswjs/data": "^0.16.1",
"@testing-library/jest-dom": "^6.4.5",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.2",
"@types/eslint": "^8.56.10",
"@types/jwt-decode": "^3.1.0",
"@types/nprogress": "^0.2.3",
"@types/react": "^18.3.3",
"@types/react-copy-to-clipboard": "^5.0.7",
"@types/react-dom": "^18.2.22",
"@types/react-slick": "^0.23.13",
"@types/redux-mock-store": "^1.0.6",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/coverage-v8": "^1.6.0",
"@vitest/ui": "^1.6.0",
"autoprefixer": "^10.4.19",
"axios-mock-adapter": "^1.22.0",
"canvas": "^2.11.2",
"esbuild": "0.23.0",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-react": "^7.34.2",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.7",
"husky": "^8.0.0",
"jsdom": "^24.1.0",
"lint-staged": "^15.2.5",
"msw": "^2.3.1",
"postcss": "^8.4.38",
"prettier": "3.3.1",
"redux-mock-store": "^1.5.4",
"rollup": "^4.18.1",
"tailwindcss": "^3.4.4",
"typescript": "^5.2.2",
"vite": "^5.2.0",
"vitest": "^1.6.0"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"src/**/*.{css,scss,html,json,md}": [
"prettier --write"
]
}
}