-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 844 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 844 Bytes
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
{
"name": "ibdb",
"version": "1.0.0",
"description": "A website where one can see a book global rating like imdb",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodeEnv=development nodemon server.js",
"start:prod": "nodeEnv=production nodemon server.js",
"debug": "ndb server.js"
},
"keywords": [
"IBDB",
"ibdb",
"book"
],
"author": "Ajay Yadav",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.0",
"bootstrap": "^5.2.1",
"dotenv": "^16.0.2",
"ejs": "^3.1.8",
"express": "^4.18.1",
"express-rate-limit": "^6.6.0",
"helmet": "^6.0.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.6.1",
"nodemailer": "^6.8.0",
"nodemon": "^2.0.20",
"validator": "^13.7.0"
}
}