-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.58 KB
/
package.json
File metadata and controls
58 lines (58 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
{
"name": "x-chan",
"version": "1.0.0",
"description": "A XChan application built with MERN stack",
"scripts": {
"start": "cd backend && npm start",
"server": "cd backend && npm run dev",
"client": "cd frontend && npm run dev",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"ngrok": "ngrok start --all --config=ngrok.yml",
"install-all": "npm install && cd backend && npm install && cd ../frontend && npm install",
"build": "cd frontend && npm run build"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@emoji-mart/data": "^1.2.1",
"@tanstack/react-query": "^5.76.1",
"@types/react": "^19.1.4",
"@types/react-dom": "^19.1.5",
"@yimura/scraper": "^1.2.4",
"autoprefixer": "^10.4.21",
"axios": "^1.9.0",
"bcryptjs": "^2.4.3",
"cloudinary": "^2.6.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"daisyui": "^5.0.35",
"dotenv": "^16.0.3",
"eslint": "^9.26.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.2",
"mongoose": "^7.0.3",
"multer": "^1.4.5-lts.1",
"nodemailer": "^7.0.3",
"nodemon": "^3.1.10",
"pg": "^8.16.0",
"postcss": "^8.5.3",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-hot-toast": "^2.5.2",
"react-icons": "^5.5.0",
"react-router-dom": "^7.6.0",
"socket.io": "^4.8.1",
"socket.io-client": "^4.8.1",
"tailwindcss": "^4.1.7",
"uuid": "^11.1.0"
},
"devDependencies": {
"@vitejs/plugin-react": "^4.4.1",
"concurrently": "^8.0.1",
"vite": "^6.3.5"
}
}