-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
32 lines (32 loc) · 938 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": "local-library-catalog",
"version": "1.0.0",
"description": "An Express.js app that adds, deletes, edits, and displays library catalog information such as books, authors, genres, and book copies from a MongoDB database.",
"main": "server.js",
"scripts": {
"dev": "nodemon server",
"start": "node server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/autumnchris/local-library-catalog.git"
},
"author": "autumnchris",
"license": "ISC",
"bugs": {
"url": "https://github.com/autumnchris/local-library-catalog/issues"
},
"homepage": "https://autumnchris-local-library-catalog.onrender.com/catalog",
"dependencies": {
"dotenv": "^10.0.0",
"ejs": "^3.1.10",
"express": "^4.21.2",
"express-ejs-layouts": "^2.5.1",
"moment": "^2.30.1",
"mongoose": "^6.13.5",
"validator": "^13.12.0"
},
"devDependencies": {
"nodemon": "^3.1.9"
}
}