-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.5 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
{
"name": "gatsby-starter-blog",
"private": true,
"description": "A starter for a blog powered by Gatsby and Markdown",
"version": "0.1.0",
"author": "Kyle Mathews <[email protected]>",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"dependencies": {
"@vercel/analytics": "^0.1.6",
"gatsby": "*",
"gatsby-image": "*",
"gatsby-plugin-feed": "*",
"gatsby-plugin-google-analytics": "*",
"gatsby-plugin-manifest": "*",
"gatsby-plugin-meta-redirect": "*",
"gatsby-plugin-offline": "*",
"gatsby-plugin-react-helmet": "*",
"gatsby-plugin-sharp": "*",
"gatsby-plugin-twitter": "*",
"gatsby-plugin-typography": "*",
"gatsby-redirect-from": "*",
"gatsby-remark-code-titles": "*",
"gatsby-remark-copy-linked-files": "*",
"gatsby-remark-images": "*",
"gatsby-remark-prismjs": "*",
"gatsby-remark-prismjs-spectre": "*",
"gatsby-remark-responsive-iframe": "*",
"gatsby-remark-smartypants": "*",
"gatsby-source-filesystem": "*",
"gatsby-transformer-remark": "*",
"gatsby-transformer-sharp": "*",
"prismjs": "*",
"react": "*",
"react-dom": "*",
"react-helmet": "*",
"react-icons": "*",
"react-typography": "*",
"typeface-merriweather": "*",
"typeface-montserrat": "*",
"typography": "*",
"typography-theme-github": "*",
"typography-theme-wordpress-2016": "*"
},
"devDependencies": {
"eslint": "*",
"eslint-plugin-react": "*",
"prettier": "*"
},
"homepage": "https://github.com/gatsbyjs/gatsby-starter-blog#readme",
"keywords": [
"gatsby"
],
"license": "MIT",
"main": "n/a",
"repository": {
"type": "git",
"url": "git+https://github.com/gatsbyjs/gatsby-starter-blog.git"
},
"scripts": {
"dev": "gatsby develop",
"lint": "eslint --ext .js,.jsx --ignore-pattern public .",
"test": "echo \"Write tests! -> https://gatsby.app/unit-testing\"",
"format": "prettier --trailing-comma es5 --no-semi --single-quote --write 'src/**/*.js' 'src/**/*.md'",
"develop": "gatsby develop",
"start": "npm run develop",
"build": "gatsby build",
"deploy": "npm run build && aws s3 sync --exact-timestamps --delete public s3://blog.seike460.com && aws cloudfront create-invalidation --distribution-id E3LSKZQ8F7X40H --paths '/*'",
"fix-semi": "eslint --quiet --ignore-pattern node_modules --ignore-pattern public --parser babel-eslint --no-eslintrc --rule '{\"semi\": [2, \"never\"], \"no-extra-semi\": [2]}' --fix gatsby-node.js"
}
}