-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 2.09 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 2.09 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
47
48
49
50
51
52
53
54
{
"private": true,
"sideEffects": false,
"scripts": {
"build": "remix build",
"dev": "remix dev",
"start": "remix-serve build",
"hh": "./scripts/hh.sh",
"account": "npm exec -c 'hardhat account' --workspace=hardhat",
"accounts": "npm exec -c 'hardhat accounts' --workspace=hardhat",
"balance": "npm exec -c 'hardhat balance' --workspace=hardhat",
"chain": "npm exec -c 'hardhat node --network hardhat' --workspace=hardhat",
"clean": "npm exec -c 'hardhat clean'",
"compile": "npm exec -c 'hardhat compile' --workspace=hardhat",
"deploy": "npm exec -c 'hardhat deploy --export-all ./hardhat/abis.json' --workspace=hardhat",
"flatten": "cd packages/hardhat && npx hardhat flatten",
"fork": "npm exec -c 'hardhat node --network hardhat --fork https://mainnet.infura.io/v3/460f40a260564ac4a4f4b3fffb032dad' --workspace=hardhat",
"fundedwallet": "cd packages/hardhat && npx hardhat fundedwallet",
"generate": "npm exec -c 'hardhat generate' --workspace=hardhat",
"mineContractAddress": "cd packages/hardhat && npx hardhat mineContractAddress",
"send": "npm exec -c 'hardhat send' --workspace=hardhat",
"test": "hardhat test --network hardhat' --workspace=hardhat",
"verify": "npm exec -c 'hardhat verify' --workspace=hardhat",
"wallet": "cd packages/hardhat && npx hardhat wallet",
"watch": "node scripts/watch.j' --workspace=hardhat",
"postdeploy": "npm exec -c 'hardhat run scripts/publish.js' --workspace=hardhat"
},
"dependencies": {
"@remix-run/node": "*",
"@remix-run/react": "*",
"@remix-run/serve": "*",
"@web3-react/core": "8.0.22-beta.0",
"@web3-react/metamask": "8.0.18-beta.0",
"@web3-react/types": "8.0.11-beta.0",
"ethers": "^5.6.9",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@remix-run/dev": "*",
"@remix-run/eslint-config": "*",
"@types/react": "^17.0.47",
"@types/react-dom": "^17.0.17",
"eslint": "^8.15.0",
"prepend-file": "^2.0.1",
"typescript": "^4.6.4"
},
"engines": {
"node": ">=14"
},
"workspaces": [
"hardhat"
]
}