forked from solv-finance/erc-3525
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.45 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
{
"name": "@solv/erc-3525",
"version": "1.0.0",
"description": "ERC-3525 Reference Implementation",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/solv-finance/erc-3525.git"
},
"engines": {
"node": ">=12.10"
},
"contributors": [
"Ethan Y. Tsai <[email protected]>",
"Alvis Du <[email protected]>"
],
"scripts": {
"compile": "hardhat compile",
"test": "hardhat test",
"coverage": "env COVERAGE=true hardhat coverage",
"clean": "hardhat clean && rimraf build contracts/build",
"gas-report": "env ENABLE_GAS_REPORT=true npm run test",
"event-trace": "env EVENT_TRACE=true hardhat test --trace"
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^1.0.3",
"@nomicfoundation/hardhat-network-helpers": "^1.0.4",
"@nomicfoundation/hardhat-toolbox": "^1.0.2",
"@nomiclabs/hardhat-ethers": "^2.2.1",
"dotenv": "^16.0.3",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.1",
"hardhat": "^2.10.2",
"hardhat-contract-sizer": "^2.6.1",
"hardhat-tracer": "^1.1.0-rc.8",
"solc": "^0.8.13",
"solhint": "^3.3.7"
},
"dependencies": {
"@openzeppelin/contracts": "^4.7.3",
"@openzeppelin/contracts-upgradeable": "^4.7.3"
}
}