package.json script section for Gatsby.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"scripts": { | |
"build": "gatsby build", | |
"develop": "gatsby develop", | |
"format": "prettier --write \"**/*.{js,jsx,json,md}\"", | |
"start": "npm run develop", | |
"serve": "gatsby serve", | |
"test": "npm run type-check && echo \"Write tests! -> https://gatsby.dev/unit-testing \"", | |
"type-check": "tsc", | |
"lint": "eslint --ignore-path .gitignore 'src/**/*.{js,jsx,ts,tsx}'", | |
"lint:fix": "npm run lint --fix" | |
}, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment