1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-04-26 14:38:30 -04:00
jarv.is/package.json

154 lines
4.4 KiB
JSON

{
"name": "jarv.is",
"version": "1.3.37",
"homepage": "https://jarv.is/",
"license": "MIT",
"private": true,
"author": {
"name": "Jake Jarvis",
"email": "jake@jarv.is",
"url": "https://github.com/jakejarvis"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jakejarvis/jarv.is.git"
},
"type": "module",
"exports": "./assets/js/index.js",
"main": "./assets/js/index.js",
"scripts": {
"build": "gulp",
"start": "gulp serve",
"clean": "gulp clean",
"lint": "run-s lint:**",
"lint:ts": "tsc --noEmit",
"lint:js": "eslint --ext .js,.ts .",
"lint:scss": "stylelint 'assets/sass/**/*.scss' --syntax scss",
"lint:md": "markdownlint 'content/**/*.md'",
"lint:prettier": "prettier --check .",
"percy": "npx percy snapshot"
},
"dependencies": {
"@babel/cli": "^7.14.8",
"@fontsource/comic-neue": "4.5.0",
"@fontsource/inter": "4.5.0",
"@fontsource/roboto-mono": "4.5.0",
"@jakejarvis/dark-mode": "0.1.1",
"@octokit/graphql": "^4.6.4",
"@octokit/graphql-schema": "^10.58.0",
"@sentry/node": "^6.10.0",
"cross-fetch": "3.1.4",
"date-fns": "2.23.0",
"fast-xml-parser": "^3.19.0",
"faunadb": "^4.3.0",
"graphql": "^15.5.1",
"graphql-request": "^3.5.0",
"graphql-tag": "^2.12.5",
"html-entities": "^2.3.2",
"lit-html": "1.4.1",
"modern-normalize": "1.1.0",
"node-fetch": "^2.6.1",
"numeral": "2.0.6",
"query-string": "^7.0.1",
"twemoji": "13.1.0",
"twemoji-emojis": "14.1.0",
"url-parse": "1.5.3"
},
"devDependencies": {
"@babel/core": "^7.14.8",
"@babel/eslint-parser": "^7.14.9",
"@babel/preset-env": "^7.14.9",
"@types/node-fetch": "^2.5.12",
"@types/numeral": "^2.0.1",
"@types/twemoji": "^12.1.2",
"@types/url-parse": "^1.4.3",
"@typescript-eslint/eslint-plugin": "^4.29.0",
"@typescript-eslint/parser": "^4.29.0",
"@vercel/node": "^1.11.1",
"autoprefixer": "^10.3.1",
"babel-loader": "^8.2.2",
"babel-plugin-template-html-minifier": "^4.1.0",
"browser-sync": "^2.27.5",
"clean-css": "^5.1.4",
"copy-webpack-plugin": "^9.0.1",
"css-loader": "^6.2.0",
"css-minimizer-webpack-plugin": "^3.0.2",
"debug": "^4.3.2",
"del": "^6.0.0",
"eslint": "~7.32.0",
"eslint-config-prettier": "~8.3.0",
"eslint-plugin-compat": "~3.11.1",
"eslint-plugin-import": "~2.23.4",
"eslint-plugin-lit": "~1.5.1",
"eslint-plugin-no-unsanitized": "~3.1.5",
"eslint-plugin-prettier": "~3.4.0",
"file-loader": "^6.2.0",
"gulp": "^4.0.2",
"gulp-cli": "^2.3.0",
"gulp-execa": "^3.0.2",
"gulp-html-minifier-terser": "^6.0.1",
"gulp-imagemin": "^7.1.0",
"hugo-extended": "0.86.1",
"lint-staged": "^11.1.1",
"markdownlint-cli": "~0.28.1",
"mini-css-extract-plugin": "^2.1.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.3.6",
"postcss-cli": "^8.3.1",
"postcss-color-rgba-fallback": "^4.0.0",
"postcss-combine-duplicated-selectors": "^10.0.3",
"postcss-focus": "^5.0.1",
"postcss-import": "^14.0.2",
"postcss-loader": "^6.1.1",
"postcss-normalize-charset": "^5.0.1",
"postcss-reporter": "^7.0.2",
"postcss-svgo": "^5.0.2",
"prettier": "^2.3.2",
"pretty-quick": "^3.1.1",
"sass": "^1.37.2",
"sass-loader": "^12.1.0",
"simple-git-hooks": "^2.5.1",
"stylelint": "~13.13.1",
"stylelint-config-prettier": "~8.0.2",
"stylelint-config-sass-guidelines": "~8.0.0",
"stylelint-no-unsupported-browser-features": "~5.0.1",
"stylelint-prettier": "~1.2.0",
"stylelint-scss": "~3.20.1",
"terser": "^5.7.1",
"terser-webpack-plugin": "^5.1.4",
"typescript": "^4.3.5",
"webpack": "^5.48.0",
"webpack-assets-manifest": "^5.0.6",
"webpack-bundle-analyzer": "^4.4.2",
"webpack-cli": "^4.7.2",
"webpack-dev-middleware": "^5.0.0",
"webpack-subresource-integrity": "^1.5.2"
},
"optionalDependencies": {
"imagemin-gifsicle": "^7.0.0",
"imagemin-mozjpeg": "^9.0.0",
"imagemin-pngquant": "^9.0.2",
"imagemin-svgo": "^9.0.0"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.scss": [
"stylelint --syntax scss",
"pretty-quick --staged"
],
"*.ts": [
"tsc --noEmit --esModuleInterop"
],
"*.{js,ts}": [
"eslint",
"pretty-quick --staged"
],
"*.md": [
"markdownlint",
"pretty-quick --staged"
]
}
}