-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.24 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "frontendmasters-gatsby",
"private": true,
"description": "Bare-bones starter for the Gatsby Frontend Masters workshop.",
"version": "0.1.0",
"license": "MIT",
"scripts": {
"build": "gatsby build",
"develop": "cross-env GATSBY_GRAPHQL_IDE=playground gatsby develop",
"format": "prettier --write src/**/*.{js,jsx}",
"start": "npm run develop",
"serve": "gatsby serve",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\""
},
"dependencies": {
"@emotion/core": "^10.0.22",
"@emotion/styled": "^10.0.23",
"@mdx-js/mdx": "^1.5.2",
"@mdx-js/react": "^1.5.2",
"gatsby": "^2.18.6",
"gatsby-plugin-emotion": "^4.1.18",
"gatsby-plugin-feed-mdx": "^1.0.1",
"gatsby-plugin-mdx": "^1.1.6",
"gatsby-plugin-react-helmet": "^3.1.18",
"gatsby-plugin-robots-txt": "^1.5.0",
"gatsby-plugin-sitemap": "^2.3.1",
"gatsby-source-filesystem": "^2.1.43",
"gatsby-transformer-remark": "^2.6.53",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-helmet": "^5.2.1"
},
"devDependencies": {
"cross-env": "^6.0.3",
"prettier": "^1.19.1"
},
"repository": {
"type": "git",
"url": "https://github.com/jlengstorf/frontendmasters-gatsby"
}
}