Initial backend setup with Express and Socket.IO
This commit is contained in:
28
package.json
Normal file
28
package.json
Normal file
@@ -0,0 +1,28 @@
|
||||
{
|
||||
"name": "dashboard-backend",
|
||||
"version": "1.0.0",
|
||||
"description": "Real-time cryptocurrency dashboard backend",
|
||||
"main": "server.js",
|
||||
"scripts": {
|
||||
"start": "node server.js",
|
||||
"dev": "nodemon server.js"
|
||||
},
|
||||
"keywords": [
|
||||
"express",
|
||||
"socket.io",
|
||||
"realtime",
|
||||
"crypto"
|
||||
],
|
||||
"author": "CloudForge",
|
||||
"license": "ISC",
|
||||
"dependencies": {
|
||||
"axios": "^1.13.1",
|
||||
"cors": "^2.8.5",
|
||||
"dotenv": "^17.2.3",
|
||||
"express": "^5.1.0",
|
||||
"socket.io": "^4.8.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"nodemon": "^3.1.10"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user