-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.06 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
42
43
44
45
46
47
48
49
{
"name": "project-2",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lekpeng96/food-rescue.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/lekpeng96/food-rescue/issues"
},
"homepage": "https://github.com/lekpeng96/food-rescue#readme",
"nodemonConfig": {
"watch": [
"*.*"
],
"ignore": [
"node_modules"
],
"ext": "js json ejs",
"legacyWatch": true,
"exec": "node server.js"
},
"dependencies": {
"bcrypt": "^5.0.1",
"cloudinary": "^1.30.1",
"dotenv": "^16.0.1",
"ejs": "^3.1.8",
"express": "^4.18.1",
"express-session": "^1.17.3",
"joi": "^17.6.0",
"method-override": "^3.0.0",
"mongoose": "^6.5.1",
"multer": "^1.4.5-lts.1",
"multer-storage-cloudinary": "^4.0.0",
"socket.io": "^4.5.1"
},
"engines": {
"node": "18.x",
"npm": "8.x"
}
}