This repository has been archived by the owner on Aug 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
98 lines (98 loc) · 3.39 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
98
{
"name": "@ensofinance/v1-core",
"version": "2.0.0",
"description": "Enso v1-core contracts",
"main": "dist/lib/index.js",
"types": "dist/lib/index.d.ts",
"directories": {
"doc": "docs",
"lib": "lib",
"test": "test"
},
"engines": {
"node": ">=12"
},
"files": [
"changelogs",
"contracts",
"dist",
"docs",
"deployments.json",
"deprecated.json",
"README.md"
],
"scripts": {
"start": "yarn hardhat node --network hardhat --hostname 0.0.0.0",
"build": "cd errors && ./errorMacro.sh && cd - && yarn hardhat compile --force && tsc --build",
"coverage": "rm -r artifacts && rm -r typechain && TS_NODE_TRANSPILE_ONLY=true yarn hardhat coverage",
"deploy": "yarn hardhat run scripts/full-deploy-script.ts --network",
"deploy-upgrade": "yarn hardhat run scripts/code-4rena-deploy.ts --network",
"transfer-ownership": "yarn hardhat run scripts/transferownership-afterdeploy.ts --network",
"migrate-platform": "yarn hardhat run scripts/code-4rena-migrate-platform.ts --network",
"migrate-strategy": "yarn hardhat migrateStrategy --network localhost --strategy",
"build-strategy-migration": "yarn hardhat run scripts/buildStrategyMigration.ts --network localhost",
"register-tokens": "yarn hardhat run scripts/register-token.ts --network",
"register-dictionary": "yarn hardhat run scripts/register-dictionary.js --network",
"fill-ui": "yarn hardhat run scripts/fill-ui-script.js --network",
"lint": "yarn eslint",
"prettier:solidity": "yarn prettier --write 'contracts/**/*.sol'",
"solhint": "solhint -f table --fix 'contracts/**/*.sol'",
"test": "cd errors && ./errorMacro.sh && cd - && ./scripts/bash/convincer.sh || yarn hardhat test"
},
"dependencies": {
"@0xsequence/token-directory": "1.1.14",
"@balancer-labs/core": "https://github.com/balancer-labs/balancer-core",
"@chainlink/contracts": "~0.1.6",
"@ensofinance/erc20": "^1.0.0",
"@openzeppelin/contracts": "~3.3.0",
"@rari-capital/solmate": "^6.2.0",
"@uniswap/v2-core": "~1.0.1",
"@uniswap/v2-periphery": "~1.1.0-beta.0",
"@uniswap/v3-core": "~1.0.0",
"@uniswap/v3-periphery": "^1.4.0"
},
"devDependencies": {
"@ethersproject/abstract-signer": "^5.0.6",
"@ethersproject/bignumber": "^5.0.8",
"@nomiclabs/hardhat-ethers": "^2.0.1",
"@nomiclabs/hardhat-waffle": "~2.0.1",
"@typechain/ethers-v5": "6.0.5",
"@typechain/hardhat": "^1.0.1",
"@types/chai": "~4.2.16",
"@types/fs-extra": "~9.0.10",
"@types/mocha": "~8.2.2",
"@types/node": "~14.14.37",
"chai": "~4.3.4",
"defender-admin-client": "^1.18.0",
"defender-base-client": "^1.18.0",
"dotenv": "~16.0.0",
"eslint": "~8.12.0",
"ethereum-waffle": "^3.4.4",
"ethers": "5.6.1",
"hardhat": "^2.9.3",
"prettier": "~2.6.2",
"prettier-plugin-solidity": "~1.0.0-beta.5",
"sol2uml": "~1.1.25",
"solhint": "~3.3.7",
"solidity-coverage": "~0.7.20",
"solidity-docgen": "~0.6.0-beta.8",
"ts-node": "~10.7.0",
"typescript": "~4.6.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EnsoFinance/v1-core.git"
},
"keywords": [
"enso",
"web3",
"defi",
"ethereum"
],
"author": "Enso Finance",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/EnsoFinance/v1-core/issues"
},
"homepage": "https://github.com/EnsoFinance/v1-core#readme"
}