-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 2.03 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
{
"name": "chocolate-tiffin-website",
"private": true,
"version": "0.0.0",
"type": "module",
"proxy": "https://chocolate-tiffin-backend1.onrender.com",
"scripts": {
"dev": "concurrently \"npm run backend\" \"npm run frontend\"",
"build": "vite build",
"lint": "eslint . --ext js,jsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"frontend": "vite",
"backend": "node backend/server.js"
},
"dependencies": {
"@emailjs/browser": "^4.3.3",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@headlessui/react": "^2.0.4",
"@heroicons/react": "^2.1.4",
"@ionic/react": "^8.2.2",
"@material-tailwind/react": "^2.1.9",
"@mui/material": "^5.15.21",
"@react-hook/media-query": "^1.1.1",
"@react-three/drei": "^9.107.0",
"@react-three/fiber": "^8.16.8",
"axios": "^1.7.2",
"bcrypt": "^5.1.1",
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-validator": "^7.1.0",
"framer-motion": "^11.2.10",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.4.3",
"nodemon": "^3.1.4",
"react": "^18.2.0",
"react-alice-carousel": "^2.9.1",
"react-animated-cursor": "^2.11.2",
"react-dom": "^18.2.0",
"react-feather": "^2.0.10",
"react-icons": "^5.2.1",
"react-intersection-observer": "^9.10.3",
"react-responsive-carousel": "^3.2.23",
"react-router-dom": "^6.23.1",
"react-scatter-graphy": "^0.4.3",
"react-scroll": "^1.9.0",
"react-swipeable": "^7.0.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",
"concurrently": "^8.2.2",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.6",
"postcss": "^8.4.38",
"tailwindcss": "^3.4.4",
"vite": "^5.2.0"
}
}