-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
127 lines (127 loc) · 4.1 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "@setprotocol/set-v2-strategies",
"version": "0.0.14",
"description": "",
"main": "dist",
"types": "dist/types",
"files": [
"artifacts",
"dist",
"contracts",
"external",
"utils",
"scripts",
"typechain",
"tsconfig.json"
],
"scripts": {
"build": "yarn clean && yarn compile && yarn build:typechain",
"build:npm": "yarn clean && yarn compile:npm && yarn build:typechain",
"build:typechain": "yarn typechain && yarn transpile-dist",
"chain": "npx hardhat node",
"clean": "rm -rf coverage.json .coverage_cache .coverage_contracts cache coverage typechain artifacts dist",
"compile": "npx hardhat compile",
"compile:npm": "SKIP_ABI_GAS_MODS=true npx hardhat compile",
"coverage": "yarn clean && yarn build && yarn cov:command",
"cov:command": "COVERAGE=true node --max-old-space-size=4096 ./node_modules/.bin/hardhat coverage",
"etherscan:verify": "hardhat --network kovan etherscan-verify --solc-input --license 'None'",
"flatten": "npx waffle flatten",
"lint": "yarn run lint-sol && yarn run lint-ts",
"lint-sol": "solhint 'contracts/**/*.sol'",
"lint-ts": "eslint -c .eslintrc.js --ext .ts test utils tasks --fix",
"precommit": "lint-staged",
"prepare": "yarn build",
"prepublishOnly": "yarn clean && yarn build:npm",
"test": "npx hardhat test --network localhost",
"test:fork:coverage": "FORK=true COVERAGE=true npx hardhat coverage",
"test:fork": "FORK=true npx hardhat test",
"test:fork:fast": "NO_COMPILE=true TS_NODE_TRANSPILE_ONLY=1 FORK=true npx hardhat test --no-compile",
"test:clean": "yarn clean && yarn build && yarn test",
"test:fast": "NO_COMPILE=true TS_NODE_TRANSPILE_ONLY=1 npx hardhat test --network localhost --no-compile",
"test:fast:compile": "TS_NODE_TRANSPILE_ONLY=1 npx hardhat test --network localhost",
"transpile": "tsc",
"transpile-dist": "tsc -p tsconfig.dist.json",
"typechain": "npx hardhat typechain"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SetProtocol/set-v2-strategies.git"
},
"author": "richardliang",
"license": "MIT",
"homepage": "https://github.com/SetProtocol",
"devDependencies": {
"@0x/utils": "^6.4.3",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "^3.1.0",
"@typechain/ethers-v5": "^7.0.1",
"@typechain/hardhat": "^2.3.0",
"@types/chai": "^4.2.11",
"@types/fs-extra": "^5.0.0",
"@types/lodash": "^4.14.86",
"@types/mocha": "^7.0.2",
"@types/node": "^14.0.5",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/eslint-plugin-tslint": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"@uniswap/lib": "^4.0.1-alpha",
"chai": "^4.2.0",
"coveralls": "^3.0.1",
"dotenv": "^8.2.0",
"eslint": "^7.32.0",
"eslint-plugin-jsdoc": "^36.1.0",
"eslint-plugin-no-null": "^1.0.2",
"ethereum-waffle": "^3.4.0",
"hardhat": "^2.6.4",
"hardhat-deploy": "^0.9.1",
"husky": "^4.2.5",
"istanbul-combine-updated": "^0.3.0",
"lint-staged": "^10.2.11",
"lodash": "^4.17.4",
"solc": "^0.6.10",
"solhint": "^3.1.0",
"solidity-coverage": "^0.7.17",
"ts-generator": "^0.1.1",
"ts-node": "^8.10.2",
"tslint": "^6.1.3",
"tslint-eslint-rules": "^5.3.1",
"typechain": "5.1.2",
"typescript": "^4.4.3",
"web3": "^1.2.9"
},
"dependencies": {
"@setprotocol/set-protocol-v2": "^0.10.3-hhat.1",
"@uniswap/v3-sdk": "^3.5.1",
"ethers": "5.5.2",
"fs-extra": "^5.0.0",
"jsbi": "^3.2.5",
"module-alias": "^2.2.2",
"replace-in-file": "^6.1.0"
},
"peerDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.1",
"ethereum-waffle": "^3.2.1",
"hardhat": "^2.2.1"
},
"_moduleAliases": {
"@utils": "utils",
"@typechain": "typechain"
},
"husky": {
"hooks": {
"pre-commit": "yarn precommit"
}
},
"lint-staged": {
"contracts/**/*.sol": [
"yarn lint-sol --fix"
],
"test/**/*.ts": [
"yarn lint-ts --fix"
],
"utils/**/*.ts": [
"yarn lint-ts --fix"
]
}
}