| { |
| "name": "mkcart", |
| "version": "1.0.0", |
| "description": "MKCart E-commerce Application", |
| "main": "backend/app.js", |
| "scripts": { |
| "dev": "concurrently \"npm run server\" \"npm run client\"", |
| "server": "cd backend && npm run dev", |
| "client": "cd frontend && npm start", |
| "start": "cd backend && npm start", |
| "build": "cd frontend && npm run build", |
| "install-all": "cd backend && npm install && cd ../frontend && npm install", |
| "setup": "npm install && npm run install-all" |
| }, |
| "keywords": ["ecommerce", "react", "nodejs", "mongodb"], |
| "author": "MKCart", |
| "license": "MIT", |
| "devDependencies": { |
| "concurrently": "^8.2.2" |
| }, |
| "engines": { |
| "node": ">=16.0.0", |
| "npm": ">=8.0.0" |
| } |
| } |
|
|