mirror of
https://github.com/markmanx/isoflow.git
synced 2025-02-08 04:18:29 +00:00
24 lines
413 B
JSON
24 lines
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
|
||
|
}
|
||
|
}
|
||
|
}
|