File size: 733 Bytes
c2efbe6 | 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 | {
"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"
}
}
|