forked from aave/aave-stake-v2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 4.36 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
103
{
"name": "@aave/safety-module",
"version": "1.0.3",
"description": "Safety Module for the Aave Protocol",
"files": [
"contracts",
"artifacts"
],
"scripts": {
"run-env": "npm i && tail -f /dev/null",
"hardhat": "hardhat",
"hardhat-kovan": "hardhat --network kovan",
"hardhat-ropsten": "hardhat --network ropsten",
"hardhat-goerli": "hardhat --network goerli",
"hardhat-main": "hardhat --network main",
"hardhat:tenderly": "hardhat --network tenderly",
"hardhat help": "hardhat help",
"compile": "SKIP_LOAD=true hardhat compile",
"compile:force": "npm run compile -- --force",
"compile:force:quiet": "npm run compile:force -- --quiet",
"test": "npm run compile:force:quiet && hardhat test test/__setup.spec.ts test/AaveIncentivesController/*.spec.ts test/StakedAave/*.spec.ts test/StakedAaveV2/*.spec.ts",
"test:ci": "npm run compile:force:quiet && npm run test-pei && npm run test-psi && npm run test-psi2 && npm run test-bpt",
"test-pei": "npm run test test/__setup.spec.ts test/AaveIncentivesController/*.spec.ts",
"test-psi": "npm run test test/__setup.spec.ts test/StakedAave/*.spec.ts",
"test-psi2": "npm run test test/__setup.spec.ts test/StakedAaveV2/*.spec.ts",
"test-bpt": "npm run compile:force:quiet && FORKING_BLOCK=11730175 MAINNET_FORK=true hardhat test test/StakedBPT/create-bpt-and-stakebpt.fork.ts",
"test-proposal": "MAINNET_FORK=true hardhat test ./test-fork/stakingExtensionProposal.spec.ts",
"test-proposal:tenderly": "TENDERLY=true npm run hardhat:tenderly -- test ./test-fork/stakingExtensionProposal.spec.ts",
"proposal-extend-stkaave:tenderly": "TENDERLY=true npm run hardhat:tenderly -- proposal-stk-aave-extension:tenderly",
"proposal-extend-stkaave:tenderly:defender": "TENDERLY=true npm run hardhat:tenderly -- proposal-stk-aave-extension:tenderly --defender",
"coverage": "npm run compile && npx hardhat coverage --testfiles \"test/**/*.spec.ts\"",
"dev:deployment": "hardhat dev-deployment",
"ropsten:deployment": "npm run hardhat-ropsten -- common-deployment --verify",
"kovan:deployment": "npm run hardhat-kovan -- common-deployment --verify",
"goerli:deployment": "npm run hardhat-goerli -- common-deployment --verify",
"main:deployment": "npm run hardhat-main -- common-deployment --verify",
"prettier:check": "npx prettier -c 'tasks/**/*.ts' 'contracts/**/*.sol' 'helpers/**/*.ts' 'test/**/*.ts'",
"prettier:write": "prettier --write 'tasks/**/*.ts' 'contracts/**/*.sol' 'helpers/**/*.ts' 'test/**/*.ts'",
"ci:clean": "rm -rf types/ cache/ artifacts/",
"prepublishOnly": "npm run compile"
},
"devDependencies": {
"@aave/aave-token": "^1.0.4",
"@aave/protocol-v2": "^1.0.2-fat.3",
"@nomiclabs/hardhat-ethers": "^2.0.1",
"@nomiclabs/hardhat-etherscan": "^2.1.0",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "3.1.0",
"@tenderly/hardhat-tenderly": "^1.1.0-beta.5",
"@typechain/ethers-v5": "^6.0.5",
"@typechain/hardhat": "^1.0.1",
"@types/chai": "4.2.11",
"@types/lowdb": "1.0.9",
"@types/mocha": "7.0.2",
"@types/node": "14.0.5",
"bignumber.js": "9.0.0",
"chai": "4.2.0",
"chai-bignumber": "3.0.0",
"defender-relay-client": "^1.5.1",
"dotenv": "^16.0.3",
"eth-sig-util": "^3.0.0",
"ethereum-waffle": "^3.2.1",
"ethereumjs-util": "^7.1.5",
"ethers": "^5.0.8",
"hardhat": "^2.12.6",
"husky": "^4.3.8",
"lowdb": "1.0.0",
"moment": "^2.27.0",
"prettier": "^2.0.5",
"prettier-plugin-solidity": "^1.0.0-beta.1",
"pretty-quick": "^2.0.1",
"solidity-coverage": "^0.8.2",
"tmp-promise": "^3.0.2",
"ts-generator": "^0.1.1",
"ts-node": "^9.1.0",
"tslint": "^6.1.2",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.3.0",
"typechain": "^3.0.0",
"typescript": "^4.1.2"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged --pattern 'contracts/**/*.sol' --pattern 'helpers/**/*.ts' --pattern 'test/**/*.ts' --pattern 'tasks/**/*.ts'"
}
},
"author": "Aave",
"contributors": [
"Ernesto Boado <[email protected]>",
"Emilio Frangella <[email protected]>",
"Andrey Kozlov <[email protected]>",
"David Racero <[email protected]>"
],
"license": "AGPL-3.0",
"keywords": [
"aave",
"stake",
"token",
"safety",
"module",
"ethereum"
]
}