-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.41 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.41 KB
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
{
"name": "gatsby-tutorial",
"version": "1.0.0",
"private": true,
"description": "Gatsby Tutorial",
"author": "Aaron Ryu",
"keywords": [
"gatsby"
],
"scripts": {
"develop": "NODE_ENV=development gatsby develop",
"start": "NODE_ENV=development gatsby develop",
"build": "NODE_ENV=production gatsby build && gh-pages -d public",
"serve": "NODE_ENV=development gatsby serve",
"clean": "NODE_ENV=development gatsby clean"
},
"dependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-react": "^7.16.0",
"@emotion/babel-plugin": "^11.3.0",
"@emotion/react": "^11.6.0",
"@emotion/styled": "^11.6.0",
"@mdx-js/mdx": "^1.6.22",
"@mdx-js/react": "^1.6.22",
"@mui/material": "^5.1.1",
"@mui/styles": "^5.1.1",
"gatsby": "^4.2.0",
"gatsby-plugin-emotion": "^7.2.0",
"gatsby-plugin-google-analytics": "^4.2.0",
"gatsby-plugin-image": "^2.2.0",
"gatsby-plugin-manifest": "^4.2.0",
"gatsby-plugin-mdx": "^3.2.0",
"gatsby-plugin-react-helmet": "^5.2.0",
"gatsby-plugin-sharp": "^4.2.0",
"gatsby-plugin-sitemap": "^5.2.0",
"gatsby-source-contentful": "^7.0.0",
"gatsby-source-filesystem": "^4.2.0",
"gatsby-transformer-sharp": "^4.2.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-helmet": "^6.1.0",
"typescript": "^4.5.2"
},
"devDependencies": {
"dotenv": "^10.0.0",
"gh-pages": "^3.2.3"
}
}