generated from wighawag/template-ethereum-contracts
-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
74 lines (74 loc) · 2.47 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
{
"name": "@renft/contracts",
"version": "1.0.0",
"author": "nazariyv (https://github.com/nazariyv)",
"license": "MIT",
"scripts": {
"format": "yarn prettier --write \"**/*.{ts,js,sol}\"",
"clean": "rm -rf artifacts cache frontend",
"clean:deployments": "rm -rf deployments",
"compile": "yarn hardhat compile",
"test": "yarn clean && yarn compile && yarn cross-env HARDHAT_DEPLOY_FIXTURE=true hardhat coverage",
"test:gas": "yarn clean && yarn compile && yarn hardhat --network localhost test",
"test:quick": "yarn clean && yarn compile && yarn cross-env HARDHAT_DEPLOY_FIXTURE=true hardhat test",
"dev": "yarn hardhat node --watch --export contractsInfo.json",
"deploy:mainnet": "yarn hardhat --network mainnet deploy --tags ReNFT",
"deploy:ropsten": "yarn hardhat --network ropsten deploy --tags Development",
"deploy:goerli": "yarn hardhat --network ropsten deploy --tags Development",
"deploy:rinkeby": "yarn hardhat --network ropsten deploy --tags Development",
"deploy:kovan": "yarn hardhat --network ropsten deploy --tags Development",
"export:mainnet": "yarn hardhat --network mainnet export"
},
"keywords": [
"ethereum",
"smart-contracts",
"hardhat",
"solidity",
"renft",
"lending",
"nft",
"renting",
"erc721",
"erc1155",
"non-fungible"
],
"dependencies": {
"@ethereum-waffle/chai": "3.2.2",
"@nomiclabs/hardhat-etherscan": "2.1.1",
"@openzeppelin/contracts": "4.0.0-rc.0",
"@symfoni/hardhat-react": "0.3.0",
"@typechain/ethers-v5": "6.0.5",
"@types/bluebird": "^3.5.35",
"@types/chai": "4.2.11",
"@types/mocha": "8.2.2",
"@typescript-eslint/eslint-plugin": "4.14.2",
"@typescript-eslint/parser": "4.14.2",
"chai": "4.2.0",
"cross-env": "7.0.2",
"dotenv": "8.2.0",
"eslint": "7.18.0",
"eslint-config-prettier": "7.2.0",
"hardhat": "^2.3.0",
"hardhat-deploy": "0.7.9",
"hardhat-deploy-ethers": "^0.3.0-beta.7",
"hardhat-gas-reporter": "1.0.4",
"hardhat-typechain": "0.3.5",
"mocha": "8.3.2",
"ts-generator": "0.1.1",
"ts-morph": "9.0.0",
"ts-node": "9.1.1",
"typechain": "4.0.3",
"typescript": "4.1.5"
},
"resolutions": {
"abstract-leveldown": "6.2.1",
"merkle-patricia-tree": "4.2.0",
"readable-stream": "3.6.0"
},
"devDependencies": {
"ethers": "^5.0.0",
"prettier": "2.2.1",
"prettier-plugin-solidity": "1.0.0-beta.10",
"solidity-coverage": "0.7.16"
}
}