-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 987 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 987 Bytes
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
{
"name": "mikeygee.com",
"version": "2.0.0",
"private": true,
"description": "Mikey Gee's personal web site",
"keywords": [
"gatsby"
],
"scripts": {
"develop": "gatsby develop",
"dev": "gatsby develop -H $HOSTNAME -p 8000",
"ghPages": "gh-pages -d public -b master -m \"gatsby build\"",
"start": "gatsby develop",
"build": "gatsby build",
"serve": "gatsby serve",
"serveMobile": "gatsby serve -H $HOSTNAME -p 9000",
"clean": "gatsby clean"
},
"dependencies": {
"babel-plugin-styled-components": "^2.1.4",
"gatsby": "^5.13.7",
"gatsby-plugin-google-gtag": "^5.13.1",
"gatsby-plugin-manifest": "^5.13.1",
"gatsby-plugin-react-helmet": "^6.13.1",
"gatsby-plugin-styled-components": "^6.13.1",
"gatsby-source-filesystem": "^5.13.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^5.3.0",
"styled-components": "^6.1.13"
},
"devDependencies": {
"gh-pages": "^6.1.1"
}
}