-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
97 lines (97 loc) · 2.65 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
{
"name": "@primitivefi/rmm-manager",
"version": "1.1.0",
"description": "∇ Manager and Routing smart contracts for Primitive RMM protocol.",
"main": "index.js",
"keywords": [
"primitive",
"amm",
"rmm",
"defi",
"arbitrum",
"swap",
"ethereum"
],
"files": [
"contracts/base",
"contracts/interfaces",
"contracts/libraries",
"artifacts/contracts/**/*.json",
"!artifacts/contracts/**/*.dbg.json",
"!artifacts/contracts/test/**/*",
"!artifacts/contracts/base/**/*"
],
"repository": {
"type": "git",
"url": "https://github.com/primitivefinance/rmm-manager.git"
},
"author": "Primitive",
"license": "GPL-3.0-or-later",
"homepage": "https://primitive.finance",
"scripts": {
"typechain": "hardhat typechain",
"clean": "hardhat clean",
"compile": "hardhat compile",
"test": "npx mocha --require hardhat/register --recursive --parallel --exit --extension ts --timeout 100000000",
"prepare": "husky install",
"verify": "hardhat run ./scripts/verify.ts"
},
"dependencies": {
"@openzeppelin/contracts": "^4.1.0",
"@primitivefi/rmm-core": "^1.0.0",
"base64-sol": "^1.1.0"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-etherscan": "^3.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@primitivefi/hardhat-dodoc": "^0.2.3",
"@primitivefi/rmm-math": "^2.0.0-rc.1",
"@typechain/ethers-v5": "^7.1.0",
"@typechain/hardhat": "^2.2.0",
"@types/chai": "^4.2.21",
"@types/mocha": "^9.0.0",
"@types/node": "^16.9.4",
"bignumber.js": "^9.0.1",
"chai": "^4.3.4",
"dotenv": "^15.0.0",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.4.1",
"hardhat": "^2.4.3",
"hardhat-contract-sizer": "^2.1.1",
"hardhat-gas-reporter": "^1.0.4",
"hardhat-tracer": "^1.0.0-alpha.6",
"husky": "^7.0.1",
"js-base64": "^3.7.2",
"lint-staged": "^11.0.0",
"mocha": "^9.1.1",
"numeric": "^1.2.6",
"prettier": "^2.2.1",
"prettier-plugin-solidity": "^1.0.0-beta.6",
"solhint": "^1.0.10",
"solhint-plugin-prettier": "^0.0.5",
"solidity-coverage": "^0.7.16",
"stochastic": "^0.0.14",
"ts-generator": "^0.1.1",
"ts-node": "^9.1.1",
"typechain": "^5.1.2",
"typescript": "^4.2.3",
"web3-units": "^1.0.0"
},
"postinstall": "typechain",
"lint-staged": {
"*.{js,ts,sol,md}": "prettier --write"
},
"release": {
"branches": [
"main"
]
},
"resolutions": {
"underscore": ">=1.12.1",
"lodash": ">=4.17.21",
"follow-redirects": ">=1.14.7"
}
}