diff options
author | 2024-04-30 03:08:45 +0100 | |
---|---|---|
committer | 2024-04-30 03:08:45 +0100 | |
commit | 52f83ed0f29d9d6b7b6cf3fb15ef8a8c4282dde7 (patch) | |
tree | 23107b7d8f2cd6e21149754df8a8282fa726d71d | |
parent | Remove tags from service cards (diff) |
Add packages for JSON outputs
-rw-r--r-- | package-lock.json | 30 | ||||
-rw-r--r-- | package.json | 1 |
2 files changed, 31 insertions, 0 deletions
diff --git a/package-lock.json b/package-lock.json index 7a2f6b9..c64f5da 100644 --- a/package-lock.json +++ b/package-lock.json @@ -12,6 +12,7 @@ "babel-plugin-styled-components": "^2.1.4", "gatsby": "^5.13.4", "gatsby-plugin-image": "^3.13.1", + "gatsby-plugin-json-output": "^1.2.0", "gatsby-plugin-manifest": "^5.13.1", "gatsby-plugin-mdx": "^5.13.1", "gatsby-plugin-sharp": "^5.13.1", @@ -6093,6 +6094,14 @@ "resolved": "https://registry.npmjs.org/colorette/-/colorette-1.4.0.tgz", "integrity": "sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==" }, + "node_modules/colors": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/colors/-/colors-1.4.0.tgz", + "integrity": "sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==", + "engines": { + "node": ">=0.1.90" + } + }, "node_modules/combined-stream": { "version": "1.0.8", "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", @@ -9302,6 +9311,14 @@ } } }, + "node_modules/gatsby-plugin-json-output": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-json-output/-/gatsby-plugin-json-output-1.2.0.tgz", + "integrity": "sha512-JcIz0DkpVIqkc0FYalgTVHT706X2cxdlklt9U89REhdiIF+xvCQKXq833iWzAFRL3rCmUrMGD281PInUHhvFUA==", + "dependencies": { + "colors": "^1.4.0" + } + }, "node_modules/gatsby-plugin-manifest": { "version": "5.13.1", "resolved": "https://registry.npmjs.org/gatsby-plugin-manifest/-/gatsby-plugin-manifest-5.13.1.tgz", @@ -22508,6 +22525,11 @@ "resolved": "https://registry.npmjs.org/colorette/-/colorette-1.4.0.tgz", "integrity": "sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==" }, + "colors": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/colors/-/colors-1.4.0.tgz", + "integrity": "sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==" + }, "combined-stream": { "version": "1.0.8", "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", @@ -25081,6 +25103,14 @@ "prop-types": "^15.8.1" } }, + "gatsby-plugin-json-output": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/gatsby-plugin-json-output/-/gatsby-plugin-json-output-1.2.0.tgz", + "integrity": "sha512-JcIz0DkpVIqkc0FYalgTVHT706X2cxdlklt9U89REhdiIF+xvCQKXq833iWzAFRL3rCmUrMGD281PInUHhvFUA==", + "requires": { + "colors": "^1.4.0" + } + }, "gatsby-plugin-manifest": { "version": "5.13.1", "resolved": "https://registry.npmjs.org/gatsby-plugin-manifest/-/gatsby-plugin-manifest-5.13.1.tgz", diff --git a/package.json b/package.json index 0b56ab4..5adcc52 100644 --- a/package.json +++ b/package.json @@ -20,6 +20,7 @@ "babel-plugin-styled-components": "^2.1.4", "gatsby": "^5.13.4", "gatsby-plugin-image": "^3.13.1", + "gatsby-plugin-json-output": "^1.2.0", "gatsby-plugin-manifest": "^5.13.1", "gatsby-plugin-mdx": "^5.13.1", "gatsby-plugin-sharp": "^5.13.1", |