-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
51 lines (51 loc) · 1.67 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
{
"name": "upgrading-ethereum-book",
"version": "0.3.0",
"private": true,
"description": "A technical handbook on Ethereum's move to proof of stake and beyond",
"author": "Ben Edgington",
"keywords": [],
"scripts": {
"devel": "gatsby develop",
"start": "gatsby develop",
"build": "gatsby build --prefix-paths",
"serve": "gatsby serve --prefix-paths",
"clean": "gatsby clean",
"check": "node -e 'require(\"./bin/build/prebuild\").runChecks()'",
"links": "bin/util/check_urls.sh src/book.md",
"spell": "bin/util/check_spellings_list.sh",
"valid": "node -e 'require(\"./bin/util/validate\").validateHtml(\"public/index.html\")'",
"gramm": "bin/util/check_grammar.sh src/book.md",
"patch": "npx patch-package",
"pdfit": "bin/pdf/make_pdf src/book.md",
"stats": "bin/util/stats.sh",
"postinstall": "patch-package"
},
"dependencies": {
"cheerio": "^1.0.0-rc.12",
"gatsby": "^5.12.9",
"gatsby-plugin-catch-links": "^5.12.0",
"gatsby-plugin-htaccess": "^1.4.0",
"gatsby-plugin-matomo": "^0.16.2",
"gatsby-remark-autolink-headers": "^6.12.3",
"gatsby-remark-katex": "^7.12.0",
"gatsby-remark-numbered-footnotes": "^1.0.1",
"gatsby-remark-prismjs": "^7.12.0",
"gatsby-source-filesystem": "^5.12.1",
"gatsby-transformer-remark": "^6.12.3",
"markdownlint": "^0.32.1",
"patch-package": "^8.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"svgo": "^3.0.4",
"webpack": "^5.89.0"
},
"overrides": {
"babel-plugin-lodash": {
"@babel/types": "~7.20.0"
},
"[email protected]": {
"react": "$react"
}
}
}