-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
80 lines (80 loc) · 2.69 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
{
"name": "halfelectronic",
"description": "halfelectronic.com",
"version": "1.0.0",
"author": "Fernando Poumián <[email protected]>",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby-starter-blog/issues"
},
"dependencies": {
"axios": "^0.17.0",
"classnames": "^2.2.5",
"date-fns": "^1.29.0",
"dotenv": "^4.0.0",
"gatsby": "^1.9.73",
"gatsby-cli": "^1.1.27",
"gatsby-link": "^1.6.22",
"gatsby-plugin-google-analytics": "^1.0.10",
"gatsby-plugin-google-fonts": "^0.0.3",
"gatsby-plugin-manifest": "^1.0.8",
"gatsby-plugin-offline": "^1.0.10",
"gatsby-plugin-react-helmet": "^1.0.8",
"gatsby-remark-copy-linked-files": "^1.5.9",
"gatsby-remark-external-links": "^0.0.3",
"gatsby-remark-images": "^1.5.18",
"gatsby-remark-prismjs": "^1.2.1",
"gatsby-remark-responsive-iframe": "^1.4.8",
"gatsby-remark-smartypants": "^1.4.8",
"gatsby-source-contentful": "^1.3.19",
"gatsby-source-filesystem": "^1.5.5",
"gatsby-transformer-remark": "^1.7.17",
"intersection-observer": "^0.4.2",
"lodash": "^4.15.0",
"lozad": "^1.0.9",
"medium-zoom": "^0.2.0",
"prism-theme-one-dark": "^1.0.0",
"prismjs": "^1.8.3",
"prop-types": "^15.6.0",
"raf": "^3.4.0",
"react-burger-menu": "^2.1.10",
"react-disqus-comments": "^1.1.1",
"react-icons": "^2.2.7",
"react-share": "^1.16.0",
"react-typist": "^2.0.4",
"scroll-to-element": "^2.0.0",
"tween": "^0.9.0",
"url-join": "^2.0.2"
},
"devDependencies": {
"babel-eslint": "^8.0.1",
"eslint": "^4.10.0",
"eslint-config-prettier": "^2.7.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-prettier": "^2.3.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-react": "^7.4.0",
"eslint-plugin-standard": "^3.0.1",
"prettier": "^1.7.4"
},
"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": "./node_modules/.bin/eslint --ext .js,.jsx --ignore-pattern public .",
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier --trailing-comma es5 --no-semi --single-quote --write 'src/**/*.js'",
"develop": "gatsby develop",
"build": "gatsby build",
"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"
}
}