-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 891 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 891 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
34
35
{
"name": "chat-websocket",
"version": "1.0.0",
"description": "chat creado con node js y websockets",
"main": "index.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "node --watch ./server/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dtoro-dev/curso-node-js-practico-midudev.git"
},
"keywords": [
"chat",
"node",
"javascript",
"websocket"
],
"author": "Diego Toro Reyes",
"license": "MIT",
"bugs": {
"url": "https://github.com/dtoro-dev/curso-node-js-practico-midudev/issues"
},
"homepage": "https://github.com/dtoro-dev/curso-node-js-practico-midudev#readme",
"dependencies": {
"@libsql/client": "^0.3.5",
"dotenv": "^16.3.1",
"express": "4.18.2",
"moment": "^2.29.4",
"morgan": "1.10.0",
"socket.io": "4.7.2"
}
}