-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 919 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 919 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
{
"name": "backendshopapi",
"version": "1.0.0",
"description": "Full E-commerce Backend API",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "SET NODE_ENV=DEVELOPMENT & nodemon server",
"prod": "SET NODE_ENV=PRODUCTION & nodemon server",
"seeder": "node BackendShopAPI/utils/seeder.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Aman98roy/BackendShopAPI.git"
},
"author": "Aman Kumar Roy",
"license": "ISC",
"bugs": {
"url": "https://github.com/Aman98roy/BackendShopAPI/issues"
},
"homepage": "https://github.com/Aman98roy/BackendShopAPI#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.0",
"cookie-parser": "^1.4.6",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.2.9",
"nodemailer": "^6.7.3",
"validator": "^13.7.0"
}
}