-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
79 lines (79 loc) · 2.3 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
{
"name": "@primitivefi/rmm-core",
"version": "1.0.0",
"description": "∇ Primitive Replicating Market Maker protocol smart contracts.",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/primitivefinance/rmm-core.git"
},
"author": "Primitive",
"license": "GPL-3.0-or-later",
"homepage": "https://primitive.finance",
"keywords": [
"primitive",
"amm",
"swap",
"ethereum",
"smart contracts"
],
"files": [
"contracts/interfaces",
"contracts/libraries",
"artifacts/contracts/PrimitiveEngine.sol/PrimitiveEngine.json",
"artifacts/contracts/PrimitiveFactory.sol/PrimitiveFactory.json",
"artifacts/contracts/interfaces/**/*.json",
"!artifacts/contracts/interfaces/**/*.dbg.json"
],
"scripts": {
"clean": "hardhat clean",
"compile": "hardhat compile",
"compile:all": "hardhat clean && hardhat compile && hardhat typechain",
"test": "hardhat test",
"test:fast": "npx mocha --require hardhat/register --recursive --parallel --exit --extension ts --timeout 100000000",
"typechain": "hardhat typechain",
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-etherscan": "^3.0.1",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@primitivefi/hardhat-dodoc": "^0.2.3",
"@primitivefi/rmm-math": "^2.0.0-beta.3",
"@typechain/ethers-v5": "^7.0.1",
"@typechain/hardhat": "^2.2.0",
"@types/chai": "^4.2.21",
"@types/mocha": "^8.2.3",
"@types/node": "^16.4.0",
"chai": "^4.3.4",
"dotenv": "^10.0.0",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.4.1",
"hardhat": "^2.4.3",
"hardhat-gas-reporter": "^1.0.4",
"husky": "^6.0.0",
"mocha": "^9.1.3",
"prettier": "^2.2.1",
"prettier-plugin-solidity": "^1.0.0-beta.6",
"solhint": "^1.0.10",
"solhint-plugin-prettier": "^0.0.5",
"ts-generator": "^0.1.1",
"ts-node": "^9.1.1",
"typechain": "^5.1.2",
"typescript": "^4.2.3",
"web3-units": "^1.4.0"
},
"postinstall": "typechain",
"release": {
"branches": [
"main"
]
},
"resolutions": {
"underscore": ">=1.12.1",
"lodash": ">=4.17.21",
"follow-redirects": ">=1.14.7"
}
}