Question:
Considering the given package.json file, which of the following commands executes the build script? (Choose one.)
{
"name": "Frontend application",
"version": "1.0.0",
"description": "Frontend application",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc --build",
"clean": "tsc --build --clean",
"start": "node dist/server.js"
}
}