-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
107 lines (107 loc) · 4.24 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
{
"name": "@indexed-finance/indexed-core",
"version": "1.0.0",
"description": "",
"main": "index.js",
"files": [
"artifacts",
"deployments/mainnet",
"deployments/rinkeby",
"contracts/balancer",
"contracts/interfaces",
"contracts/lib",
"contracts/MarketCapSortedCategories.sol",
"contracts/MarketCapSqrtController.sol",
"contracts/OwnableProxy.sol",
"contracts/PoolFactory.sol",
"contracts/PoolInitializer.sol",
"contracts/UnboundTokenSeller.sol"
],
"scripts": {
"clean:build": "rimraf ./artifacts && rimraf ./cache && npm run clean:temp",
"clean:temp": "buidler-verify-helper --clean",
"prepare-build": "npm run clean:build && buidler-verify-helper --prepare",
"prepare:controller": "yarn prepare-build --contracts MarketCapSqrtController",
"prepare:seller": "yarn prepare-build --contracts UnboundTokenSeller",
"prepare:pool": "yarn prepare-build --contracts IndexPool",
"prepare:initializer": "yarn prepare-build --contracts PoolInitializer",
"prepare:factory": "yarn prepare-build --contracts PoolFactory",
"prepare:test": "yarn prepare-build --contracts MockERC20",
"prepare:factory-access": "yarn prepare-build --contracts PoolFactoryAccessControl",
"build": "buidler compile",
"node": "buidler node",
"coverage": "buidler coverage --network coverage --solcoverjs ./.solcover.js",
"deploy:seller": "yarn prepare:seller && buidler deploy --tags TokenSellerImplementation --network",
"deploy:controller": "yarn prepare:controller && buidler deploy --tags Controller --network",
"deploy:factory": "yarn prepare:factory && buidler deploy --tags PoolFactory --network",
"deploy:initializer": "yarn prepare:initializer && buidler deploy --tags PoolInitializer --network",
"deploy:pool": "yarn prepare:pool && buidler deploy --tags IndexPool --network",
"deploy:factory-access": "yarn prepare:factory-access && buidler deploy --tags PoolFactoryAccessControl --network",
"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": "buidler test",
"prepublishOnly": "npm run clean:build && npm run build && node ./scripts/purge-periphery-artifacts.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/indexed-finance/indexed-core.git"
},
"keywords": [],
"author": "",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/indexed-finance/indexed-core/issues"
},
"homepage": "https://github.com/indexed-finance/indexed-core#readme",
"devDependencies": {
"@ethersproject/providers": "^5.0.9",
"@nomiclabs/buidler": "^1.4.3",
"@nomiclabs/buidler-ethers": "^2.0.0",
"@nomiclabs/buidler-etherscan": "^2.1.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",
"buidler-verify-helper": "^1.0.3",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chalk": "^4.1.0",
"coveralls": "^3.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",
"rimraf": "^3.0.2",
"solidity-coverage": "^0.7.16",
"solium": "^1.2.5",
"solium-plugin-security": "^0.1.1",
"web3": "^1.2.11"
},
"dependencies": {
"@indexed-finance/proxies": "^1.0.15",
"@indexed-finance/uniswap-deployments": "^1.0.2",
"@indexed-finance/uniswap-v2-oracle": "^1.0.4",
"@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"
}
}