-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
24 lines (24 loc) · 1007 Bytes
/
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
{
"name": "mern-ecommerce",
"version": "1.0.0",
"description": "A full-stack ecommerce website built using the MERN (MongoDB, Express.js, React.js, Node.js) stack. This application provides users with the ability to browse and purchase products, manage their shopping cart, and track their orders. It includes features such as user authentication, product search, reviews, and a responsive user interface.",
"main": "index.js",
"scripts": {
"start": "node server --ignore client",
"develop": "concurrently \"cd server && npm run start\" \"cd client && npm start\"",
"heroku-postbuild": "cd client && npm install && npm run build",
"install": "cd server && npm i && cd ../client && npm i",
"seed": "cd server && npm run seed",
"build": "cd client && npm run build"
},
"keywords": ["mern","ecommerce","project"],
"author": "",
"license": "MIT",
"dependencies": {
"concurrently": "^8.2.0",
"dotenv": "^16.3.1"
},
"engines": {
"node": "16.19.0"
}
}