Files
zerp/package.json

33 lines
1.1 KiB
JSON

{
"name": "z-crm",
"version": "1.0.0",
"description": "Z.CRM - Enterprise CRM System - Contact Management, Sales, Inventory, Projects, HR, Marketing",
"scripts": {
"capture": "node scripts/capture-page.mjs",
"capture:admin": "node scripts/capture-page.mjs /admin",
"capture:contacts": "node scripts/capture-page.mjs /contacts",
"install-all": "npm install && cd backend && npm install && cd ../frontend && npm install",
"dev": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\"",
"dev:backend": "cd backend && npm run dev",
"dev:frontend": "cd frontend && npm run dev",
"build": "cd backend && npm run build && cd ../frontend && npm run build",
"start": "concurrently \"npm run start:backend\" \"npm run start:frontend\"",
"start:backend": "cd backend && npm start",
"start:frontend": "cd frontend && npm start"
},
"keywords": [
"crm",
"erp",
"contact-management",
"hr",
"inventory",
"projects"
],
"author": "مجموعة أتمتة",
"license": "PROPRIETARY",
"devDependencies": {
"@playwright/test": "^1.58.2",
"concurrently": "^8.2.2"
}
}