forked from BlogSphere/BlogSphere
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.5 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.5 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
{
"name": "blog-sphere",
"version": "1.0.0",
"description": "Smart Community Blog Platform",
"main": "src/server/index.ts",
"type": "module",
"scripts": {
"server": "nodemon --watch src/server --watch .env -e ts,js,json,env --exec tsx src/server/index.ts",
"client": "vite --port 5173",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"build": "tsc && vite build",
"preview": "vite preview",
"start": "tsx src/server/index.ts"
},
"dependencies": {
"@reduxjs/toolkit": "^2.5.0",
"axios": "^1.7.9",
"bcryptjs": "^2.4.3",
"bootstrap": "^5.3.3",
"canvas-confetti": "^1.9.3",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"framer-motion": "^11.15.0",
"jsonwebtoken": "^9.0.2",
"lucide-react": "^0.469.0",
"mongoose": "^8.3.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-redux": "^9.2.0",
"react-router-dom": "^6.28.1",
"socket.io": "^4.7.5",
"socket.io-client": "^4.8.1"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.7",
"@types/node": "^20.17.9",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.20",
"concurrently": "^8.2.2",
"nodemon": "^3.1.14",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.17",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vite": "^6.0.5"
}
}