-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 782 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 782 Bytes
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
{
"name": "socket-chat-app",
"version": "1.0.0",
"description": "Learning Socket.io by building a simple chat application",
"type": "module",
"main": "./src/index.js",
"scripts": {
"dev": "nodemon ./src/index.js",
"start": "node ./src/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Rahul8320/Socket-Chat-App.git"
},
"keywords": [
"socket-io",
"chat-app"
],
"author": "Rahul Dey",
"license": "ISC",
"bugs": {
"url": "https://github.com/Rahul8320/Socket-Chat-App/issues"
},
"homepage": "https://github.com/Rahul8320/Socket-Chat-App#readme",
"devDependencies": {
"nodemon": "^3.0.2"
},
"dependencies": {
"dotenv": "^16.3.1",
"express": "^4.18.2",
"socket.io": "^4.7.2"
}
}