mirror of
				https://github.com/mastermindzh/rickvanlieshout.com
				synced 2025-10-31 00:29:46 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			162 lines
		
	
	
		
			5.5 KiB
		
	
	
	
		
			JSON
		
	
	
	
	
	
			
		
		
	
	
			162 lines
		
	
	
		
			5.5 KiB
		
	
	
	
		
			JSON
		
	
	
	
	
	
| {
 | |
|   "name": "rickvanlieshout-com",
 | |
|   "version": "1.3.1",
 | |
|   "description": "My personal blog / website",
 | |
|   "keywords": [
 | |
|     "gatsby",
 | |
|     "graphql",
 | |
|     "react",
 | |
|     "blog",
 | |
|     "mastermindzh",
 | |
|     "Rick van Lieshout"
 | |
|   ],
 | |
|   "repository": {
 | |
|     "type": "git",
 | |
|     "url": "https://git.mastermindzh.tech/mastermindzh/rickvanlieshout.com"
 | |
|   },
 | |
|   "license": "MIT",
 | |
|   "author": "Rick van Lieshout <info@rickvanlieshout.com>",
 | |
|   "scripts": {
 | |
|     "build": "npm run clean && gatsby build",
 | |
|     "clean": "rimraf .cache public",
 | |
|     "commit": "git-cz",
 | |
|     "format": "npm run format:ts && npm run format:scss",
 | |
|     "format:scss": "stylelint \"src/**/*.scss\" --fix",
 | |
|     "format:ts": "eslint \"src/**/*.{ts,tsx}\" --fix && prettier --write .",
 | |
|     "install:legacy": "npm install --legacy-peer-deps",
 | |
|     "lint": "npm run lint:ts && npm run lint:scss",
 | |
|     "lint:scss": "stylelint \"src/**/*.scss\"",
 | |
|     "lint:staged": "lint-staged",
 | |
|     "lint:ts": "eslint \"src/**/*.{ts,tsx}\" && prettier --check .",
 | |
|     "prepare": "husky install",
 | |
|     "release": "standard-version",
 | |
|     "release:major": "standard-version --release-as major",
 | |
|     "release:minor": "standard-version --release-as minor",
 | |
|     "release:patch": "standard-version --release-as patch",
 | |
|     "reset-snapshots": "find -type f -name '*.snap*' -delete && npm run test",
 | |
|     "semantic-release": "semantic-release",
 | |
|     "serve": "gatsby serve",
 | |
|     "start": "npm run clean && gatsby develop",
 | |
|     "test": "jest --config ./internal/testing/jest-config.ts",
 | |
|     "test:coverage": "jest --coverage --config ./internal/testing/jest-config.ts",
 | |
|     "test:watch": "jest --watch --config ./internal/testing/jest-config.ts"
 | |
|   },
 | |
|   "lint-staged": {
 | |
|     "*.tsx?": [
 | |
|       "npm run format:ts"
 | |
|     ],
 | |
|     "*.(sc|sa|c)ss": [
 | |
|       "npm run format:scss"
 | |
|     ]
 | |
|   },
 | |
|   "config": {
 | |
|     "commitizen": {
 | |
|       "path": "@commitlint/cz-commitlint"
 | |
|     }
 | |
|   },
 | |
|   "dependencies": {
 | |
|     "@fortawesome/fontawesome-svg-core": "^7.0.0",
 | |
|     "@fortawesome/free-solid-svg-icons": "^7.0.0",
 | |
|     "@fortawesome/react-fontawesome": "^3.0.0",
 | |
|     "classnames": "^2.5.1",
 | |
|     "disqus-react": "^1.1.7",
 | |
|     "gatsby": "^5.14.5",
 | |
|     "gatsby-link": "^5.14.1",
 | |
|     "gatsby-plugin-catch-links": "^5.14.0",
 | |
|     "gatsby-plugin-feed": "^5.14.0",
 | |
|     "gatsby-plugin-google-gtag": "^5.14.0",
 | |
|     "gatsby-plugin-image": "^3.14.0",
 | |
|     "gatsby-plugin-manifest": "^5.14.0",
 | |
|     "gatsby-plugin-optimize-svgs": "^1.0.5",
 | |
|     "gatsby-plugin-react-helmet": "^6.14.0",
 | |
|     "gatsby-plugin-remove-serviceworker": "^1.0.0",
 | |
|     "gatsby-plugin-robots-txt": "^1.8.0",
 | |
|     "gatsby-plugin-sass": "^6.14.0",
 | |
|     "gatsby-plugin-sharp": "^5.14.0",
 | |
|     "gatsby-plugin-sitemap": "^6.14.0",
 | |
|     "gatsby-remark-autolink-headers": "^6.14.0",
 | |
|     "gatsby-remark-copy-linked-files": "^6.14.0",
 | |
|     "gatsby-remark-external-links": "0.0.4",
 | |
|     "gatsby-remark-images": "^7.14.0",
 | |
|     "gatsby-remark-images-medium-zoom": "^1.7.0",
 | |
|     "gatsby-remark-prismjs": "^7.14.0",
 | |
|     "gatsby-remark-responsive-iframe": "^6.14.0",
 | |
|     "gatsby-remark-smartypants": "^6.14.0",
 | |
|     "gatsby-source-filesystem": "^5.14.0",
 | |
|     "gatsby-transformer-remark": "^6.14.0",
 | |
|     "gatsby-transformer-sharp": "^5.14.0",
 | |
|     "prismjs": "^1.30.0",
 | |
|     "react": "^18.3.1",
 | |
|     "react-cookie-consent": "^9.0.0",
 | |
|     "react-dom": "^18.3.1",
 | |
|     "react-helmet": "^6.1.0",
 | |
|     "react-toggle": "^4.1.3",
 | |
|     "reading-time": "^1.5.0"
 | |
|   },
 | |
|   "devDependencies": {
 | |
|     "@commitlint/config-conventional": "^20.0.0",
 | |
|     "@commitlint/cz-commitlint": "^20.0.0",
 | |
|     "@eslint/compat": "^1.3.1",
 | |
|     "@eslint/eslintrc": "^3.3.1",
 | |
|     "@eslint/js": "^9.31.0",
 | |
|     "@jest/globals": "^30.0.4",
 | |
|     "@mastermindzh/eslint-config": "^3.1.0",
 | |
|     "@mastermindzh/prettier-config": "^1.1.0",
 | |
|     "@swc/core": "^1.12.14",
 | |
|     "@swc/jest": "^0.2.39",
 | |
|     "@types/gatsby-transformer-remark": "^2.9.4",
 | |
|     "@types/jest": "^30.0.0",
 | |
|     "@types/node": "^24.0.14",
 | |
|     "@types/react": "^18.3.18",
 | |
|     "@types/react-dom": "^18.3.5",
 | |
|     "@types/react-helmet": "^6.1.11",
 | |
|     "@types/react-test-renderer": "^18.3.1",
 | |
|     "@types/react-toggle": "^4.0.5",
 | |
|     "@typescript-eslint/eslint-plugin": "^8.37.0",
 | |
|     "@typescript-eslint/parser": "^8.37.0",
 | |
|     "autoprefixer": "^10.4.21",
 | |
|     "browserslist": "^4.25.1",
 | |
|     "codecov": "^3.8.3",
 | |
|     "commitizen": "^4.3.1",
 | |
|     "commitlint": "^20.0.0",
 | |
|     "concurrently": "^9.2.0",
 | |
|     "eslint": "^9.31.0",
 | |
|     "eslint-config-prettier": "^10.1.5",
 | |
|     "eslint-import-resolver-typescript": "^4.4.4",
 | |
|     "eslint-plugin-import": "^2.32.0",
 | |
|     "eslint-plugin-jest": "^29.0.1",
 | |
|     "eslint-plugin-jsx-a11y": "^6.10.2",
 | |
|     "eslint-plugin-prettier": "^5.5.1",
 | |
|     "eslint-plugin-react": "^7.37.5",
 | |
|     "eslint-plugin-react-hooks": "^7.0.0",
 | |
|     "eslint-plugin-simple-import-sort": "^12.1.1",
 | |
|     "globals": "^16.3.0",
 | |
|     "husky": "^9.0.0",
 | |
|     "identity-obj-proxy": "3.0.0",
 | |
|     "jest": "^30.0.4",
 | |
|     "jest-cli": "^30.0.4",
 | |
|     "jest-environment-jsdom": "^30.0.4",
 | |
|     "jest-svg-transformer": "^1.0.0",
 | |
|     "lint-staged": "^16.1.2",
 | |
|     "lost": "9.0.2",
 | |
|     "markdownlint": "^0.39.0",
 | |
|     "postcss": "^8.5.6",
 | |
|     "postcss-scss": "^4.0.9",
 | |
|     "prettier": "^3.6.2",
 | |
|     "prettier-plugin-packagejson": "^2.5.18",
 | |
|     "react-test-renderer": "^18.3.1",
 | |
|     "rimraf": "^6.0.1",
 | |
|     "sass": "^1.89.2",
 | |
|     "sass-embedded": "^1.93.2",
 | |
|     "source-map-support": "^0.5.21",
 | |
|     "standard-version": "^9.5.0",
 | |
|     "stylelint": "^16.21.1",
 | |
|     "stylelint-config-recommended-scss": "^16.0.0",
 | |
|     "stylelint-order": "^7.0.0",
 | |
|     "stylelint-scss": "^6.12.1",
 | |
|     "ts-node": "^10.9.2",
 | |
|     "typescript": "^5.8.3",
 | |
|     "unist-util-find": "3.0.0"
 | |
|   }
 | |
| }
 |