package.json•930 B
{
"name": "algolia-mcp-pokemon",
"version": "1.0.0",
"private": true,
"workspaces": [
"frontend",
"backend",
"mcp-node"
],
"scripts": {
"dev": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\"",
"dev:frontend": "cd frontend && npm run dev",
"dev:backend": "cd backend && npm run dev",
"build": "npm run build:frontend && npm run build:backend",
"build:frontend": "cd frontend && npm run build",
"build:backend": "cd backend && npm run build",
"install:all": "npm install && cd frontend && npm install && cd ../backend && npm install && cd ../mcp-node && npm install && cd ..",
"clean": "rm -rf node_modules frontend/node_modules backend/node_modules mcp-node/node_modules",
"test": "cd frontend && npm run lint && cd ../backend && npm run type-check"
},
"devDependencies": {
"concurrently": "^7.6.0"
},
"engines": {
"node": ">=18.0.0"
}
}