Mom-Portal/package.json
KevinB-T 30894e7f27 Configure VM services and fix auth flow
- point MySQL and Whisper settings to the VM
- add VM MySQL bootstrap scripts and docs
- allow LAN Vite origins for CORS
- fix Express 5 validation assignment crash
- allow login with username or email
- prevent recursive auth refresh retries
2026-05-15 15:19:49 +05:30

46 lines
1.2 KiB
JSON

{
"name": "orphion-platform",
"private": true,
"type": "module",
"workspaces": [
"frontend",
"backend"
],
"scripts": {
"dev": "npm run dev --workspace @orphion/frontend",
"dev:api": "npm run dev --workspace @orphion/backend",
"dev:all": "npm run dev:api & npm run dev",
"build": "npm run build --workspace @orphion/frontend",
"start:api": "npm run start --workspace @orphion/backend",
"migrate": "npm run migrate --workspace @orphion/backend",
"lint": "eslint .",
"format": "prettier --write .",
"prepare": "husky || true"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,css,md,yml,yaml}": [
"prettier --write"
],
"*.{js,jsx,ts,tsx}": [
"eslint --fix"
]
},
"devDependencies": {
"@eslint/js": "^9.32.0",
"@types/node": "^22.16.5",
"@types/react": "^19.2.0",
"@types/react-dom": "^19.2.0",
"eslint": "^9.32.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-prettier": "^5.2.6",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"globals": "^15.15.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.7.3",
"typescript": "^5.8.3",
"typescript-eslint": "^8.56.1"
}
}