-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.22 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": "blog-react",
"version": "1.0.0",
"description": "Personal blog written in React",
"main": "index.js",
"author": "Bartosz Kardas",
"license": "MIT",
"dependencies": {
"@emotion/react": "^11.7.1",
"@emotion/server": "^11.4.0",
"@emotion/styled": "^11.6.0",
"@fontsource/exo-2": "^4.5.1",
"@mdx-js/mdx": "^1.6.22",
"@mdx-js/react": "^1.6.22",
"@mui/icons-material": "^5.2.1",
"@mui/material": "^5.2.3",
"@mui/styles": "^5.2.3",
"gatsby": "^4.3.0",
"gatsby-plugin-emotion": "^7.5.0",
"gatsby-plugin-image": "^2.3.0",
"gatsby-plugin-layout": "^3.5.0",
"gatsby-plugin-mdx": "^3.3.0",
"gatsby-plugin-react-helmet": "^5.5.0",
"gatsby-plugin-sass": "^5.3.0",
"gatsby-plugin-sharp": "^4.3.0",
"gatsby-source-filesystem": "^4.3.0",
"gatsby-transformer-sharp": "^4.3.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"react-material-ui-carousel": "^3.1.1",
"sass": "^1.44.0"
},
"scripts": {
"dev": "gatsby develop -H 0.0.0.0 -p 9000",
"build": "gatsby build && cp -r public/* ../kardasbart.github.io && echo Built and installed!"
},
"devDependencies": {
"gatsby-plugin-root-import": "^2.0.8"
}
}