@t2ca/gatsby-theme-showcase 1.3.4 → 1.3.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/gatsby-config.js CHANGED
@@ -21,9 +21,9 @@ module.exports = {
21
21
  },
22
22
  },
23
23
  `gatsby-plugin-sharp`,
24
+ `gatsby-plugin-react-helmet`,
24
25
  `gatsby-transformer-sharp`,
25
26
  `gatsby-transformer-yaml`,
26
- `gatsby-plugin-react-helmet`,
27
27
  `gatsby-plugin-theme-ui`,
28
28
  ],
29
29
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@t2ca/gatsby-theme-showcase",
3
- "version": "1.3.4",
3
+ "version": "1.3.6",
4
4
  "main": "index.js",
5
5
  "license": "MIT",
6
6
  "peerDependencies": {
@@ -9,18 +9,21 @@
9
9
  "react-dom": "^17.0.1"
10
10
  },
11
11
  "dependencies": {
12
- "@theme-ui/preset-tailwind": "^0.13.1",
13
- "@theme-ui/sidenav": "^0.13.1",
14
- "gatsby": "^4.0.2",
15
- "gatsby-plugin-react-helmet": "^5.0.0",
16
- "gatsby-plugin-sharp": "^4.0.0",
17
- "gatsby-plugin-theme-ui": "^0.13.1",
18
- "gatsby-source-filesystem": "^4.0.0",
19
- "gatsby-transformer-sharp": "^4.0.0",
20
- "gatsby-transformer-yaml": "^4.0.0",
12
+ "@emotion/react": "^11.7.1",
13
+ "@emotion/styled": "^11.6.0",
14
+ "@mdx-js/react": "1.6.22",
15
+ "@theme-ui/preset-tailwind": "^0.14.0",
16
+ "@theme-ui/sidenav": "^0.14.0",
17
+ "gatsby": "^4.10.1",
18
+ "gatsby-plugin-react-helmet": "^5.10.0",
19
+ "gatsby-plugin-sharp": "^4.10.1",
20
+ "gatsby-plugin-theme-ui": "^0.14.0",
21
+ "gatsby-source-filesystem": "^4.10.0",
22
+ "gatsby-transformer-sharp": "^4.10.0",
23
+ "gatsby-transformer-yaml": "^4.10.0",
21
24
  "react-helmet": "^6.0.0",
22
25
  "react-icons": "^4.1.0",
23
- "theme-ui": "^0.13.1"
26
+ "theme-ui": "^0.14.0"
24
27
  },
25
28
  "scripts": {
26
29
  "build": "gatsby build",
@@ -32,7 +35,7 @@
32
35
  "test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\""
33
36
  },
34
37
  "devDependencies": {
35
- "@babel/core": "^7.15.8",
38
+ "@babel/core": "^7.17.8",
36
39
  "@babel/eslint-parser": "^7.15.8",
37
40
  "@babel/preset-react": "^7.14.5",
38
41
  "@emotion/eslint-plugin": "^11.0.0",
@@ -46,7 +49,7 @@
46
49
  "eslint-plugin-react-hooks": "^4.0.0",
47
50
  "eslint-webpack-plugin": "^3.1.0",
48
51
  "gatsby-plugin-eslint": "^4.0.1",
49
- "prettier": "^2.0.1"
52
+ "prettier": "^2.6.0"
50
53
  },
51
54
  "repository": {
52
55
  "type": "git",
package/.eslintrc DELETED
@@ -1,47 +0,0 @@
1
- {
2
- "extends": [
3
- "eslint:recommended",
4
- "plugin:import/errors",
5
- "plugin:react/recommended",
6
- "plugin:jsx-a11y/recommended",
7
- "prettier"
8
- ],
9
- "plugins": ["react", "react-hooks", "import", "jsx-a11y", "@emotion"],
10
- "parser": "@babel/eslint-parser",
11
- "settings": {
12
- "react": {
13
- "version": "detect" // detect react version
14
- }
15
- },
16
- "parserOptions": {
17
- "ecmaVersion": 2018,
18
- "sourceType": "module",
19
- "ecmaFeatures": {
20
- "jsx": true
21
- },
22
- "babelOptions": {
23
- "presets": ["@babel/preset-react"]
24
- },
25
- "requireConfigFile": false
26
- },
27
- "env": {
28
- "es6": true,
29
- "browser": true,
30
- "node": true,
31
- "jest": true
32
- },
33
- "rules": {
34
- "react-hooks/rules-of-hooks": "error",
35
- "react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx"] }],
36
- "jsx-a11y/anchor-is-valid": [
37
- "error",
38
- { "components": ["Link"], "specialLink": ["to"] }
39
- ],
40
- "no-console": "off",
41
- "react/prop-types": [0],
42
- "react/display-name": [0],
43
- },
44
- "globals": {
45
- "graphql": true
46
- }
47
- }