comty/package.json
SrGooglo 955a22cd64 Simplify monorepo setup
Remove concurrently and unused root dependencies. Update postinstall
script to install dependencies directly within sub-packages.

Add a check for process.stdin in the server REPL to prevent errors
when run without an available input stream.
2025-05-12 18:07:50 +00:00

13 lines
362 B
JSON
Executable File

{
"author": "RageStudio",
"license": "ComtyLicense",
"private": true,
"scripts": {
"dev": "npm run dev:client & npm run dev:server",
"dev:server": "cd packages/server && npm run dev",
"dev:client": "cd packages/app && npm run dev",
"postinstall": "cd packages/app && npm install && cd ../server && npm install"
},
"_web_app_path": "packages/app"
}