diff --git a/.codesandbox/tasks.json b/.codesandbox/tasks.json deleted file mode 100644 index 8560ef6..0000000 --- a/.codesandbox/tasks.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - // These tasks will run in order when initializing your CodeSandbox project. - "setupTasks": [ - { - "name": "Install Dependencies", - "command": "npm install" - } - ], - - // These tasks can be run from CodeSandbox. Running one will open a log in the app. - "tasks": { - "server": { - "name": "server", - "command": "npm start" - }, - "lint": { - "name": "lint", - "command": "npm run lint" - }, - "n": { - "name": "n", - "command": "npm start", - "runAtStart": true, - "preview": { - "port": 3000 - } - } - } -}