From 357d2aab374620df5f1317e6d7587d89eb522c1b Mon Sep 17 00:00:00 2001 From: Haider Alshamma Date: Mon, 30 Oct 2023 11:47:33 -0400 Subject: [PATCH] chore: format package.json --- package.json | 5 ----- 1 file changed, 5 deletions(-) diff --git a/package.json b/package.json index a1c6a4a3d..c1d9a9942 100644 --- a/package.json +++ b/package.json @@ -8,22 +8,17 @@ }, "scripts": { "new": "plop", - "start": "concurrently \"yarn build --watch\" \"start-storybook -p 9999\"", "start:e2e": "yarn concurrently --kill-others \"yarn start --ci\" \"yarn wait-on http://localhost:9999 && cypress open\"", - "build": "rollup -c", "build:storybook": "build-storybook", - "check": "yarn check:types && yarn check:lint && yarn check:format", "check:types": "tsc && cd cypress && tsc", "check:lint": "eslint --config ./.eslintrc .'*/**/*.{js,ts,tsx}'", "check:format": "prettier -c .", - "fix": "yarn fix:lint && yarn fix:format", "fix:lint": "yarn check:lint --fix", "fix:format": "prettier -w .", - "test": "yarn test:components && yarn run test:e2e", "test:components": "jest", "test:e2e": "yarn build:storybook && yarn concurrently --success \"first\" --kill-others \"yarn http-server -p 9999 ./storybook-static\" \"yarn wait-on http://localhost:9999 && yarn cypress run\"",