mirror of
https://github.com/mastermindzh/rickvanlieshout.com
synced 2025-07-28 13:12:16 +02:00
refactor(starter): upgrade and move to typescript
This commit is contained in:
140
package.json
140
package.json
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "gatsby-starter-lumen",
|
||||
"version": "4.0.0",
|
||||
"description": "A minimal, lightweight and mobile-first starter for creating blazing-fast static blogs",
|
||||
"description": "A minimal, lightweight and mobile-first starter for creating static blogs.",
|
||||
"keywords": [
|
||||
"gatsby",
|
||||
"graphql",
|
||||
@@ -14,7 +14,6 @@
|
||||
},
|
||||
"license": "MIT",
|
||||
"author": "Alexander Shelepenok <alxshelepenok@gmail.com>",
|
||||
"main": "n/a",
|
||||
"scripts": {
|
||||
"build": "npm run clean && gatsby build",
|
||||
"clean": "rimraf .cache public",
|
||||
@@ -25,96 +24,93 @@
|
||||
"lint:scss": "stylelint \"src/**/*.scss\"",
|
||||
"lint:ts": "eslint \"src\" --ext .tsx,.ts && prettier --check .",
|
||||
"start": "npm run clean && gatsby develop",
|
||||
"serve": "gatsby serve",
|
||||
"test": "jest --config ./internal/testing/jest-config.ts",
|
||||
"test:coverage": "jest --coverage --config ./jest/jest-config.js",
|
||||
"test:watch": "jest --watch --config ./jest/jest-config.js"
|
||||
"test:coverage": "jest --coverage --config ./internal/testing/jest-config.ts",
|
||||
"test:watch": "jest --watch --config ./internal/testing/jest-config.ts"
|
||||
},
|
||||
"dependencies": {
|
||||
"@sentry/gatsby": "^6.16.1",
|
||||
"@sentry/tracing": "^6.16.1",
|
||||
"@sentry/gatsby": "^6.19.6",
|
||||
"@sentry/tracing": "^6.19.6",
|
||||
"classnames": "^2.3.1",
|
||||
"codecov": "^3.8.3",
|
||||
"cross-env": "^7.0.3",
|
||||
"eslint-plugin-jest": "^25.3.4",
|
||||
"gatsby": "^4.4.0",
|
||||
"gatsby-link": "^4.4.0",
|
||||
"gatsby-plugin-catch-links": "^4.4.0",
|
||||
"gatsby-plugin-feed": "^4.4.0",
|
||||
"gatsby-plugin-flow": "^3.4.0",
|
||||
"gatsby-plugin-google-gtag": "^4.4.0",
|
||||
"gatsby-plugin-manifest": "^4.4.0",
|
||||
"gatsby-plugin-offline": "^5.4.0",
|
||||
"gatsby": "^4.12.1",
|
||||
"gatsby-link": "^4.12.1",
|
||||
"gatsby-plugin-catch-links": "^4.12.1",
|
||||
"gatsby-plugin-feed": "^4.12.1",
|
||||
"gatsby-plugin-flow": "^3.12.1",
|
||||
"gatsby-plugin-google-gtag": "^4.12.1",
|
||||
"gatsby-plugin-image": "^2.12.1",
|
||||
"gatsby-plugin-manifest": "^4.12.1",
|
||||
"gatsby-plugin-offline": "^5.12.1",
|
||||
"gatsby-plugin-optimize-svgs": "^1.0.5",
|
||||
"gatsby-plugin-react-helmet": "^5.4.0",
|
||||
"gatsby-plugin-sass": "^5.4.0",
|
||||
"gatsby-plugin-sharp": "^4.4.0",
|
||||
"gatsby-plugin-sitemap": "^5.4.0",
|
||||
"gatsby-remark-autolink-headers": "^5.4.0",
|
||||
"gatsby-remark-copy-linked-files": "^5.4.0",
|
||||
"gatsby-plugin-react-helmet": "^5.12.1",
|
||||
"gatsby-plugin-sass": "^5.12.1",
|
||||
"gatsby-plugin-sharp": "^4.12.1",
|
||||
"gatsby-plugin-sitemap": "^5.12.1",
|
||||
"gatsby-remark-autolink-headers": "^5.12.1",
|
||||
"gatsby-remark-copy-linked-files": "^5.12.1",
|
||||
"gatsby-remark-external-links": "0.0.4",
|
||||
"gatsby-remark-images": "^6.4.0",
|
||||
"gatsby-remark-prismjs": "^6.4.0",
|
||||
"gatsby-remark-responsive-iframe": "^5.4.0",
|
||||
"gatsby-remark-smartypants": "^5.4.0",
|
||||
"gatsby-source-filesystem": "^4.4.0",
|
||||
"gatsby-transformer-remark": "^5.4.0",
|
||||
"gatsby-transformer-sharp": "^4.4.0",
|
||||
"invariant": "^2.2.4",
|
||||
"lodash": "^4.17.21",
|
||||
"node-sass": "^7.0.1",
|
||||
"normalize-scss": "^7.0.1",
|
||||
"postcss": "^8.4.5",
|
||||
"postcss-scss": "^4.0.2",
|
||||
"prismjs": "^1.26.0",
|
||||
"react": "^17.0.2",
|
||||
"gatsby-remark-images": "^6.12.1",
|
||||
"gatsby-remark-prismjs": "^6.12.1",
|
||||
"gatsby-remark-responsive-iframe": "^5.12.1",
|
||||
"gatsby-remark-smartypants": "^5.12.1",
|
||||
"gatsby-source-filesystem": "^4.12.1",
|
||||
"gatsby-transformer-remark": "^5.12.1",
|
||||
"gatsby-transformer-sharp": "^4.12.1",
|
||||
"prismjs": "^1.27.0",
|
||||
"react": "^18.0.0",
|
||||
"react-disqus-comments": "^1.4.0",
|
||||
"react-dom": "^17.0.2",
|
||||
"react-helmet": "^6.1.0",
|
||||
"sass": "^1.47.0"
|
||||
"react-dom": "^18.0.0",
|
||||
"react-helmet": "^6.1.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@alxshelepenok/eslint-config": "^1.0.20",
|
||||
"@jest/globals": "^27.4.6",
|
||||
"@swc/core": "^1.2.127",
|
||||
"@swc/jest": "^0.2.15",
|
||||
"@alxshelepenok/eslint-config": "^1.0.27",
|
||||
"@jest/globals": "^27.5.1",
|
||||
"@swc/core": "^1.2.165",
|
||||
"@swc/jest": "^0.2.20",
|
||||
"@types/gatsby-transformer-remark": "^2.9.1",
|
||||
"@types/jest": "^27.4.0",
|
||||
"@types/node": "^17.0.8",
|
||||
"@types/react": "^17.0.38",
|
||||
"@types/react-dom": "^17.0.11",
|
||||
"@types/jest": "^27.4.1",
|
||||
"@types/node": "^17.0.24",
|
||||
"@types/react": "^18.0.5",
|
||||
"@types/react-dom": "^18.0.1",
|
||||
"@types/react-helmet": "^6.1.5",
|
||||
"@types/react-test-renderer": "^17.0.1",
|
||||
"@types/react-test-renderer": "^18.0.0",
|
||||
"@types/sass": "^1.43.1",
|
||||
"@typescript-eslint/eslint-plugin": "^5.9.0",
|
||||
"@typescript-eslint/parser": "^5.9.0",
|
||||
"autoprefixer": "^10.4.2",
|
||||
"browserslist": "^4.19.1",
|
||||
"concurrently": "^7.0.0",
|
||||
"eslint": "^8.6.0",
|
||||
"@typescript-eslint/eslint-plugin": "^5.19.0",
|
||||
"@typescript-eslint/parser": "^5.19.0",
|
||||
"autoprefixer": "^10.4.4",
|
||||
"browserslist": "^4.20.2",
|
||||
"codecov": "^3.8.3",
|
||||
"concurrently": "^7.1.0",
|
||||
"eslint": "^8.13.0",
|
||||
"eslint-config-airbnb": "^19.0.4",
|
||||
"eslint-config-airbnb-typescript": "^16.1.0",
|
||||
"eslint-config-prettier": "^8.1.0",
|
||||
"eslint-import-resolver-typescript": "^2.5.0",
|
||||
"eslint-plugin-import": "^2.25.4",
|
||||
"eslint-config-airbnb-typescript": "^17.0.0",
|
||||
"eslint-config-prettier": "^8.5.0",
|
||||
"eslint-import-resolver-typescript": "^2.7.1",
|
||||
"eslint-plugin-import": "^2.26.0",
|
||||
"eslint-plugin-jest": "^26.1.4",
|
||||
"eslint-plugin-jsx-a11y": "^6.5.1",
|
||||
"eslint-plugin-react": "^7.28.0",
|
||||
"eslint-plugin-react-hooks": "^4.3.0",
|
||||
"eslint-plugin-react": "^7.29.4",
|
||||
"eslint-plugin-react-hooks": "^4.4.0",
|
||||
"eslint-plugin-simple-import-sort": "^7.0.0",
|
||||
"identity-obj-proxy": "3.0.0",
|
||||
"jest": "^27.4.7",
|
||||
"jest-cli": "^27.4.7",
|
||||
"jest": "^27.5.1",
|
||||
"jest-cli": "^27.5.1",
|
||||
"jest-svg-transformer": "^1.0.0",
|
||||
"lost": "8.3.1",
|
||||
"prettier": "^2.5.1",
|
||||
"prettier-plugin-packagejson": "^2.2.15",
|
||||
"react-test-renderer": "17.0.2",
|
||||
"postcss": "^8.4.12",
|
||||
"postcss-scss": "^4.0.3",
|
||||
"prettier": "^2.6.2",
|
||||
"prettier-plugin-packagejson": "^2.2.17",
|
||||
"react-test-renderer": "^18.0.0",
|
||||
"rimraf": "3.0.2",
|
||||
"sass": "^1.50.0",
|
||||
"source-map-support": "^0.5.21",
|
||||
"stylelint": "^14.2.0",
|
||||
"stylelint-config-recommended-scss": "^5.0.2",
|
||||
"stylelint": "^14.7.0",
|
||||
"stylelint-config-recommended-scss": "^6.0.0",
|
||||
"stylelint-order": "^5.0.0",
|
||||
"stylelint-scss": "^4.1.0",
|
||||
"ts-node": "^10.4.0",
|
||||
"typescript": "^4.5.4"
|
||||
"stylelint-scss": "^4.2.0",
|
||||
"ts-node": "^10.7.0",
|
||||
"typescript": "^4.6.3"
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user