mirror of
https://github.com/Jeuners/agenttwo.git
synced 2026-09-09 15:02:31 +02:00
16 lines
456 B
JSON
16 lines
456 B
JSON
{
|
|
"name": "oxagenttwo",
|
|
"private": true,
|
|
"version": "0.1.0",
|
|
"workspaces": [
|
|
"server",
|
|
"web"
|
|
],
|
|
"scripts": {
|
|
"dev": "npm run dev --workspace server & npm run dev --workspace web & wait",
|
|
"dev:server": "npm run dev --workspace server",
|
|
"dev:web": "npm run dev --workspace web",
|
|
"typecheck": "npm run typecheck --workspaces --if-present",
|
|
"start": "npm run build --workspace web && npm start --workspace server"
|
|
}
|
|
}
|