forked from smlxl/evm.codes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
120 lines (120 loc) · 3.56 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": "evm.codes",
"version": "0.1.0",
"description": "An interactive reference to Ethereum Virtual Machine Opcodes",
"homepage": "https://github.com/smlxl/evm.codes",
"license": "MIT",
"scripts": {
"build": "next build",
"build:solcjs-worker": "npx -y browserify -t babelify ./babel/solcWorker2.js > ./public/solcWorker.js",
"dev": "pnpm run build:solcjs-worker && next dev",
"format": "prettier --write --cache .",
"lint": "eslint --ext js,jsx,ts,tsx .",
"lint:package": "sort-package-json",
"prepare": "husky",
"typecheck": "tsc --pretty"
},
"dependencies": {
"@babel/core": "^7.0.0",
"@emotion/react": "^11.11.3",
"@emotion/styled": "^11.11.0",
"@ethereumjs/block": "^5.2.0",
"@ethereumjs/common": "^4.3.0",
"@ethereumjs/evm": "^3.0.0",
"@ethereumjs/tx": "^5.2.1",
"@ethereumjs/util": "^9.0.2",
"@ethereumjs/vm": "^8.0.0",
"@kunigi/string-compression": "1.0.2",
"@mdx-js/loader": "^2.3.0",
"@mdx-js/react": "^2.3.0",
"@monaco-editor/react": "^4.6.0",
"@mui/material": "^5.15.2",
"@mui/x-tree-view": "^7.2.0",
"@solidity-parser/parser": "^0.18.0",
"assert": "^2.0.0",
"babel-preset-es2020": "^1.0.2",
"babelify": "^10.0",
"classnames": "^2.3.1",
"clsx": "^2.0.0",
"copy-to-clipboard": "^3.3.1",
"ethereumjs-abi": "^0.6.8",
"ethereumjs-util": "^7.1.5",
"events": "^3.3.0",
"gray-matter": "^4.0.3",
"highlight.js": "^11.9.0",
"highlightjs-solidity": "^2.0.6",
"kbar": "^0.1.0-beta.45",
"lodash.debounce": "^4.0.8",
"monaco-editor": "^0.47.0",
"next": "12",
"next-mdx-remote": "^3.0.8",
"next-plausible": "^3.12.0",
"next-themes": "^0.3.0",
"process": "^0.11.10",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-resizable-panels": "^2.0.4",
"react-select": "^5.8.0",
"react-simple-code-editor": "^0.13.1",
"react-table": "^7.8.0",
"react-tooltip": "^5.26.4",
"readable-stream": "^4.5.2",
"solc": "^0.8.23-fixed",
"tailwind-merge": "^2.2.0",
"tailwindcss-animate": "^1.0.7",
"viem": "^2.9.9"
},
"devDependencies": {
"@babel/preset-env": "^7.24.4",
"@next/eslint-plugin-next": "^12.0.7",
"@swc/core": "^1.4.8",
"@types/ethereumjs-abi": "^0.6.5",
"@types/lodash.debounce": "^4.0.9",
"@types/mdx-js__react": "^1.5.8",
"@types/react": "17.0.30",
"@types/react-dom": "^17.0.2",
"@types/react-no-ssr": "^1.1.7",
"@types/react-table": "^7.7.19",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"abitype": "^1.0.2",
"autoprefixer": "^10.4.18",
"eslint": "^8.57.0",
"eslint-config-next": "12.3.2",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^9.0.11",
"loader-utils": "^2.0.4",
"postcss": "^8.4.35",
"prettier": "^3.2.5",
"sort-package-json": "^2.10.0",
"swc-loader": "^0.2.6",
"tailwindcss": "^3.4.1",
"ts-loader": "^9.5.1",
"typescript": "^5.0.4",
"webpack": "^5.90.3"
},
"packageManager": "pnpm@8.15.6",
"engines": {
"node": "^20.0.0",
"pnpm": "^8.15.6"
},
"volta": {
"node": "20.12.2",
"pnpm": "8.15.6"
},
"pnpm": {
"allowedDeprecatedVersions": {
"@babel/plugin-proposal-object-rest-spread": "7.12.1",
"core-js": "2.6.12",
"trim": "0.0.1"
},
"overrides": {
"@types/react": "17.0.2",
"@types/react-dom": "17.0.2"
}
}
}