Skip to content

Commit

Permalink
Merge pull request #91 from quizbowl/update-readme
Browse files Browse the repository at this point in the history
Update the README and some dependencies, fixes #90.
  • Loading branch information
puls authored Sep 1, 2019
2 parents 2c457ee + 019ac02 commit 9a30f67
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 18 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ A quick look at the top-level files and directories you'll see.
.
├── node_modules
├── schema
├── src
├── static
├── svg
Expand All @@ -36,11 +37,12 @@ A quick look at the top-level files and directories you'll see.
├── now.json
├── package.json
├── README.md
├── schema.graphql
└── yarn.lock
1. **`/node_modules`**: This directory contains all of the modules of code that this project depends on (npm packages) that are automatically installed.
1. **`/schema`**: Probably the most important files! This is where the schema itself is defined in the [GraphQL Schema language](https://graphql.org/learn/schema/). Edit the files within to see changes on your local site.
1. **`/src`**: This directory will contain all of the code related to what you will see on the front-end of the site (what you see in the browser) including the page templates and HTML layouts. `src` is a convention for “source code”.
1. **`/static`**: This directory contains files available for download from the site.
Expand All @@ -63,8 +65,6 @@ A quick look at the top-level files and directories you'll see.
1. **`README.md`**: This file!
1. **`schema.graphql`**: Probably the most important file! This is where the schema itself is defined in the [GraphQL Schema language](https://graphql.org/learn/schema/). Edit this file and restart the development server to see changes on your local site.
1. **`yarn.lock`** (See `package.json` above). This is an automatically generated file based on the exact versions of the npm dependencies that were installed for your project. **(You won’t change this file directly).**
## 🎓 Learning Gatsby
Expand Down
30 changes: 15 additions & 15 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,33 +4,33 @@
"description": "API and schema documentation for describing quiz tournaments.",
"version": "2.0",
"dependencies": {
"@mdx-js/mdx": "^1.0.20",
"@mdx-js/react": "^1.0.20",
"@mdx-js/mdx": "^1.0.21",
"@mdx-js/react": "^1.0.21",
"@mdx-js/tag": "^0.20.3",
"apollo-link-schema": "^1.2.2",
"apollo-link-schema": "^1.2.3",
"debounce": "^1.2.0",
"eslint-plugin-react": "^7.13.0",
"gatsby": "^2.9.0",
"eslint-plugin-react": "^7.14.2",
"gatsby": "^2.13.3",
"gatsby-mdx": "^0.6.3",
"gatsby-plugin-google-analytics": "^2.0.21",
"gatsby-plugin-manifest": "^2.1.1",
"gatsby-plugin-offline": "^2.1.1",
"gatsby-plugin-react-helmet": "^3.0.12",
"gatsby-plugin-google-analytics": "^2.1.1",
"gatsby-plugin-manifest": "^2.2.1",
"gatsby-plugin-offline": "^2.2.0",
"gatsby-plugin-react-helmet": "^3.1.0",
"gatsby-plugin-web-font-loader": "^1.0.4",
"gatsby-source-filesystem": "^2.0.39",
"gatsby-transformer-remark": "^2.3.12",
"gatsby-source-filesystem": "^2.1.2",
"gatsby-transformer-remark": "^2.5.0",
"graphql-import": "^0.7.1",
"graphql-tools": "^4.0.4",
"graphql-tools": "^4.0.5",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-helmet": "^5.2.1",
"remark-react": "^5.0.1"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.3.0",
"babel-eslint": "^10.0.2",
"eslint": "^6.0.1",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-prettier": "^3.1.0",
"prettier": "^1.18.2"
},
Expand Down

0 comments on commit 9a30f67

Please sign in to comment.