{ "name": "gatsby-starter-default", "private": true, "description": "Opinionated gatsby starter with stuff I use", "version": "1.0.0", "author": "Ryan Kes", "dependencies": { "@emotion/core": "^10.0.28", "@emotion/styled": "^10.0.27", "autoprefixer": "^9.8.3", "gatsby": "^2.23.10", "gatsby-image": "^2.4.8", "gatsby-plugin-emotion": "^4.3.5", "gatsby-plugin-github-ribbon": "^1.1.0", "gatsby-plugin-manifest": "^2.4.13", "gatsby-plugin-offline": "^3.2.12", "gatsby-plugin-postcss": "^2.3.5", "gatsby-plugin-react-helmet": "^3.3.5", "gatsby-plugin-sharp": "^2.6.13", "gatsby-source-filesystem": "^2.3.13", "gatsby-transformer-sharp": "^2.5.6", "precss": "^4.0.0", "react": "^16.12.0", "react-dom": "^16.12.0", "react-helmet": "^6.0.0", "tailwindcss": "^1.4.6", "twin.macro": "^1.3.0" }, "devDependencies": { "@babel/core": "^7.10.3", "@babel/preset-typescript": "^7.10.1", "@storybook/addon-actions": "^5.3.19", "@storybook/addon-links": "^5.3.19", "@storybook/addons": "^5.3.19", "@storybook/react": "^5.3.19", "@types/react": "^16.9.38", "@types/react-dom": "^16.9.8", "@types/react-helmet": "^6.0.0", "@types/react-test-renderer": "^16.9.2", "@typescript-eslint/eslint-plugin": "^3.4.0", "@typescript-eslint/parser": "^3.4.0", "babel-jest": "^26.1.0", "babel-loader": "^8.1.0", "babel-plugin-emotion": "^10.0.33", "babel-preset-gatsby": "^0.4.11", "babel-preset-react-app": "^9.1.2", "eslint": "^7.3.1", "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-jest": "^23.17.1", "eslint-plugin-jsx-a11y": "^6.3.1", "eslint-plugin-prettier": "^3.1.3", "eslint-plugin-react": "^7.20.0", "eslint-plugin-react-hooks": "^4.0.4", "husky": ">=4", "identity-obj-proxy": "^3.0.0", "jest": "^26.1.0", "jest-emotion": "^10.0.32", "lint-staged": ">=10.2.11", "prettier": "^2.0.5", "react-test-renderer": "^16.13.1", "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 -p 6006", "build-storybook": "NODE_ENV=production build-storybook" }, "repository": { "type": "git", "url": "https://github.com/alrayyes/my-opinionated-gatsby-starter" }, "bugs": { "url": "https://github.com/alrayyes/gatsby/my-opinionated-gatsby-starter" }, "husky": { "hooks": { "pre-commit": "tsc && jest --coverage && lint-staged" } }, "lint-staged": { "*.{js,jsx,ts,tsx}": [ "prettier --write", "eslint --fix" ], "*.{json,md,mdx,css,yml}": "prettier --write" }, "jest": { "setupFilesAfterEnv": [ "/setup-test-env.js" ] }, "browserslist": [ "defaults" ] }