-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
113 lines (113 loc) · 4.45 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
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "sor_demo",
"version": "1.0.0",
"main": "index.js",
"author": "liang xiong <[email protected]>",
"license": "MIT",
"scripts": {
"compile-v3-types": "npx typechain --target ethers-v5 --out-dir src/types/v3 './node_modules/@uniswap/?(v3-core|v3-periphery)/artifacts/contracts/**/*.json'",
"compile-v2-types": "npx typechain --target ethers-v5 --out-dir src/types/v2 './node_modules/@uniswap/?(v2-core|v2-periphery)/build/*UniswapV2*.json'",
"compile-external-types": "npx typechain --target ethers-v5 --out-dir src/types/other 'src/abis/**/*.json'",
"build": "run-p compile-v3-types compile-v2-types compile-external-types && run-p build:*",
"build:main": "tsc -p tsconfig.json",
"build:contracts": "hardhat compile",
"start": "./node_modules/.bin/ts-node src/main.ts |./node_modules/.bin/bunyan -o short",
"fix": "run-s fix:*",
"fix:prettiersol": "prettier \"contracts/**/*.sol\" \"src/**/*.ts\" \"test/**/*.ts\" --write",
"fix:lintts": "eslint src test --ext .ts --fix",
"fix:lintsol": "solhint --config ./.solhint.json \"contracts/**/*.sol\" --fix",
"version": "standard-version",
"prepare-release": "run-s cov:check doc:html version doc:publish",
"test": "jest",
"integ-test": "jest test/integ"
},
"engines": {
"node": ">=10"
},
"dependencies": {
"@0x/orderbook": "^2.2.7",
"@0x/types": "^3.3.4",
"@bitauth/libauth": "^1.17.1",
"@ethersproject/bignumber": "^5.1.1",
"@mechanicalhuman/bunyan-pretty": "^3.0.3",
"@oclif/command": "^1.8.0",
"@oclif/errors": "^1.3.5",
"@openzeppelin/contracts": "^4.5.0",
"@types/async-retry": "^1.4.2",
"@types/await-timeout": "^0.3.1",
"@types/bunyan": "^1.8.6",
"@types/bunyan-blackhole": "^0.2.2",
"@types/lodash": "^4.14.168",
"@types/sinon": "^10.0.2",
"@types/stats-lite": "^2.2.0",
"@uniswap/default-token-list": "^2.0.0",
"@uniswap/router-sdk": "^1.0.0-beta.7",
"@uniswap/token-lists": "^1.0.0-beta.25",
"@uniswap/v2-core": "^1.0.1",
"@uniswap/v2-periphery": "^1.1.0-beta.0",
"@uniswap/v2-sdk": "^3.0.1",
"@uniswap/v3-periphery": "^1.1.1",
"@uniswap/v3-sdk": "^3.7.0",
"async-retry": "^1.3.1",
"await-timeout": "^1.1.1",
"axios": "^0.21.1",
"bignumber.js": "^9.0.2",
"bunyan": "^1.8.15",
"bunyan-blackhole": "^1.1.1",
"bunyan-debug-stream": "^2.0.0",
"cli-logger": "^0.5.40",
"dotenv": "^10.0.0",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-plugin-functional": "^4.0.2",
"ethereum-types": "^3.5.0",
"ethers": "^5.1.4",
"gitbook": "^2.6.9",
"graphql": "^15.5.0",
"graphql-request": "^3.4.0",
"lodash": "^4.17.21",
"mnemonist": "^0.38.3",
"node-cache": "^5.1.2",
"node-threadpool": "^1.5.5",
"stats-lite": "^2.2.0",
"tslib": "^1.14.1"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@nomiclabs/hardhat-ethers": "^2.0.5",
"@nomiclabs/hardhat-etherscan": "^3.0.1",
"@nomiclabs/hardhat-waffle": "^2.0.2",
"@typechain/ethers-v5": "^7.0.1",
"@typechain/hardhat": "^4.0.0",
"@types/jest": "^26.0.24",
"@types/jest-sinon": "^1.0.2",
"@types/node": "^15.0.2",
"@typescript-eslint/eslint-plugin": "^5.8.1",
"@typescript-eslint/parser": "^5.8.1",
"eslint": "^8.5.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.25.3",
"hardhat": "^2.8.4",
"hardhat-gas-reporter": "^1.0.8",
"jest": "^27.0.6",
"jest-expect-message": "^1.0.2",
"jest-mock": "^27.0.6",
"jest-sinon": "^1.0.4",
"npm-run-all": "^4.1.5",
"open-cli": "^6.0.1",
"prettier": "^2.1.1",
"prettier-plugin-organize-imports": "^2.1.0",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"sinon": "^11.1.2",
"solidity-coverage": "^0.7.20",
"standard-version": "^9.0.0",
"ts-jest": "^27.0.4",
"ts-node": "^9.0.0",
"typechain": "^5.0.0",
"typescript": "^4.2.2"
},
"oclif": {
"commands": "./cli/commands"
}
}