-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.7 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
{
"name": "vite2",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"build": "vite build",
"lint": "eslint . --ext js,jsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"start": "node server.js",
"server": "nodemon server.js --watch backend",
"client": "vite",
"dev": "concurrently \"npm run server\" \"npm run client\""
},
"dependencies": {
"@heroicons/react": "^2.1.3",
"@material-tailwind/react": "^2.1.9",
"@mui/material": "^5.15.20",
"@reduxjs/toolkit": "^2.2.5",
"bcryptjs": "^2.4.3",
"color-thief-browser": "^2.0.2",
"concurrently": "^8.2.2",
"cookie-parser": "^1.4.6",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-async-handler": "^1.2.0",
"gsap": "^3.12.5",
"heroicons": "^2.1.3",
"jsonwebtoken": "^9.0.2",
"locomotive-scroll": "^4.1.4",
"mongoose": "^8.4.1",
"react": "^18.2.0",
"react-bootstrap": "^2.10.2",
"react-dom": "^18.2.0",
"react-icons": "^5.2.1",
"react-loading-skeleton": "^3.4.0",
"react-markdown": "^9.0.1",
"react-redux": "^9.1.2",
"react-responsive-carousel": "^3.2.23",
"react-router-dom": "^6.23.1",
"react-toastify": "^10.0.5"
},
"devDependencies": {
"@types/react": "^18.2.66",
"@types/react-dom": "^18.2.22",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.19",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.6",
"json-loader": "^0.5.7",
"nodemon": "^3.1.3",
"postcss": "^8.4.38",
"sass": "^1.77.6",
"tailwindcss": "^3.4.3",
"vite": "^5.2.0"
}
}