-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 loc) · 1.26 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "chatrooms",
"version": "1.0.0",
"description": "Chatrooms",
"main": "src/app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server/app.js",
"server": "NODE_ENV=production node server/app.js",
"dev": "nodemon --delay 3s --watch server server/app.js"
},
"dependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"braces": "^3.0.2",
"connect-mongo": "^3.2.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-session": "^1.17.0",
"is-empty": "^1.2.0",
"mongodb": "^3.5.1",
"mongoose": "^5.8.9",
"nodemon": "^2.0.2",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"random-words": "^1.1.0",
"rimraf": "^3.0.0",
"socket.io": "^2.3.0",
"validator": "^12.2.0"
},
"devDependencies": {},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/darkfusion90/chatrooms.git"
},
"keywords": [
"nodejs",
"expressjs",
"socket.io",
"websockets",
"chat"
],
"author": "Gaurav Adhikari Sharma",
"license": "ISC",
"bugs": {
"url": "https://github.com/darkfusion90/chatrooms/issues"
},
"homepage": "https://github.com/darkfusion90/chatrooms#readme"
}