-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.07 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.07 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
{
"name": "analytics-dashboard-realtime",
"version": "1.0.0",
"private": true,
"description": "Real-time analytics dashboard with Socket.io streaming, KPI cards, and live event feed",
"author": "hooperits",
"license": "MIT",
"keywords": ["analytics", "realtime", "dashboard", "socket.io", "next.js", "streaming"],
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"server": "tsx server/index.ts",
"dev:all": "concurrently \"npm run dev\" \"npm run server\""
},
"dependencies": {
"next": "^15.2.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"@mui/material": "^6.1.0",
"@mui/icons-material": "^6.1.0",
"@emotion/react": "^11.13.0",
"@emotion/styled": "^11.13.0",
"@mui/material-nextjs": "^6.1.0",
"recharts": "^2.13.0",
"socket.io": "^4.8.0",
"socket.io-client": "^4.8.0"
},
"devDependencies": {
"typescript": "^5.6.0",
"@types/node": "^22.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"concurrently": "^9.0.0",
"tsx": "^4.19.0"
}
}