1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-04-26 17:28:27 -04:00
jarv.is/package.json

119 lines
3.2 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": "next lint",
"lint:css": "stylelint '**/*.css'",
"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",
"@next/bundle-analyzer": "^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",
"formik": "^2.2.9",
"gray-matter": "^4.0.3",
"hex-rgb": "^5.0.0",
"html-escaper": "^3.0.3",
"is-absolute-url": "^4.0.1",
"is-email-like": "^2.0.0",
"markdown-to-jsx": "^7.1.5",
"mdx-bundler": "^8.0.1",
"modern-normalize": "github:sindresorhus/modern-normalize#1fc6b5a86676b7ac8abc62d04d6080f92debc70f",
"next": "v12.0.8-canary.19",
"next-compose-plugins": "^2.2.1",
"next-seo": "^4.28.1",
"next-themes": "^0.0.15",
"node-fetch": "^3.1.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-is": "^17.0.2",
"react-player": "^2.9.0",
"react-tweet-embed": "^1.3.1",
"reading-time": "^1.5.0",
"rehype-autolink-headings": "^6.1.1",
"rehype-external-links": "^1.0.1",
"rehype-highlight": "^5.0.2",
"rehype-slug": "^5.0.1",
"remark-gfm": "^3.0.1",
"styled-jsx": "^4.0.1",
"swr": "^1.1.2"
},
"devDependencies": {
"@jakejarvis/eslint-config": "github:jakejarvis/eslint-config#main",
"@svgr/webpack": "^6.1.2",
"@types/html-escaper": "^3.0.0",
"@types/prop-types": "^15.7.4",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"@types/react-is": "^17.0.3",
"autoprefixer": "^10.4.2",
"cross-env": "^7.0.3",
"esbuild": "^0.14.11",
"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.7",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.5",
"prettier": "^2.5.1",
"simple-git-hooks": "^2.7.0",
"stylelint": "~14.2.0",
"stylelint-config-prettier": "~9.0.3",
"stylelint-prettier": "~2.0.0",
"typescript": "^4.5.4"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.css": [
"stylelint",
"prettier --check"
],
"*.{js,jsx,ts,tsx}": [
"eslint",
"prettier --check"
],
"*.{md,mdx}": [
"prettier --check"
]
},
"volta": {
"node": "16.13.1",
"yarn": "1.22.17"
}
}