-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 2.28 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
{
"name": "index-fund",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build:sol": "buidler compile",
"node": "buidler node",
"coverage": "buidler coverage --network coverage --solcoverjs ./.solcover.js",
"deploy:rinkeby": "buidler --network rinkeby deploy",
"test:pool": "buidler test ./test/test-pool.spec.js",
"test:seller": "buidler test ./test/test-seller.spec.js",
"test:categories": "buidler test ./test/test-categories.spec.js",
"test:controller": "buidler test ./test/test-controller.spec.js",
"test:oracle": "buidler test ./test/test-oracle.spec.js",
"test:proxy": "buidler test ./test/test-proxy.spec.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/indexed-finance/index-fund.git"
},
"keywords": [],
"author": "",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/indexed-finance/index-fund/issues"
},
"homepage": "https://github.com/indexed-finance/index-fund#readme",
"devDependencies": {
"@ethersproject/providers": "^5.0.9",
"@nomiclabs/buidler": "^1.4.3",
"@nomiclabs/buidler-ethers": "^2.0.0",
"@nomiclabs/buidler-truffle5": "^1.3.4",
"@nomiclabs/buidler-waffle": "^2.0.0",
"@nomiclabs/buidler-web3": "^1.3.4",
"@uniswap/v2-core": "^1.0.1",
"@uniswap/v2-periphery": "^1.1.0-beta.0",
"assert": "^2.0.0",
"buidler-abi-exporter": "^1.0.1",
"buidler-deploy": "^0.6.0-beta.16",
"buidler-ethers-v5": "^0.2.2",
"buidler-gas-reporter": "^0.1.3",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chalk": "^4.1.0",
"decimal.js": "^10.2.0",
"dotenv": "^8.2.0",
"ethereum-waffle": "^3.0.2",
"ethereumjs-wallet": "^0.6.5",
"ethers": "^5.0.8",
"moment": "^2.29.0",
"prettier": "^2.0.5",
"prettier-plugin-solidity": "^1.0.0-alpha.55",
"solidity-coverage": "^0.7.10",
"solium": "^1.2.5",
"solium-plugin-security": "^0.1.1",
"web3": "^1.2.11"
},
"dependencies": {
"@openzeppelin/contracts": "^3.2.0",
"axios": "^0.20.0",
"cids": "^1.0.0",
"graphql-request": "^3.0.0",
"keccak": "^3.0.1",
"multihashes": "^3.0.1",
"multihashing": "^0.3.3",
"querystring": "^0.2.0",
"request-promise": "^4.2.6",
"request-promise-native": "^1.0.9"
}
}