1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-04-27 05:58:26 -04:00
jarv.is/package.json
dependabot[bot] 893c64d199 📦 npm: Bump eslint from 8.7.0 to 8.8.0
Bumps [eslint](https://github.com/eslint/eslint) from 8.7.0 to 8.8.0.
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md)
- [Commits](https://github.com/eslint/eslint/compare/v8.7.0...v8.8.0)

---
updated-dependencies:
- dependency-name: eslint
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-01-28 18:26:26 -05:00

127 lines
3.5 KiB
JSON

{
"name": "jarv.is",
"private": true,
"license": "MIT",
"homepage": "https://jarv.is/",
"sideEffects": false,
"author": {
"name": "Jake Jarvis",
"email": "jake@jarv.is",
"url": "https://github.com/jakejarvis"
},
"repository": {
"type": "git",
"url": "https://github.com/jakejarvis/jarv.is.git"
},
"scripts": {
"dev": "cross-env NODE_OPTIONS='--inspect' next dev",
"build": "next build",
"analyze": "cross-env ANALYZE=true next build",
"lint": "run-s lint:*",
"lint:next": "eslint .",
"lint:css": "stylelint '**/*.css'",
"lint:prettier": "prettier --check ."
},
"dependencies": {
"@fontsource/comic-neue": "4.5.2",
"@fontsource/inter": "4.5.2",
"@fontsource/roboto-mono": "4.5.1",
"@giscus/react": "^1.0.1",
"@hcaptcha/react-hcaptcha": "^1.1.0",
"@next/bundle-analyzer": "^12.0.9",
"@octokit/graphql": "^4.8.0",
"@primer/octicons": "^16.3.0",
"@sentry/node": "^6.17.3",
"classnames": "^2.3.1",
"copy-to-clipboard": "^3.3.1",
"date-fns": "^2.28.0",
"escape-goat": "^4.0.0",
"fathom-client": "^3.4.0",
"faunadb": "^4.4.1",
"feather-icons": "^4.28.0",
"feed": "^4.2.2",
"formik": "^2.2.9",
"gray-matter": "^4.0.3",
"markdown-to-jsx": "^7.1.6",
"modern-normalize": "^1.1.0",
"next": "^12.0.9",
"next-compose-plugins": "^2.2.1",
"next-mdx-remote": "4.0.0-rc.1",
"next-seo": "^4.29.0",
"next-themes": "^0.0.15",
"node-fetch": "^3.2.0",
"p-retry": "^5.0.0",
"prop-types": "^15.8.1",
"query-string": "^7.1.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-gist": "^1.2.4",
"react-innertext": "^1.1.5",
"react-intersection-observer": "^8.33.1",
"react-is": "^17.0.2",
"react-player": "^2.9.0",
"react-tweet-embed": "^1.3.1",
"reading-time": "^1.5.0",
"rehype-external-links": "^1.0.1",
"rehype-prism-plus": "^1.3.1",
"rehype-slug": "^5.0.1",
"remark-gfm": "^3.0.1",
"remove-markdown": "^0.3.0",
"sanitize-html": "^2.6.1",
"simple-icons": "^6.7.0",
"swr": "^1.2.0",
"terser": "^5.10.0",
"twemoji": "github:twitter/twemoji#v13.1.0"
},
"devDependencies": {
"@jakejarvis/eslint-config": "github:jakejarvis/eslint-config#main",
"@svgr/webpack": "^6.2.0",
"@types/node": "*",
"@types/prop-types": "^15.7.4",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"@types/react-is": "^17.0.3",
"@types/remove-markdown": "^0.3.1",
"@types/sanitize-html": "^2.6.2",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"autoprefixer": "^10.4.2",
"cross-env": "^7.0.3",
"eslint": "~8.8.0",
"eslint-config-next": "~12.0.9",
"eslint-config-prettier": "~8.3.0",
"eslint-plugin-import": "~2.25.4",
"eslint-plugin-mdx": "~1.16.0",
"eslint-plugin-prettier": "~4.0.0",
"lint-staged": "^12.3.2",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.5",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-font-display": "^0.3.0",
"postcss-preset-env": "^7.2.3",
"prettier": "^2.5.1",
"simple-git-hooks": "^2.7.0",
"stylelint": "~14.3.0",
"stylelint-config-prettier": "~9.0.3",
"stylelint-prettier": "~2.0.0",
"typescript": "^4.5.5"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.css": [
"stylelint",
"prettier --check"
],
"*.{js,jsx,ts,tsx,md,mdx}": [
"eslint",
"prettier --check"
]
},
"volta": {
"node": "16.13.2",
"yarn": "1.22.17"
}
}