-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.64 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
{
"name": "aloe-blend",
"version": "0.0.1",
"repository": "https://github.com/aloelabs/aloe-blend.git",
"author": "Aloe Labs, Inc.",
"license": "AGPL-v3",
"files": [
"contracts/interfaces/**/*"
],
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"dependencies": {
"inquirer": "^8.2.0"
},
"devDependencies": {
"@ethereumjs/tx": "3.5.0",
"@nomiclabs/hardhat-etherscan": "^2.1.7",
"@nomiclabs/hardhat-truffle5": "^2.0.0",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/contracts": "^4.3.3",
"@rari-capital/solmate": "https://github.com/Rari-Capital/solmate",
"@types/chai": "^4.2.18",
"@types/mocha": "^9.0.0",
"@uniswap/v3-core": "^1.0.0",
"big.js": "^6.1.1",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"dotenv-safe": "^8.2.0",
"ethereumjs-util": "^7.0.10",
"hardhat": "2.6.8",
"mocha": "^9.1.3",
"prettier": "^2.3.0",
"prettier-plugin-solidity": "^1.0.0-beta.10",
"solhint": "^3.3.4",
"solhint-plugin-prettier": "^0.0.5",
"ts-node": "^10.4.0",
"typescript": "^4.2.4",
"web3": "^1.3.6",
"web3-core-helpers": "^1.3.6",
"web3-core-promievent": "^1.3.6",
"web3-eth-abi": "^1.3.6",
"web3-utils": "^1.3.6"
},
"resolutions": {
"hardhat/**/@ethereumjs/tx": "3.5.0"
},
"scripts": {
"prepare": "echo nothing",
"prettier": "prettier --write 'contracts/**/*.sol'",
"solhint": "solhint 'contracts/**/*.sol' --fix",
"build-hh": "hardhat compile",
"build-dapp": "dapp build",
"test-hh": "hardhat test",
"test-dapp": "DAPP_LINK_TEST_LIBRARIES=0 dapp test --rpc --rpc-block 13806816"
}
}