-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.04 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
41
42
43
44
45
46
{
"name": "web3-guardian",
"version": "1.0.0",
"description": "Web3 Guardian - Secure and optimize your Web3 transactions",
"main": "index.js",
"scripts": {
"build": "webpack --mode production",
"dev": "webpack --watch --mode development",
"test": "jest",
"audit:fix": "npm audit fix --force"
},
"keywords": [
"web3",
"security",
"ethereum",
"blockchain",
"extension"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.28.0",
"@babel/preset-env": "^7.28.0",
"@babel/preset-react": "^7.27.1",
"babel-loader": "^9.2.1",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^6.10.0",
"html-webpack-plugin": "^5.6.3",
"jest": "^29.7.0",
"style-loader": "^3.3.4",
"webpack": "^5.101.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1",
"web3": "^4.10.0"
},
"overrides": {
"form-data": "^4.0.0"
},
"engines": {
"node": ">=16.0.0"
}
}