-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
80 lines (80 loc) · 2.95 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
{
"name": "kcc-oracle",
"version": "0.0.1",
"description": "kcc oracle contracts",
"repository": {
"type": "git",
"url": "git+https://github.com/kcc-community/kcc-oracle.git"
},
"author": "kcc-oracle-devs",
"license": "MIT",
"bugs": {
"url": "https://github.com/kcc-community/kcc-oracle/issues"
},
"homepage": "https://github.com/kcc-community/kcc-oracle#readme",
"scripts": {
"test": "hardhat test",
"test:askcs": "hardhat test test/v0.7/AccessControlledSKCSAggregator.test.ts",
"test:skcs": "hardhat test test/v0.7/SKCSAggregator.test.ts",
"test:aocr": "hardhat test test/v0.7/AccessControlledOffchainAggregator.test.ts",
"test:ocr": "hardhat test test/v0.7/OffchainAggregator.test.ts",
"test:ag": "hardhat test test/v0.7/EACAggregatorProxy.test.ts",
"test:mo": "hardhat test test/v0.7/MojitoOracle.test.ts",
"test:mop": "hardhat test test/v0.7/MojitoOracleProxy.test.ts",
"test:vc": "hardhat test test/v0.8/VRFCoordinatorV2.test.ts",
"test:vw": "hardhat test test/v0.8/VRFV2Wrapper.test.ts",
"size": "hardhat size-contracts",
"clean": "hardhat clean",
"compile": "hardhat compile",
"kt:reset": "hardhat --network kt deploy --reset",
"km:reset": "hardhat --network km deploy --reset",
"kt:deploy": "hardhat --network kt deploy",
"km:deploy": "hardhat --network km deploy",
"kt:setconfig": "npx hardhat run scripts/setConfig.js --network kt",
"kt:sac": "npx hardhat run scripts/setAocrConfig.js --network kt",
"coverage": "hardhat coverage",
"setup": "yarn compile",
"prettier": "prettier --write test/**/*.ts && prettier --write contracts/**/*.sol && prettier --write contracts/**/*/*.sol && prettier --write test/**/*/*.ts"
},
"files": [
"contracts/",
"abi/"
],
"devDependencies": {
"@ethereum-waffle/mock-contract": "^3.3.1",
"@nomiclabs/hardhat-ethers": "^2.2.1",
"@nomiclabs/hardhat-etherscan": "^3.1.3",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"hardhat-gas-reporter":"^1.0.9",
"witnet-solidity-bridge":"0.5.4",
"@openzeppelin/test-helpers": "^0.5.16",
"@typechain/ethers-v5": "^9.0.0",
"@typechain/hardhat": "^6.1.5",
"@types/cbor": "5.0.1",
"@types/chai": "^4.3.0",
"@types/debug": "^4.1.7",
"@types/mocha": "^9.1.0",
"@types/node": "^18.11.18",
"chai": "^4.3.6",
"debug": "^4.3.3",
"dotenv": "^16.0.0",
"eth-crypto": "^2.2.0",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.7.2",
"hardhat": "^2.12.4",
"hardhat-abi-exporter": "^2.10.1",
"hardhat-contract-sizer": "^2.6.1",
"hardhat-deploy": "^0.11.22",
"hardhat-deploy-ethers": "^0.3.0-beta.13",
"hardhat-spdx-license-identifier": "^2.1.0",
"prettier": "^2.8.1",
"prettier-plugin-solidity": "1.0.0-dev.23",
"solhint": "^3.3.7",
"solhint-plugin-prettier": "^0.0.5",
"solidity-coverage": "^0.8.2",
"table": "^6.7.1",
"ts-node": "^10.9.1",
"typechain": "^7.0.0",
"typescript": "^4.9.4"
}
}