-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.35 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
48
{
"name": "bookstore",
"version": "1.0.0",
"description": "Welcome to the My Bookstore API repository! This API allows you to manage books and user authentication for your online bookstore. Below, you'll find information on the API endpoints, how to set up and run the application locally, and some of the decisions and assumptions made during the development process.",
"main": "index.js",
"type": "commonjs",
"scripts": {
"dev": "nodemon -r dotenv/config src/index.js",
"start": "node -r dotenv/config src/index.js dotenv_config_path=.env"
},
"keywords": [
"bcrypt",
"express",
"dotenv",
"jsonwebtoken",
"mongoose",
"nodemon",
"validator"
],
"author": "Nilanjan Haldar",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.1.1",
"cookie-parser": "^1.4.7",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.0",
"mongoose": "^8.12.0",
"serverless-http": "^3.2.0",
"validator": "^13.12.0"
},
"engines": {
"node": ">=18.19.0"
},
"devDependencies": {
"nodemon": "^3.1.9",
"prettier": "^3.5.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nil2022/bookstore.git"
},
"bugs": {
"url": "https://github.com/nil2022/bookstore/issues"
},
"homepage": "https://github.com/nil2022/bookstore#readme"
}