From a5910017ea5e2ad2963df84a5949577ce4b5759b Mon Sep 17 00:00:00 2001 From: Pavel Prichodko <14926950+prichodko@users.noreply.github.com> Date: Mon, 13 Mar 2023 15:53:21 +0100 Subject: [PATCH] add dev scripts to root package.json --- apps/web/package.json | 2 +- package.json | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/apps/web/package.json b/apps/web/package.json index ce5345f2..a2e600f3 100644 --- a/apps/web/package.json +++ b/apps/web/package.json @@ -1,5 +1,5 @@ { - "name": "vite-app", + "name": "web", "private": true, "version": "0.0.0", "scripts": { diff --git a/package.json b/package.json index 6e739b08..4ef0b644 100644 --- a/package.json +++ b/package.json @@ -18,7 +18,11 @@ "lint": "eslint --cache --cache-location ./node_modules/.cache/eslint/.eslint-cache .", "format": "prettier --cache --write .", "format:check": "prettier --check .", - "clean": "turbo run clean && rimraf node_modules" + "clean": "turbo run clean && rimraf node_modules", + "web": "yarn workspace web dev", + "mobile": "yarn workspace mobile dev", + "desktop": "yarn workspace desktop dev", + "storybook": "yarn workspace @status-im/components storybook" }, "resolutions": { "react": "18.1.0",