-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 948 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
{
"name": "taskflow-server",
"version": "1.0.0",
"description": "A production ready server including REST, Session, Sockets, Mongo and more",
"main": "server.js",
"scripts": {
"server:dev": "NODE_ENV=development nodemon server.js",
"server:prod": "node server.js"
},
"author": "Daniel Keva",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.0.1",
"body-parser": "^1.19.0",
"connect-mongo": "^4.4.1",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-session": "^1.17.1",
"mongodb": "^3.6.6",
"passport": "^0.4.1",
"passport-google-oauth2": "^0.2.0",
"passport-google-oauth20": "^2.0.0",
"passport-local": "^1.0.0",
"socket.io": "^2.4.1",
"validator": "^13.6.0"
},
"devDependencies": {
"nodemon": "^2.0.7"
}
}