-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 2.01 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 2.01 KB
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
{
"name": "2pi-contracts",
"version": "0.1.0",
"description": "2pi Smart Contracts",
"scripts": {
"coverage": "rm -Rf coverage.json coverage/ cache/ && npx hardhat coverage",
"combine-coverage": "npx hardhat run scripts/combine_coverages.js",
"ptest": "node scripts/parallel_test.js",
"test": "npx hardhat test",
"full_test": "npx hardhat test && HARDHAT_INTEGRATION_TESTS=true npx hardhat test",
"itest": "HARDHAT_INTEGRATION_TESTS=true npx hardhat test",
"itest:optimism": "HARDHAT_INTEGRATION_CHAIN=10 HARDHAT_INTEGRATION_TESTS=true npx hardhat test",
"lint": "eslint test/",
"build-contracts": "sol-merger \"./contracts/*.sol\" ./build",
"code-checker": "docker run --rm -v $PWD:/app trailofbits/eth-security-toolbox /app/scripts/code_checker.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/2pinetwork/contracts.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/2pinetwork/contracts/issues"
},
"homepage": "https://github.com/2pinetwork/contracts#readme",
"devDependencies": {
"@2pi-network/js-sdk": "^0.2.0-beta.24",
"@nomiclabs/hardhat-ethers": "^2.0.4",
"@nomiclabs/hardhat-etherscan": "^3.0.3",
"@nomiclabs/hardhat-truffle5": "^2.0.4",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/contracts": "^4.2.0",
"@superfluid-finance/ethereum-contracts": "^1.0.0-rc.7",
"@superfluid-finance/js-sdk": "0.5.8",
"@tenderly/hardhat-tenderly": "^1.0.13",
"@uniswap/lib": "^4.0.1-alpha",
"bignumber.js": "^9.0.1",
"chai": "^4.3.4",
"eslint": "^8.3.0",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.5.1",
"hardhat": "2.9.1",
"hardhat-gas-reporter": "^1.0.6",
"hardhat-preprocessor": "^0.1.4",
"mocha": "^9.1.1",
"node-fetch": "^2.6.5",
"q": "^1.5.1",
"sol-merger": "^3.1.0",
"solidity-coverage": "^0.7.20",
"web3": "^1.6.1"
},
"resolutions": {
"hardhat/**/@ethereumjs/tx": "3.5.0"
}
}