-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
101 lines (101 loc) · 2.98 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": "@quant-finance/quant-protocol",
"version": "0.17.6",
"description": "Smart contracts for the Quant Protocol.",
"scripts": {
"build": "hardhat compile",
"test": "yarn build && hardhat test && forge test -vvv",
"eslint": "eslint . --ext ts --fix",
"format": "prettier --write . && forge fmt",
"solhint": "solhint 'contracts/**/*.sol'",
"lint": "yarn eslint && yarn format && yarn solhint",
"docs": "solidity-docgen --solc-module solc-0.7.6",
"docs:uml": "node build-scripts/generateDocs.js",
"coverage": "hardhat coverage",
"publishToRegistry": "yarn build && ./envrun npm publish --registry $REGISTRY_URL"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint && yarn test"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/RollaProject/quant-protocol.git"
},
"keywords": [
"options",
"ethereum",
"smart-contracts",
"solidity",
"defi",
"cryptocurrency",
"quant",
"rolla"
],
"license": "SEE LICENSE IN LICENSE.md",
"bugs": {
"url": "https://github.com/RollaProject/quant-protocol/issues"
},
"homepage": "https://github.com/RollaProject/quant-protocol",
"devDependencies": {
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@ethereum-waffle/chai": "^3.4.3",
"@ethereum-waffle/mock-contract": "^3.3.1",
"@ethereum-waffle/provider": "^3.4.1",
"@gnosis.pm/safe-contracts": "^1.3.0",
"@nomiclabs/hardhat-ethers": "^2.0.1",
"@nomiclabs/hardhat-waffle": "^2.0.2",
"@tenderly/hardhat-tenderly": "^1.0.13",
"@typechain/ethers-v5": "^9.0.0",
"@typechain/hardhat": "^4.0.0",
"@types/chai": "^4.2.14",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.25",
"@types/web3-eth-abi": "^1.2.2",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"chai": "^4.3.0",
"child_process": "^1.0.2",
"dotenv": "^10.0.0",
"eslint": "^7.19.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"eth-sig-util": "^3.0.1",
"ethereum-waffle": "^3.4.0",
"ethereumjs-util": "^7.0.10",
"ethers": "^5.5.4",
"glob": "^7.1.7",
"hardhat": "^2.12.4",
"hardhat-contract-sizer": "^2.0.3",
"hardhat-deploy": "^0.7.7",
"hardhat-deploy-ethers": "^0.3.0-beta.7",
"hardhat-gas-reporter": "^1.0.6",
"husky": "^4.3.8",
"path": "^0.12.7",
"prettier": "^2.6.2",
"shelljs": "^0.8.4",
"solc": "0.8.18",
"solhint": "^3.3.7",
"solidity-coverage": "^0.7.21",
"solidity-docgen": "^0.5.13",
"ts-node": "^9.1.1",
"typechain": "^7.0.0",
"typescript": "^4.1.3",
"web3-eth-abi": "^1.3.6"
},
"dependencies": {
"@openzeppelin/contracts": "^4.7.1",
"@quant-finance/solidity-datetime": "2.2.0",
"@rolla-finance/clones-with-immutable-args": "1.12.2",
"solady": "^0.0.54",
"solmate": "^6.5.0"
},
"files": [
"src",
"artifacts/src",
"typechain",
"abis"
]
}