-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
102 lines (102 loc) · 4.1 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
95
96
97
98
99
100
101
102
{
"name": "@trustline/probity",
"version": "1.0.0",
"license": "Apache-2.0",
"description": "Probity smart contracts",
"scripts": {
"node": "npx hardhat node",
"build": "npm run clean && npm run solhint && npm run compile",
"clean": "npx hardhat clean",
"compile": "npx hardhat compile",
"lint": "npm run prettier:solidity && npm run solhint",
"solhint": "./node_modules/.bin/solhint contracts/**/*.sol contracts/**/**/*.sol",
"solhint:fix": "./node_modules/.bin/solhint --fix contracts/**/*.sol contracts/**/**/*.sol",
"prettier:solidity": "./node_modules/.bin/prettier --write contracts",
"blockProducer": "npx hardhat run ./scripts/blockProducer.ts --network",
"initialize": "npx hardhat run ./scripts/initialize.ts --network",
"createInitialTx": "npx hardhat run ./scripts/createInitialTx.ts --network",
"rateUpdater": "npx hardhat run ./scripts/rateUpdater.ts --network",
"priceUpdater": "npx hardhat run ./scripts/priceUpdater.ts --network",
"issuance": "npx hardhat run ./scripts/issuance.ts --network",
"pauseProbity": "DELAY=20000 npx hardhat run ./scripts/pauseProbity.ts --network",
"unpauseProbity": "DELAY=20000 npx hardhat run scripts/unpauseProbity.ts --network",
"whitelistAddress": "npx hardhat run ./scripts/whitelistAddress.ts --network",
"createLiquidableVaults": "npx hardhat run ./scripts/createLiquidatableVaults.ts --network",
"deploy:dev": "npx hardhat run ./scripts/deploy.ts --network",
"deploy:prod": "DEPLOYMENT_DELAY=20000 npx hardhat run ./scripts/deploy.ts --network",
"deployAsset": "npx hardhat run ./scripts/deployNewAsset.ts --network",
"deployAuction": "npx hardhat run ./scripts/deployAuction.ts --network",
"deployErc20AssetManager": "npx hardhat run ./scripts/deployErc20AssetManager.ts --network",
"deployVpToken": "npx hardhat run ./scripts/deployVpToken.ts --network",
"deploySafe": "npx hardhat run ./scripts/admin/deploySafe.ts --network",
"getSystemInfo": "npx hardhat run ./scripts/getSystemInfo.ts --network",
"test": "NODE_ENV=test npx hardhat test --network hardhat",
"test:happy": "NODE_ENV=test npx hardhat test test/happyFlow.test.ts --network hardhat",
"coverage": "npm run build && export NODE_ENV=test && npx hardhat coverage --temp artifacts --network hardhat --solcoverjs ./.solcover.js"
},
"contributors": [
{
"name": "Matthew Rosendin",
"email": "[email protected]",
"url": "https://mrosendin.github.io"
},
{
"name": "Shine Lee",
"email": "[email protected]"
}
],
"files": [
"artifacts"
],
"repository": {
"url": "https://github.com/trustline-inc/probity.git"
},
"bugs": "https://github.com/trustline-inc/probity/issues",
"homepage": "https://github.com/trustline-inc/probity",
"devDependencies": {
"@gnosis.pm/safe-core-sdk": "^2.0.0",
"@gnosis.pm/safe-ethers-lib": "^1.0.0",
"@nomiclabs/hardhat-ethers": "^2.2.0",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/contracts": "^4.8.0",
"@typechain/ethers-v5": "^8.0.0",
"@typechain/hardhat": "^3.0.0",
"@types/chai": "^4.2.15",
"@types/mocha": "^8.2.1",
"@types/node": "^14.14.41",
"@uniswap/v2-core": "^1.0.1",
"@uniswap/v2-periphery": "^1.1.0-beta.0",
"axios": "^0.24.0",
"bignumber.js": "^9.0.1",
"chai": "^4.3.0",
"chai-as-promised": "^7.1.1",
"decimal.js": "^10.2.1",
"dotenv": "^8.2.0",
"ethereum-waffle": "^3.3.0",
"ethers": "^5.0.31",
"hardhat": "^2.11.2",
"hardhat-contract-sizer": "^2.6.1",
"hardhat-ethernal": "^2.1.0",
"husky": "^4.3.8",
"prettier": "^2.2.1",
"prettier-plugin-solidity": "^1.0.0-beta.5",
"pretty-quick": "^3.1.0",
"solhint": "^3.3.6",
"solhint-plugin-prettier": "^0.0.5",
"solidity-coverage": "^0.7.17",
"ts-generator": "^0.1.1",
"ts-node": "^10.8.1",
"typechain": "^6.0.0",
"typescript": "^4.8.4",
"web3": "^1.3.5"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"dependencies": {
"ethereumjs-wallet": "^1.0.2"
}
}