forked from thales-markets/contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.82 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
81
82
83
84
85
86
87
88
{
"name": "thales-contracts",
"version": "0.0.2",
"license": "MIT",
"author": "Thales",
"description": "The smart contracts which make up the Thales system.",
"directories": {
"test": "test"
},
"scripts": {
"setup": "npm install && allow-scripts",
"format": "prettier --write \"contracts/**/*.sol\" \"**/*.js\" \"**/*.md\" \"**/*.yml\" \"**/*.json\"",
"lint": "eslint .",
"pack": "webpack --mode production",
"prepublish": "npm run pack",
"prepare": "husky install",
"clean-install": "rm -rf build && rm ./package-lock.json && rm -rf node_modules/* && npm install",
"compile": "hardhat compile",
"coverage": "node --max-old-space-size=4096 ./node_modules/.bin/hardhat coverage",
"describe": "hardhat describe",
"test": "node --max-old-space-size=4096 ./node_modules/.bin/hardhat test"
},
"devDependencies": {
"@eth-optimism/plugins": "0.0.16",
"@eth-optimism/smock": "0.2.1-alpha.0",
"@eth-optimism/solc": "0.5.16-alpha.7",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-etherscan": "^3.1.0",
"@nomiclabs/hardhat-truffle5": "2.0.0",
"@nomiclabs/hardhat-web3": "2.0.0",
"@openzeppelin/hardhat-upgrades": "^1.12.0",
"@uniswap/token-lists": "^1.0.0-beta.11",
"bn.js": "4.11.8",
"chai": "4.2.0",
"chalk": "^2.4.2",
"codecov": "^3.8.3",
"dotenv": "^6.1.0",
"eslint": "7.6.0",
"ethers": "^5.5.1",
"hardhat": "~2.1.2",
"hardhat-gas-reporter": "~1.0.4",
"husky": "^8.0.0",
"prettier": "^2.7.1",
"prettier-plugin-solidity": "^1.0.0-beta.24",
"solc": "0.5.16",
"solhint": "~3.3.4",
"solidifier": "[email protected]:synthetixio/solidifier#2.2.2",
"solidity-coverage": "^0.7.19",
"table": "^5.0.2",
"web3": "1.3.3",
"webpack": "4.44.0",
"webpack-cli": "3.3.12"
},
"dependencies": {
"@chainlink/contracts": "^0.4.0",
"@chainlink/contracts-0.0.10": "npm:@chainlink/[email protected]",
"@eth-optimism/contracts": "^0.4.14",
"@eth-optimism/message-relayer": "^0.2.4",
"@eth-optimism/watcher": "0.0.1-alpha.8",
"@ethersproject/hardware-wallets": "^5.5.0",
"@openzeppelin/contracts-4.4.1": "npm:@openzeppelin/contracts@^4.4.1",
"@openzeppelin/contracts-upgradeable": "^4.4.1",
"@openzeppelin/test-helpers": "^0.5.11",
"@prb/math": "^2.5.0",
"@uniswap/v3-core": "^1.0.0",
"@uniswap/v3-periphery": "^1.3.0",
"abi-decoder": "2.3.0",
"base64-sol": "1.1.0",
"big.js": "^6.1.1",
"ethereumjs-abi": "^0.6.8",
"graphql-request": "^3.5.0",
"hardhat-abi-exporter": "^2.2.1",
"hardhat-contract-sizer": "^2.5.1",
"keccak256": "^1.0.3",
"merkletreejs": "^0.2.23",
"objects-to-csv": "^1.3.6",
"openzeppelin-solidity-2.3.0": "npm:[email protected]",
"synthetix-2.50.4-ovm": "npm:[email protected]",
"synthetix-data": "^2.1.43",
"thales-data": "^1.0.68",
"web3-utils": "1.2.2"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}