forked from FloatProtocol/float-staking
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) Β· 3.56 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
{
"name": "float-contracts",
"version": "0.0.2",
"description": "The smart contracts behind Float Protocol",
"scripts": {
"postinstall": "node ./.setup.js",
"prepare": "yarn build",
"build": "hardhat compile 2> /dev/null && hardhat typechain",
"coverage": "hardhat coverage --temp artifacts --network coverage --solcoverjs ./.solcover.js",
"test": "cross-env hardhat test",
"gas": "cross-env REPORT_GAS=true hardhat test",
"lint": "concurrently yarn:lint:js yarn:lint:sol",
"lint:fix": "concurrently yarn:lint:js:fix yarn:lint:sol:fix",
"lint:js": "eslint .",
"lint:js:fix": "eslint . --fix",
"lint:sol": "solhint 'contracts/**/*.sol'",
"lint:sol:fix": "solhint 'contracts/**/*.sol' --fix",
"dev": "hardhat node --watch --export contractsInfo.json",
"local:dev": "hardhat --network localhost deploy --watch",
"local:deploy": "hardhat --network localhost deploy",
"local:run": "cross-env HARDHAT_NETWORK=localhost ts-node --files",
"local:export": "hardhat --network localhost export",
"rinkeby:deploy": "hardhat --network rinkeby deploy",
"rinkeby:export": "hardhat --network rinkeby export",
"rinkeby:run": "cross-env HARDHAT_NETWORK=rinkeby ts-node --files",
"rinkeby:verify": "hardhat --network rinkeby etherscan-verify",
"ropsten:deploy": "hardhat --network ropsten deploy",
"ropsten:export": "hardhat --network ropsten export",
"ropsten:run": "cross-env HARDHAT_NETWORK=ropsten ts-node --files",
"mainnet:verify": "hardhat --network mainnet etherscan-verify",
"mainnet:deploy": "hardhat --network mainnet deploy",
"mainnet:export": "hardhat --network mainnet export",
"mainnet:run": "cross-env HARDHAT_NETWORK=mainnet ts-node --files"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FloatProtocol/float-contracts.git"
},
"author": "FloatProtocol",
"license": "MIT",
"bugs": {
"url": "https://github.com/FloatProtocol/float-contracts/issues"
},
"homepage": "https://github.com/FloatProtocol/float-contracts#readme",
"devDependencies": {
"@fleekhq/fleek-storage-js": "^1.0.9",
"@nomiclabs/hardhat-ethers": "^2.0.1",
"@nomiclabs/hardhat-etherscan": "^2.1.1",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/hardhat-upgrades": "^1.6.0",
"@typechain/ethers-v5": "^5.0.0",
"@types/chai": "^4.2.14",
"@types/lodash": "^4.14.168",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.14",
"@typescript-eslint/eslint-plugin": "^4.13.0",
"@typescript-eslint/parser": "^4.13.0",
"chai": "^4.2.0",
"concurrently": "^5.3.0",
"cross-env": "^7.0.3",
"dotenv": "^8.2.0",
"eslint": "^7.17.0",
"ethereum-waffle": "^3.2.1",
"ethers": "^5.0.24",
"hardhat": "^2.0.5",
"hardhat-abi-exporter": "^2.0.8",
"hardhat-deploy": "^0.7.0-beta.44",
"hardhat-deploy-ethers": "^0.3.0-beta.7",
"hardhat-gas-reporter": "^1.0.4",
"hardhat-typechain": "^0.3.4",
"husky": ">=4",
"lint-staged": ">=10",
"solhint": "^3.3.2",
"solidity-coverage": "^0.7.13",
"solium": "^1.2.5",
"ts-generator": "^0.1.1",
"ts-node": "^9.1.1",
"typechain": "^4.0.1",
"typescript": "^4.1.3"
},
"dependencies": {
"@chainlink/contracts": "^0.1.6",
"@openzeppelin/contracts": "^3.3.0",
"@openzeppelin/contracts-upgradeable": "^3.3.0",
"@uniswap/v2-core": "^1.0.1",
"@uniswap/v2-periphery": "^1.1.0-beta.0",
"synthetix": "^2.35.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": "eslint --cache --fix"
}
}