-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
89 lines (89 loc) · 3.05 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
{
"name": "aktionariat-contracts",
"version": "1.0.0",
"description": "The public repository for all smart contracts used by Aktionariat.",
"repository": {
"type": "git",
"url": "git+https://github.com/aktionariat/contracts.git"
},
"author": "Aktionariat AG",
"private": true,
"license": "LicenseRef-Aktionariat",
"bugs": {
"url": "https://github.com/aktionariat/contracts/issues"
},
"homepage": "https://github.com/aktionariat/contracts#readme",
"dependencies": {
"@chainlink/contracts": "^0.2.2",
"@nomiclabs/hardhat-solhint": "^2.0.1",
"@openzeppelin/contracts": "4.3.3",
"@uniswap/v3-periphery": "^1.4.0"
},
"devDependencies": {
"@ethersproject/abi": "^5.7.0",
"@ethersproject/providers": "^5.7.1",
"@nomicfoundation/hardhat-chai-matchers": "^2.0.2",
"@nomicfoundation/hardhat-ethers": "3.0.4",
"@nomicfoundation/hardhat-network-helpers": "^1.0.6",
"@nomicfoundation/hardhat-toolbox": "^3.0.0",
"@nomicfoundation/hardhat-verify": "1.1.1",
"@nomiclabs/hardhat-etherscan": "^3.1.0",
"@typechain/ethers-v6": "^0.4.0",
"@typechain/hardhat": "^8.0.3",
"@types/chai": "^4.3.3",
"@types/mocha": "^9.1.1",
"@types/node": "^16.11.59",
"@uniswap/permit2-sdk": "1.2.0",
"@uniswap/router-sdk": "^1.0.5",
"@uniswap/sdk-core": "^3.0.1",
"@uniswap/smart-order-router": "^2.5.13",
"@uniswap/v3-sdk": "^3.8.1",
"bn.js": "^4.12.0",
"chai": "^4.3.6",
"chalk": "^4.1.2",
"chance": "^1.1.8",
"coveralls": "^3.1.1",
"dotenv": "^10.0.0",
"eslint": "^8.4.1",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^5.1.0",
"ethers": "^6.7.1",
"ethers-decode-error": "^1.0.0",
"got": "^11.8.3",
"hardhat": "^2.18",
"hardhat-change-network": "^0.0.7",
"hardhat-dependency-compiler": "^1.1.2",
"hardhat-deploy": "^0.11.42",
"hardhat-deploy-ethers": "^0.4.1",
"hardhat-gas-reporter": "^1.0.9",
"inquirer": "^8.0.0",
"nconf": "^0.12.0",
"prettier": "^2.5.1",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"prompt-confirm": "^2.0.4",
"simple-git": "^3.14.1",
"solhint": "^3.3.6",
"solhint-plugin-prettier": "^0.0.5",
"solidity-coverage": "^0.8.3",
"solmate": "^6.2.0",
"tough-cookie": "^4.1.3",
"ts-node": "^10.4.0",
"typechain": "^8.2.0",
"typescript": "^4.7.0"
},
"scripts": {
"compile": "hardhat compile",
"clean": "hardhat clean",
"deploy": "hardhat init-deploy",
"deploy-s": "hardhat init-deploy --silent true",
"test": "hardhat test",
"coverage": "hardhat coverage",
"solhint": "./node_modules/.bin/solhint -f table src/**/*.sol",
"prettier:solidity": "./node_modules/.bin/prettier --write src/**/*.sol",
"node-factories": "hardhat node --tags AktionariatFactory,TokenFactory,BrokerbotFactory,FactoryManager,OfferFactory,RecoveryHub,PaymentHub,Permit2Hub,MultiSigCloneFactory"
}
}