{ "name": "gatsby-starter-default", "private": true, "description": "A simple starter to get up and developing quickly with Gatsby", "version": "0.1.0", "author": "Ryan Kes", "dependencies": { "gatsby": "^2.21.37", "gatsby-image": "^2.4.4", "gatsby-plugin-manifest": "^2.4.5", "gatsby-plugin-offline": "^3.2.3", "gatsby-plugin-react-helmet": "^3.3.1", "gatsby-plugin-sharp": "^2.6.4", "gatsby-source-filesystem": "^2.3.4", "gatsby-transformer-sharp": "^2.5.2", "prop-types": "^15.7.2", "react": "^16.12.0", "react-dom": "^16.12.0", "react-helmet": "^6.0.0" }, "devDependencies": { "@types/node": "^14.0.6", "@types/react": "^16.9.35", "@types/react-dom": "^16.9.8", "@types/react-helmet": "^6.0.0", "@typescript-eslint/eslint-plugin": "^3.1.0", "@typescript-eslint/parser": "^3.1.0", "babel-eslint": "^10.1.0", "eslint": "^7.1.0", "eslint-config-prettier": "^6.11.0", "eslint-config-react-app": "^5.2.1", "eslint-loader": "^4.0.2", "eslint-plugin-flowtype": "^5.1.3", "eslint-plugin-import": "^2.20.2", "eslint-plugin-jsx-a11y": "^6.2.3", "eslint-plugin-react": "^7.20.0", "eslint-plugin-react-hooks": "^4.0.4", "gatsby-plugin-eslint": "^2.0.8", "husky": ">=4", "lint-staged": ">=10", "prettier": "2.0.5", "typescript": "^3.9.3" }, "keywords": [ "gatsby" ], "license": "MIT", "scripts": { "build": "gatsby build", "develop": "gatsby develop", "format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md,mdx,css}\"", "lint": "eslint . --ext ts --ext tsx --ext js --ext jsx", "lint:fix": "yarn lint --fix", "type-check": "tsc", "start": "yarn develop", "serve": "gatsby serve", "clean": "gatsby clean", "test": "jest", "test:coverage": "jest --coverage", "storybook": "NODE_ENV=production start-storybook -s public", "build-storybook": "NODE_ENV=production build-storybook -s public" }, "repository": { "type": "git", "url": "https://github.com/gatsbyjs/gatsby-starter-default" }, "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" }, "husky": { "hooks": { "pre-commit": "tsc && lint-staged" } }, "lint-staged": { "*.{js,jsx,ts,tsx}": ["prettier --write", "eslint --fix"], "*.{json,md,mdx,css,yml}": "prettier --write" } }