-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
111 lines (111 loc) · 5.57 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "gatsby-starter-personal-blog",
"description": "A Gatsby starter for a personal blog",
"author": "Greg Lobinski <[email protected]>",
"repository": "https://github.com/greglobinski/gatsby-starter-personal-blog",
"version": "1.0.1",
"license": "MIT",
"scripts": {
"add-article": "node ./add-article.js",
"develop": "gatsby develop",
"develop-host": "gatsby develop --host 192.168.0.112",
"build": "gatsby build --prefix-paths",
"serve": "gatsby serve --prefix-paths",
"format-output": "prettier src/**/*.{js,jsx}",
"format": "prettier --write src/**/*.{js,jsx}",
"lint-errors": "eslint src/**/*.{js,jsx} --quiet",
"lint": "eslint src/**/*.{js,jsx}",
"favIcon16": "sharp -i ./src/images/app-icons/icon.png -o ./static/icons/favicon-16x16.png resize 16",
"favIcon32": "sharp -i ./src/images/app-icons/icon.png -o ./static/icons/favicon-32x32.png resize 32",
"favIcon96": "sharp -i ./src/images/app-icons/icon.png -o ./static/icons/favicon-96x96.png resize 96",
"icon512": "sharp -i ./src/images/app-icons/icon.png -o ./static/icons/icon-512x512.png resize 512",
"icon384": "sharp -i ./src/images/app-icons/icon.png -o ./static/icons/icon-384x384.png resize 384",
"icon256": "sharp -i ./src/images/app-icons/icon.png -o ./static/icons/icon-256x256.png resize 256",
"icon192": "sharp -i ./src/images/app-icons/icon.png -o ./static/icons/icon-192x192.png resize 192",
"icon144": "sharp -i ./src/images/app-icons/icon.png -o ./static/icons/icon-144x144.png resize 144",
"icon96": "sharp -i ./src/images/app-icons/icon.png -o ./static/icons/icon-96x96.png resize 96",
"icon48": "sharp -i ./src/images/app-icons/icon.png -o ./static/icons/icon-48x48.png resize 48",
"appleIcon180": "sharp -i ./src/images/app-icons/apple-icon.png -o ./static/icons/apple-icon-180x180.png resize 180",
"appleIcon152": "sharp -i ./src/images/app-icons/apple-icon.png -o ./static/icons/apple-icon-152x152.png resize 152",
"appleIcon144": "sharp -i ./src/images/app-icons/apple-icon.png -o ./static/icons/apple-icon-144x144.png resize 144",
"appleIcon120": "sharp -i ./src/images/app-icons/apple-icon.png -o ./static/icons/apple-icon-120x120.png resize 120",
"appleIcon114": "sharp -i ./src/images/app-icons/apple-icon.png -o ./static/icons/apple-icon-114x114.png resize 114",
"appleIcon76": "sharp -i ./src/images/app-icons/apple-icon.png -o ./static/icons/apple-icon-76x76.png resize 76",
"appleIcon72": "sharp -i ./src/images/app-icons/apple-icon.png -o ./static/icons/apple-icon-72x72.png resize 72",
"appleIcon60": "sharp -i ./src/images/app-icons/apple-icon.png -o ./static/icons/apple-icon-60x60.png resize 60",
"appleIcon57": "sharp -i ./src/images/app-icons/apple-icon.png -o ./static/icons/apple-icon-57x57.png resize 57",
"generate-app-icons": "yarn favIcon16 && yarn favIcon32 && yarn favIcon96 && yarn icon512 && yarn icon384 && yarn icon256 && yarn icon192 && yarn icon144 && yarn icon96 && yarn icon48 && yarn appleIcon180 && yarn appleIcon152 && yarn appleIcon144 && yarn appleIcon120 && yarn appleIcon114 && yarn appleIcon76 && yarn appleIcon72 && yarn appleIcon60 && yarn appleIcon57"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"babel-plugin-dynamic-import-webpack": "^1.0.2",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"dotenv": "^6.0.0",
"eslint": "^4.17.0",
"eslint-config-google": "^0.10.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-graphql": "^2.1.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.6.1",
"mkdirp": "^0.5.1",
"prettier": "^1.10.2",
"sharp-cli": "^1.6.0",
"webpack-bundle-analyzer": "^3.0.2"
},
"dependencies": {
"@material-ui/core": "^3.1.2",
"@material-ui/icons": "^3.0.1",
"chunk-text": "^1.0.5",
"color": "^3.0.0",
"gatsby": "^2.0.17",
"gatsby-image": "^2.0.13",
"gatsby-plugin-algolia": "^0.2.0",
"gatsby-plugin-catch-links": "^2.0.3",
"gatsby-plugin-favicon": "^3.1.4",
"gatsby-plugin-feed": "^2.0.7",
"gatsby-plugin-google-analytics": "^2.0.6",
"gatsby-plugin-manifest": "^2.0.4",
"gatsby-plugin-netlify": "^2.0.2",
"gatsby-plugin-netlify-cms": "^3.0.6",
"gatsby-plugin-offline": "^2.0.12",
"gatsby-plugin-react-helmet": "^3.0.0",
"gatsby-plugin-react-svg": "^2.0.0",
"gatsby-plugin-sharp": "^2.0.5",
"gatsby-plugin-sitemap": "^2.0.1",
"gatsby-remark-copy-linked-files": "^2.0.5",
"gatsby-remark-external-links": "^0.0.4",
"gatsby-remark-images": "^2.0.3",
"gatsby-remark-prismjs": "^3.0.1",
"gatsby-remark-responsive-iframe": "^2.0.5",
"gatsby-remark-smartypants": "^2.0.5",
"gatsby-source-filesystem": "^2.0.1",
"gatsby-transformer-remark": "^2.1.6",
"gatsby-transformer-sharp": "^2.1.3",
"instantsearch.css": "^7.0.0",
"jss": "^9.8.7",
"netlify-cms": "^2.1.3",
"prismjs": "^1.15.0",
"react": "^16.5.2",
"react-custom-scrollbars": "^4.2.1",
"react-disqus-comments": "^1.1.1",
"react-dom": "^16.5.2",
"react-event-listener": "^0.6.4",
"react-facebook": "^4.2.1",
"react-headroom": "^2.2.2",
"react-helmet": "^5.2.0",
"react-instantsearch": "5.0.0",
"react-jss": "^8.6.1",
"react-lazyload": "^2.3.0",
"react-loadable": "^5.3.1",
"react-loadable-visibility": "^2.4.2",
"react-popper": "^0.8.3",
"react-redux": "^5.0.6",
"react-share": "^2.0.0",
"rebound": "^0.1.0",
"redux": "^3.7.2",
"redux-devtools-extension": "^2.13.2",
"screenfull": "^3.3.2"
}
}