-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 2.64 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
{
"name": "spool-core",
"description": "Spool Core (V1)",
"license": "BUSL-1.1",
"version": "1.0.0",
"homepage": "https://www.spool.fi/",
"repository": {
"type": "git",
"url": "https://github.com/SpoolFi/spool-core/"
},
"directories": {
"test": "test"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "2.0.2",
"@nomiclabs/hardhat-etherscan": "^3.0.3",
"@nomiclabs/hardhat-ganache": "^2.0.1",
"@nomiclabs/hardhat-waffle": "2.0.1",
"@primitivefi/hardhat-dodoc": "0.1.3",
"@typechain/ethers-v5": "8.0.5",
"@typechain/hardhat": "3.0.0",
"@types/lodash": "^4.14.181",
"@types/mocha": "9.0.0",
"@types/node": "16.11.11",
"@types/seedrandom": "^3.0.2",
"@uniswap/sdk-core": "^3.0.1",
"@uniswap/smart-order-router": "^2.5.26",
"axios": "^0.26.1",
"chai": "4.3.4",
"dotenv": "10.0.0",
"ethereum-waffle": "3.4.0",
"ethers": "5.5.2",
"glob": "7.2.0",
"hardhat": "^2.12.2",
"hardhat-contract-sizer": "2.1.1",
"hardhat-deploy": "^0.11.2",
"hardhat-deploy-ethers": "^0.3.0-beta.13",
"hardhat-gas-reporter": "1.0.6",
"hardhat-preprocessor": "^0.1.4",
"lodash": "^4.17.21",
"seedrandom": "^3.0.5",
"solidity-coverage": "0.7.18",
"ts-node": "10.4.0",
"typechain": "6.0.5",
"typescript": "4.5.2"
},
"scripts": {
"clean": "npx hardhat clean",
"compile": "npx hardhat compile",
"generate-docs": "npx hardhat generate-docs",
"lint": "prettier --write \"./**/*.{js,sol,ts}\"",
"node": "npx hardhat node --hostname localhost",
"test-e2e": "rm -rf deploy && mkdir deploy && cp -r scripts/deployments/mainnet/* deploy/ && npx hardhat test-e2e",
"test-e2e:arbitrum": "rm -rf deploy && mkdir deploy && cp -r scripts/deployments/arbitrum/* deploy/ && npx hardhat test-e2e --placement arbitrum",
"test-local": "npx hardhat test-local",
"test-fork": "npx hardhat test-fork",
"test-fork:arbitrum": "npx hardhat test-fork --placement arbitrum",
"coverage-local": "npx hardhat test-local --coverage",
"coverage-fork": "npx hardhat test-fork --coverage",
"size-contracts": "npx hardhat size-contracts",
"verify:mainnet": "npx hardhat etherscan-verify --network mainnet",
"deploy:local": "npx hardhat deploy --network deployment",
"deploy:dev": "npx hardhat --network deployment run scripts/infrastructure.ts"
}
}