-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
31 lines (31 loc) · 901 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
{
"name": "bookish",
"version": "1.0.0",
"description": "Website where user can add book,review,rate,upvote reviews",
"main": "server.js",
"scripts": {
"start": "cross-env NODE_ENV=production node server",
"dev": "cross-env NODE_ENV=development nodemon server"
},
"author": "Adhil",
"license": "ISC",
"dependencies": {
"connect-mongo": "^4.4.1",
"dotenv": "^9.0.2",
"express": "^4.17.1",
"express-handlebars": "^5.3.2",
"express-session": "^1.17.1",
"method-override": "^3.0.0",
"moment": "^2.29.1",
"mongoose": "^5.12.9",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"node-fetch": "^2.6.1",
"passport": "^0.4.1",
"passport-google-oauth20": "^2.0.0"
},
"devDependencies": {
"cross-env": "^7.0.3",
"nodemon": "^2.0.7"
}
}