-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
111 lines (111 loc) · 3.12 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-advanced-blog",
"version": "1.1.4",
"description": "Gatsby starter for advanced blog",
"main": "n/a",
"author": "wonism",
"license": "MIT",
"homepage": "https://github.com/wonism/gatsby-advanced-blog",
"keywords": [
"gatsby"
],
"repository": {
"type": "git",
"url": "git+https://github.com/wonism/gatsby-advanced-blog.git"
},
"bugs": {
"url": "https://github.com/wonism/gatsby-advanced-blo/issues"
},
"scripts": {
"lint": "eslint --ext .js,.jsx --config .eslintrc.js",
"dev": "gatsby develop",
"clean": "rm -rf .cache && rm -rf public",
"build": "gatsby build",
"serve": "gatsby serve",
"deploy": "gatsby build && surge public megolbaz.com",
"test": "echo \"Error: no test specified\" && exit 1"
},
"peerDependencies": {
"gatsby": ">=2.2.9",
"prop-types": ">=15.7.2",
"react": ">=16.8.5",
"react-dom": ">=16.8.5",
"styled-components": ">=4.2.0"
},
"dependencies": {
"@babel/polyfill": "^7.4.0",
"clipboard": "^2.0.4",
"core-js": "^2.6.5",
"gatsby": "^2.8.5",
"npm": "^6.9.0",
"react": "^16.8.5",
"react-dom": "^16.8.5",
"react-helmet": "^5.2.0",
"react-icons": "^3.5.0",
"react-toggle": "^4.0.2",
"react-truncate": "^2.4.0",
"react-twitter-widgets": "^1.7.1",
"styled-components": "^4.2.0"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-proposal-pipeline-operator": "^7.3.2",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.4.2",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"babel-plugin-emotion": "^10.0.9",
"babel-plugin-root-import": "^6.5.0",
"babel-plugin-styled-components": "^1.10.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-import-resolver-webpack": "^0.11.0",
"eslint-loader": "^2.1.2",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"gatsby-plugin-google-analytics": "^2.0.17",
"gatsby-plugin-manifest": "^2.0.24",
"gatsby-plugin-offline": "^2.0.25",
"gatsby-plugin-react-helmet": "^3.0.10",
"gatsby-plugin-robots-txt": "^1.4.0",
"gatsby-plugin-sharp": "^2.0.31",
"gatsby-plugin-sitemap": "^2.1.0",
"gatsby-plugin-styled-components": "^3.0.7",
"gatsby-remark-copy-linked-files": "^2.0.11",
"gatsby-remark-images": "^3.0.10",
"gatsby-remark-prismjs": "^3.2.6",
"gatsby-remark-responsive-iframe": "^2.1.1",
"gatsby-remark-smartypants": "^2.0.9",
"gatsby-source-filesystem": "^2.0.28",
"gatsby-transformer-remark": "^2.3.8",
"git-scripts": "^0.4.3",
"husky": "^1.3.1",
"lint-staged": "^8.1.5",
"prettier": "^1.16.4",
"prettier-eslint-cli": "^4.7.1",
"prismjs": "^1.15.0",
"surge": "^0.21.3"
},
"browserslist": [
"> 10%",
"IE >= 9",
"last 2 versions"
],
"lint-staged": {
"linters": {
"*.{js,jsx}": [
"npm run lint",
"git add"
]
},
"ignore": [
"./.*.js"
]
},
"husky": {
"hooks": {
"pre-commit": ""
}
}
}