forked from circlefin/stablecoin-evm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 3.42 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
89
90
91
92
93
94
{
"name": "stablecoin-evm",
"version": "1.0.0",
"description": "Circle's Stablecoin Smart Contracts on EVM-compatible blockchains",
"directories": {
"test": "test"
},
"scripts": {
"compile": "hardhat compile && forge build && ./flatten-generated-types.sh",
"contract-size": "hardhat size-contracts",
"coverage": "hardhat coverage",
"forge:simulate": "forge script -vv --gas-estimate-multiplier $(dotenv -p GAS_MULTIPLIER)",
"forge:broadcast": "yarn forge:simulate --broadcast",
"forge:broadcastAndVerify": "yarn forge:broadcast --verify --etherscan-api-key $(dotenv -p ETHERSCAN_KEY)",
"forge:verify": "yarn forge:simulate --verify --resume --etherscan-api-key $(dotenv -p ETHERSCAN_KEY) --private-key $(dotenv -p DEPLOYER_PRIVATE_KEY)",
"fmt:base": "prettier './**/*.sol' './**/*.js' './**/*.ts' './**/*.json' './**/*.md'",
"fmt:check": "yarn fmt:base --check",
"fmt": "yarn fmt:base --write",
"gas-report": "hardhat test test/misc/gas.ts",
"lint": "eslint --ext '.js,.ts' './**/*.{j,t}s'",
"postinstall": "bash setup.sh && husky install",
"precommit": "yarn fmt && yarn static-check",
"solhint": "solhint 'contracts/**/*.sol'",
"static-check": "yarn hardhat typechain && yarn typecheck && yarn lint && yarn fmt:check && yarn solhint",
"test": "hardhat test",
"typecheck": "tsc -p . --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/circlefin/stablecoin-evm.git"
},
"keywords": [],
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/circlefin/stablecoin-evm/issues"
},
"homepage": "https://github.com/circlefin/stablecoin-evm#readme",
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "2.0.2",
"@nomicfoundation/hardhat-ethers": "3.0.4",
"@nomicfoundation/hardhat-foundry": "1.1.1",
"@nomicfoundation/hardhat-network-helpers": "1.0.8",
"@nomiclabs/hardhat-truffle5": "2.0.7",
"@nomiclabs/hardhat-web3": "2.0.0",
"@openzeppelin/contracts": "^3.1.0",
"@typechain/ethers-v6": "^0.4.0",
"@typechain/hardhat": "^9.0.0",
"@typechain/truffle-v5": "^8.0.6",
"@types/chai": "4.3.5",
"@types/ethereumjs-abi": "^0.6.3",
"@types/lodash": "^4.14.158",
"@types/mocha": "10.0.1",
"@types/node": "20.5.1",
"@typescript-eslint/eslint-plugin": "^3.7.0",
"@typescript-eslint/parser": "^3.7.0",
"assert-diff": "1.2.6",
"chai": "^4.2.0",
"dotenv": "^16.4.1",
"dotenv-cli": "^7.3.0",
"eslint": "^7.5.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"ethereumjs-abi": "^0.6.8",
"ethereumjs-util": "^7.0.3",
"ethers": "^6.11.0",
"hardhat": "2.19.4",
"hardhat-contract-sizer": "^2.10.0",
"hardhat-gas-reporter": "^1.0.10",
"husky": "^8.0.3",
"lodash": "^4.17.19",
"mocha-junit-reporter": "^2.2.1",
"mocha-multi-reporters": "^1.5.1",
"prettier": "2.0.5",
"prettier-plugin-solidity": "1.0.0-alpha.54",
"q": "^1.5.1",
"solc": "0.6.12",
"solhint": "^3.1.0",
"solidity-coverage": "^0.8.9",
"ts-node": ">=8.0.0",
"typechain": "^8.1.0",
"typescript": ">=4.5.0",
"web3": "^1.2.11"
},
"engines": {
"node": "16.14.0",
"yarn": "1.22.19"
}
}