-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.59 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
{
"name": "amaechler.com",
"private": true,
"description": "Personal blog powered by Gatsby and Markdown",
"version": "1.0.0",
"author": "Andreas Maechler <amaechler@gmail.com>",
"dependencies": {
"gatsby": "^4.9.0",
"gatsby-plugin-feed": "^4.9.0",
"gatsby-plugin-google-analytics": "^4.9.0",
"gatsby-plugin-image": "^2.9.0",
"gatsby-plugin-manifest": "^4.9.0",
"gatsby-plugin-offline": "^5.9.0",
"gatsby-plugin-react-helmet": "^5.9.0",
"gatsby-plugin-sharp": "^4.9.0",
"gatsby-remark-copy-linked-files": "^5.9.0",
"gatsby-remark-images": "^6.9.0",
"gatsby-remark-prismjs": "^6.9.0",
"gatsby-remark-responsive-iframe": "^5.9.0",
"gatsby-remark-smartypants": "^5.9.0",
"gatsby-source-filesystem": "^4.9.0",
"gatsby-transformer-remark": "^5.9.0",
"gatsby-transformer-sharp": "^4.9.0",
"gh-pages": "^3.0.0",
"install": "^0.13.0",
"npm": "^8.5.3",
"prismjs": "^1.25.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-helmet": "^6.1.0",
"shx": "^0.3.0",
"typeface-merriweather": "^1.1.13",
"typeface-montserrat": "^1.1.13"
},
"devDependencies": {
"prettier": "^2.5.1"
},
"scripts": {
"add-domain": "shx echo \"amaechler.com\" > public/CNAME",
"build": "gatsby build && yarn add-domain",
"clobber": "gatsby clean && shx rm -rf public .cache",
"deploy": "yarn clobber && yarn build && gh-pages -d public && yarn clobber",
"develop": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"serve": "gatsby serve",
"start": "gatsby develop"
}
}