-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.58 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.58 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
{
"name": "codeitboost3-fe",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "eslint .",
"preview": "vite preview",
"prepare": "husky"
},
"dependencies": {
"@commitlint/config-conventional": "^19.7.1",
"@heroicons/react": "^2.2.0",
"@tanstack/react-query": "^5.66.0",
"axios": "^1.7.9",
"dayjs": "^1.11.13",
"dotenv": "^16.4.7",
"event-source-polyfill": "^1.0.31",
"express": "^4.21.2",
"framer-motion": "^12.4.5",
"husky": "^9.1.7",
"lucide-react": "^0.475.0",
"openai": "^4.85.3",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-icons": "^5.4.0",
"react-router-dom": "6.16.0",
"react-toastify": "^11.0.3",
"swiper": "^11.2.4",
"zustand": "^5.0.3"
},
"devDependencies": {
"@commitlint/cli": "^19.7.1",
"@eslint/js": "^9.19.0",
"@tailwindcss/postcss": "^4.0.4",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@vitejs/plugin-react-swc": "^3.5.0",
"autoprefixer": "10.4.20",
"eslint": "^9.20.0",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.18",
"globals": "^15.14.0",
"lint-staged": "^15.4.3",
"postcss": "8.4.31",
"prettier": "^3.4.2",
"tailwind-scrollbar-hide": "^2.0.0",
"tailwindcss": "3.4.17",
"vite": "^6.1.0",
"vite-plugin-svgr": "^4.3.0"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": "yarn eslint --fix",
"**/*.{json,md,css,scss,html}": "yarn prettier --write"
}
}