-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.34 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.34 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
{
"name": "react-jobs",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "eslint .",
"preview": "vite preview",
"server": "json-server --watch src/jobs.json --port 8000",
"backend": "nodemon backend/server.js",
"dev:full": "concurrently \"npm run backend\" \"npm run dev\""
},
"dependencies": {
"@tailwindcss/vite": "^4.1.13",
"bcryptjs": "^3.0.2",
"cloudinary": "^2.7.0",
"connect-mongo": "^5.1.0",
"cors": "^2.8.5",
"dotenv": "^17.2.2",
"express": "^5.1.0",
"express-session": "^1.18.2",
"mongoose": "^8.18.1",
"multer": "^2.0.2",
"passport": "^0.7.0",
"passport-local": "^1.0.0",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-icons": "^5.5.0",
"react-router-dom": "^7.9.1",
"react-spinners": "^0.17.0",
"react-toastify": "^11.0.5",
"tailwindcss": "^4.1.13"
},
"devDependencies": {
"@eslint/js": "^9.33.0",
"@types/react": "^19.1.10",
"@types/react-dom": "^19.1.7",
"@vitejs/plugin-react": "^5.0.0",
"concurrently": "^9.2.1",
"eslint": "^9.33.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"globals": "^16.3.0",
"json-server": "^1.0.0-beta.3",
"nodemon": "^3.1.10",
"vite": "^7.1.2"
}
}