isoflow/.codesandbox/tasks.json

24 lines
413 B
JSON
Raw Normal View History

2023-07-29 09:04:13 +00:00
{
"setupTasks": [
{
"name": "Install dependencies",
"command": "npm i"
}
],
"tasks": {
"start": {
"name": "Start Isoflow",
"command": "npm run start",
"runAtStart": true,
"preview": {
"port": 3000,
"prLink": "direct"
}
},
"test": {
"name": "Run tests",
"command": "npm run test",
"runAtStart": false
}
}
}