-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 739 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 739 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
{
"name": "realtime-chat-app-backend",
"version": "1.0.0",
"type": "module",
"description": "This application is an attempt at implementing an instant messaging application using the WebSocket protocol. The intended clients are a web client, an Android client, and an iOS client.",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npx tsc && node dist/index.js"
},
"author": "",
"dependencies": {
"@types/cors": "^2.8.15",
"@types/express": "^4.17.20",
"@types/ws": "^8.5.8",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"mysql2": "^3.6.2",
"typescript": "^5.2.2",
"ws": "^8.14.2"
},
"license": "ISC"
}