This repository has been archived by the owner on Jul 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 3.05 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
{
"name": "dto-sc",
"description": "DTO smart contracts",
"license": "MIT",
"version": "1.0.0",
"homepage": "https://dto.tech/",
"keywords": [
"dto",
"sc"
],
"repository": {
"type": "git",
"url": "https://github.com/dtoperator/dto-sc"
},
"scripts": {
"build": "hardhat compile",
"console": "hardhat console",
"testnet:deploy": "yarn ropsten:deploy && yarn rinkeby:deploy && yarn goerli:deploy && yarn kovan:deploy && yarn moonbase:deploy && yarn arbitrum:deploy",
"mainnet:deploy": "hardhat run --network mainnet scripts/deploy.js",
"mainnet:verify": "hardhat --network mainnet etherscan-verify --solc-input",
"mainnet:export": "hardhat --network mainnet export --export exports/mainnet.json",
"ropsten:deploy": "hardhat run --network ropsten scripts/deploy.js",
"ropsten:verify": "hardhat --network ropsten etherscan-verify --solc-input",
"ropsten:export": "hardhat --network ropsten export --export exports/ropsten.json",
"rinkeby:deploy": "hardhat run --network rinkeby scripts/deploy.js",
"rinkeby:verify": "hardhat --network rinkeby etherscan-verify --solc-input",
"rinkeby:export": "hardhat --network rinkeby export --export exports/rinkeby.json",
"goerli:deploy": "hardhat run --network goerli scripts/deploy.js",
"goerli:verify": "hardhat --network goerli etherscan-verify --solc-input",
"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 --solc-input",
"moonbase:deploy": "hardhat --network moonbase deploy",
"moonbase:export": "hardhat --network moonbase export --export exports/moonbase.json",
"arbitrum:deploy": "hardhat --network arbitrum deploy",
"arbitrum:export": "hardhat --network arbitrum export --export exports/arbitrum.json",
"export": "hardhat export --export-all exports/deployments.json",
"test": "hardhat test",
"test:coverage": "cross-env NODE_OPTIONS=\"--max-old-space-size=2048\" hardhat coverage",
"test:gas": "cross-env REPORT_GAS=true yarn test",
"prettier": "prettier --write test/**/*.test.js && prettier --write contracts/**/*.sol",
"lint": "yarn prettier && solhint -c .solhint.json contracts/**/*.sol",
"prepublishOnly": "yarn run build"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.5",
"@nomiclabs/hardhat-etherscan": "^3.0.3",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/test-helpers": "^0.5.15",
"chai": "^4.3.6",
"ethereum-waffle": "^3.4.4",
"ethers": "^5.6.4",
"hardhat": "^2.9.3",
"hardhat-gas-reporter": "^1.0.8",
"prettier": "^2.6.2",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"solhint": "^3.3.7",
"solhint-plugin-prettier": "0.0.5",
"solidity-coverage": "^0.7.21",
"web3": "^1.7.3"
},
"dependencies": {
"@openzeppelin/contracts": "^4.6.0",
"dotenv": "^16.0.1"
}
}