forked from Ubeswap/ubeswap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 2.9 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
{
"name": "@ubeswap/core",
"version": "1.0.1",
"license": "MIT",
"description": "🟪🍠 Core contracts for the Ubeswap protocol",
"files": [
"contracts",
"build"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ubeswap/ubeswap.git"
},
"author": "",
"bugs": {
"url": "https://github.com/ubeswap/ubeswap/issues"
},
"homepage": "https://github.com/ubeswap/ubeswap#readme",
"keywords": [
"uniswap",
"sushiswap",
"ubeswap",
"ethereum"
],
"scripts": {
"build": "hardhat compile && npm run typechain",
"clean": "rm -fr build/",
"typechain": "typechain --target ethers-v5 --outDir build/types 'build/artifacts/!(build-info)/**/!(*.dbg).json' && rm -f build/types/index.ts",
"console": "hardhat console",
"mainnet:deploy": "hardhat --network mainnet deploy",
"alfajores:deploy": "hardhat --network alfajores deploy",
"test": "hardhat test",
"test:coverage": "node --max-old-space-size=4096 ./node_modules/.bin/hardhat coverage",
"test:gas": "REPORT_GAS=true yarn test",
"prettier": "prettier --write test/**/*.js",
"lint": "yarn prettier && solhint -c .solhint.json 'contracts/**/*.sol'",
"prepack": "npm run clean && npm run build && ./verify.sh",
"prepublishOnly": "yarn run build"
},
"devDependencies": {
"@celo-tools/celo-ethers-wrapper": "^0.0.5",
"@celo/contractkit": "^1.0.1",
"@nomiclabs/hardhat-ethers": "^2.0.1",
"@nomiclabs/hardhat-etherscan": "^2.1.1",
"@nomiclabs/hardhat-solhint": "^2.0.0",
"@nomiclabs/hardhat-truffle5": "^2.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/contracts": "^3.1.0",
"@tenderly/hardhat-tenderly": "^1.0.6",
"@typechain/ethers-v5": "^5.0.0",
"@typechain/truffle-v5": "^4.0.1",
"@typechain/web3-v1": "^2.0.0",
"@types/chai": "^4.2.14",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.22",
"@ubeswap/hardhat-celo": "^0.2.0",
"@ubeswap/solidity-create2-deployer": "^0.5.2",
"@uniswap/v2-core": "^1.0.1",
"chai": "^4.2.0",
"dotenv": "^8.2.0",
"ethereum-waffle": "^3.2.2",
"ethers": "^5.0.26",
"hardhat": "^2.0.8",
"hardhat-abi-exporter": "^2.0.8",
"hardhat-deploy-ethers": "^0.3.0-beta.7",
"hardhat-gas-reporter": "^1.0.4",
"hardhat-preprocessor": "^0.1.1",
"hardhat-spdx-license-identifier": "^2.0.3",
"hardhat-watcher": "^2.1.1",
"husky": ">=4",
"lint-staged": ">=10",
"prettier": "^2.2.1",
"solidity-coverage": "^0.7.14",
"truffle": "^5.1.65",
"ts-node": "^9.1.1",
"typechain": "^4.0.1",
"typescript": "^4.1.3",
"web3": "^1.3.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,js,css,md,json}": "prettier --write"
},
"prettier": {},
"peerDependencies": {
"web3": "1"
},
"resolutions": {
"web3": "^1.3.5"
}
}