-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
75 lines (75 loc) · 2.25 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
{
"name": "@sushiswap/sushixswap",
"version": "1.0.1",
"description": "SushiXSwap",
"keywords": [
"sushixswap",
"cross-chain swaps"
],
"homepage": "https://github.com/sushiswap/sushiswap/protocols/sushixswap#readme",
"bugs": {
"url": "https://github.com/sushiswap/sushiswap/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/sushiswap/sushiswap.git",
"directory": "protocols/sushixswap"
},
"license": "MIT",
"main": "exports/exports.js",
"types": "exports/exports.d.ts",
"author": "Sarang",
"files": [
"artifacts",
"contracts",
"deploy",
"deployments",
"exports",
"typechain"
],
"scripts": {
"build": "TS_NODE_TRANSPILE_ONLY=1 hardhat compile",
"clean": "rm -rf .turbo node_modules artifacts cache exports typechain",
"compile": "hardhat compile",
"export": "hardhat export --export-all exports.json && tsc -p tsconfig.exports.json --declaration",
"node": "hardhat node",
"test": "hardhat test"
},
"devDependencies": {
"@ethersproject/abi": "5.7.0",
"@ethersproject/providers": "5.7.2",
"@nomiclabs/hardhat-ethers": "npm:[email protected]",
"@openzeppelin/contracts": "^4.6.0",
"@sushiswap/amm": "workspace:*",
"@sushiswap/bentobox": "1.0.1",
"@sushiswap/chain": "workspace:*",
"@sushiswap/core": "^1.4.2",
"@sushiswap/currency": "workspace:*",
"@sushiswap/eslint-config": "workspace:*",
"@sushiswap/hardhat-config": "workspace:*",
"@sushiswap/jest-config": "workspace:*",
"@sushiswap/prettier-config": "workspace:*",
"@sushiswap/stargate": "workspace:*",
"@sushiswap/v2-core": "1.0.0",
"@sushiswap/tines": "workspace:*",
"@sushiswap/typescript-config": "workspace:*",
"@sushiswap/types": "workspace:*",
"@tenderly/hardhat-tenderly": "^1.0.13",
"@types/chai": "^4.3.3",
"@types/node": "18.11.18",
"@types/seedrandom": "^3.0.1",
"chai": "^4.3.6",
"eslint": "8.41.0",
"ethers": "5.7.2",
"hardhat": "2.12.4",
"hardhat-deploy": "0.11.22",
"seedrandom": "^3.0.5",
"ts-node": "10.9.1",
"typescript": "5.0.4"
},
"peerDependencies": {
"@ethersproject/abi": "5.7.0",
"@ethersproject/providers": "5.7.2",
"ethers": "5.7.2"
}
}