-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 982 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
{
"name": "photogalleryapp",
"version": "1.0.0",
"description": "An online Gallery application for uploading your memorable moments and sharing with the world",
"main": "server.js",
"scripts": {
"start": "cross-env NODE_ENV=Production node server",
"dev": "cross-env NODE_ENV=Development nodemon server"
},
"keywords": [],
"author": "Mohammed Amaan Uddin",
"license": "MIT",
"dependencies": {
"bcrypt": "^5.1.1",
"connect-mongo": "^5.1.0",
"dotenv": "^16.3.1",
"ejs": "^3.1.9",
"express": "^4.18.2",
"express-session": "^1.17.3",
"gridfs-stream": "^1.1.1",
"method-override": "^3.0.0",
"mongodb": "^5.9.1",
"mongoose": "^7.6.3",
"mongoose-findorcreate": "^4.0.0",
"morgan": "^1.10.0",
"multer": "^1.4.4",
"multer-gridfs-storage": "^5.0.2",
"passport": "^0.6.0",
"passport-google-oauth2": "^0.2.0",
"passport-local": "^1.0.0",
"stream-to-array": "^2.3.0"
},
"devDependencies": {
"cross-env": "^7.0.3",
"nodemon": "^3.0.1"
}
}