-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 920 Bytes
/
package.json
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": "chat-system",
"version": "1.0.0",
"description": "console chatting",
"main": "./src/hub.js",
"type": "module",
"scripts": {
"start": "node ./src/hub/hub.js start",
"client": "node ./src/client/_client.js start",
"lc": "node ./src/client/_client.js start local",
"test": "jest test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ZayahPapaya/chat-system.git"
},
"keywords": [
"chat"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/ZayahPapaya/chat-system/issues"
},
"homepage": "https://github.com/ZayahPapaya/chat-system#readme",
"dependencies": {
"@types/jest": "^28.1.6",
"ansi-escapes": "^5.0.0",
"chance": "^1.1.8",
"dotenv": "^16.0.1",
"inquirer": "^9.1.0",
"jest": "^28.1.3",
"nanospinner": "^1.1.0",
"socket.io": "^4.5.1",
"socket.io-client": "^4.5.1"
}
}