add dev scripts to root package.json

This commit is contained in:
Pavel Prichodko 2023-03-13 15:53:21 +01:00
parent b41a38c6d8
commit 30a2fbb33a
No known key found for this signature in database
GPG Key ID: 0EB8D75C775AB6F1
2 changed files with 6 additions and 2 deletions

View File

@ -1,5 +1,5 @@
{
"name": "vite-app",
"name": "web",
"private": true,
"version": "0.0.0",
"scripts": {

View File

@ -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",