-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 3.13 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 3.13 KB
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
{
"name": "onetoken",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "hardhat compile",
"console": "hardhat console",
"test": "hardhat test --deploy-fixture",
"test:oracleSimple": "yarn test test/uniswapOracleSimple.js",
"test:ichiPeggedOracle": "yarn test test/ichiPeggedOracle.js",
"test:ichiCompositeOracle": "yarn test test/ichiCompositeOracle.js",
"test:ichiCompositeOracleDecimals": "yarn test test/ichiCompositeOracleDecimals.js",
"test:strategy": "yarn test test/arbitraryStrategy.js",
"test:mintMaster": "yarn test test/mintMaster.js",
"test:factory": "yarn test test/factory.js",
"test:integration": "yarn test test/integration.js",
"test:integrationDecimals": "yarn test test/integrationDecimals.js",
"test:controller": "yarn test test/controller.js",
"test:oneTokenMain": "hardhat test test/oneTokenV1-main.js",
"test:oneTokenBase": "hardhat test test/oneTokenV1-base.js",
"test:oneTokenAdmin": "hardhat test test/oneTokenV1-admin.js",
"test:e2e": "hardhat test test/integration.js",
"test:coverage": "cross-env NODE_OPTIONS=\"--max-old-space-size=2048\" hardhat coverage",
"test:gas": "cross-env REPORT_GAS=true yarn test",
"dev:deploy": "hardhat --network hardhat deploy --tags init",
"dev:deployTestToken": "hardhat --network hardhat deploy --tags init,testToken",
"kovan:deploy": "hardhat --network kovan deploy --tags init",
"kovan:export": "hardhat --network kovan export",
"kovan:verify": "hardhat --network kovan deploy --tags verify"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ichifarm/ichi-oneToken.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ichifarm/ichi-oneToken/issues"
},
"homepage": "https://github.com/ichifarm/ichi-oneToken#readme",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-etherscan": "^2.1.1",
"@nomiclabs/hardhat-solhint": "^2.0.0",
"@nomiclabs/hardhat-truffle5": "^2.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/contracts": "^3.4.0",
"@openzeppelin/test-helpers": "^0.5.10",
"@tenderly/hardhat-tenderly": "^1.0.11",
"chai": "^4.3.4",
"coveralls": "^3.1.0",
"cross-env": "^7.0.3",
"dotenv": "^8.2.0",
"ethereum-waffle": "^3.3.0",
"ethers": "^5.1.0",
"ganache-cli": "^6.12.2",
"hardhat": "^2.1.1",
"hardhat-abi-exporter": "^2.1.2",
"hardhat-deploy": "^0.7.0-beta.46",
"hardhat-deploy-ethers": "^0.3.0-beta.7",
"hardhat-gas-reporter": "^1.0.4",
"hardhat-preprocessor": "^0.1.2",
"hardhat-spdx-license-identifier": "^2.0.3",
"hardhat-typechain": "^0.3.5",
"hardhat-watcher": "^2.1.1",
"serve": "^11.3.2",
"solc-0.7.6": "npm:solc@^0.7.6",
"solidity-coverage": "^0.7.16",
"solidity-docgen": "^0.5.11",
"truffle": "^5.1.65",
"truffle-assertions": "^0.9.2",
"ts-node": "^9.1.1",
"typescript": "^4.2.3",
"web3-eth-abi": "^1.3.5"
},
"dependencies": {
"@remix-project/remixd": "^0.3.2",
"develop": "^1.0.0"
}
}