forked from balancer/balancer-sor
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
83 lines (83 loc) · 3.09 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
{
"name": "@balancer-labs/sor",
"version": "4.1.1-beta.16",
"license": "GPL-3.0-only",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rollup -c",
"prepack": "yarn build",
"test": "TS_NODE_PROJECT='tsconfig.testing.json' nyc mocha -r ts-node/register test/*.spec.ts --timeout 20000",
"test:only": "TS_NODE_PROJECT='tsconfig.testing.json' npx mocha -r ts-node/register --timeout 20000",
"example": "TS_NODE_PROJECT='tsconfig.testing.json' ts-node",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"lint": "eslint ./src ./test --ext .ts --max-warnings 0",
"node": "npx hardhat node --tsconfig tsconfig.testing.json --fork $(. ./.env && echo $RPC_URL_MAINNET)",
"node:polygon": "npx hardhat --tsconfig tsconfig.testing.json --config hardhat.config.polygon.ts node --fork $(. ./.env && echo $RPC_URL_POLYGON) --port 8137"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && yarn run lint"
}
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"files": [
"dist"
],
"devDependencies": {
"@balancer-labs/typechain": "^1.0.0",
"@ethersproject/abi": "^5.4.1",
"@ethersproject/address": "^5.4.0",
"@ethersproject/bignumber": "^5.4.2",
"@ethersproject/constants": "^5.4.0",
"@ethersproject/contracts": "^5.4.1",
"@ethersproject/providers": "^5.4.4",
"@ethersproject/wallet": "^5.4.0",
"@georgeroman/balancer-v2-pools": "0.0.7",
"@nomiclabs/hardhat-ethers": "^2.0.6",
"@rollup/plugin-commonjs": "^20.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.4",
"@rollup/plugin-typescript": "^8.2.5",
"@types/chai": "^4.2.10",
"@types/lodash.clonedeep": "^4.5.6",
"@types/mocha": "^7.0.2",
"@types/node": "^14.0.20",
"@typescript-eslint/eslint-plugin": "^4.29.2",
"@typescript-eslint/parser": "^4.29.2",
"bignumber.js": "^9.0.1",
"chai": "^4.2.0",
"dotenv": "^8.2.0",
"eslint": "^7.32.0",
"eslint-plugin-mocha-no-only": "^1.1.1",
"eslint-plugin-prettier": "^3.4.1",
"hardhat": "^2.9.9",
"husky": "^4.2.1",
"lodash.clonedeep": "^4.5.0",
"lodash.set": "^4.3.2",
"mocha": "8.2.1",
"nyc": "^15.0.0",
"perf_hooks": "^0.0.1",
"prettier": "^2.3.2",
"pretty-quick": "^2.0.1",
"rollup": "^2.56.3",
"rollup-plugin-dts": "^4.0.0",
"ts-node": "^10.0.0",
"typescript": "^4.3.5"
},
"dependencies": {
"isomorphic-fetch": "^2.2.1"
},
"peerDependencies": {
"@ethersproject/abi": "^5.4.1",
"@ethersproject/address": "^5.4.0",
"@ethersproject/bignumber": "^5.4.2",
"@ethersproject/constants": "^5.4.0",
"@ethersproject/contracts": "^5.4.1",
"@ethersproject/providers": "^5.4.4"
}
}