-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.23 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.23 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "chatconnect-pro",
"version": "3.0.0",
"description": "ChatConnect Pro - Next-generation real-time chat application with modern UI and enhanced features",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint *.js utils/*.js",
"format": "prettier --write *.js utils/*.js public/js/*.js",
"clean": "rm -rf node_modules package-lock.json && npm install"
},
"keywords": [
"chat",
"real-time",
"socket.io",
"express",
"messaging",
"communication",
"modern-ui",
"glassmorphism"
],
"author": "Khushal Mehta",
"license": "MIT",
"dependencies": {
"express": "^4.22.1",
"moment": "^2.30.1",
"moment-timezone": "^0.5.45",
"socket.io": "^4.8.1"
},
"devDependencies": {
"nodemon": "^3.0.2",
"eslint": "^8.57.0",
"prettier": "^3.1.1"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/Khushal-Me/ChatConnect.git"
},
"bugs": {
"url": "https://github.com/Khushal-Me/ChatConnect/issues"
},
"homepage": "https://github.com/Khushal-Me/ChatConnect#readme"
}