forked from carrot-kpi/alpha-contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 2.91 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
{
"name": "@carrot/contracts",
"version": "0.1.0",
"description": "A smart contract solution to create scalar and boolean KPI tokens, by DXdao.",
"author": "Federico Luzzi <[email protected]>",
"license": "GPL-3.0",
"private": true,
"scripts": {
"lint:eslint": "eslint \"test/**/*.ts\" \"tasks/**/*.ts\"",
"lint:prettier": "prettier -l contracts/**/*.sol && prettier -l test/**/*.js",
"lint:commit-message": "commitlint -e",
"lint": "yarn lint:eslint && yarn lint:prettier",
"test": "hardhat test",
"test:coverage": "hardhat coverage",
"test:gasreport": "cross-env GAS_REPORT_ENABLED=true hardhat test",
"compile": "hardhat compile",
"prepare": "husky install",
"deploy:rinkeby": "hardhat deploy --network rinkeby --fee 30 --reality-address 0x3D00D77ee771405628a4bA4913175EcC095538da --verify",
"deploy:xdai": "hardhat deploy --network xdai --fee 30 --reality-address 0x79e32aE03fb27B07C89c0c568F80287C01ca2E57 --fee-receiver-address 0xe716ec63c5673b3a4732d22909b38d779fa47c3f",
"create:rinkeby": "hardhat create-kpi-token --network rinkeby --factory-address 0x6752241ee8420cb61A6ae6B666bD5759BFAC6eb0 --arbitrator-address 0xcafa054b1b054581faf65adce667bf1c684b6ef0 --vote-timeout 120",
"create:xdai": "hardhat create-kpi-token --network xdai --factory-address 0xe82c4D8b993D613a28600B953e91A3A93Ae69Fd6 --arbitrator-address 0xFe14059344b74043Af518d12931600C0f52dF7c5 --vote-timeout 86400",
"get-create-kpi-token-calldata": "hardhat get-create-kpi-token-calldata"
},
"devDependencies": {
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-etherscan": "^2.1.0",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "^4.1.0",
"@openzeppelin/contracts-upgradeable": "^4.1.0",
"@realitio/realitio-contracts": "^2.2.8",
"@typechain/ethers-v5": "^6.0.5",
"@typechain/hardhat": "^1.0.1",
"@types/chai": "^4.2.16",
"@types/luxon": "^1.26.5",
"@types/mocha": "^8.2.2",
"babel-eslint": "^10.1.0",
"chai": "^4.2.0",
"cross-env": "^7.0.3",
"decimal.js-light": "^2.5.1",
"dotenv": "^8.2.0",
"eslint": "^7.24.0",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.1.3",
"hardhat": "^2.6.4",
"hardhat-dependency-compiler": "^1.1.1",
"hardhat-gas-reporter": "^1.0.4",
"husky": "^6.0.0",
"luxon": "^1.27.0",
"merkletreejs": "^0.2.18",
"prettier": "^2.1.2",
"prettier-plugin-solidity": "^1.0.0-beta.10",
"solhint-plugin-prettier": "^0.0.5",
"solidity-coverage": "^0.7.17",
"ts-generator": "^0.1.1",
"ts-node": "^9.1.1",
"typechain": "^4.0.3",
"typescript": "^4.2.4"
}
}