-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
87 lines (87 loc) · 2.98 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": "ricochet-protocol",
"version": "0.1.0",
"description": "Smart contracts used in the Ricochet app",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"debug-tests": "node --inspect ./node_modules/.bin/hardhat test",
"solhint": "solhint -f table contracts/**/*.sol",
"prettier:solidity-fix": "prettier --write contracts/**/*.sol",
"prettier:ts-fix": "prettier --write test/**/*.ts",
"prettier:solidity": "prettier --check contracts/**/*.sol",
"prettier:ts": "prettier --check test/**/*.ts"
},
"keywords": [],
"author": "Ricochet team",
"license": "ISC",
"husky": {
"hooks": {
"pre-commit": "npm run prettier:solidity-fix && npm run prettier:ts-fix",
"pre-push": "npm run prettier:solidity-fix && npm run prettier:ts-fix"
}
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@nomiclabs/hardhat-etherscan": "^2.1.8",
"@nomiclabs/hardhat-solhint": "^3.0.1",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/contracts": "^4.0.0",
"@openzeppelin/hardhat-upgrades": "^1.9.0",
"@openzeppelin/test-helpers": "^0.5.13",
"@superfluid-finance/ethereum-contracts": "^1.6.0",
"@superfluid-finance/js-sdk": "^0.5.8",
"@tenderly/hardhat-tenderly": "^1.5.3",
"@truffle/contract": "^4.3.23",
"@typechain/ethers-v5": "^9.0.0",
"@typechain/hardhat": "^4.0.0",
"@types/axios": "^0.14.0",
"@types/chai": "^4.3.0",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.18",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"axios": "^1.3.4",
"chai": "^4.3.4",
"dotenv": "^10.0.0",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-promise": "^5.2.0",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.7.2",
"ganache-time-traveler": "^1.0.15",
"hardhat": "^2.8.0",
"hardhat-deploy": "^0.11.23",
"hardhat-gas-reporter": "^1.0.6",
"husky": "^8.0.3",
"prettier": "^2.8.8",
"prettier-plugin-solidity": "^1.1.3",
"solhint": "^3.3.6",
"solhint-plugin-prettier": "^0.0.5",
"solidity-coverage": "^0.7.22",
"ts-node": "^10.5.0",
"typechain": "^7.0.0",
"typescript": "^4.5.5",
"web3": "^1.3.5",
"web3-utils": "^1.5.1"
},
"dependencies": {
"@chainlink/contracts": "^0.6.1",
"@openzeppelin/contracts-upgradeable": "^4.1.0",
"@superfluid-finance/sdk-core": "^0.5.9",
"@truffle/abi-utils": "^0.2.3",
"@uniswap/router-sdk": "^1.0.6",
"@uniswap/v2-core": "^1.0.1",
"@uniswap/v2-periphery": "^1.1.0-beta.0",
"@uniswap/v2-sdk": "^3.0.1",
"@uniswap/v3-periphery": "^1.4.1",
"hardhat-contract-sizer": "^2.0.3",
"hardhat-tracer": "^1.1.0-rc.6",
"ricochet-exchange-sfcontracts-used": "^1.0.2"
}
}