-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 1.03 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
{
"name": "blazechat",
"version": "0.0.1",
"description": "A platform for connecting people: A place to chat, follow interesting conversions and be a part of a growing community",
"main": "server.js",
"scripts": {
"test": "jest test/",
"start": "node server.js",
"start:dev": "nodemon server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/elishaking/blazechat.git"
},
"keywords": [
"Chat",
"Connect"
],
"author": "King Elisha",
"license": "ISC",
"bugs": {
"url": "https://github.com/elishaking/blazechat/issues"
},
"homepage": "https://github.com/elishaking/blazechat#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"concurrently": "^5.0.0",
"dotenv": "^8.1.0",
"express": "^4.17.1",
"firebase": "^7.2.0",
"helmet": "^3.21.0",
"jsonwebtoken": "^8.5.1",
"nodemailer": "^6.3.1",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"redis": "^3.0.2",
"validator": "^11.1.0"
},
"devDependencies": {
"jest": "25.1.0"
}
}