-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.34 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
{
"name": "chat-app",
"version": "1.0.0",
"description": "basic chat app",
"main": "index.js",
"scripts": {
"server": "nodemon ./bin/www.js",
"start": "node index.js",
"web": "npm start --prefix web",
"webinstall": "npm install --prefix web",
"dev": "concurrently \"npm run server\" \"npm run web\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"concurrently": "^5.2.0",
"connect-flash": "^0.1.1",
"cookie-parser": "^1.4.4",
"cookie-session": "^1.4.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-jwt": "^5.3.1",
"express-messages": "^1.0.1",
"express-session": "^1.15.3",
"express-validator": "^3.2.0",
"flash": "^1.1.0",
"jsdom": "^16.5.0",
"jsonwebtoken": "^8.5.1",
"mocha": "^7.1.0",
"mongodb": "*",
"mongoose": "^5.9.2",
"mongoose-unique-validator": "*",
"nodemon": "^2.0.4",
"passport": "^0.4.1",
"passport-google-oauth2": "^0.2.0",
"passport-google-oauth20": "^2.0.0",
"passport-oauth2-jwt-bearer": "^0.2.0",
"prom-client": "^12.0.0",
"querystring": "^0.2.0",
"socket.io": "^2.3.0",
"socketio-auth": "^0.1.1",
"supertest": "^4.0.2",
"universal-cookie": "^4.0.3",
"url": "^0.11.0"
}
}