-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.14 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
{
"name": "kitchen-recipe-management-system",
"version": "1.0.0",
"description": "A kitchen recipe management system using Node.js and Express can be built without controllers, handling CRUD operations within routes. This simplifies the structure, with routes managing data, models for database interaction, and authentication/validation within routes. Testing and deployment ensure functionality.",
"type": "module",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"dev": "nodemon --env-file=.env src/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/manojconcept/b-kitchen-recipe-management-system.git"
},
"keywords": [
"kitchen recipe management system"
],
"author": "manojconcept",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"express": "^4.19.2",
"jsonwebtoken": "^9.0.2",
"lodash": "^4.17.21",
"method-override": "^3.0.0",
"moment": "^2.30.1",
"mongodb": "^6.5.0",
"mongoose": "^8.2.4"
},
"devDependencies": {
"nodemon": "^3.1.0"
}
}