forked from smlxl/evm.codes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.19 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
{
"name": "evm.codes",
"version": "0.1.0",
"description": "An interactive reference to Ethereum Virtual Machine Opcodes",
"homepage": "https://github.com/comitylabs/evm.codes",
"license": "MIT",
"scripts": {
"build": "next build",
"dev": "next dev",
"lint": "eslint --ext js,jsx,ts,tsx .",
"lint:package": "sort-package-json",
"typecheck": "tsc --pretty"
},
"dependencies": {
"@ethereumjs/block": "^3.6.3",
"@ethereumjs/common": "^2.6.5",
"@ethereumjs/tx": "^3.5.2",
"@ethereumjs/vm": "^5.9.3",
"@kunigi/string-compression": "1.0.2",
"@mdx-js/loader": "^1.6.22",
"@mdx-js/react": "^1.6.22",
"@types/ethereumjs-abi": "^0.6.3",
"assert": "^2.0.0",
"classnames": "^2.3.1",
"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.3.1",
"highlightjs-solidity": "^2.0.1",
"kbar": "^0.1.0-beta.16",
"lodash.debounce": "^4.0.8",
"next": "12",
"next-mdx-remote": "^3.0.8",
"next-plausible": "^3.1.4",
"next-themes": "^0.0.15",
"process": "^0.11.10",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-select": "^5.1.0",
"react-simple-code-editor": "^0.11.2",
"react-table": "^7.7.0",
"react-tooltip": "^4.2.21"
},
"devDependencies": {
"@next/eslint-plugin-next": "^12.0.7",
"@types/js-cookie": "^3.0.1",
"@types/lodash.debounce": "^4.0.6",
"@types/mdx-js__react": "^1.5.5",
"@types/react": "17.0.30",
"@types/react-table": "^7.7.6",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"autoprefixer": "^10.4.7",
"eslint": "7.32.0",
"eslint-config-next": "12.0.7",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^7.0.2",
"next-images": "^1.8.4",
"nstall": "^0.2.0",
"postcss": "^8.4.14",
"prettier": "^2.4.1",
"sort-package-json": "^1.52.0",
"tailwindcss": "^3.1.2",
"tinyify": "^3.0.0",
"typescript": "4.4.4"
}
}