-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
141 lines (141 loc) · 4.46 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
{
"name": "gatsby-chris-otto-dev",
"version": "1.0.0",
"author": "Chris Otto <[email protected]>",
"license": "MIT",
"scripts": {
"build": "GATSBY_EXPERIMENTAL_PAGE_BUILD_ON_DATA_CHANGES=true gatsby build --log-pages",
"build:local": "gatsby build",
"develop": "gatsby develop",
"serve": "gatsby serve",
"start": "gatsby build && gatsby serve",
"format": "prettier --write 'src/**/*.js'",
"lint": "eslint ./src",
"lintFix": "eslint ./src --fix",
"stylelint": "stylelint src/**/*.js",
"test": "jest",
"badges": "jest --coverage && jest-coverage-badges",
"test:cypress": "cypress run",
"e2e": "start-server-and-test serve http://localhost:9000 test:cypress",
"e2e:open": "cypress open",
"generate-app-icons": "sh ./scripts/generate-app-icons.sh",
"post": "node util/newPost.js",
"compress": "node util/compressImages.js"
},
"dependencies": {
"@mdx-js/mdx": "^1.6.22",
"@mdx-js/react": "^1.6.22",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
"algoliasearch": "^4.8.5",
"antd": "^4.12.3",
"fontfaceobserver": "^2.0.13",
"gatsby": "^2.32.3",
"gatsby-image": "^2.11.0",
"gatsby-plugin-algolia": "^0.16.3",
"gatsby-plugin-catch-links": "^2.10.0",
"gatsby-plugin-feed-mdx": "^1.0.1",
"gatsby-plugin-google-analytics": "^2.11.0",
"gatsby-plugin-layout": "^1.10.0",
"gatsby-plugin-mailchimp": "^5.1.2",
"gatsby-plugin-manifest": "^2.12.0",
"gatsby-plugin-mdx": "^1.10.0",
"gatsby-plugin-netlify": "^2.11.0",
"gatsby-plugin-offline": "^3.10.0",
"gatsby-plugin-react-helmet": "^3.10.0",
"gatsby-plugin-react-helmet-canonical-urls": "^1.4.0",
"gatsby-plugin-react-svg": "^3.0.0",
"gatsby-plugin-robots-txt": "^1.5.5",
"gatsby-plugin-sentry": "^1.0.1",
"gatsby-plugin-sharp": "^2.14.1",
"gatsby-plugin-sitemap": "^2.12.0",
"gatsby-plugin-styled-jsx": "^3.10.0",
"gatsby-plugin-styled-jsx-postcss": "^2.0.2",
"gatsby-remark-autolink-headers": "^2.11.0",
"gatsby-remark-copy-linked-files": "^2.10.0",
"gatsby-remark-embedder": "^4.1.0",
"gatsby-remark-emojis": "^0.4.3",
"gatsby-remark-external-links": "^0.0.4",
"gatsby-remark-images": "^3.11.0",
"gatsby-remark-prismjs": "^3.13.0",
"gatsby-remark-responsive-iframe": "^2.11.0",
"gatsby-remark-smartypants": "^2.10.0",
"gatsby-source-filesystem": "^2.11.0",
"gatsby-transformer-json": "^2.11.0",
"gatsby-transformer-sharp": "^2.12.0",
"jest": "^26.6.3",
"prismjs": "^1.22.0",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-helmet": "^6.1.0",
"react-icons": "^4.2.0",
"react-instantsearch-dom": "^6.9.0",
"react-share": "^4.3.1",
"react-visibility-sensor": "^5.1.1",
"styled-jsx": "^3.3.2",
"typeface-open-sans": "^1.1.13"
},
"keywords": [
"gatsby",
"blog",
"personal website",
"portfolio"
],
"devDependencies": {
"@testing-library/cypress": "^7.0.3",
"axe-core": "^4.1.2",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"babel-preset-gatsby": "^0.12.1",
"cypress": "^6.5.0",
"cypress-axe": "^0.12.1",
"dotenv": "^8.2.0",
"eslint": "^7.20.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-graphql": "^4.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.0",
"eslint-plugin-react": "^7.22.0",
"glob": "^7.1.6",
"husky": "^5.0.9",
"lint-staged": "^10.5.4",
"postcss": "^8.2.6",
"postcss-cli": "^8.3.1",
"postcss-cssnext": "^3.1.0",
"postcss-custom-properties": "^11.0.0",
"postcss-custom-selectors": "^6.0.0",
"postcss-easy-media-query": "^1.0.0",
"postcss-load-plugins": "^2.3.0",
"postcss-loader": "^3.0.0",
"postcss-media-variables": "^2.0.1",
"postcss-nested": "^4.2.3",
"postcss-sorting": "^6.0.0",
"postcss-text-remove-gap": "^1.1.1",
"postcss-utilities": "^0.8.4",
"prettier": "^2.2.1",
"react-test-renderer": "^16.14.0",
"serve": "^11.3.2",
"start-server-and-test": "^1.12.0",
"stylelint": "^13.10.0",
"tinify": "^1.6.0-beta.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{html,js,yml,mdx,md,json}": [
"prettier --write"
],
"*.{js,jsx}": [
"yarn run lint"
],
"*.{jpg,png,gif}": [
"yarn run compress",
"git add ."
]
}
}