generated from hzoo/hopeinsource.com
-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
62 lines (62 loc) · 1.79 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
55
56
57
58
59
60
61
62
{
"name": "podcast.babeljs.io",
"private": true,
"description": "Babel Podcast website",
"version": "1.0.0",
"author": "Henry Zhu <[email protected]>",
"bugs": {
"url": "https://github.com/hzoo/podcast.babeljs.io/issues"
},
"homepage": "https://podcast.babeljs.io",
"dependencies": {
"@mdx-js/mdx": "^1.6.14",
"@mdx-js/react": "^1.6.14",
"gatsby": "^2.24.37",
"gatsby-plugin-feed": "^2.0.8",
"gatsby-plugin-mdx": "^1.2.28",
"gatsby-plugin-react-helmet": "^3.0.0",
"gatsby-plugin-sharp": "^2.0.16",
"gatsby-plugin-typography": "^2.2.0",
"gatsby-remark-autolink-headers": "^2.0.12",
"gatsby-remark-copy-linked-files": "^2.0.5",
"gatsby-remark-images": "^2.0.6",
"gatsby-source-filesystem": "^2.0.12",
"gatsby-transformer-sharp": "^2.1.9",
"github-slugger": "^1.3.0",
"prismjs": "^1.15.0",
"react": "^16.5.1",
"react-dom": "^16.5.1",
"react-h5-audio-player": "^3.2.0",
"react-helmet": "^5.2.0",
"react-typography": "^0.16.13",
"typeface-merriweather": "0.0.72",
"typeface-montserrat": "0.0.75",
"typography": "^0.16.19",
"typography-theme-wordpress-2016": "^0.16.19"
},
"devDependencies": {
"prettier": "^1.14.2",
"remark-html": "^12.0.0"
},
"license": "MIT",
"scripts": {
"dev": "gatsby develop",
"clean": "gatsby clean",
"format": "prettier --trailing-comma es5 --no-semi --single-quote --write 'src/**/*.js' 'src/**/*.md'",
"start": "rm -rf .cache && gatsby develop",
"build": "rm -rf public && rm -rf .cache && gatsby build"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all",
"not IE 11"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}