canina/package.json
parsa aghaei 7615aa0e51 fix: resolve seed encoding, search param, and wiki data source issues
- Fix seed-products.ts TS error (implicit any) and BOM handling
- Re-run full seed to restore correct Persian encoding in DB
- Fix productService query→search param mismatch
- Fix IngredientWiki hardcoded port 4000→use settingsStore
- Restore seed-products-data.json from git after accidental corruption
2026-07-11 15:40:49 +03:30

21 lines
992 B
JSON

{
"name": "caninoiran-workspace",
"version": "1.0.0",
"private": true,
"scripts": {
"install:all": "npm install && cd backend && npm install && cd ../frontend/application && npm install && cd ../admin-panel && npm install",
"dev:backend": "cd backend && npm run start:dev",
"dev:frontend": "cd frontend/application && npm run dev",
"dev:admin": "cd frontend/admin-panel && npm run dev",
"dev": "node scripts/start-dev.js",
"build:backend": "cd backend && npm run build",
"build:frontend": "cd frontend/application && npm run build",
"build:admin": "cd frontend/admin-panel && npm run build",
"build": "npm run build:backend && npm run build:frontend && npm run build:admin",
"start": "concurrently -c \"blue,magenta,green\" -n \"backend,store,admin\" \"cd backend && npm run start:prod\" \"cd frontend/application && npm run start\" \"cd frontend/admin-panel && npm run preview\""
},
"devDependencies": {
"concurrently": "^8.2.2"
}
}