forked from ethereum/ethereum-org-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 3.11 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
{
"name": "ethereum-org-website",
"version": "2.44.0",
"description": "Website of ethereum.org",
"main": "index.js",
"repository": "git@github.com:ethereum/ethereum-org-website.git",
"author": "Sam Richards <sam.richards@ethereum.org>",
"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.1",
"babel-plugin-styled-components": "^1.10.7",
"clipboard": "^2.0.6",
"cross-fetch": "^3.1.3-alpha.6",
"dotenv": "^8.2.0",
"ethereum-blockies-base64": "^1.0.2",
"framer-motion": "^4.1.3",
"gatsby": "^3.0.4",
"gatsby-image": "^3.0.0",
"gatsby-plugin-intl": "^0.3.3",
"gatsby-plugin-lodash": "^4.0.0",
"gatsby-plugin-manifest": "^3.0.0",
"gatsby-plugin-matomo": "^0.9.0",
"gatsby-plugin-mdx": "^2.0.1",
"gatsby-plugin-react-helmet": "^4.0.0",
"gatsby-plugin-react-helmet-canonical-urls": "^1.4.0",
"gatsby-plugin-sharp": "^3.0.1",
"gatsby-plugin-sitemap": "^3.0.0",
"gatsby-plugin-styled-components": "^4.0.0",
"gatsby-remark-autolink-headers": "^3.0.0",
"gatsby-remark-copy-linked-files": "^3.0.0",
"gatsby-remark-images": "^4.0.0",
"gatsby-source-filesystem": "^3.0.0",
"gatsby-transformer-csv": "^3.0.0",
"gatsby-transformer-gitinfo": "^1.1.0",
"gatsby-transformer-remark": "^3.0.0",
"gatsby-transformer-sharp": "^3.0.0",
"lodash": "^4.17.21",
"luxon": "^1.24.1",
"netlify-lambda": "^2.0.3",
"polished": "^4.1.1",
"prism-react-renderer": "^1.1.1",
"prismjs": "^1.25.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.1.0",
"react-instantsearch-dom": "^6.6.0",
"react-select": "^4.3.0",
"recharts": "1.8.5",
"styled-components": "^5.1.1",
"styled-system": "^5.1.5"
},
"devDependencies": {
"babel-jest": "^26.6.3",
"babel-preset-gatsby": "^1.2.0",
"github-slugger": "^1.3.0",
"husky": "^4.2.5",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"react-test-renderer": "^17.0.1"
},
"scripts": {
"build": "yarn merge-translations && yarn copy-contributors && yarn build:app && yarn build:lambda",
"build:app": "gatsby build",
"build:lambda": "netlify-lambda build src/lambda",
"copy-contributors": "node src/scripts/copy-contributors.js",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"generate-heading-ids": "node src/scripts/generate-heading-ids.js",
"merge-translations": "node src/scripts/merge-translations.js",
"start": "yarn merge-translations && yarn copy-contributors && gatsby develop",
"start:lambda": "netlify-lambda serve src/lambda",
"start:static": "gatsby build && gatsby serve",
"serve": "gatsby serve",
"test": "jest"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}