-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.15 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.15 KB
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
{
"name": "web3-transaction-simulator",
"version": "1.0.0",
"description": "Chrome extension for simulating Web3 transactions",
"private": true,
"scripts": {
"start": "webpack serve --config webpack.dev.js",
"build": "webpack --config webpack.prod.js"
},
"dependencies": {
"@emotion/react": "^11.11.0",
"@emotion/styled": "^11.11.0",
"@metamask/delegation-toolkit": "^0.13.0-rc.1",
"@mui/icons-material": "^5.11.16",
"@mui/material": "^5.13.0",
"ethers": "^6.15.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@babel/core": "^7.21.8",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.5",
"@types/chrome": "^0.0.234",
"@types/node": "^22.13.8",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"babel-loader": "^9.1.2",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.3",
"html-webpack-plugin": "^5.5.1",
"style-loader": "^3.3.2",
"ts-loader": "^9.5.2",
"typescript": "^5.8.2",
"webpack": "^5.82.1",
"webpack-cli": "^5.1.1",
"webpack-dev-server": "^5.2.0",
"webpack-merge": "^5.8.0"
}
}