2016-03-11 23:28:19 +01:00
|
|
|
{
|
2022-09-04 23:58:49 +02:00
|
|
|
"name": "rickvanlieshout-com",
|
2023-10-29 15:34:10 +01:00
|
|
|
"version": "1.3.1",
|
2022-09-04 23:58:49 +02:00
|
|
|
"description": "My personal blog / website",
|
2022-01-09 21:12:31 +01:00
|
|
|
"keywords": [
|
|
|
|
"gatsby",
|
|
|
|
"graphql",
|
|
|
|
"react",
|
2022-09-04 23:58:49 +02:00
|
|
|
"blog",
|
|
|
|
"mastermindzh",
|
|
|
|
"Rick van Lieshout"
|
2022-01-09 21:12:31 +01:00
|
|
|
],
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2022-09-05 00:11:02 +02:00
|
|
|
"url": "https://git.mastermindzh.tech/mastermindzh/rickvanlieshout.com"
|
2022-01-09 21:12:31 +01:00
|
|
|
},
|
|
|
|
"license": "MIT",
|
2022-09-05 00:11:02 +02:00
|
|
|
"author": "Rick van Lieshout <info@rickvanlieshout.com>",
|
2016-03-11 23:28:19 +01:00
|
|
|
"scripts": {
|
2022-01-09 21:12:31 +01:00
|
|
|
"build": "npm run clean && gatsby build",
|
2022-11-05 22:28:41 +01:00
|
|
|
"commit": "git-cz",
|
2018-11-09 18:08:48 +01:00
|
|
|
"clean": "rimraf .cache public",
|
2022-01-09 21:12:31 +01:00
|
|
|
"format": "npm run format:ts && npm run format:scss",
|
|
|
|
"format:scss": "stylelint \"src/**/*.scss\" --fix",
|
2022-04-22 20:15:10 +02:00
|
|
|
"format:ts": "eslint \"src\" --ext .tsx,.ts --fix && prettier --write .",
|
2022-01-09 21:12:31 +01:00
|
|
|
"lint": "npm run lint:ts && npm run lint:scss",
|
2018-11-09 18:08:48 +01:00
|
|
|
"lint:scss": "stylelint \"src/**/*.scss\"",
|
2022-04-16 17:01:59 +02:00
|
|
|
"lint:staged": "lint-staged",
|
2022-01-09 21:12:31 +01:00
|
|
|
"lint:ts": "eslint \"src\" --ext .tsx,.ts && prettier --check .",
|
2022-04-16 16:51:55 +02:00
|
|
|
"prepare": "husky install",
|
2022-11-05 22:28:41 +01:00
|
|
|
"release": "standard-version",
|
|
|
|
"release:minor": "standard-version --release-as minor",
|
|
|
|
"release:patch": "standard-version --release-as patch",
|
|
|
|
"release:major": "standard-version --release-as major",
|
2022-09-05 00:08:04 +02:00
|
|
|
"reset-snapshots": "find -type f -name '*.snap*' -delete && npm run test",
|
2022-04-16 16:51:55 +02:00
|
|
|
"semantic-release": "semantic-release",
|
2022-04-16 16:25:55 +02:00
|
|
|
"serve": "gatsby serve",
|
2022-04-16 16:51:55 +02:00
|
|
|
"start": "npm run clean && gatsby develop",
|
2022-01-09 21:12:31 +01:00
|
|
|
"test": "jest --config ./internal/testing/jest-config.ts",
|
2022-04-16 16:25:55 +02:00
|
|
|
"test:coverage": "jest --coverage --config ./internal/testing/jest-config.ts",
|
|
|
|
"test:watch": "jest --watch --config ./internal/testing/jest-config.ts"
|
2016-03-11 23:28:19 +01:00
|
|
|
},
|
2022-04-16 16:51:55 +02:00
|
|
|
"lint-staged": {
|
2022-09-06 23:48:49 +02:00
|
|
|
"*.tsx?": [
|
2022-04-16 16:51:55 +02:00
|
|
|
"npm run format:ts"
|
|
|
|
],
|
2022-09-06 23:48:49 +02:00
|
|
|
"*.(sc|sa|c)ss": [
|
2022-04-16 16:51:55 +02:00
|
|
|
"npm run format:scss"
|
|
|
|
]
|
|
|
|
},
|
2016-03-11 23:28:19 +01:00
|
|
|
"dependencies": {
|
2024-08-07 08:11:49 +02:00
|
|
|
"@fortawesome/fontawesome-svg-core": "^6.6.0",
|
|
|
|
"@fortawesome/free-solid-svg-icons": "^6.6.0",
|
2024-06-13 20:05:09 +02:00
|
|
|
"@fortawesome/react-fontawesome": "^0.2.2",
|
2024-02-05 03:36:25 +01:00
|
|
|
"classnames": "^2.5.1",
|
2023-03-26 23:20:54 +02:00
|
|
|
"disqus-react": "^1.1.5",
|
2024-11-07 07:14:28 +01:00
|
|
|
"gatsby": "^5.14.0",
|
2023-11-16 20:53:27 +01:00
|
|
|
"gatsby-link": "^5.12.1",
|
2024-02-14 15:53:52 +01:00
|
|
|
"gatsby-plugin-catch-links": "^5.13.1",
|
|
|
|
"gatsby-plugin-feed": "^5.13.1",
|
|
|
|
"gatsby-plugin-google-gtag": "^5.13.1",
|
2024-02-05 03:36:17 +01:00
|
|
|
"gatsby-plugin-image": "^3.13.0",
|
2024-02-14 15:53:52 +01:00
|
|
|
"gatsby-plugin-manifest": "^5.13.1",
|
2021-01-09 23:13:06 +01:00
|
|
|
"gatsby-plugin-optimize-svgs": "^1.0.5",
|
2024-02-14 15:53:52 +01:00
|
|
|
"gatsby-plugin-react-helmet": "^6.13.1",
|
2023-04-19 09:15:11 +02:00
|
|
|
"gatsby-plugin-remove-serviceworker": "^1.0.0",
|
2023-03-26 23:20:54 +02:00
|
|
|
"gatsby-plugin-robots-txt": "^1.8.0",
|
2024-02-14 15:53:52 +01:00
|
|
|
"gatsby-plugin-sass": "^6.13.1",
|
|
|
|
"gatsby-plugin-sharp": "^5.13.1",
|
|
|
|
"gatsby-plugin-sitemap": "^6.13.1",
|
|
|
|
"gatsby-remark-autolink-headers": "^6.13.1",
|
2024-09-17 08:48:49 +02:00
|
|
|
"gatsby-remark-copy-linked-files": "^6.13.2",
|
2019-07-11 23:47:27 +02:00
|
|
|
"gatsby-remark-external-links": "0.0.4",
|
2024-09-17 08:48:49 +02:00
|
|
|
"gatsby-remark-images": "^7.13.2",
|
2022-09-20 18:48:33 +02:00
|
|
|
"gatsby-remark-images-medium-zoom": "^1.7.0",
|
2024-09-17 08:48:49 +02:00
|
|
|
"gatsby-remark-prismjs": "^7.13.2",
|
|
|
|
"gatsby-remark-responsive-iframe": "^6.13.2",
|
2024-02-14 15:53:52 +01:00
|
|
|
"gatsby-remark-smartypants": "^6.13.1",
|
|
|
|
"gatsby-source-filesystem": "^5.13.1",
|
|
|
|
"gatsby-transformer-remark": "^6.13.1",
|
|
|
|
"gatsby-transformer-sharp": "^5.13.1",
|
2022-08-23 15:12:21 +02:00
|
|
|
"prismjs": "^1.29.0",
|
2024-05-17 22:34:05 +02:00
|
|
|
"react": "^18.3.1",
|
2022-09-06 23:48:00 +02:00
|
|
|
"react-cookie-consent": "^8.0.1",
|
2024-05-17 22:34:05 +02:00
|
|
|
"react-dom": "^18.3.1",
|
2022-09-13 17:53:30 +02:00
|
|
|
"react-helmet": "^6.1.0",
|
2022-09-29 22:28:06 +02:00
|
|
|
"react-toggle": "^4.1.3",
|
|
|
|
"reading-time": "^1.5.0"
|
2016-03-11 23:28:19 +01:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-06-29 22:05:36 +02:00
|
|
|
"@commitlint/config-conventional": "^17.6.6",
|
2023-03-26 23:20:54 +02:00
|
|
|
"@commitlint/cz-commitlint": "^17.5.0",
|
|
|
|
"@jest/globals": "^29.5.0",
|
2022-10-11 20:53:19 +02:00
|
|
|
"@mastermindzh/eslint-config": "^1.0.2",
|
2022-09-10 09:27:37 +02:00
|
|
|
"@mastermindzh/prettier-config": "^1.0.0",
|
2022-04-16 16:51:55 +02:00
|
|
|
"@semantic-release/exec": "6.0.3",
|
|
|
|
"@semantic-release/git": "10.0.1",
|
2023-06-29 22:05:36 +02:00
|
|
|
"@swc/core": "^1.3.67",
|
2023-04-19 09:15:11 +02:00
|
|
|
"@swc/jest": "^0.2.26",
|
2022-01-09 21:12:31 +01:00
|
|
|
"@types/gatsby-transformer-remark": "^2.9.1",
|
2023-06-29 22:05:36 +02:00
|
|
|
"@types/jest": "^29.5.2",
|
2023-04-19 09:15:11 +02:00
|
|
|
"@types/node": "^18.15.11",
|
2023-06-29 22:05:36 +02:00
|
|
|
"@types/react": "^18.2.14",
|
|
|
|
"@types/react-dom": "^18.2.6",
|
2023-03-26 23:20:54 +02:00
|
|
|
"@types/react-helmet": "^6.1.6",
|
2022-04-19 15:21:18 +02:00
|
|
|
"@types/react-test-renderer": "^18.0.0",
|
2022-09-13 17:53:30 +02:00
|
|
|
"@types/react-toggle": "^4.0.3",
|
2023-06-29 22:05:36 +02:00
|
|
|
"@typescript-eslint/eslint-plugin": "^5.60.1",
|
|
|
|
"@typescript-eslint/parser": "^5.60.1",
|
2023-03-26 23:20:54 +02:00
|
|
|
"autoprefixer": "^10.4.14",
|
2023-06-29 22:05:36 +02:00
|
|
|
"browserslist": "^4.21.9",
|
2022-04-16 16:25:55 +02:00
|
|
|
"codecov": "^3.8.3",
|
2023-03-26 23:20:54 +02:00
|
|
|
"commitizen": "^4.3.0",
|
2023-06-29 22:05:36 +02:00
|
|
|
"commitlint": "^17.6.6",
|
|
|
|
"concurrently": "^8.2.0",
|
|
|
|
"eslint": "^8.43.0",
|
2022-01-09 21:12:31 +01:00
|
|
|
"eslint-config-airbnb": "^19.0.4",
|
2022-04-16 16:25:55 +02:00
|
|
|
"eslint-config-airbnb-typescript": "^17.0.0",
|
2023-03-26 23:20:54 +02:00
|
|
|
"eslint-config-prettier": "^8.8.0",
|
2022-04-17 19:34:15 +02:00
|
|
|
"eslint-config-react-app": "^7.0.1",
|
2023-06-29 22:05:36 +02:00
|
|
|
"eslint-import-resolver-typescript": "^3.5.5",
|
2022-04-17 19:34:15 +02:00
|
|
|
"eslint-plugin-flowtype": "^8.0.3",
|
2023-03-26 23:20:54 +02:00
|
|
|
"eslint-plugin-import": "^2.27.5",
|
2023-06-29 22:05:36 +02:00
|
|
|
"eslint-plugin-jest": "^27.2.2",
|
2023-03-26 23:20:54 +02:00
|
|
|
"eslint-plugin-jsx-a11y": "^6.7.1",
|
2022-09-10 09:27:37 +02:00
|
|
|
"eslint-plugin-prettier": "^4.2.1",
|
2023-03-26 23:20:54 +02:00
|
|
|
"eslint-plugin-react": "^7.32.2",
|
2022-06-15 00:36:18 +02:00
|
|
|
"eslint-plugin-react-hooks": "^4.6.0",
|
2023-03-26 23:20:54 +02:00
|
|
|
"eslint-plugin-simple-import-sort": "^10.0.0",
|
|
|
|
"husky": "^8.0.3",
|
2019-04-08 17:53:56 +02:00
|
|
|
"identity-obj-proxy": "3.0.0",
|
2023-03-26 23:20:54 +02:00
|
|
|
"jest": "^29.5.0",
|
|
|
|
"jest-cli": "^29.5.0",
|
|
|
|
"jest-environment-jsdom": "^29.5.0",
|
2022-01-09 21:12:31 +01:00
|
|
|
"jest-svg-transformer": "^1.0.0",
|
2023-06-29 22:05:36 +02:00
|
|
|
"lint-staged": "^13.2.3",
|
2022-08-16 16:16:27 +02:00
|
|
|
"lost": "9.0.1",
|
2023-06-29 22:05:36 +02:00
|
|
|
"markdownlint": "^0.29.0",
|
|
|
|
"postcss": "^8.4.24",
|
2023-03-26 23:20:54 +02:00
|
|
|
"postcss-scss": "^4.0.6",
|
2023-06-29 22:05:36 +02:00
|
|
|
"prettier": "^2.8.8",
|
2023-03-26 23:20:54 +02:00
|
|
|
"prettier-plugin-packagejson": "^2.4.3",
|
2022-06-15 00:33:59 +02:00
|
|
|
"react-test-renderer": "^18.2.0",
|
2023-03-26 23:20:54 +02:00
|
|
|
"rimraf": "^4.4.1",
|
2023-06-29 22:05:36 +02:00
|
|
|
"sass": "^1.63.6",
|
2022-01-09 21:12:31 +01:00
|
|
|
"source-map-support": "^0.5.21",
|
2022-11-05 22:28:41 +01:00
|
|
|
"standard-version": "^9.5.0",
|
2023-06-29 22:05:36 +02:00
|
|
|
"stylelint": "^15.9.0",
|
2023-03-26 23:20:54 +02:00
|
|
|
"stylelint-config-recommended-scss": "^9.0.1",
|
|
|
|
"stylelint-order": "^6.0.3",
|
|
|
|
"stylelint-scss": "^4.6.0",
|
2022-07-15 04:18:19 +02:00
|
|
|
"ts-node": "^10.9.1",
|
2023-06-29 22:05:36 +02:00
|
|
|
"typescript": "^5.1.6",
|
|
|
|
"unist-util-find": "1.0.2"
|
2022-11-05 22:28:41 +01:00
|
|
|
},
|
|
|
|
"config": {
|
|
|
|
"commitizen": {
|
|
|
|
"path": "@commitlint/cz-commitlint"
|
|
|
|
}
|
2022-09-10 09:27:37 +02:00
|
|
|
}
|
2023-10-29 15:34:10 +01:00
|
|
|
}
|