-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
34 lines (34 loc) · 842 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
{
"name": "chat-application",
"version": "1.0.0",
"description": "A chat room application",
"nodemonConfig": {
"ext": "js,html"
},
"main": "index.js",
"scripts": {
"start": "node src/index.js",
"dev": "nodemon src/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Mehulcoder/Chat-Application.git"
},
"author": "Mehul Chaturvedi",
"license": "ISC",
"bugs": {
"url": "https://github.com/Mehulcoder/Chat-Application/issues"
},
"homepage": "https://github.com/Mehulcoder/Chat-Application#readme",
"dependencies": {
"bad-words": "^3.0.4",
"express": "^4.17.1",
"moment-timezone": "^0.5.33",
"mustache": "^4.2.0",
"nodemon": "^2.0.3",
"path": "^0.12.7",
"query-string": "^6.14.1",
"request": "^2.88.2",
"socket.io": "^2.4.1"
}
}