-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
80 lines (80 loc) · 3.06 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
{
"name": "@bounty-granter-eth/onchain",
"version": "0.1.0",
"description": "",
"main": "index.js",
"license": "MIT",
"scripts": {
"clean": "shx rm -rf ./*.tsbuildinfo ./yarn-error.log* && hardhat clean",
"reset": "yarn clean && shx rm -rf ./node_modules ./yarn.lock ./package-lock.json ./pnpm-lock.yaml ./cache ./deployments ./artefacts",
"chain": "hardhat node --network hardhat --no-deploy",
"fork": "hardhat node --no-deploy --network hardhat --fork https://mainnet.infura.io/v3/460f40a260564ac4a4f4b3fffb032dad",
"test": "hardhat test",
"compile": "hardhat compile",
"deploy": "hardhat deploy --export-all ../webui/src/contracts/hardhat_contracts.json",
"postdeploy": "hardhat run scripts/publish.js",
"watch": "node scripts/watch.js",
"accounts": "hardhat accounts",
"balance": "hardhat balance",
"send": "hardhat send",
"generate": "hardhat generate",
"account": "hardhat account",
"mint": "hardhat run scripts/mint.js",
"verify": "hardhat etherscan-verify --api-key PSW8C433Q667DVEX5BCRMGNAH9FSGFZ7Q8",
"benchmark": "BENCHMARK=true REPORT_GAS=true pnpm hardhat test",
"docs": "DOCS=./build/contracts-docs && shx rm -rf $DOCS/* && hardhat docgen && for f in $DOCS/*; do mv \"$f\" \"$f.md\"; done && echo '# Solidity Reference' > $DOCS/index.md"
},
"bake": {
"description": "Scaffold a basic ES6 setup",
"scripts": {
"start": "echo Starting generation of default template",
"prestart": "echo prestart",
"poststart": "echo poststart",
"install": "npm install --loglevel warn --cache-min Infinity",
"preinstall": "echo Installing dependencies ...",
"postinstall": "npm ls --depth 0"
}
},
"dependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^1.0.6",
"@nomicfoundation/hardhat-network-helpers": "^1.0.8",
"@nomicfoundation/hardhat-toolbox": "^1.0.2",
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers",
"@nomiclabs/hardhat-etherscan": "^3.1.7",
"@openzeppelin/contracts": "^4.8.2",
"@tenderly/hardhat-tenderly": "^1.3.2",
"@typechain/ethers-v5": "^10.1.1",
"@typechain/hardhat": "^6.1.5",
"chai": "^4.3.7",
"chalk": "^4.1.2",
"dotenv": "^8.6.0",
"ethers": "^5.7.2",
"hardhat": "^2.12.2",
"hardhat-abi-exporter": "^2.10.1",
"hardhat-deploy": "^0.11.25",
"hardhat-gas-reporter": "^1.0.9",
"node-watch": "^0.7.3",
"qrcode-terminal": "^0.12.0",
"ramda": "^0.29.0",
"solidity-coverage": "^0.8.2"
},
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/jest": "^28.1.8",
"@types/js-yaml": "^4.0.5",
"@types/mocha": "^9.1.0",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prettier": "^4.2.1",
"shx": "^0.3.4",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^5.0.3"
}
}