isoflow/.codesandbox/tasks.json
2023-07-29 10:04:13 +01:00

24 lines
No EOL
413 B
JSON

{
"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
}
}
}