-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.15 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.15 KB
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": "server",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "node index.js",
"server": "nodemon index.js",
"client": "cd Frontend && npm run start",
"server-install": "npm install",
"client-install": "cd Frontend && npm install",
"install-all": "concurrently \"npm run server-install\" \"npm run client-instal1\"",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"heroku-postbuild": "cd Frontend && npm install && npm run build"
},
"dependencies": {
"bcrypt": "^5.0.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.1",
"cloudinary": "^1.28.1",
"concurrently": "^7.1.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"debug": "~2.6.9",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"express-fileupload": "^1.3.1",
"googleapis": "^97.0.0",
"http-errors": "~1.6.3",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.2.7",
"morgan": "~1.9.1",
"multer": "^1.4.4",
"node-fetch": "^2.6.7",
"nodemailer": "^6.7.3",
"nodemon": "^2.0.15",
"process": "^0.11.10",
"pug": "2.0.0-beta11",
"twig": "^1.15.4"
}
}