-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.47 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
{
"name": "gatsby-seed",
"description": "A gatsby-starter seed for quickly making SEO-friendly static sites.",
"private": true,
"version": "0.9.0",
"license": "MIT",
"author": "Damir Vazgird <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/withpulp/gatsby-starter-seed"
},
"bugs": {
"url": "https://github.com/withpulp/gatsby-starter-seed/issues"
},
"keywords": [
"gatsby",
"react"
],
"scripts": {
"dev": "gatsby develop",
"serve": "gatsby serve",
"ssr": "npm run build && npm run serve",
"build:dir": "mkdir -p public/icons/",
"build:favicons": "node scripts/favicons",
"build": "npm run build:dir && npm run build:favicons && gatsby build",
"test": "ava **/*.test.js --verbose"
},
"dependencies": {
"babel-plugin-styled-components": "^1.10.6",
"dateformat": "^3.0.3",
"formik": "^1.5.8",
"gatsby": "^2.13.25",
"gatsby-image": "^2.2.6",
"gatsby-plugin-catch-links": "^2.1.2",
"gatsby-plugin-google-analytics": "^2.1.4",
"gatsby-plugin-mailchimp": "^5.1.2",
"gatsby-plugin-manifest": "^2.2.3",
"gatsby-plugin-offline": "^2.2.4",
"gatsby-plugin-page-creator": "^2.1.21",
"gatsby-plugin-react-helmet": "^3.1.2",
"gatsby-plugin-react-svg": "^2.1.1",
"gatsby-plugin-sharp": "^2.2.7",
"gatsby-plugin-sitemap": "^2.2.3",
"gatsby-plugin-styled-components": "^3.1.2",
"gatsby-plugin-webpack-size": "^1.0.0",
"gatsby-remark-copy-linked-files": "^2.1.3",
"gatsby-remark-external-links": "^0.0.4",
"gatsby-remark-images": "^3.1.6",
"gatsby-remark-prismjs": "^3.3.3",
"gatsby-remark-responsive-iframe": "^2.2.4",
"gatsby-remark-smartypants": "^2.1.2",
"gatsby-source-filesystem": "^2.1.5",
"gatsby-transformer-remark": "^2.6.6",
"gatsby-transformer-sharp": "^2.2.3",
"gatsby-transformer-yaml": "^2.2.3",
"polished": "^3.4.1",
"prismjs": "^1.16.0",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-helmet": "^5.2.1",
"react-icons": "^3.7.0",
"styled-components": "^4.3.2",
"yup": "^0.27.0"
},
"devDependencies": {
"core-js": "^3.1.4",
"directory-named-webpack-plugin": "^4.0.1",
"favicons": "^5.4.1"
}
}