-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.55 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
50
51
52
53
54
55
56
57
{
"name": "market-place",
"version": "3.0.3",
"type": "module",
"description": "Market Place is a web application that allows users to buy and sell products at single place.",
"main": "index.js",
"scripts": {
"start": "node backend/server.js",
"client": "npm start --prefix frontend",
"server": "nodemon backend/server.js",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"build": "npm install && npm install --prefix frontend && npm run build --prefix frontend",
"test": "jest --watchAll --verbose"
},
"repository": {
"type": "git",
"url": "git+/~https://github.com/Vivek-0206/Market-Hub.git"
},
"keywords": [
"Market",
"Client",
"Customers",
"Products."
],
"author": "Vivek Patel, Yatharth Shah, Om Italiya, Krunalkumar Mangukiya, Sheshankumar Patel",
"license": "ISC",
"bugs": {
"url": "/~https://github.com/Vivek-0206/Market-Hub/issues"
},
"homepage": "https://market-hub.onrender.com/",
"dependencies": {
"@sendgrid/mail": "^8.1.0",
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-async-handler": "^1.2.0",
"express-rate-limit": "^7.1.5",
"firebase": "10.5.0",
"firebase-admin": "^11.11.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^7.5.3",
"multer": "^1.4.5-lts.1",
"node-mailjet": "^6.0.5",
"react-responsive": "^9.0.2",
"sharp": "^0.32.6"
},
"devDependencies": {
"@babel/core": "^7.23.6",
"@babel/preset-env": "^7.23.6",
"concurrently": "^8.2.1",
"jest": "^29.7.0",
"nodemon": "^3.0.1",
"supertest": "^6.3.3"
}
}