forked from Spiderjockey02/realtime-chat-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 954 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
35
36
37
38
39
40
41
{
"name": "realtime-chat-app",
"version": "1.0.0",
"description": "realtime messager",
"main": "src/index.js",
"scripts": {
"start": "node .",
"db": "npx prisma studio"
},
"author": "",
"license": "ISC",
"dependencies": {
"@prisma/client": "^4.1.0",
"bcrypt": "^5.0.1",
"body-parser": "^1.18.3",
"chalk": "^4.1.2",
"compression": "^1.7.4",
"connect-flash": "^0.1.1",
"dotenv": "^16.0.1",
"ejs": "^3.1.8",
"express": "^4.16.3",
"express-session": "^1.17.3",
"memorystore": "^1.6.7",
"moment": "^2.29.4",
"mongoose": "^6.3.3",
"on-finished": "^2.4.1",
"passport": "^0.6.0",
"passport-local": "^1.0.0",
"simple-node-logger": "^21.8.12",
"socket.io": "^4.5.0"
},
"devDependencies": {
"eslint": "^8.19.0",
"prisma": "^4.1.0",
"request": "^2.87.0"
},
"optionalDependencies": {
"bufferutil": "^4.0.6",
"utf-8-validate": "^5.0.9"
}
}