-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.25 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
{
"name": "image-share",
"version": "1.0.0",
"description": "add and share images privately",
"main": "server.js",
"scripts": {
"start": "node server.js",
"server": "nodemon server.js",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\" "
},
"repository": {
"type": "git",
"url": "git+https://github.com/chauhannishith/image-share.git"
},
"author": "Nishith",
"license": "MIT",
"bugs": {
"url": "https://github.com/chauhannishith/image-share/issues"
},
"homepage": "https://github.com/chauhannishith/image-share#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"concurrently": "^3.5.1",
"connect-mongo": "^2.0.1",
"cors": "^2.8.4",
"dotenv": "^6.0.0",
"email-verification": "^0.4.6",
"express": "^4.16.3",
"express-session": "^1.15.6",
"gridfs-stream": "^1.1.1",
"jsonwebtoken": "^8.3.0",
"method-override": "^2.3.10",
"mongoose": "^5.1.3",
"morgan": "^1.9.0",
"multer": "^1.3.0",
"multer-gridfs-storage": "^3.0.1",
"nodemailer": "^4.6.5",
"passport": "^0.4.0",
"passport-google-oauth": "^1.0.0",
"passport-local": "^1.0.0",
"path": "^0.12.7"
},
"devDependencies": {
"nodemon": "^1.17.5"
}
}