-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
53 lines (53 loc) · 1.91 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
{
"name": "seen-contracts",
"version": "0.1.0",
"description": "Seen Haus Contract Suite",
"author": "Cliff Hall",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/seen-haus/seen-contracts.git"
},
"bugs": {
"url": "https://github.com/seen-haus/seen-contracts/issues"
},
"homepage": "https://github.com/seen-haus/seen-contracts",
"keywords": [
"blockchain",
"ethereum",
"nft",
"erc721",
"solidity"
],
"scripts": {
"build": "npx hardhat compile",
"test": "npx hardhat test",
"coverage": "npx hardhat coverage",
"deploy-suite:local": "npx hardhat run --network hardhat scripts/deploy-suite.js",
"deploy-suite:rinkeby": "npx hardhat run --network rinkeby scripts/deploy-suite.js >> logs/rinkeby.deploy.contracts.txt",
"deploy-suite:goerli": "npx hardhat run --network goerli scripts/deploy-suite.js >> logs/goerli.deploy.contracts.txt",
"deploy-suite:mainnet": "npx hardhat run --network mainnet scripts/deploy-suite.js >> logs/mainnet.deploy.contracts.txt",
"manage-roles:rinkeby": "npx hardhat --network rinkeby run scripts/manage-roles.js >> logs/rinkeby.manage.roles.txt",
"manage-roles:mainnet": "npx hardhat --network mainnet run scripts/manage-roles.js >> logs/mainnet.manage.roles.txt"
},
"dependencies": {
"@openzeppelin/contracts": "^4.3.0",
"@openzeppelin/contracts-upgradeable": "^4.3.0"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-etherscan": "^2.1.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/test-helpers": "^0.5.10",
"chai": "^4.2.0",
"eip55": "^2.1.0",
"ethereum-waffle": "^3.3.0",
"ethers": "^5.1.4",
"hardhat": "^2.5.0",
"hardhat-contract-sizer": "^2.1.1",
"hardhat-gas-reporter": "^1.0.4",
"solidity-coverage": "^0.7.18-eip165.0",
"web3": "^1.3.5"
}
}