-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
da6e511
commit 81db2b9
Showing
1 changed file
with
45 additions
and
0 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,45 @@ | ||
{ | ||
// These tasks will run in order when initializing your CodeSandbox project. | ||
"setupTasks": [ | ||
{ | ||
"name": "Install Dependencies", | ||
"command": "yarn install" | ||
} | ||
], | ||
|
||
// These tasks can be run from CodeSandbox. Running one will open a log in the app. | ||
"tasks": { | ||
"start": { | ||
"name": "start", | ||
"command": "yarn start" | ||
}, | ||
"artifacts:arbitrum-sepolia": { | ||
"name": "artifacts:arbitrum-sepolia", | ||
"command": "yarn artifacts:arbitrum-sepolia" | ||
}, | ||
"dev": { | ||
"name": "dev", | ||
"command": "yarn dev", | ||
"runAtStart": true, | ||
"preview": { | ||
"port": 3000 | ||
} | ||
}, | ||
"build": { | ||
"name": "build", | ||
"command": "yarn build" | ||
}, | ||
"clean": { | ||
"name": "clean", | ||
"command": "yarn clean" | ||
}, | ||
"lint": { | ||
"name": "lint", | ||
"command": "yarn lint" | ||
}, | ||
"lint:fix": { | ||
"name": "lint:fix", | ||
"command": "yarn lint:fix" | ||
} | ||
} | ||
} |