-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.66 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
46
47
48
49
50
51
52
53
54
{
"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": "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"
},
"peerDependencies": {
"gatsby": ">=2.0.20"
},
"dependencies": {
"@emotion/core": "^10.0.14",
"@emotion/styled": "^10.0.14",
"@mdx-js/mdx": "^1.1.0",
"@mdx-js/react": "^1.0.27",
"gatsby": "^2.13.32",
"gatsby-background-image": "^0.8.0",
"gatsby-image": "^2.2.6",
"gatsby-mdx": "^0.6.3",
"gatsby-plugin-emotion": "^4.1.2",
"gatsby-plugin-mdx": "^1.0.14",
"gatsby-plugin-react-helmet": "^3.1.2",
"gatsby-plugin-sharp": "^2.2.8",
"gatsby-plugin-webpack-bundle-analyzer": "^1.0.5",
"gatsby-remark-embed-spotify": "^2.0.2",
"gatsby-remark-images": "^3.1.6",
"gatsby-remark-spotify": "^1.0.1",
"gatsby-source-filesystem": "^2.1.5",
"gatsby-source-instagram": "^0.5.1",
"gatsby-transformer-remark": "^2.6.9",
"gatsby-transformer-sharp": "^2.2.4",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-helmet": "^5.2.1",
"unist-util-visit": "^1.4.1"
},
"devDependencies": {
"cross-env": "^5.2.0",
"prettier": "^1.17.0",
"typescript": "^3.2.4"
},
"repository": {
"type": "git",
"url": "https://github.com/jlengstorf/frontendmasters-gatsby"
}
}