-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.34 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": "@pareto/v1-core",
"description": "Core contracts for interacting with Pareto Options",
"author": "Pareto Labs, Inc.",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "git+https://github.com/pareto-xyz/pareto-core-v1.git"
},
"keywords": [
"pareto",
"pareto-v1",
"ethereum",
"arbitrum",
"options",
"orderbook"
],
"scripts": {
"clean": "npx hardhat clean",
"compile": "npx hardhat compile",
"typechain": "npx hardhat typechain",
"test": "npx hardhat test -w contracts -w test -e js,ts,sol",
"coverage": "npx hardhat coverage -w contracts -w test -e js,ts,sol",
"prettier": "npx prettier --write 'contracts/**/*.sol'"
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^1.0.3",
"@nomicfoundation/hardhat-toolbox": "^1.0.2",
"@openzeppelin/contracts": "^4.7.2",
"@openzeppelin/hardhat-upgrades": "^1.20.0",
"@typechain/hardhat": "^6.1.2",
"dotenv": "^16.0.1",
"hardhat": "^2.10.1",
"hardhat-gas-reporter": "^1.0.8",
"mathjs": "^11.1.0",
"prettier-plugin-solidity": "^1.0.0-dev.22",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"engines": {
"node": ">=16.13.0"
},
"dependencies": {
"@openzeppelin/contracts-upgradeable": "^4.7.3",
"evm-bn": "^1.1.2"
},
"license": "GPL-3.0-or-later"
}