Files

15 lines
411 B
JSON
Raw Permalink Normal View History

2026-04-22 21:26:59 -05:00
{
2026-04-22 22:28:46 -05:00
"name": "codedump",
2026-04-22 21:26:59 -05:00
"version": "1.0.0",
"private": true,
"workspaces": ["client", "server"],
"scripts": {
"dev": "concurrently \"npm run dev --workspace=server\" \"npm run dev --workspace=client\"",
"build": "npm run build --workspace=client && npm run build --workspace=server",
"start": "npm run start --workspace=server"
},
"devDependencies": {
"concurrently": "^8.2.2"
}
}