-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
87 lines (87 loc) · 2.71 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
{
"name": "multiply-proxy-actions-contracts",
"version": "0.1.0",
"description": "Oasis.app Multiply Proxy Actions",
"main": "index.js",
"scripts": {
"compile": "npx hardhat compile",
"deploy": "cmd/run_deploy",
"test": "cmd/run_test",
"verify": "cmd/run_verify",
"lint": "./node_modules/.bin/solhint -f table contracts/**/*.sol",
"lint:fix": "./node_modules/.bin/solhint --fix constracts/**/*.sol",
"format": "./node_modules/.bin/prettier -c contracts/**/*.sol test/**/*.ts",
"format:fix": "./node_modules/.bin/prettier -w contracts/**/*.sol test/**/*.ts",
"flatten-all": "[email protected] \"./contracts/*.sol\" ./build",
"flatten": "npx [email protected]"
},
"pre-commit": [
"format"
],
"repository": {
"type": "git",
"url": "git+https://github.com/OasisDEX/multiply-proxy-actions"
},
"engines": {
"node": ">=14.17"
},
"author": "",
"license": "MIT",
"homepage": "https://oasis.app",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.0",
"@nomiclabs/hardhat-etherscan": "2.0.2-rc.2",
"@nomiclabs/hardhat-waffle": "^2.0.0",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@tenderly/hardhat-tenderly": "^1.1.0-beta.2",
"@types/async-retry": "^1.4.3",
"@types/chai": "^4.3.0",
"@types/lodash": "^4.14.178",
"@types/mocha": "^9.0.0",
"@types/node": "^17.0.8",
"@types/ramda": "^0.27.62",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"async-retry": "^1.3.3",
"axios": "^0.21.0",
"chai": "^4.2.0",
"dotenv": "^8.2.0",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"ethereum-waffle": "^3.1.1",
"ethers": "^5.0.19",
"hardhat": "^2.9.1",
"hardhat-abi-exporter": "^2.2.1",
"hardhat-contract-sizer": "^2.0.1",
"hardhat-gas-reporter": "^1.0.1",
"hardhat-log-remover": "^2.0.0",
"husky": "^4.3.0",
"mocha": "^9.1.3",
"node-fetch": "2",
"pre-commit": "^1.2.2",
"prettier": "^2.1.2",
"prettier-plugin-solidity": "^1.0.0-beta.17",
"solhint": "^3.2.2",
"solhint-plugin-prettier": "0.0.5",
"solidity-coverage": "^0.7.13",
"ts-node": "^10.4.0",
"ts-try": "^0.2.0",
"typescript": "^4.5.4",
"web3": "^1.3.5"
},
"dependencies": {
"@ethersproject/address": "^5.4.0",
"@ethersproject/contracts": "^5.4.0",
"@ethersproject/providers": "^5.4.0",
"@ethersproject/solidity": "^5.4.0",
"bignumber.js": "^9.0.1",
"chalk": "^4.1.1",
"lodash": "^4.17.21",
"ramda": "^0.27.1"
}
}