forked from ethereum/ethereum-org-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
120 lines (120 loc) · 3.95 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
{
"name": "ethereum-org-website",
"version": "4.9.0",
"description": "Website of ethereum.org",
"main": "index.js",
"repository": "[email protected]:ethereum/ethereum-org-website.git",
"author": "Sam Richards <[email protected]>",
"license": "MIT",
"private": false,
"dependencies": {
"@apollo/client": "^3.3.13",
"@formatjs/intl-locale": "^2.4.14",
"@formatjs/intl-numberformat": "^6.1.4",
"@mdx-js/mdx": "^1.6.5",
"@mdx-js/react": "^1.6.5",
"algoliasearch": "^4.3.0",
"axios": "^0.21.2",
"babel-plugin-styled-components": "^1.10.7",
"browser-lang": "^0.1.0",
"browserslist": "^4.21.0",
"clipboard": "^2.0.6",
"cross-fetch": "^3.1.5",
"dotenv": "^8.2.0",
"embla-carousel-react": "^6.2.0",
"ethereum-blockies-base64": "^1.0.2",
"focus-trap-react": "^8.11.2",
"framer-motion": "^4.1.3",
"gatsby": "^4.15.0",
"gatsby-plugin-gatsby-cloud": "^4.3.0",
"gatsby-plugin-image": "^2.0.0",
"gatsby-plugin-manifest": "^4.10.1",
"gatsby-plugin-matomo": "^0.9.0",
"gatsby-plugin-mdx": "^2.14.1",
"gatsby-plugin-netlify": "^3.14.0",
"gatsby-plugin-react-helmet": "^5.0.0",
"gatsby-plugin-react-helmet-canonical-urls": "^1.4.0",
"gatsby-plugin-react-svg": "^3.1.0",
"gatsby-plugin-sharp": "^4.10.0",
"gatsby-plugin-sitemap": "^5.0.0",
"gatsby-plugin-styled-components": "^5.0.0",
"gatsby-remark-autolink-headers": "^5.0.0",
"gatsby-remark-copy-linked-files": "^5.0.0",
"gatsby-remark-images": "^6.0.0",
"gatsby-remark-reading-time": "^1.1.0",
"gatsby-source-filesystem": "^4.0.0",
"gatsby-theme-i18n": "^3.0.0",
"gatsby-theme-i18n-react-intl": "^3.0.0",
"gatsby-transformer-csv": "^4.0.0",
"gatsby-transformer-gitinfo": "^1.1.0",
"gatsby-transformer-json": "^4.11.0",
"gatsby-transformer-remark": "^3.0.0",
"gatsby-transformer-sharp": "^4.10.0",
"is-relative-url": "^3.0.0",
"lodash": "^4.17.21",
"luxon": "^1.24.1",
"netlify-lambda": "^2.0.3",
"polished": "^4.1.4",
"prism-react-renderer": "^1.1.1",
"prismjs": "^1.27.0",
"react": "17.0.2",
"react-countdown": "^2.3.2",
"react-dom": "17.0.2",
"react-emoji-render": "^1.2.4",
"react-helmet": "^6.1.0",
"react-icons": "^4.3.1",
"react-instantsearch-dom": "^6.6.0",
"react-intl": "^3.12.1",
"react-select": "^4.3.0",
"recharts": "^2.1.9",
"styled-components": "^5.1.1",
"styled-system": "^5.1.5",
"unist-util-visit-parents": "^2.1.2"
},
"devDependencies": {
"@netlify/functions": "^1.0.0",
"@types/browser-lang": "^0.1.0",
"@types/luxon": "^2.3.2",
"@types/mdx-js__react": "^1.5.5",
"@types/node": "^17.0.23",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.11",
"@types/react-instantsearch-dom": "^6.12.3",
"@types/styled-components": "^5.1.25",
"@types/styled-system": "^5.1.15",
"babel-preset-gatsby": "^2.14.0",
"github-slugger": "^1.3.0",
"husky": "^4.2.5",
"identity-obj-proxy": "^3.0.0",
"minimist": "^1.2.6",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"react-test-renderer": "^17.0.1",
"typescript": "^4.6.3"
},
"scripts": {
"build": "gatsby build",
"build:lambda": "netlify-lambda build src/lambda",
"build:10gb": "NODE_OPTIONS=--max-old-space-size=10240 gatsby build",
"clean": "gatsby clean",
"crowdin-clean": "rm -rf .crowdin && mkdir .crowdin",
"crowdin-import": "ts-node src/scripts/crowdin-import.ts",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"generate-heading-ids": "node src/scripts/generate-heading-ids.js",
"start": "gatsby develop",
"start:lambda": "netlify-lambda serve src/lambda",
"start:static": "gatsby build && gatsby serve",
"serve": "gatsby serve",
"type-check": "tsc --noEmit"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"volta": {
"node": "16.15.0",
"npm": "8.5.5",
"yarn": "1.22.18"
}
}