-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
42 lines (42 loc) · 1.35 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
{
"private": true,
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"lint:js": "eslint --ignore-path .gitignore \"**/*.{js,jsx}\"",
"lint:css": "stylelint \"src/**/*.scss\"",
"lint": "yarn lint:js && yarn lint:css",
"format": "prettier-eslint --write \"**/*.{js,jsx,json,scss,md}\""
},
"dependencies": {
"gatsby": "^1.9.253",
"gatsby-image": "^1.0.47",
"gatsby-link": "^1.6.41",
"gatsby-plugin-favicon": "^2.1.1",
"gatsby-plugin-google-analytics": "^1.0.31",
"gatsby-plugin-react-helmet": "^2.0.11",
"gatsby-plugin-react-next": "^1.0.11",
"gatsby-plugin-sass": "^1.0.26",
"gatsby-plugin-sharp": "^1.6.43",
"gatsby-source-filesystem": "^1.5.33",
"gatsby-transformer-sharp": "^1.6.23",
"gatsby-transformer-yaml": "^1.5.14",
"normalize.css": "^8.0.0",
"react-helmet": "^5.2.0",
"react-icons": "^2.2.7",
"react-images": "^0.5.16",
"whatwg-fetch": "^2.0.4"
},
"devDependencies": {
"eslint": "^4.16.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.6.1",
"prettier-eslint-cli": "^4.7.0",
"stylelint": "^9.2.0",
"stylelint-config-idiomatic-order": "^5.0.0",
"stylelint-config-recommended-scss": "^3.0.0",
"stylelint-scss": "^3.0.1"
}
}