-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.07 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
37
38
39
40
41
{
"name": "food-management-app",
"version": "1.0.0",
"type": "module",
"description": "To reduce food wastage",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js",
"dev": "nodemon server.js",
"watch": "postcss ./public/css/tailwind.css -o ./public/output.css --watch"
},
"author": "Maye Jesuorobo",
"license": "MIT",
"dependencies": {
"axios": "^1.4.0",
"bcrypt": "^5.1.0",
"caniuse-lite": "^1.0.30001522",
"cloudinary": "^1.34.0",
"connect-mongo": "^4.6.0",
"dotenv": "^16.0.3",
"ejs": "^3.1.8",
"express": "^4.18.2",
"express-flash": "^0.0.2",
"express-session": "^1.17.3",
"method-override": "^3.0.0",
"mongoose": "^6.8.3",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"nodemon": "^2.0.20",
"passport": "^0.6.0",
"passport-local": "^1.0.0",
"postcss-cli": "^10.1.0",
"validator": "^13.9.0"
},
"devDependencies": {
"autoprefixer": "^10.4.13",
"postcss": "^8.4.21",
"tailwindcss": "^3.2.7"
}
}