tasks.json 822 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. // These tasks will run in order when initializing your CodeSandbox project.
  3. "setupTasks": [
  4. {
  5. "name": "Install Dependencies",
  6. "command": "npm install"
  7. }
  8. ],
  9. // These tasks can be run from CodeSandbox. Running one will open a log in the app.
  10. "tasks": {
  11. "dev": {
  12. "name": "dev",
  13. "command": "yarn dev",
  14. "runAtStart": true
  15. },
  16. "build": {
  17. "name": "build",
  18. "command": "yarn build",
  19. "runAtStart": false
  20. },
  21. "start": {
  22. "name": "start",
  23. "command": "yarn start",
  24. "runAtStart": false
  25. },
  26. "lint": {
  27. "name": "lint",
  28. "command": "yarn lint",
  29. "runAtStart": false
  30. }
  31. }
  32. }