-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.3 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
{
"name": "gatsby-base-starter",
"description": "A opinionated Gatsby Starter with polyfills, css modules and linters",
"version": "1.0.0",
"author": "Aurora Digital",
"homepage": "https://github.com/aurora-digital/gatsby-base-starter",
"keywords": [
"gatsby",
"starter",
"postcss",
"modules",
"analytics",
"linters"
],
"license": "MIT",
"main": "n/a",
"repository": {
"type": "git",
"url": "https://github.com/aurora-digital/gatsby-base-starter"
},
"scripts": {
"dev": "gatsby develop",
"build": "gatsby build",
"prettier": "prettier --ignore-path .gitignore \"**/*.+(js|json)\"",
"format": "yarn run prettier -- --write",
"check-format": "yarn run prettier -- --list-different",
"lint": " yarn run lint-js && yarn run lint-styles ",
"lint-styles": "stylelint \"src/**/*.css\" \"src/**/*.scss\" --fix",
"lint-js": "npx eslint . --fix"
},
"dependencies": {
"babel-plugin-react-css-modules": "^5.2.6",
"babel-polyfill": "^6.26.0",
"core-js": "^2.6.10",
"eslint-plugin-prettier": "^3.1.1",
"gatsby": "^2.17.4",
"gatsby-image": "^2.2.29",
"gatsby-link": "^2.2.22",
"gatsby-plugin-google-analytics": "^2.1.23",
"gatsby-plugin-i18n": "^1.0.1",
"gatsby-plugin-postcss": "^2.1.13",
"gatsby-plugin-react-helmet": "^3.1.13",
"gatsby-plugin-root-import": "^2.0.5",
"gatsby-plugin-sharp": "^2.2.32",
"gatsby-plugin-sitemap": "^2.2.19",
"gatsby-source-filesystem": "^2.1.33",
"gatsby-transformer-sharp": "^2.3.0",
"husky": "^4.3.0",
"lint-staged": "^10.5.2",
"intersection-observer": "^0.7.0",
"postcss-import": "^12.0.1",
"postcss-modules": "^1.4.1",
"precss": "^4.0.0",
"prop-types": "^15.7.2",
"raf": "^3.4.1",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"react-helmet": "^5.2.1",
"react-intl": "^3.4.0"
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"eslint": "6.5.1",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^2.2.0",
"prettier": "^1.18.2",
"stylelint": "^11.1.1",
"stylelint-config-prettier": "^6.0.0",
"stylelint-order": "^3.1.1"
}
}