forked from rufaelfekadu/BGMEA-FoodBank
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 939 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
33
34
35
36
37
{
"name": "food-donation-management-system",
"version": "1.0.0",
"description": "A Food donation management system in which donors can donate the food and this food can be fed to the poor people",
"main": "app.js",
"scripts": {
"build": "npm run lint",
"lint": "eslint .",
"start": "node app.js --port 8080",
"dev": "nodemon app.js -e html,css,js,ejs"
},
"keywords": [
"Food",
"Donation",
"management"
],
"author": "aayush",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"connect-flash": "^0.1.1",
"dotenv": "^10.0.0",
"ejs": "^3.1.6",
"express": "^4.17.2",
"express-ejs-layouts": "^2.5.1",
"express-session": "^1.17.3",
"method-override": "^3.0.0",
"mongoose": "^6.1.2",
"passport": "^0.5.2",
"passport-local": "^1.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"eslint": "^8.54.0",
"nodemon": "^2.0.15"
}
}