-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (30 loc) · 843 Bytes
/
package.json
File metadata and controls
31 lines (30 loc) · 843 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
{
"name": "face-up",
"version": "1.0.0",
"type": "module",
"description": "eCommerce application with face recognition for Microsoft Engage 2022.",
"main": "backend/server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node backend/server.js",
"dev": "nodemon backend/server.js",
"heroku-postbuild" : "cd frontend && npm install && npm run build"
},
"author": "",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.0",
"cloudinary": "^1.30.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-fileupload": "^1.3.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.3.3",
"nodemailer": "^6.7.5",
"stripe": "^9.2.0",
"validator": "^13.7.0"
}
}