-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.21 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
{
"name": "PaxosToken",
"version": "0.0.1",
"description": "Paxos issued USD-collateralized ERC20 stablecoin",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"generate-abi": "cat artifacts/contracts/PaxosTokenV2.sol/PaxosTokenV2.json | jq -c .abi > PaxosToken.abi",
"generate-bin": "cat artifacts/contracts/PaxosTokenV2.sol/PaxosTokenV2.json | jq -r .bytecode > PaxosToken.bin",
"compile": "npx hardhat compile --force",
"coverage": "npx hardhat coverage",
"flatten-impl": "npx hardhat flatten contracts/PaxosTokenV2.sol",
"solhint": "solhint 'contracts/**/*.sol'",
"prettier": "prettier --write --plugin=prettier-plugin-solidity 'contracts/*.sol' 'contracts/lib/*.sol'",
"test": "npx hardhat test",
"size": "npx hardhat size-contracts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/paxosglobal/pax-contracts.git"
},
"author": "PAXOS",
"license": "MIT",
"bugs": {
"url": "https://github.com/paxosglobal/pax-contracts/issues"
},
"homepage": "https://github.com/paxosglobal/pax-contracts#readme",
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.0.3",
"@nomicfoundation/hardhat-ethers": "^3.0.4",
"@nomicfoundation/hardhat-network-helpers": "^1.0.10",
"@nomicfoundation/hardhat-toolbox": "^3.0.0",
"@nomicfoundation/hardhat-verify": "^1.1.1",
"@nomiclabs/hardhat-etherscan": "^3.1.8",
"@openzeppelin/contracts": "^4.9.3",
"@openzeppelin/contracts-upgradeable": "^4.9.3",
"@openzeppelin/hardhat-upgrades": "^2.3.3",
"@openzeppelin/upgrades": "^2.8.0",
"@typechain/hardhat": "^8.0.3",
"@types/mocha": "^9.1.1",
"chai": "^4.2.0",
"dotenv": "^16.4.1",
"eth-sig-util": "^3.0.0",
"hardhat": "^2.19.5",
"hardhat-contract-sizer": "^2.10.0",
"hardhat-gas-reporter": "^1.0.8",
"prettier": "^3.2.5",
"prettier-plugin-solidity": "^1.3.1",
"solc": "0.8.17",
"solhint": "^4.0.0",
"solidity-coverage": "^0.8.6",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"resolutions": {
"axios": "^0.21.1",
"ajv": "^6.12.3",
"elliptic": "^6.0.0",
"diff": "^3.5.0"
},
"dependencies": {
"ganache-cli": "^6.12.2"
}
}