1tbfree commited on
Commit
94b1218
·
verified ·
1 Parent(s): 2acacdc

Create package.json

Browse files
Files changed (1) hide show
  1. package.json +13 -0
package.json ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "socketio-chat",
3
+ "version": "1.0.0",
4
+ "description": "A simple chat application using Socket.IO and Express.js",
5
+ "main": "chat.js",
6
+ "scripts": {
7
+ "start": "node chat.js"
8
+ },
9
+ "dependencies": {
10
+ "express": "^4.18.2",
11
+ "socket.io": "^4.5.4"
12
+ }
13
+ }