feat: feed feature, typescript, remove google, fix errs & warns
publish / Build-and-publish (push) Successful in 13m32s

This commit is contained in:
Unknown
2026-07-17 22:22:29 +01:00
parent 2c42ecae5f
commit 8a10d127c1
55 changed files with 1887 additions and 587 deletions
+28 -4
View File
@@ -14,16 +14,18 @@
"serve": "gatsby serve",
"clean": "gatsby clean",
"lint": "npx prettier --check \"src/**/*.+(ts|tsx|js|jsx|json|css|scss)\"",
"lint:fix": "npx prettier --write \"src/**/*.+(ts|tsx|js|jsx|json|css|scss)\" --ignore-path .gitignore"
"lint:fix": "npx prettier --write \"src/**/*.+(ts|tsx|js|jsx|json|css|scss)\" --ignore-path .gitignore",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@browniebroke/gatsby-image-gallery": "^8.2.0",
"@mdx-js/mdx": "^3.1.1",
"@mdx-js/react": "^3.1.1",
"babel-plugin-styled-components": "^2.1.4",
"baseline-browser-mapping": "^2.10.43",
"caniuse-lite": "^1.0.30001806",
"gatsby": "^5.15.0",
"gatsby-plugin-google-analytics": "^5.13.1",
"gatsby-plugin-google-fonts": "^1.0.1",
"gatsby-plugin-feed": "^5.16.0",
"gatsby-plugin-image": "^3.15.0",
"gatsby-plugin-local-search": "^2.0.1",
"gatsby-plugin-manifest": "^5.15.0",
@@ -50,8 +52,30 @@
},
"devDependencies": {
"@popperjs/core": "^2.9.2",
"@types/lodash": "^4.17.24",
"@types/node": "^20.19.43",
"@types/react": "^18.3.31",
"@types/react-dom": "^18.3.7",
"@types/react-helmet": "^6.1.11",
"bootstrap": "^5.0.0-beta3",
"cloudron-surfer": "^6.4.1",
"jquery": "^3.6.0"
"jquery": "^3.6.0",
"typescript": "^7.0.2"
},
"allowScripts": {
"lmdb@2.5.2": true,
"lmdb@2.5.3": true,
"msgpackr@1.10.2": true,
"@parcel/watcher@2.5.1": true
},
"overrides": {
"msgpackr": "^1.12.1",
"lmdb": "^2.9.4",
"ordered-binary": "^1.6.1",
"whatwg-url": "^17.1.0"
},
"engines": {
"node": ">=24.0.0",
"npm": ">=10.0.0"
}
}