forked from gatsbyjs/gatsby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dictionary.txt
1149 lines (1149 loc) · 11.2 KB
/
dictionary.txt
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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
0BSD
100K
100ms
100px
100s
10k
10KB
10x
11ty
1200px
1280px
128k
1500x1500
1600px
1600x2000
16k
1GB
1px
1x
2-3x
2000s
200px
20x
21YunBox
21YunBox's
250px
2x
3G
400px
404s
500mb
5X
786px
800px
90s
A11y
adblocker
Add-ons
add-seo-component
addons
Addy
Airbnb
Airtable
Akamai
Alahmady
Algolia
Algolia's
Amberley
amongst
Amplify2
analytics
Analytics
AniLink
animejs
anonymized
apiRunInstance
APIs
APIs.
AppSync
architecting
Archlinux
arg
args
args.
aspectRatio
AST
async
Async
async-requires
auth
Auth
Auth0
Auth0's
autocomplete
autocompletion
automagically
autoplay
autoplaying
Autoprovisioning
avif
AVIF
axe
axe-core
axe312ger
axios
Axios
babylon-traverse
backend
Backend
backends
backticks
balancer
balancers
barebones
base64
basepath
Başlangıç
Bejamas
BEM
Berners-Lee
Berriman
Bhagwat
BigCommerce
bikeshed
bindActionCreators
Bing
Bip
Biscardi
Bitbucket
Blazingly
blockquote
Blockquote
blockquotes
blogpost
blogposts
Bölüm
bool
booleans
Bootcamp
bootup
breakpoint
Breakpoint
Brotli
browserrouter
Browserslist
bugfixes
BuilderIO
buildpack
buildpacks
buildwithgatsby
Bulma
bundler
ButterCMS
C'mon
CaaS
cafile
Callout
camelCase
cd
CDATA
CDN
CDNs
Cereda's
Certbot
CFP
chakra
Chakra
chakra-ui
changelog
Changelog
cheatsheet
Chedeau's
chunkFilename
chunkGroup
chunkGroups
chunkMapping
CICD
CircleCI
CLI
clientside
Clodui
Cloudflare
CloudFront
Cloudinary
Cloudinary's
CMS
CMSes
CMSs
CNAME
codebase
codebases
Codecademy
Codecademy's
CodeCommit
codecs
codemod
codeowner
codeowners
CodePen
CodeSandbox
colocate
Commento
CommerceLayer
CommonJS
CommonMark
comparator
Comparator
comparators
compat
compile-to-js
componentChunkName
componentChunkNames
ComponentChunkNames
componentDidMount
componentization
componentPath
composable
Conf
config
Config
config.
configs
const
Construye
contentDigest
contentDigests
contentfield
ContentFields
contentful
Contentful
contentful-import
Contentstack
COVID-19
CPUs
createContentDigest
createElement
createNode
createNodeField
createNodeFields
createPage
createPageDependency
createpages
createPages
createPagesStatefully
createParentChildLink
createRedirect
createRemoteFileNode
createResolvers
cron
CSP
CSRF
css
CSS-in-JS
CSV
Ctrl
customizable
customizations
cypress-axe
Dabit
Dalgleish's
Dashbored
data.json
DataFire
datalayer
dataPath
dataPaths
dataPaths.
dataset
datasource
datastore
Dato
DatoCMS
DDoS
de-activate
De-Jargonizer
declaratively
deduplicating
defaultDataLayer
DefinePlugin
dein
Deprecations
Deque
destructure
destructured
destructuring
dev
Dev
DEV
devcert
devcert-cli
devDependencies
developMiddleware
Devops
DevOps
DevTools
Dgraph
DigitalOcean
DigitalOcean's
dir
disableCorePrefetching
discoverability
discoverable
Disqus
distro
distros
dnf
DNS
DocSearch
Dodds
DOM
DOMPurify
dont
dotenv
doubleBind
dropdown
dropdowns
duotone
DX
e2e
E2E
eBook
EC2
ecommerce
eg
Eka
EmailCaptureForm
ENOSPC
enqueuedDirtyActions
enqueueing
EnsureResources
entrypoint
enum
enums
env
Env
Erstelle
erstellen
ES6
Escalade
eslint
ESLint
eslint-plugin-jsx-a11y
ETag
ETags
Etsy
exampleValue
executables
Expedia
express-graphql
extractQueries
F12
F8
fallbacks
Fastly
favicon
favicons
Feedly
fetchPageResourcesMap
fieldname
filepath
filepaths
filesizes
Filestack
filesystem
findIdsWithoutDataDependencies
findRootNodeAncestor
firebase
Firestore
Flexbox
Flickr
Flotiq
Flotiq's
Flowtype
fontsource
Fontsource
FormatJS
formatter
Formik
Formspree
Formspree's
FOUC
*freeCodeCamp
FreeCodeCamp
frontend
frontends
frontmatter
Frontmatter
frontpage
Frontpage
fs
Fujihara
full-throated
fullWidth
Funston
Futura
Gatsbot
gatsby
gatsby-cli
Gatsby-CLI
gatsby-default-starter
gatsby-dev-cli
gatsby-es
gatsby-image
gatsby-mdx-embed
gatsby-paginated-blog
gatsby-plugin-advanced-sitemap
gatsby-plugin-csp
gatsby-plugin-elasticlunr-search
gatsby-plugin-feed
gatsby-plugin-glamor
gatsby-plugin-guess-js
gatsby-plugin-mdx
gatsby-plugin-netlify
gatsby-plugin-offline
gatsby-plugin-postcss
gatsby-plugin-s3
gatsby-plugin-sharp
gatsby-plugin-sitemap
gatsby-plugin-theme-ui
gatsby-remark-prismjs
gatsby-source-cloudinary
Gatsby-source-cloudinary
gatsby-source-contentful
gatsby-source-datocms
gatsby-source-filesystem
gatsby-source-flotiq
gatsby-source-graphql
gatsby-source-sanity
gatsby-source-tmdb
gatsby-source-wordpress-experimental
gatsby-source-x-cms
gatsby-starter-blog
gatsby-starter-buttercms
gatsby-starter-ecommerce
gatsby-starter-mdx-basic
gatsby-starter-netlify-cms
gatsby-starter-prismic
gatsby-transformer-cloudinary
Gatsby-transformer-cloudinary
gatsby-transformer-json
gatsby-transformer-remark
gatsby-transformer-yaml
gatsbybot
Gatsbybot
Gatsbygram
gatsbyjs
Gatsbyjs
GatsbyJS
gatsbytutorial
GatsbyWebpackStatsExtractor
GDPR
generalistic
Gentics
getExampleValues
Getform
getResourcesForPathname
gh-pages
Gienow
gif
GIFs
Gitalk
Gitee
Github
GitLab
GitLab's
Gitpod
Gitter
GitX
glamor
Glamor
globals
Gmail
GoatCounter
Googlebot
GQL
gqlType
GqlType
gqlTypes
GraphCMS
GraphiQL
graphql
GraphQL
graphql-js
Graphql-js
graphql-reference
graphql-tools
GraphQL's
GraphQLObjectType
GraphQLObjectTypes
grayscale
Gruber
GSAP
gtag
GUID
Guidelist
GZip
h1
H1
h1s
h2
h2-h4
h3
h4
Hackathon
handleQuery
hardcode
hardcoded
hardcoding
HashHistory
Hashnode
hashrouter
Hasura
headComponents.
headstart
helpdesk
herecydev
heroku
heroku-buildpack-static
hinzufügen
HOCs
Homebrew
hoo
hoobdeebla
HorizontalNavList
Housecall
html-react-parser
HTML5
http
HTTPS
i18n
i18next
IaaS
IaC
IAM
IAM.
id0
id1
IDB
ie
IE9
iframe
IIS
ile
ImageModel
Imgur
Imoh
impactful
implementers
indexable
IndexedDB
init
inkteam
inlined
inlining
innerHTML
InstantSearch
integrations
Integrations
internalComponentName
IntersectionObserver
ip
IRL
Jaeger
jaeger-client
Jaeger's
Jamstack
JAMstack
JAMStack
jankiness
Javascript
Javscript
jbampton
joi
Joi
JPG
jQuery
JS
js-search
JS-Search
JSON
JSON-LD
jsonName
JSS
JSX
Julien
jumbotron
JWT
Kategorien
kebabHash
Kentico
*kintoblock
KintoBlock
KintoBlock-kintoblock
KintoBlocks
kintohub
KintoHub
KintoHub's
Kontent
Kontent's
Kurulum
KV
LangList
languageKey
Lengstorf
Lengstorf's
Lerna
LibSass
libvips
lifecycle
Lifecycle
Lifecycles
Linkable
linkedField
LinkedIn
linter
linters
livechat
livestream
Livestreams
localhost
Lodash's
lookups
LTS
Macbook
macOS
MacOS
Manjaro
matchers
matchPath
matchPaths
MathJax
Matomo
MD5
mdast
mdast-util-to-string
MDN
MDX
MDXProvider
Mediacurrent
Mediacurrent's
melty
mentorship
MichaelDeBoey
micromatch
middleware
migrate-remark-to-mdx
minification
minified
Minified
minifies
Minifies
minimalistic
misconfigured
mit
modelling
modularity
modularize
modularizing
modyfing
mongodb
monorepo
monorepos
Moz
MSSQL
muescha
multilanguage
Multithreading
must-revalidate
namespace
namespaced
namespaces
Narative
natively
nav
navigations
Netlify
netlify-cli
Netlify's
NewsletterCTA
NextJS
Nginx
NGINX
Ngo's
nodeId
nodeID
NodeID
nodemailer
NodeSchool
non-Prismic
non-webpack
Nonnenberg
npm
npx
npx.
nullability
nullable
nutzen
nvm
nvm's
OAuth
oEmbed
offscreen
ok
Okta
Olivas
onboarding
onClientEntry
onCreateNode
onCreatePage
OneShopper
onPostBootstrap
onPreBootstrap.
onPreExtractQueries
onPreRouteUpdate
onRouteUpdate
onwards
OpenAI
OpenAPI
OpenGraph
OpenSSH
opentracing
OpenTracing
Osmani
OSS
Otander
OWASP
Packagist
pacman
pageContext
pageQuery
PageRenderer
PageRenderer's
Palantir's
papercuts
Params
parsers
pathname
pathnames
pathPrefix
pathPrefix.
PCI
PDFs
peerDeps
perf
performant
performantly
permalink
permalinks
personalization
Piwik
pluginOption
pluginOptionsSchema
PNG
PokéAPI
PokéAPI's
Pokémon
polyfill
Polyfill
polyfills
Polyfills
popNodeQueries
PostCSS
postcss-loader
PostHog
postprocessing
PowerShell
PPA
pre-built
pre-bundle
Pre-cache
pre-caching
Pre-compiled
pre-configured
pre-created
pre-evaluates
pre-existing
pre-fetching
pre-fill
pre-filled
pre-installed
pre-loading
pre-optimize
pre-requisites
Pre-requisites
prebuilds
prebuilt
precache
precompiled
preconfigured
prefetch
prefetched
prefetching
preload
Preload
preloaded
preloading
Preloading
Preloads
prepended
prepends
preprocesses
preprocessor
presentational
Prisma's
Prismic
Prismic's
PrismJS
PrivateRoute
profiler
Profiler
profilers
programmatically
Programmatically
PropTypes
proxying
Proxying
PRPL
PRs
Publica
pullquotes
PurgeCSS
PWA
PWAs
QL
queryable
querying-data-with-graphql
Quickstart
Rascia
Re-engageable
react-dom
react-fontawesome
react-gif-player
react-hmre
react-i18next
React-i18next
react-intl
React-intl
react-intl's
react-konva
ReactDOM
ReactDOMServer
ReactiveSearch
ReactJS
read-eval-print
readme
README
realease
reCAPTCHA
reconciler
recurse
Reddit
*redux
Redux
ReferenceError
reflow
reformats
rehydrate
rehydrated
rehydrates
rehydration
reimplement
reimplementation
reinvoked
relativePath
remoteImages
renderers
RenderProp
Repl
REPL
replaceComponentQuery
repo
Repo
repo's
repos
rerender
rerendered
resave
resolvableExtensions
resolvers
reStructuredText
résumé
reusability
revalidated
rhodochrosite
RichText
roadmap
Roadmap
roadmaps
ROI
rollout
Romo
rootNodeMap
RootQueryType
roundtrip
route-api
RouteHandler
RSS
rsync
runQueries
runQueriesForPathnames
S3
S3.
SaaS
Salsify
SameSite
sanitize-html
scaffolded
scalable
scannability
Schau
schemas
SCSS
SDK
SDL
SDL-defined
searchability
searchbar
semver
SEO
serializer
serializers
serverless
Serverless
serverside
setFieldsOnGraphQLNodeType
setFileNodeRootType
sexualized
SFTP
shadowable
sharable
Shopify
shopify-buy
shortcode
shortcodes
shortname
shouldUpdateScroll
ShouldUpdateScrollArgs
shoxton
signup
signups
sitemapSize
siteMetadata
SitePage
SitePlugin
Sitesi
siteUrl
SKU
slugify
Slugify
SMT
SnipCard
Snipcart
Snipcart-specific
Snipcart's
Soper
sourceNodes
spammy
splitChunks
SplitChunks
src
sreehari-sj23
SSL
SSR
SSRed
SSRing
startSpan
StaticImage
Staticman
StaticQuery
Stoiber's
Strapi
Strava
stringified
StubList
StyledComponent
Styleguidist
stylesheet
stylesheets
Stylesheets
stylings
subcomponents
subdirectories
subdirectory
subfield
subfields
subfolder
subheaders
submenu
subobject's
subpage
subpages
subprocesses
subscribable
superset
Suriano
*svg
SVG
*svgs
SVGs
Swartz
symlink
syntaxes
Tada
TalkYard
templating
theming
Timeframes
TLS
Tolinski
toolchain
toolset
TopoJSON
touchNode
touchpoints
tracedSVG
tradeoff
tradeoffs
transformative
TransitionLink
transpilation