-
Notifications
You must be signed in to change notification settings - Fork 86
/
Copy pathpackage.json
89 lines (89 loc) · 3.45 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
88
89
{
"name": "hardhat-foundation",
"description": "Hardhat foundation",
"keywords": [
"hardhat"
],
"homepage": "https://github.com/sushiswap/hardhat-foundation#readme",
"bugs": {
"url": "https://github.com/sushiswap/hardhat-foundation/issues",
"email": "[email protected]"
},
"license": "MIT",
"author": "Matthew Lilley <[email protected]>",
"scripts": {
"build": "hardhat compile",
"console": "hardhat console",
"ethereum:deploy": "hardhat --network ethereum deploy",
"ethereum:verify": "hardhat --network ethereum etherscan-verify --license MIT",
"ethereum:export": "hardhat --network ethereum export",
"testnet:deploy": "yarn ropsten:deploy && yarn rinkeby:deploy && yarn goerli:deploy && yarn kovan:deploy && yarn moonbase:deploy && yarn arbitrum:deploy",
"ropsten:deploy": "hardhat --network ropsten deploy",
"ropsten:verify": "hardhat --network ropsten etherscan-verify --license MIT",
"ropsten:export": "hardhat --network ropsten export --export exports/ropsten.json",
"rinkeby:deploy": "hardhat --network rinkeby deploy",
"rinkeby:verify": "hardhat --network rinkeby etherscan-verify --license MIT",
"rinkeby:export": "hardhat --network rinkeby export --export exports/rinkeby.json",
"goerli:deploy": "hardhat --network goerli deploy",
"goerli:verify": "hardhat --network goerli etherscan-verify --license MIT",
"goerli:export": "hardhat --network goerli export --export exports/goerli.json",
"kovan:deploy": "hardhat --network kovan deploy",
"kovan:export": "hardhat --network kovan export --export exports/kovan.json",
"kovan:verify": "hardhat --network kovan etherscan-verify --license MIT",
"size-contracts": "hardhat size-contracts",
"test": "cross-env TS_NODE_TRANSPILE_ONLY=1 hardhat test",
"test:coverage": "cross-env NODE_OPTIONS=\"--max-old-space-size=4096\" hardhat coverage",
"test:gas": "cross-env REPORT_GAS=true yarn test"
},
"lint-staged": {
"*.ts": [
"eslint --cache --fix",
"prettier --write"
],
"*.sol": [
"solhint -c .solhint.json",
"prettier --write",
"yarn test"
],
"*.md": "prettier --write"
},
"devDependencies": {
"@commitlint/cli": "^16.0.0",
"@commitlint/config-conventional": "^16.0.0",
"@nomiclabs/hardhat-ethers": "yarn:hardhat-deploy-ethers",
"@nomiclabs/hardhat-etherscan": "^2.1.0",
"@nomiclabs/hardhat-solhint": "^2.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.0",
"@tenderly/hardhat-tenderly": "^1.0.0",
"@typechain/ethers-v5": "^8.0.0",
"@typechain/hardhat": "^3.1.0",
"@types/chai": "^4.3.0",
"@types/mocha": "^9.0.0",
"@types/node": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^5.8.0",
"@typescript-eslint/parser": "^5.8.0",
"chai": "^4.3.0",
"cross-env": "^7.0.0",
"dotenv": "^10.0.0",
"eslint": "^8.6.0",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.5.0",
"hardhat": "^2.8.0",
"hardhat-contract-sizer": "^2.3.0",
"hardhat-deploy": "^0.9.0",
"hardhat-gas-reporter": "^1.0.0",
"hardhat-log-remover": "^2.0.0",
"hardhat-preprocessor": "^0.1.0",
"hardhat-spdx-license-identifier": "^2.0.0",
"hardhat-watcher": "^2.1.0",
"husky": "^7.0.0",
"lint-staged": "^11.0.0",
"prettier": "^2.5.0",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"solidity-coverage": "^0.7.17",
"ts-generator": "^0.1.0",
"ts-node": "^10.4.0",
"typechain": "^6.1.0",
"typescript": "^4.5.0"
}
}