forked from ethereum/ethereum-org-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.65 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
{
"name": "ethereum-org-website",
"version": "2.12.4",
"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": {
"@mdx-js/mdx": "^1.6.5",
"@mdx-js/react": "^1.6.5",
"algoliasearch": "^4.3.0",
"axios": "^0.19.2",
"babel-plugin-styled-components": "^1.10.7",
"clipboard": "^2.0.6",
"dotenv": "^8.2.0",
"ethereum-blockies-base64": "^1.0.2",
"framer-motion": "^1.11.1",
"gatsby": "^2.23.1",
"gatsby-image": "^2.4.7",
"gatsby-plugin-intl": "^0.3.3",
"gatsby-plugin-lodash": "^3.3.11",
"gatsby-plugin-manifest": "^2.4.13",
"gatsby-plugin-matomo": "^0.8.3",
"gatsby-plugin-mdx": "^1.2.15",
"gatsby-plugin-react-helmet": "^3.3.4",
"gatsby-plugin-react-helmet-canonical-urls": "^1.4.0",
"gatsby-plugin-sharp": "^2.6.11",
"gatsby-plugin-sitemap": "^2.4.7",
"gatsby-plugin-styled-components": "^3.3.3",
"gatsby-remark-autolink-headers": "^2.3.5",
"gatsby-remark-copy-linked-files": "^2.4.0",
"gatsby-remark-images": "^3.3.12",
"gatsby-source-filesystem": "^2.3.10",
"gatsby-source-graphql": "^2.7.3",
"gatsby-transformer-csv": "^2.3.10",
"gatsby-transformer-gitinfo": "^1.1.0",
"gatsby-transformer-remark": "^2.8.16",
"gatsby-transformer-sharp": "^2.5.5",
"lodash": "^4.17.20",
"luxon": "^1.24.1",
"netlify-lambda": "^1.6.3",
"polished": "^3.6.5",
"prism-react-renderer": "^1.1.1",
"prismjs": "^1.21.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-emoji-render": "^1.2.4",
"react-helmet": "^6.1.0",
"react-icons": "^4.1.0",
"react-instantsearch-dom": "^6.6.0",
"react-select": "^3.1.0",
"styled-components": "^5.1.1",
"styled-system": "^5.1.5"
},
"devDependencies": {
"github-slugger": "^1.3.0",
"husky": "^4.2.5",
"prettier": "2.0.5",
"pretty-quick": "^2.0.1"
},
"scripts": {
"build": "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/copyContributors.js",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"generate-heading-ids": "node src/scripts/generateHeadingIDs.js",
"start": "gatsby develop",
"start:static": "gatsby build && gatsby serve",
"serve": "gatsby serve",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}