-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.02 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
{
"name": "ie104_finalproject_gr8",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "eslint .",
"preview": "vite preview",
"prepare": "husky",
"format": "prettier ./src/**/*.jsx --check",
"format:fix": "prettier ./src/**/*.jsx --write"
},
"dependencies": {
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@fortawesome/fontawesome-svg-core": "^6.7.1",
"@fortawesome/free-solid-svg-icons": "^6.7.1",
"@fortawesome/react-fontawesome": "^0.2.2",
"@mui/icons-material": "^6.1.3",
"@mui/material": "^6.1.3",
"@reduxjs/toolkit": "^2.3.0",
"aos": "^2.3.4",
"axios": "^1.7.7",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-icons": "^5.3.0",
"react-images-uploading": "^3.1.7",
"react-loading-overlay-ts": "^2.0.2",
"react-redux": "^9.1.2",
"react-router-dom": "^6.26.2",
"react-slick": "^0.30.2",
"react-toastify": "^10.0.5",
"recharts": "^2.13.3",
"slick-carousel": "^1.8.1",
"socket.io-client": "^4.8.1",
"tailwind-merge": "^2.5.3",
"zustand": "^5.0.1"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@eslint/compat": "^1.1.1",
"@eslint/js": "^9.10.0",
"@svgr/webpack": "^8.1.0",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"autoprefixer": "^10.4.20",
"eslint": "^9.11.0",
"eslint-plugin-react": "^7.36.1",
"eslint-plugin-react-hooks": "^5.1.0-rc.0",
"eslint-plugin-react-refresh": "^0.4.12",
"globals": "^15.9.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"tailwindcss": "^3.4.12",
"vite": "^5.4.11",
"vite-plugin-svgr": "^4.2.0"
},
"lint-staged": {
"*.js": [
"prettier --write .",
"eslint --fix",
"git add ."
]
}
}