-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.48 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.48 KB
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
{
"name": "symmio",
"description": "Symmio platform contracts",
"version": "0.8.4",
"author": {
"name": "MoonKnight/Naveedinno",
"url": "https://github.com/SYMM-IO/symmio-core"
},
"devDependencies": {
"@ethersproject/abi": "^5.7.0",
"@ethersproject/abstract-signer": "^5.7.0",
"@ethersproject/bignumber": "^5.7.0",
"@ethersproject/bytes": "^5.7.0",
"@ethersproject/providers": "^5.7.2",
"@nomicfoundation/hardhat-chai-matchers": "^2.0.7",
"@nomicfoundation/hardhat-ethers": "^3.0.6",
"@nomicfoundation/hardhat-network-helpers": "^1.0.11",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@nomicfoundation/hardhat-verify": "^2.0.8",
"@openzeppelin/contracts": "^4.9.6",
"@openzeppelin/contracts-upgradeable": "^4.9.6",
"@openzeppelin/hardhat-upgrades": "^3.0.1",
"@typechain/ethers-v6": "^0.5.1",
"@typechain/hardhat": "^9.1.0",
"@types/chai": "^4.3.16",
"@types/fs-extra": "^11.0.4",
"@types/mocha": "^10.0.7",
"@types/node": "^20.14.12",
"bignumber.js": "^9.1.2",
"builder-pattern": "^2.2.0",
"chai": "^4.2.0",
"cross-env": "^7.0.3",
"dotenv": "^16.4.5",
"ethers": "^6.13.1",
"fs-extra": "^11.2.0",
"hardhat": "^2.22.6",
"hardhat-gas-reporter": "^1.0.8",
"js-sha3": "^0.9.3",
"mocha": "^10.7.0",
"random-ext": "^2.8.0",
"rxjs": "^7.8.1",
"shx": "^0.3.4",
"solidity-coverage": "^0.8.12",
"solidity-docgen": "^0.6.0-beta.36",
"ts-node": "^10.9.2",
"typechain": "^8.3.2",
"typescript": "^5.5.4",
"typescript-json-serializer": "^6.0.1",
"winston": "^3.13.1"
},
"files": [
"/contracts"
],
"keywords": [
"defi",
"ethereum",
"hardhat",
"smart-contracts",
"solidity",
"typescript"
],
"packageManager": "yarn@1.22.22",
"publishConfig": {
"access": "public"
},
"scripts": {
"clean": "shx rm -rf ./artifacts ./cache ./coverage ./src/types ./coverage.json && yarn typechain",
"compile": "cross-env TS_NODE_TRANSPILE_ONLY=true hardhat compile",
"coverage": "hardhat coverage --testfiles \"test/**/*.ts\" && yarn typechain",
"lint": "yarn lint:sol && yarn lint:ts",
"lint:sol": "solhint --config ./.solhint.json --solcoverjs ./.solcover.js --max-warnings 0 \"contracts/**/*.sol\"",
"postinstall": "DOTENV_CONFIG_PATH=./.env yarn typechain",
"test": "hardhat test",
"typechain": "cross-env TS_NODE_TRANSPILE_ONLY=true hardhat typechain"
},
"dependencies": {
"lodash": "^4.17.21"
}
}