diff --git a/sdk/002-nvmApp/.codesandbox/tasks.json b/sdk/002-nvmApp/.codesandbox/tasks.json new file mode 100644 index 0000000..01566d1 --- /dev/null +++ b/sdk/002-nvmApp/.codesandbox/tasks.json @@ -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" + } + } +}