-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
32 lines (32 loc) · 915 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": "library",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"devstart": "nodemon ./bin/www",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run devstart\" \"npm run client\"",
"heroku-postbuild": "npm install --prefix client && npm run build --prefix client"
},
"dependencies": {
"bcrypt": "^5.0.1",
"concurrently": "^7.2.2",
"cookie-parser": "~1.4.4",
"countries-list": "^2.6.1",
"debug": "~2.6.9",
"dotenv": "^16.0.0",
"express": "~4.16.1",
"express-async-handler": "^1.2.0",
"express-fileupload": "^1.4.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.3.1",
"morgan": "~1.9.1",
"multer": "^1.4.4",
"nodemailer": "^6.7.5",
"nodemailer-sendgrid-transport": "^0.2.0",
"nodemailer-smtp-transport": "^2.7.4",
"nodemon": "^2.0.16",
"validator": "^13.7.0"
}
}