-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
79 lines (79 loc) · 2.85 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
{
"name": "cross-chain-ampl",
"version": "1.0.0",
"description": "EVM compatible Multichain AMPL",
"repository": "https://github.com/ampleforth/ampl-chainbridge",
"author": "[email protected]",
"scripts": {
"compile": "yarn hardhat compile",
"coverage": "yarn hardhat coverage --testfiles 'test/unit/**/*.js'",
"format": "yarn prettier --config .prettierrc --write '**/*.js' 'contracts/**/*.sol'",
"lint": "yarn solhint 'contracts/**/*.sol' && yarn eslint ./test *.js --cache --fix",
"profile": "REPORT_GAS=true yarn hardhat test",
"test": "yarn hardhat test",
"test-ganache": "yarn hardhat test --network ganache"
},
"pre-commit": [
"format",
"lint"
],
"dependencies": {
"@openzeppelin/contracts-upgradeable": "^3.3.0",
"chainbridge-solidity": "https://github.com/meterio/chainbridge-solidity-v2.0.0-eth#main",
"fx-portal": "fx-portal/contracts#d7c12b29293dbbbf662dc9c6868a99466584ca13",
"market-oracle": "https://github.com/ampleforth/market-oracle#v1.0.1",
"oz-contracts": "https://github.com/OpenZeppelin/openzeppelin-contracts#3.4.0",
"uFragments": "https://github.com/ampleforth/uFragments#v1.1.0"
},
"devDependencies": {
"@ethersproject/abi": "^5.6.4",
"@ethersproject/bytes": "^5.6.1",
"@ethersproject/providers": "^5.6.8",
"@maticnetwork/maticjs": "^2.0.43",
"@nomiclabs/hardhat-ethers": "^2.1.0",
"@nomiclabs/hardhat-etherscan": "^3.1.0",
"@nomiclabs/hardhat-ganache": "^2.0.1",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "4.3.2",
"@openzeppelin/hardhat-upgrades": "^1.5.1",
"@openzeppelin/upgrades": "^2.8.0",
"@typechain/ethers-v5": "^6.0.2",
"@types/chai": "^4.2.12",
"@types/mocha": "^8.0.3",
"@types/node": "^14.6.1",
"bignumber.js": "^9.0.1",
"chai": "^4.2.0",
"commander": "^6.2.1",
"csv-writer": "^1.6.0",
"eslint": "^4.19.1",
"eslint-config-google": "^0.9.1",
"eslint-config-mocha": "^0.0.0",
"eslint-config-prettier": "^2.9.0",
"eslint-config-standard": "^5.3.5",
"eslint-plugin-chai-friendly": "^0.4.1",
"eslint-plugin-import": "^1.16.0",
"eslint-plugin-mocha-only": "0.0.3",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-promise": "^1.3.2",
"eslint-plugin-spellcheck": "0.0.10",
"eslint-plugin-standard": "^1.3.3",
"ethereum-waffle": "^3.2.1",
"ethers": "^5.6.9",
"hardhat": "^2.0.8",
"hardhat-gas-reporter": "^1.0.3",
"js-yaml": "^4.0.0",
"node-fetch": "^2.6.1",
"pre-commit": "^1.2.2",
"prettier": "^2.1.1",
"prettier-plugin-solidity": "^1.0.0-alpha.57",
"solc": "0.6.4",
"solhint": "^3.2.0",
"solhint-plugin-prettier": "^0.0.5",
"solidity-coverage": "^0.7.12",
"stochasm": "^0.5.0",
"ts-node": "^9.0.0",
"typechain": "^4.0.3",
"typescript": "^4.0.2",
"underscore": "^1.13.1"
}
}