-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
101 lines (101 loc) · 3.43 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
{
"name": "@benddao/bendApeStaking",
"version": "1.0.0",
"description": "Bend ape staking smart contracts",
"author": "BendDAO",
"private": false,
"files": [
"/abis/*.json",
"/contracts/*.sol",
"/contracts/interfaces/*.sol",
"/contracts/libraries/*.sol"
],
"keywords": [
"benddao"
],
"engines": {
"node": ">=8.3.0"
},
"homepage": "https://benddao.xyz/",
"bugs": "https://github.com/BendDAO/bend-apecoin-staking/issues",
"repository": {
"type": "git",
"url": "https://github.com/BendDAO/bend-apecoin-staking.git"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"scripts": {
"typechain": "TS_NODE_TRANSPILE_ONLY=true hardhat typechain",
"size": "npm run compile && hardhat size-contracts",
"clean": "hardhat clean",
"compile": "TS_NODE_TRANSPILE_ONLY=true hardhat compile",
"compile:force": "TS_NODE_TRANSPILE_ONLY=true hardhat typechain && hardhat compile --force",
"format:check": "prettier --check '**/*.{js,jsx,ts,tsx,sol,json,yaml,md}'",
"format:write": "prettier --write '**/*.{js,jsx,ts,tsx,sol,json,yaml,md}'",
"lint": "yarn lint:sol && yarn lint:ts && yarn format:check",
"lint:sol": "solhint 'contracts/**/*.sol'",
"lint:ts": "eslint '**/*.{js,jsx,ts,tsx}'",
"prepare": "husky install",
"test": "hardhat test",
"test:file": "npm run compile && hardhat test ./test/hardhat/setup.ts ./test/hardhat/${TEST_FILE}",
"test:gas": "REPORT_GAS=true hardhat test",
"test:coverage": "TS_NODE_TRANSPILE_ONLY=true hardhat coverage && hardhat compile --force",
"test:forge": "forge test -vvv",
"test:all": "npm run test && npm run test:forge",
"release": "release-it"
},
"devDependencies": {
"@commitlint/cli": "^17.0.2",
"@commitlint/config-conventional": "^16.2.1",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.6",
"@nomicfoundation/hardhat-foundry": "^1.0.1",
"@nomicfoundation/hardhat-network-helpers": "^1.0.8",
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@nomiclabs/hardhat-etherscan": "^3.1.7",
"@openzeppelin/hardhat-upgrades": "^1.25.1",
"@typechain/ethers-v5": "^10.2.0",
"@typechain/hardhat": "^6.1.5",
"@types/chai": "^4.3.5",
"@types/lowdb": "^1.0.9",
"@types/mocha": "^10.0.1",
"@types/node": "^18.16.3",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"axios-logger": "^2.6.2",
"chai": "^4.3.7",
"dotenv": "^16.0.3",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"ethereumjs-util": "^7.1.5",
"ethers": "^5.7.2",
"fast-check": "^3.8.1",
"hardhat": "^2.14.0",
"hardhat-abi-exporter": "^2.10.1",
"hardhat-gas-reporter": "^1.0.9",
"husky": "^8.0.3",
"lodash": "^4.17.21",
"lowdb": "^1.0.0",
"prettier": "^2.8.8",
"prettier-plugin-solidity": "^1.1.3",
"release-it": "^15.10.3",
"solhint": "^3.4.1",
"solidity-coverage": "^0.8.2",
"tmp-promise": "^3.0.3",
"ts-node": "^10.9.1",
"typechain": "^8.1.1",
"typescript": "^5.0.4"
},
"dependencies": {
"@openzeppelin/contracts": "4.8.3",
"@openzeppelin/contracts-upgradeable": "4.8.3",
"eslint-plugin-n": "^15.7.0",
"hardhat-contract-sizer": "^2.8.0"
}
}