-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
58 lines (58 loc) · 2.3 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
{
"name": "rental-tenant-space-protocol-using-ERC4907-NFT",
"version": "1.0.0",
"description": "",
"scripts": {
"compile": "hardhat compile",
"test-unit:ShoppingMall": "hardhat test ./test/unit/ShoppingMall.test.ts",
"test-unit:TenantSpaceNFT": "hardhat test ./test/unit/TenantSpaceNFT.test.ts",
"test-unit:TenantSpaceNFTFactory": "hardhat test ./test/unit/TenantSpaceNFTFactory.test.ts",
"test-unit:PriceConsumerV3": "hardhat test ./test/unit/PriceConsumerV3.test.ts",
"test-scenario": "hardhat test ./test/scenario/Scenario.test.ts --network hardhat",
"test-unit:ERC4907Demo": "hardhat test ./test/ERC4907/ERC4907Demo.test.ts",
"test-unit:chainlink-examples": "hardhat test ./test/chainlink-examples/unit/*.spec.ts --network hardhat",
"test-staging:chainlink-examples": "hardhat test ./test/chainlink-examples/staging/*.spec.ts --network rinkeby",
"lint": "solhint 'contracts/*.sol'",
"lint:fix": "solhint 'contracts/**/*.sol' --fix",
"format": "prettier --write .",
"coverage": "hardhat coverage --solcoverjs ./.solcover.js",
"fuzzing": "docker run -it --rm -v $PWD:/src trailofbits/eth-security-toolbox"
},
"license": "MIT",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers@^0.3.0-beta.10",
"@nomiclabs/hardhat-etherscan": "^3.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@typechain/ethers-v5": "^9.0.0",
"@typechain/hardhat": "^4.0.0",
"@types/chai": "^4.3.0",
"@types/mocha": "^9.0.0",
"chai": "^4.3.4",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.5.1",
"hardhat": "^2.9.0",
"hardhat-contract-sizer": "^2.4.0",
"hardhat-deploy": "^0.9.29",
"hardhat-gas-reporter": "^1.0.7",
"prettier": "^2.4.1",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"solhint": "^3.3.6",
"solidity-coverage": "^0.7.17",
"ts-node": "^10.4.0",
"typechain": "^7.0.0",
"typescript": "^4.5.4"
},
"dependencies": {
"@openzeppelin/contracts": "^4.7.2",
"@appliedblockchain/chainlink-contracts": "0.0.4",
"@appliedblockchain/chainlink-plugins-fund-link": "0.0.1",
"@chainlink/contracts": "^0.4.0",
"@chainlink/test-helpers": "^0.0.7-alpha",
"@chainlink/token": "^1.1.0",
"babel-eslint": "^10.1.0",
"dotenv": "^10.0.0"
},
"mocha": {
"timeout": 10000000
}
}