Skip to content

Instantly share code, notes, and snippets.

@michal-wrzosek
Last active September 18, 2019 20:11
Show Gist options
  • Save michal-wrzosek/aa7e3a6cb64d062479d77ad8247e4d83 to your computer and use it in GitHub Desktop.
Save michal-wrzosek/aa7e3a6cb64d062479d77ad8247e4d83 to your computer and use it in GitHub Desktop.
Create React App Boilerplate - ./package.json (scripts)
{
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test:unit": "react-scripts test",
"test:lint": "eslint --ext .ts --ext .tsx .",
"test:lint:fix": "npm run lint -- --fix",
"test": "npm run test:lint && npm run test:unit"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment