-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.7 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
{
"name": "elyfi-stakingpool",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/elysia-dev/elyfi-stakingpool.git",
"author": "elysia-dev",
"license": "MIT",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-etherscan": "^2.1.1",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "^4.0.0",
"@typechain/ethers-v5": "^7.0.1",
"@typechain/hardhat": "^2.2.0",
"@types/chai": "^4.2.17",
"@types/mocha": "^8.2.2",
"@types/node": "^15.0.1",
"bignumber.js": "^9.0.1",
"chai": "^4.3.4",
"dotenv": "^10.0.0",
"eth-sig-util": "^3.0.1",
"ethereum-waffle": "^3.3.0",
"ethereumjs-util": "^7.1.0",
"ethers": "^5.3.0",
"hardhat": "^2.9.3",
"hardhat-deploy": "^0.7.10",
"hardhat-deploy-ethers": "^0.3.0-beta.10",
"hardhat-gas-reporter": "^1.0.8",
"husky": "^7.0.4",
"mocha": "^8.3.2",
"moment": "^2.29.3",
"moment-timezone": "^0.5.34",
"solc": "npm:[email protected]",
"solidity-coverage": "^0.7.17",
"solidity-docgen": "^0.5.13",
"ts-generator": "^0.1.1",
"ts-node": "^9.1.1",
"typechain": "^5.1.2",
"typescript": "^4.2.4"
},
"scripts": {
"task": "yarn hardhat --config hardhat.config.tasks.ts",
"test": "yarn hardhat test --parallel --show-stack-traces",
"docgen": "yarn run solidity-docgen --solc-module solc --templates ./templates",
"coverage": "yarn hardhat coverage --testfiles 'test/contracts/**/*.test.ts' --solcoverjs ./.solcover.js",
"deploy:kovan": "yarn hardhat --network kovan deploy --tags elyfiPool",
"deploy:mainnet": "yarn hardhat --network mainnet deploy --tags elyfiPool",
"prepare": "husky install"
}
}