add dev scripts to root package.json
This commit is contained in:
parent
b41a38c6d8
commit
30a2fbb33a
|
@ -1,5 +1,5 @@
|
||||||
{
|
{
|
||||||
"name": "vite-app",
|
"name": "web",
|
||||||
"private": true,
|
"private": true,
|
||||||
"version": "0.0.0",
|
"version": "0.0.0",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
|
@ -18,7 +18,11 @@
|
||||||
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint/.eslint-cache .",
|
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint/.eslint-cache .",
|
||||||
"format": "prettier --cache --write .",
|
"format": "prettier --cache --write .",
|
||||||
"format:check": "prettier --check .",
|
"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": {
|
"resolutions": {
|
||||||
"react": "18.1.0",
|
"react": "18.1.0",
|
||||||
|
|
Loading…
Reference in New Issue