1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-04-26 17:28:27 -04:00
jarv.is/package.json
dependabot[bot] c708383afb 📦 npm: Bump next from 12.0.8-canary.13 to 12.0.8-canary.14
Bumps [next](https://github.com/vercel/next.js) from 12.0.8-canary.13 to 12.0.8-canary.14.
- [Release notes](https://github.com/vercel/next.js/releases)
- [Changelog](https://github.com/vercel/next.js/blob/canary/release.js)
- [Commits](https://github.com/vercel/next.js/compare/v12.0.8-canary.13...v12.0.8-canary.14)

---
updated-dependencies:
- dependency-name: next
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-01-02 23:14:21 -05:00

123 lines
3.4 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": "NODE_OPTIONS='--inspect' next dev",
"build": "next build",
"postbuild": "next-sitemap",
"start": "next start",
"analyze": "cross-env ANALYZE=true next build",
"lint": "run-s lint:*",
"lint:next": "next lint",
"lint:css": "stylelint '**/*.{css,scss}'",
"lint:prettier": "prettier --check ."
},
"dependencies": {
"@fontsource/comic-neue": "4.5.0",
"@fontsource/inter": "4.5.1",
"@fontsource/roboto-mono": "4.5.0",
"@hcaptcha/react-hcaptcha": "^1.0.0",
"@mdx-js/loader": "^1.6.22",
"@mdx-js/react": "^1.6.22",
"@next/bundle-analyzer": "^12.0.7",
"@next/mdx": "^12.0.7",
"@octokit/graphql": "^4.8.0",
"@primer/octicons-react": "^16.2.0",
"@sentry/node": "^6.16.1",
"classnames": "^2.3.1",
"copy-to-clipboard": "^3.3.1",
"date-fns": "^2.28.0",
"fathom-client": "^3.2.0",
"faunadb": "^4.4.1",
"feed": "^4.2.2",
"gray-matter": "^4.0.3",
"hex-rgb": "^5.0.0",
"highlight.js": "^11.3.1",
"html-entities": "^2.3.2",
"is-absolute-url": "^4.0.1",
"lodash.groupby": "^4.6.0",
"modern-normalize": "github:sindresorhus/modern-normalize#1fc6b5a86676b7ac8abc62d04d6080f92debc70f",
"next": "v12.0.8-canary.14",
"next-mdx-remote": "^3.0.8",
"next-seo": "^4.28.1",
"next-sitemap": "^1.6.203",
"node-fetch": "^3.1.0",
"p-retry": "^5.0.0",
"prop-types": "^15.8.0",
"query-string": "^7.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-gist": "^1.2.4",
"react-is": "^17.0.2",
"react-player": "^2.9.0",
"react-tweet-embed": "^1.3.1",
"rehype-autolink-headings": "^6.1.1",
"rehype-external-links": "^1.0.1",
"rehype-highlight": "^5.0.2",
"rehype-slug": "^5.0.1",
"rss-parser": "^3.12.0",
"styled-jsx": "^4.0.1",
"swr": "^1.1.2",
"trim-newlines": "^4.0.2"
},
"devDependencies": {
"@jakejarvis/eslint-config": "github:jakejarvis/eslint-config#main",
"@svgr/webpack": "^6.1.2",
"@types/lodash.groupby": "^4.6.6",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"@types/react-is": "^17.0.3",
"autoprefixer": "^10.4.1",
"cross-env": "^7.0.3",
"eslint": "~8.6.0",
"eslint-config-next": "~12.0.7",
"eslint-config-prettier": "~8.3.0",
"eslint-plugin-prettier": "~4.0.0",
"lint-staged": "^12.1.5",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.5",
"postcss-focus": "^5.0.1",
"prettier": "^2.5.1",
"sass": "^1.45.2",
"simple-git-hooks": "^2.7.0",
"stylelint": "~14.2.0",
"stylelint-config-prettier": "~9.0.3",
"stylelint-config-standard-scss": "~3.0.0",
"stylelint-prettier": "~2.0.0",
"stylelint-scss": "~4.1.0",
"typescript": "^4.5.4"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{css,scss}": [
"stylelint",
"prettier --check"
],
"*.{js,jsx,ts,tsx}": [
"eslint",
"prettier --check"
],
"*.{md,mdx}": [
"prettier --check"
]
},
"volta": {
"node": "16.13.1",
"yarn": "1.22.17"
}
}