-
Notifications
You must be signed in to change notification settings - Fork 155
/
package.json
60 lines (60 loc) · 1.65 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
{
"name": "vite-project",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"start": "vite --host",
"build": "vite build",
"lint": "eslint .",
"preview": "vite preview",
"server": "cd backend && npm run dev",
"dev": "concurrently -n \"client,server\" -c \"bgBlue,bgYellow\" \"npm start\" \"npm run server\"",
"predeploy": "npm run build",
"deploy": "gh-pages -d build"
},
"dependencies": {
"@emailjs/browser": "^4.4.1",
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@fortawesome/fontawesome-free": "^6.6.0",
"@mui/icons-material": "^6.1.5",
"@mui/material": "^6.1.5",
"@reduxjs/toolkit": "^2.3.0",
"axios": "^1.7.7",
"bcrypt": "^5.1.1",
"concurrently": "^9.0.1",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"emailjs": "^4.0.3",
"express": "^4.21.1",
"firebase": "^11.0.1",
"font-awesome": "^4.7.0",
"jsonwebtoken": "^9.0.2",
"mongodb": "^6.10.0",
"mongoose": "^8.7.2",
"nodemon": "^3.1.7",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hot-toast": "^2.4.1",
"react-icons": "^5.3.0",
"react-redux": "^9.1.2",
"react-router-dom": "^6.27.0",
"roter": "^0.0.3",
"router": "^1.3.8"
},
"devDependencies": {
"@eslint/js": "^9.9.0",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"eslint": "^9.9.0",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^5.1.0-rc.0",
"eslint-plugin-react-refresh": "^0.4.9",
"gh-pages": "^5.0.0",
"globals": "^15.9.0",
"vite": "^5.4.9"
}
}