-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
100 lines (100 loc) · 3.43 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
{
"name": "teller-protocol",
"version": "1.1.0",
"license": "MIT",
"scripts": {
"setup": "./scripts/setup.sh",
"hf": "hf() { local network=\"$1\"; shift; FORKING_NETWORK=$network yarn hh \"$@\"; }; hf",
"test": "test() { TS_NODE_TRANSPILE_ONLY=1 TESTING=1 yarn hf \"$1\" test; }; test",
"fork": "fork() { TS_NODE_TRANSPILE_ONLY=1 local network=\"$1\"; shift; yarn hf $network fork \"$@\"; }; fork",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format:write": "prettier --write '**/*.sol' && eslint --fix '**/*.ts'",
"compile": "COMPILING=true yarn hh compile",
"build": "yarn compile && yarn types && yarn tsc",
"types": "yarn typechain --target ethers-v5 --out-dir types/typechain 'artifacts/!(build-info)/**/+([a-zA-Z0-9_]).json'",
"coverage": "#yarn hh coverage --solcoverjs ./solcover.js",
"git": "func() { git add . && git commit -m \"$1\" && git push origin HEAD; }; func",
"git:future": "./scripts/git/future.sh",
"git:portal": "./scripts/git/portal.sh"
},
"engines": {
"node": "14"
},
"dependencies": {
"@chainlink/contracts": "^0.1.6",
"@ensdomains/ens-contracts": "^0.0.5",
"@maticnetwork/maticjs": "^2.0.43",
"@maticnetwork/meta": "^2.4.16",
"@nomiclabs/hardhat-ethers": "^2.0.1",
"@nomiclabs/hardhat-etherscan": "^2.1.0",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "^4.3.3",
"@openzeppelin/contracts-upgradeable": "^4.3.3",
"@tenderly/hardhat-tenderly": "^1.0.12",
"@typechain/ethers-v5": "^7.0.0",
"@types/chai": "^4.2.14",
"@types/chai-as-promised": "^7.1.3",
"@types/expect": "^24.3.0",
"@types/fs-extra": "^9.0.11",
"@types/json2csv": "^5.0.1",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.22",
"@typescript-eslint/eslint-plugin": "^4.8.2",
"@typescript-eslint/parser": "^4.8.2",
"@uniswap/sdk": "^3.0.3",
"@uniswap/v2-sdk": "^1.0.7",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"cleaners": "^0.3.9",
"colors": "^1.4.0",
"cross-var": "^1.1.0",
"disklet": "^0.4.6",
"dotenv": "^8.2.0",
"dotenv-cli": "^4.0.0",
"eslint": "^7.14.0",
"eslint-config-standard-kit": "0.15.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-simple-import-sort": "^6.0.1",
"ethereum-waffle": "^3.2.1",
"ethereumjs-abi": "^0.6.8",
"ethereumjs-util": "^7.0.9",
"ethers": "^5.3.1",
"fs-extra": "^10.0.0",
"hardhat": "^2.6.0",
"hardhat-contract-sizer": "^2.0.2",
"hardhat-deploy": "git://github.com/teller-protocol/hardhat-deploy#84efdfa22e5c252c2415e9a0fb587f5c92993abe",
"hardhat-gas-reporter": "^1.0.4",
"hardhat-shorthand": "^1.0.0",
"husky": "^4.2.3",
"json2csv": "^5.0.6",
"lint-staged": "^10.5.3",
"mocha": "^7.1.0",
"moment": "^2.29.1",
"prando": "^6.0.1",
"prettier": "^2.3.1",
"prettier-plugin-solidity": "prettier-solidity/prettier-plugin-solidity#aa41b1093421f6ff67a0e6b1442081e05dabe71c",
"solhint": "^3.3.4",
"solhint-plugin-prettier": "^0.0.5",
"ts-generator": "^0.1.1",
"ts-node": "^9.1.1",
"typechain": "^5.0.0",
"typescript": "^4.1.3"
},
"husky": {
"hooks": {
"pre-commit": "yarn build && lint-staged"
}
},
"lint-staged": {
"*.sol": [
"prettier --write"
],
"*.{js,ts}": [
"eslint --fix"
]
}
}