-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1012 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 1012 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
{
"name": "notebook-app",
"version": "1.0.0",
"description": "This notebook app is a simple and efficient tool for managing your notes. It provides essential CRUD (Create, Read, Update, Delete) operations to help you organize your thoughts, tasks, and ideas effortlessly. With an intuitive interface and seamless functionality, you can easily create new notes, update and edit existing ones, and delete notes you no longer need.",
"type": "module",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js"
},
"keywords": [
"notebook",
"express",
"node",
"rest-api",
"mongodb",
"mongoose"
],
"author": "Mohit Gupta <https://github.com/MohitCode17>",
"license": "ISC",
"devDependencies": {
"nodemon": "^3.1.2"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.6",
"dotenv": "^16.4.5",
"ejs": "^3.1.10",
"express": "^4.19.2",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.4.0"
}
}