-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
66 lines (66 loc) · 1.87 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
{
"name": "@pollum-io/pegasys-protocol",
"version": "0.0.16",
"description": "Contracts for the Pegasys Dex.",
"main": "index.js",
"keywords": [
"pegasys",
"AMM",
"defi",
"dex",
"syscoin",
"NEVM"
],
"devDependencies": {
"@boringcrypto/boring-solidity": "boringcrypto/BoringSolidity#e06e943",
"@eth-optimism/smock": "^1.1.9",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-etherscan": "^3.0.3",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "^4.3.1",
"@types/chai": "^4.2.21",
"@types/mocha": "^8.2.3",
"@types/node": "^16.3.1",
"chai": "^4.3.4",
"dotenv": "^10.0.0",
"ethereum-waffle": "^3.4.0",
"ethereumjs-tx": "^2.1.2",
"ethereumjs-util": "^7.0.10",
"ethers": "^5.3.1",
"hardhat": "^2.8.3",
"hardhat-abi-exporter": "^2.2.1",
"hardhat-contract-sizer": "^2.0.3",
"hardhat-gas-reporter": "^1.0.4",
"hardhat-tracer": "^1.0.0-alpha.5",
"keccak256": "^1.0.6",
"merkletreejs": "^0.2.24",
"mocha": "^7.2.0",
"openzeppelin-contracts-legacy": "yarn:@openzeppelin/[email protected]",
"ts-node": "^10.1.0",
"tsconfig-paths": "^3.10.1",
"typescript": "^4.3.5"
},
"repository": {
"type": "git",
"url": "[email protected]:Pollum-io/pegasys-protocol.git"
},
"author": "Pollum <[email protected]>",
"license": "GNU",
"scripts": {
"precompile": "rimraf ./build/",
"compile": "npx hardhat compile",
"pretest": "yarn compile",
"test": "npx hardhat test ",
"test-node": "npx hardhat node --network hardhat",
"test-local": "npx hardhat --network localhost test",
"lint": "prettier ./test/**/*.ts --check",
"prepublishOnly": "yarn test"
},
"bugs": {
"url": "https://github.com/Pollum-io/pegasys-protocol/issues"
},
"homepage": "https://pegasys.finance",
"dependencies": {
"web3": "^1.7.3"
}
}