-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
89 lines (89 loc) · 3.37 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
{
"name": "@unioncredit/union-v1-contracts",
"version": "1.0.0",
"description": "Smart contracts for UnionDAO",
"scripts": {
"compile": "yarn hardhat compile",
"test": "yarn hardhat test",
"test:unit": "yarn hardhat test test/unit/*",
"test:deploy": "yarn hardhat deploy --write true --reset --network hardhat",
"test:proposal": "yarn test --deploy-fixture proposals/**/testProposal.js",
"deploy": "yarn hardhat deploy --network",
"deploy:arbitrum": "yarn hardhat deploy --tags Arbitrum --network",
"deploy:connector": "yarn hardhat deploy --tags Connector --network",
"registerArbUnion": "yarn hardhat run scripts/registerArbUnion.js --network",
"checkDeploy": "yarn hardhat run scripts/checkDeploy.js --network",
"setAuth": "yarn hardhat run scripts/setAuth.js --network",
"propose": "yarn hardhat run scripts/propose.js --network",
"coverage": "yarn hardhat coverage",
"lint": "yarn solhint contracts/**/*.sol",
"prettier:solidity": "npx prettier --write contracts/**/*.sol",
"slither": "slither .",
"gasReport": "CI=true yarn test:unit && mv gasReporterOutput.json gasReports/$(git rev-parse --short HEAD).json",
"gasDelta": "yarn hardhat gasDelta",
"verify": "yarn hardhat etherscan-verify --license MIT --force-license --network "
},
"repository": {
"type": "git",
"url": "git+https://github.com/unioncredit/union-v1-contracts.git"
},
"keywords": [
"defi",
"ethereum",
"credit",
"finance",
"blockchain",
"uniondao"
],
"author": "Max Weng <[email protected]>",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/unioncredit/union-v1-contracts/issues"
},
"homepage": "https://github.com/unioncredit/union-v1-contracts#readme",
"dependencies": {
"@ethersproject/bytes": "5.5.0",
"@openzeppelin/cli": "2.8.2",
"@openzeppelin/contracts": "4.4.2",
"@openzeppelin/contracts-upgradeable": "4.4.2",
"@openzeppelin/test-helpers": "0.5.4",
"@openzeppelin/upgrades": "2.8.0",
"arb-ts": "^1.0.2",
"axios": "^0.27.2",
"cli-table3": "^0.6.0",
"colors": "^1.4.0",
"commander": "^6.0.0",
"dotenv": "^6.2.0",
"hardhat-contract-sizer": "^2.1.1",
"husky": "^4.2.5"
},
"devDependencies": {
"@gnosis.pm/mock-contract": "^3.0.8",
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers@^0.3.0-beta.10",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/hardhat-upgrades": "^1.8.0",
"@openzeppelin/test-environment": "^0.1.8",
"arb-ts": "^1.0.2",
"chai": "^4.2.0",
"codecov": "^3.7.1",
"eth-permit": "^0.1.9",
"ethereum-waffle": "^3.3.0",
"ethers": "^5.4.6",
"hardhat": "^2.4.3",
"hardhat-deploy": "^0.9.0",
"hardhat-gas-reporter": "^1.0.4",
"inquirer": "^7.3.3",
"mocha": "^8.2.1",
"ora": "^4.0.4",
"prettier": "^2.0.5",
"prettier-plugin-solidity": "^1.0.0-alpha.54",
"solhint": "^3.3.6",
"solhint-plugin-prettier": "^0.0.4",
"solidity-coverage": "^0.7.8"
},
"husky": {
"hooks": {
"pre-commit": "yarn prettier:solidity"
}
}
}