-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
87 lines (87 loc) · 3.55 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
{
"name": "gsn-web-tool",
"version": "1.1.1",
"homepage": "/",
"private": false,
"dependencies": {
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@mui/material": "^5.11.15",
"@reduxjs/toolkit": "^1.8.4",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^14.2.5",
"@types/jest": "^28.1.6",
"@types/node": "^18.7.3",
"@types/react": "^18",
"@types/react-dom": "^18.0.4",
"@types/react-redux": "^7.1.24",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"axios": "^0.27.2",
"eslint": "^8.21.0",
"eslint-config-react-app": "6",
"eslint-config-standard": "17.0.0",
"eslint-config-standard-with-typescript": "22.0.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "6.0.0",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-standard": "5.0.0",
"ethers": "^5.6.5",
"formik": "^2.2.9",
"is-ip": "^5.0.0",
"react": "^18.2.0",
"react-dom": "^18.1.0",
"react-redux": "^8.0.1",
"react-router-dom": "^6.3.0",
"react-scripts": "5.0.1",
"react-toastify": "^9.0.8",
"ts-node": "^10.9.1",
"typescript": "^4.6.4",
"wagmi": "^0.10.3",
"web-vitals": "^2.1.4"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"scripts": {
"local-hardhat-node": "CHAINID=31337 npx hardhat node",
"local-hardhat-node-win": "set CHAINID=31337&& npx hardhat node",
"local-hardhat-fork-mainnet": "CHAINID=1 hardhat node --fork https://mainnet.infura.io/v3/f40be2b1a3914db682491dc62a19ad43 --fork-block-number 17636895",
"local-hardhat-fork-mainnet-win": "set CHAINID=1&& hardhat node --fork https://mainnet.infura.io/v3/f40be2b1a3914db682491dc62a19ad43 --fork-block-number 17636895",
"local-gsn": "npx gsn deploy --yes --testPaymaster --testToken --burnAddress 0x1000000000000000000000000000000000000000 --devAddress 0x2000000000000000000000000000000000000000 --mnemonic=mnemonic --minimumTokenStake 1000000000000000000",
"local-relay-server": "npx gsn relayer-run --ethereumNodeUrl=http://localhost:8545 --managerStakeTokenAddress=0x610178dA211FEF7D417bC0e6FeD39F05609AD788 --relayHubAddress=0xDc64a140Aa3E981100a9becA4E685f962f0cF6C9 --url=http://localhost:8090 --workdir=./tmp/relay101/ --ownerAddress=0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266 --port=8090",
"local-relay-server-fork": "npx gsn relayer-run --ethereumNodeUrl=http://localhost:8545 --managerStakeTokenAddress=0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2 --relayHubAddress=0x8f812FAE28a3Aa634d97659091D6540FABD234F5 --url=http://localhost:8090 --workdir=./tmp/relay102/ --ownerAddress=0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266 --port=8090",
"lint": "eslint -f unix .",
"start": "react-scripts start",
"build": "react-scripts build && cd build/ && mkdir manage && cp index.html manage/",
"test": "react-scripts test",
"citest": "node runTestsWithHardhat.mjs",
"eject": "react-scripts eject"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@opengsn/cli": "^3.0.0-beta.6",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-n": "^15.2.4",
"hardhat": "^2.10.1",
"prettier": "2.8.7"
}
}