forked from TarunTomar122/aChat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 825 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
{
"name": "iitj-a-chat",
"version": "0.0.1",
"description": "A chat application.",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"prettier-fix": "prettier --write '**/*.js'",
"prettier-check": "prettier --list-different '**/*.js'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pclubiitj/a-chat.git"
},
"author": "Programming Club, Indian Institute of Technology, Jodhpur",
"license": "MIT",
"bugs": {
"url": "https://github.com/pclubiitj/a-chat/issues"
},
"homepage": "https://github.com/pclubiitj/a-chat/a-chat#readme",
"dependencies": {
"express": "^4.17.1",
"mongoose": "^5.9.9",
"socket.io": "^2.3.0",
"socket.io-client": "^2.3.0"
},
"devDependencies": {
"prettier": "^2.0.4"
}
}