⚠️ This Design System is deprecated and no longer maintained. npm packges will stay available, but please make sure to opt out until 2025 ⚠️
This website was build using Gatsby.
-
Development
Navigate into your new site’s directory and start it up. In development, the site will run at
http://localhost:8000
andhttp://localhost:8000/___graphql
(a tool to query Gatsby's graphyQL.yarn start
-
Testing
This website is tested with Jest, @testing-library/react, and Cypress
yarn test yarn test:e2e
-
Start developing.
A quick look at the top-level files and directories you'll see in a Gatsby project.
.
├── node_modules
├── src
├──assets
├──components
├──content
├──data
├──pages
├──styles
├──templates
├── .gitignore
├── .prettierrc
├── gatsby-browser.js
├── gatsby-config.js
├── gatsby-node.js
├── gatsby-ssr.js
├── LICENSE
├── package-lock.json
├── package.json
└── README.md
-
/src
: This directory will contain all of the code related to what you will see on the front-end of your site (what you see in the browser) such as your site header or a page template.src
is a convention for “source code”.A.
/assets
: Contains images and fonts B./components
: Contains React components C./content
: Contains markdown files D./data
: Contains data structure and content used throughout site E./pages
: Structure for each page of the website (gatsby setup for routing) F./styles
: Contains all sass styles G./templates
: Structure for each sub-page of the website (gatsby setup for routing) -
.prettierrc
: This is a configuration file for Prettier. Prettier is a tool to help keep the formatting of your code consistent. -
gatsby-browser.js
: This file is where Gatsby expects to find any usage of the Gatsby browser APIs (if any). These allow customization/extension of default Gatsby settings affecting the browser. -
gatsby-config.js
: This is the main configuration file for a Gatsby site. This is where you can specify information about your site (metadata) like the site title and description, which Gatsby plugins you’d like to include, etc. (Check out the config docs for more detail). -
gatsby-node.js
: This file is where Gatsby expects to find any usage of the Gatsby Node APIs (if any). These allow customization/extension of default Gatsby settings affecting pieces of the site build process. -
gatsby-ssr.js
: This file is where Gatsby expects to find any usage of the Gatsby server-side rendering APIs (if any). These allow customization of default Gatsby settings affecting server-side rendering. -
LICENSE
: Gatsby is licensed under the MIT license. -
package.json
: A manifest file for Node.js projects, which includes things like metadata (the project’s name, author, etc). This manifest is how npm knows which packages to install for your project.
gatsby-plugin-mdx (https://gatsby-plugin-mdx.netlify.com/) @mdx-js/react @mdx-js/mdx
clsx react-jss gatsby-plugin-jss
react-helmet gatsby-plugin-offline gatsby-plugin-manifest
gatsby-image gatsby-plugin-sharp gatsby-remark-images
cypress eslint-plugin-cypress start-server-and-test (starts cypress)
@testing-library/react jest jest-dom jest-axe (tests accessibility) identity-obj-proxy (passes css in jest) react-test-renderer (jest snapshots) global (recommended from gatsby for loadershim.js) jss-snapshot-serializer (for react-jss)