-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.91 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
{
"name": "lucky-contract-address-2",
"private": true,
"version": "0.1.0",
"scripts": {
"predev": "npm run build:workers && npm run copy:monaco",
"dev": "next dev",
"prevbuild": "npm run build:gen-worker && npm run copy:monaco",
"build": "next build",
"start": "next start",
"unittest": "jest",
"build:solc-worker": "npx -y browserify -t babelify ./src/workers/solc.worker.js > ./public/workers/solc.worker.js",
"build:source:gen-worker": "npx -y browserify -t babelify ./src/workers/gen.worker.js > ./public/workers/gen.worker.js",
"build:gen-worker": "npx -y browserify -t babelify ./src/workers/gen.worker.js | npx -y terser --compress --mangle > ./public/workers/gen.worker.js",
"build:workers": "for file in ./src/workers/*.worker.js; do npx -y browserify -t babelify $file > ./public/workers/$(basename $file); done",
"copy:monaco": "cp -r node_modules/monaco-editor/min/vs public/monaco-editor/min"
},
"dependencies": {
"@babel/core": "^7.26.7",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@ethereumjs/util": "^9.1.0",
"@heroicons/react": "^2.2.0",
"@kunigi/string-compression": "^1.0.2",
"@monaco-editor/react": "^4.6.0",
"@mui/material": "^6.4.1",
"@mui/x-tree-view": "^7.24.1",
"@rainbow-me/rainbowkit": "^2.2.3",
"@remixicon/react": "^4.6.0",
"@solidity-parser/parser": "^0.19.0",
"@tanstack/react-query": "^5.55.3",
"@wagmi/core": "^2.16.4",
"abitype": "^1.0.8",
"autoprefixer": "^10.4.20",
"babelify": "^10.0.0",
"clsx": "^2.1.1",
"ethereum-cryptography": "^3.1.0",
"ethereumjs-util": "^7.1.5",
"https-proxy-agent": "^7.0.6",
"lru-cache": "^11.0.2",
"monaco-editor": "^0.52.2",
"next": "^15.1.4",
"next-i18next": "^15.4.2",
"next-themes": "^0.4.4",
"node-fetch": "^3.3.2",
"postcss": "^8.5.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-monaco-editor": "^0.58.0",
"react-resizable-panels": "^2.1.7",
"react-select": "^5.8.0",
"react-toastify": "^11.0.3",
"react-tooltip": "^5.28.0",
"solc": "^0.8.28",
"solc-0.8.26": "npm:[email protected]",
"solc-0.8.27": "npm:[email protected]",
"solc-0.8.28": "npm:[email protected]",
"tailwind-merge": "^2.6.0",
"tailwindcss": "^3.4.17",
"tailwindcss-animate": "^1.0.7",
"viem": "2.21.55",
"wagmi": "^2.14.7"
},
"devDependencies": {
"@babel/preset-env": "^7.26.7",
"@babel/preset-typescript": "^7.26.0",
"@types/jest": "^29.5.14",
"@types/node": "^20.14.8",
"@types/react": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^8.23.0",
"@typescript-eslint/parser": "^8.23.0",
"eslint": "^9.20.0",
"eslint-config-next": "^15.1.6",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.11",
"terser": "^5.38.1",
"ts-jest": "^29.2.5",
"typescript": "5.5.2"
}
}