-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 3.11 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 3.11 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "options-core",
"version": "1.0.0",
"description": "",
"license": "MIT",
"author": {
"name": "MoonKnight/Naveedinno",
"url": "https://github.com/SYMM-IO/options-core"
},
"devDependencies": {
"@ethersproject/abi": "^5.8.0",
"@ethersproject/abstract-signer": "^5.8.0",
"@ethersproject/bignumber": "^5.8.0",
"@ethersproject/bytes": "^5.8.0",
"@ethersproject/providers": "^5.8.0",
"@nomicfoundation/hardhat-chai-matchers": "^2.0.8",
"@nomicfoundation/hardhat-ethers": "^3.0.9",
"@nomicfoundation/hardhat-ignition": "^0.15.11",
"@nomicfoundation/hardhat-ignition-ethers": "^0.15.11",
"@nomicfoundation/hardhat-network-helpers": "^1.0.12",
"@nomicfoundation/hardhat-verify": "^2.0.13",
"@nomicfoundation/ignition-core": "^0.15.11",
"@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.3.0",
"builder-pattern": "^2.2.0",
"chai": "^4.2.0",
"cross-env": "^7.0.3",
"dotenv": "^16.4.5",
"ethers": "^6.14.1",
"fs-extra": "^11.2.0",
"hardhat-gas-reporter": "^1.0.8",
"husky": "^9.1.7",
"js-sha3": "^0.9.3",
"lint-staged": "^16.0.0",
"mocha": "^10.7.0",
"prettier": "^3.0.0",
"prettier-plugin-solidity": "^2.1.0",
"random-ext": "^2.8.0",
"rxjs": "^7.8.2",
"secretlint": "^9.3.2",
"shx": "^0.3.4",
"solidity-coverage": "^0.8.16",
"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": "symsec --project options-core run npx hardhat compile",
"coverage": "hardhat coverage --testfiles \"tests/**/*.ts\"",
"lint": "yarn lint:sol && yarn lint:ts",
"lint:sol": "solhint --config ./.solhint.json --max-warnings 0 \"contracts/**/*.sol\"",
"test": "symsec --project options-core run npx hardhat test",
"test:uncheck-muon": "./utils/runTest.sh",
"typechain": "symsec --project options-core run npx hardhat typechain",
"format": "prettier --write .",
"format:check": "prettier --check .",
"precommit": "symsec --project options-core run yarn format && symsec --project options-core run yarn compile && symsec --project options-core run yarn test"
},
"dependencies": {
"@nomicfoundation/hardhat-toolbox": "^4.0.0",
"@secretlint/secretlint-rule-no-dotenv": "^9.3.2",
"@secretlint/secretlint-rule-preset-recommend": "^9.3.2",
"@secretlint/secretlint-rule-privatekey": "^9.3.2",
"@secretlint/secretlint-rule-secp256k1-privatekey": "^9.3.2",
"hardhat": "^2.26.3",
"solhint": "^5.1.0"
},
"lint-staged": {
"*": "secretlint"
}
}