rsnext/examples/with-yarn-workspaces/package.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
227 B
JSON
Raw Normal View History

{
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "yarn --cwd packages/web-app dev",
"build": "yarn --cwd packages/web-app build",
"start": "yarn --cwd packages/web-app start"
}
}