-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
102 lines (102 loc) · 3.27 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
{
"name": "stakehound-core",
"description": "StakeHound stakedToken with dynamic reward distribution",
"version": "1.0.0",
"author": {
"name": "StakeHound",
"url": "https://stakehound.com"
},
"bugs": {
"url": "https://github.com/stakehound/stakehound-core/issues"
},
"devDependencies": {
"@commitlint/cli": "^9.0.1",
"@commitlint/config-conventional": "^13.0.0",
"@ethersproject/abstract-signer": "^5.0.1",
"@ethersproject/bignumber": "^5.0.3",
"@nomiclabs/hardhat-ethers": "^2.0.0",
"@nomiclabs/hardhat-etherscan": "^2.1.1",
"@nomiclabs/hardhat-waffle": "^2.0.0",
"@openzeppelin/contracts": "^3.2.0",
"@openzeppelin/contracts-ethereum-package": "^3.0.0",
"@openzeppelin/hardhat-upgrades": "^1.3.1",
"@typechain/ethers-v5": "^1.0.0",
"@types/chai": "^4.2.11",
"@types/fs-extra": "^9.0.1",
"@types/mocha": "^7.0.2",
"@types/node": "^14.0.14",
"@typescript-eslint/eslint-plugin": "^3.6.0",
"@typescript-eslint/parser": "^3.6.0",
"chai": "^4.2.0",
"commitizen": "^4.1.2",
"cz-conventional-changelog": "^3.2.0",
"dotenv": "^8.2.0",
"eslint": "^7.4.0",
"eslint-config-prettier": "^6.11.0",
"ethereum-waffle": "^3.0.1",
"ethers": "^5.3.0",
"fs-extra": "^9.0.1",
"hardhat": "^2.0.3",
"hardhat-contract-sizer": "^2.0.2",
"hardhat-gas-reporter": "^1.0.1",
"husky": "^4.2.5",
"mocha": "^8.0.1",
"prettier": "^2.0.5",
"prettier-plugin-solidity": "^1.0.0-alpha.54",
"shelljs": "^0.8.4",
"shx": "^0.3.2",
"solc": "0.6.10",
"solhint": "^3.0.0",
"solhint-plugin-prettier": "^0.0.4",
"solidity-coverage": "^0.7.12",
"ts-generator": "^0.0.8",
"ts-node": "^8.10.2",
"typechain": "^2.0.0",
"typescript": "^3.9.6"
},
"files": [
"/contracts"
],
"keywords": [
"blockchain",
"ethereum",
"smart-contracts",
"solidity"
],
"license": "LGPL-3.0-or-later",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/stakehound/stakehound-core"
},
"scripts": {
"build": "yarn run compile && yarn run typechain",
"clean": "hardhat clean",
"commit": "git-cz",
"compile": "hardhat compile",
"flatten": "hardhat flatten",
"coverage": "hardhat coverage --solcoverjs ./.solcover.js --network coverage --temp artifacts --testfiles \"./test/**/*.ts\"",
"lint:sol": "solhint --config ./.solhint.json --max-warnings 0 \"contracts/**/*.sol\"",
"lint:ts": "eslint --config ./.eslintrc.yaml --ignore-path ./.eslintignore --ext .js,.ts .",
"prettier": "prettier --config .prettierrc --write \"**/*.{js,json,md,sol,ts}\"",
"prettier:list-different": "prettier --config .prettierrc --list-different \"**/*.{js,json,md,sol,ts}\"",
"test": "hardhat test",
"typechain": "hardhat typechain",
"deploy": "hardhat run scripts/deploy.ts",
"script": "hardhat run",
"accounts": "hardhat accounts"
},
"dependencies": {
"@gnosis.pm/safe-contracts": "^1.3.0",
"@openzeppelin/contracts-upgradeable": "^3.4.0",
"@types/cli-progress": "^3.9.1",
"abi-decoder": "^2.4.0",
"axios": "^0.21.1",
"browser-env": "^3.3.0",
"cli-progress": "^3.9.0",
"contract-proxy-kit": "^2.2.0-alpha.1",
"hardhat-typechain": "^0.3.3"
}
}