generated from theholocron/react-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: add in codesandbox support (#9)
- Loading branch information
Showing
2 changed files
with
84 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
{ | ||
// These tasks will run in order when initializing your CodeSandbox project. | ||
"setupTasks": [ | ||
{ | ||
"command": "npm install", | ||
"name": "Install Dependencies" | ||
} | ||
], | ||
|
||
// These tasks can be run from CodeSandbox. Running one will open a log in the app. | ||
"tasks": { | ||
"dev": { | ||
"name": "dev", | ||
"command": "npm run dev", | ||
"runAtStart": true | ||
}, | ||
"dev:vite": { | ||
"name": "dev:vite", | ||
"command": "npm run dev:vite" | ||
}, | ||
"build": { | ||
"name": "build", | ||
"command": "npm run build" | ||
}, | ||
"build:vite": { | ||
"name": "build:vite", | ||
"command": "npm run build:vite" | ||
}, | ||
"build:storybook": { | ||
"name": "build:storybook", | ||
"command": "npm run build:storybook" | ||
}, | ||
"lint": { | ||
"name": "lint", | ||
"command": "npm run lint" | ||
}, | ||
"preview": { | ||
"name": "preview", | ||
"command": "npm run preview" | ||
}, | ||
"start": { | ||
"name": "start", | ||
"command": "npm run start" | ||
}, | ||
"start:storybook": { | ||
"name": "start:storybook", | ||
"command": "npm run start:storybook" | ||
}, | ||
"test": { | ||
"name": "test", | ||
"command": "npm run test" | ||
}, | ||
"test:cypress": { | ||
"name": "test:cypress", | ||
"command": "npm run test:cypress" | ||
}, | ||
"test:storybook": { | ||
"name": "test:storybook", | ||
"command": "npm run test:storybook" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters