-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 750 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 750 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
32
33
34
35
36
37
{
"name": "e-mart",
"version": "1.0.0",
"description": "Fullstack, e-commerce",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js",
"dev": "nodemon server.js"
},
"keywords": [
"mongoose",
"express",
"angular",
"node"
],
"author": "",
"license": "ISC",
"engines": {
"node": ">=14.0.0"
},
"devDependencies": {
"nodemon": "^3.1.10"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"colors": "^1.3.3",
"cors": "^2.8.5",
"express": "^4.17.1",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.16.3",
"multer": "^2.0.1",
"nodemailer": "^6.6.5",
"validator": "^13.6.0"
}
}