-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.4 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
42
43
44
45
{
"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\"",
"analyze": "ANALYZE_BUNDLE_SIZE=true gatsby build"
},
"dependencies": {
"@emotion/core": "^10.0.28",
"@emotion/styled": "^10.0.27",
"@mdx-js/mdx": "^1.5.8",
"@mdx-js/react": "^1.5.8",
"gatsby": "^2.18.6",
"gatsby-background-image": "^1.0.1",
"gatsby-image": "^2.3.1",
"gatsby-plugin-emotion": "^4.2.1",
"gatsby-plugin-mdx": "^1.1.4",
"gatsby-plugin-react-helmet": "^3.2.1",
"gatsby-plugin-sharp": "^2.5.3",
"gatsby-plugin-webpack-bundle-analyzer": "^1.0.5",
"gatsby-remark-images": "^3.2.1",
"gatsby-source-filesystem": "^2.2.2",
"gatsby-source-instagram": "^0.7.0",
"gatsby-transformer-sharp": "^2.4.3",
"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"
}
}