-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
71 lines (71 loc) · 2.29 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
{
"name": "eipfun-frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"update": "pnpm run clone:EIPs && pnpm copy && pnpm run addExample",
"postbuild": "next-sitemap",
"clone:EIPs": "node scripts/downloadEips",
"copy": "pnpm change:name && pnpm copy:eip && pnpm copy:erc",
"change:name": "find ./eth-ercs/ERCS/ -type f -name \"*erc-*\" -exec bash -c 'mv \"$0\" \"${0/erc-/eip-}\"' {} \\;",
"copy:eip": "cp -rf eth-eips/assets/ public/assets/ && cp -rf eth-eips/EIPS/ public/original-eips/",
"copy:erc": "cp -rf eth-ercs/assets/ public/assets/ && cp -rf eth-ercs/ERCS/ public/original-eips/",
"addExample": "node scripts/syncFile",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@mdx-js/loader": "^2.3.0",
"@mdx-js/react": "^2.3.0",
"@mui/icons-material": "^5.11.16",
"@mui/lab": "5.0.0-alpha.129",
"@mui/material": "^5.12.0",
"@mui/styled-engine-sc": "^5.12.0",
"@next/font": "13.3.0",
"@next/mdx": "^13.2.4",
"@rainbow-me/rainbowkit": "^2.0.1",
"@tanstack/react-query": "^4.29.5",
"@types/autosuggest-highlight": "^3.2.0",
"@types/node": "18.15.11",
"@types/react": "18.0.35",
"@types/react-dom": "18.0.11",
"autosuggest-highlight": "^3.3.4",
"axios": "^1.3.6",
"dotenv": "^16.0.3",
"download-git-repo": "^3.0.2",
"eslint": "8.38.0",
"eslint-config-next": "13.3.0",
"l": "^0.6.0",
"next": "13.3.0",
"next-mdx-remote": "^4.4.1",
"next-seo": "^6.1.0",
"next-sitemap": "^4.2.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.43.9",
"react-loader-spinner": "^5.3.4",
"react-loading": "^2.0.3",
"react-markdown": "^8.0.7",
"react-query": "^3.39.3",
"react-syntax-highlighter": "^15.5.0",
"react-toc": "^3.1.0",
"rehype-raw": "^6.1.1",
"remark-gfm": "^3.0.1",
"styled-components": "^5.3.9",
"tocbot": "^4.21.0",
"typescript": "5.0.4",
"viem": "2.x",
"wagmi": "^2.5.7"
},
"devDependencies": {
"@svgr/webpack": "^7.0.0",
"@types/lodash": "^4.14.195",
"@types/node": "18.15.11",
"@types/react-syntax-highlighter": "^15.5.7",
"prettier": "^2.8.7"
}
}