-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1 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
{
"name": "booklist",
"version": "1.0.0",
"description": "The Plan: The frontend is composed of a main page is where user can view and modify (add, delete, adjust priority, view book descriptions, etc.) their booklist.",
"main": "app.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node app.js",
"dev": "nodemon -r dotenv/config app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Alice-2096/bookList.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Alice-2096/bookList/issues"
},
"homepage": "https://github.com/Alice-2096/bookList#readme",
"dependencies": {
"bcrypt": "^5.1.0",
"compression": "^1.7.4",
"dotenv": "^16.0.3",
"esm": "^3.2.25",
"express": "^4.18.2",
"express-session": "^1.17.3",
"moment": "^2.29.4",
"mongoose": "^6.7.0",
"morgan": "^1.10.0",
"nodemon": "^2.0.20",
"path": "^0.12.7",
"pug": "^3.0.2"
}
}