-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
90 lines (90 loc) · 2.8 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
{
"name": "wban-smart-contract",
"version": "2.6.9",
"description": "dApp for swapping BAN to wBAN on Binance Smart Chain",
"author": "Wrap That Potassium <[email protected]>",
"license": "GPL-3.0-or-later",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/wBanano/wban-bep20"
},
"keywords": [
"Banano",
"Wrapped Token",
"Binance Smart Chain",
"bsc"
],
"files": [
"contracts",
"dist"
],
"engines": {
"node": ">=16"
},
"devDependencies": {
"@ethersproject/abi": "^5.7.0",
"@ethersproject/bytes": "^5.7.0",
"@ethersproject/providers": "^5.7.2",
"@nomiclabs/hardhat-ethers": "^2.2.1",
"@nomiclabs/hardhat-etherscan": "^3.1.3",
"@nomiclabs/hardhat-solhint": "^2.0.1",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@openzeppelin/contracts": "^4.7.3",
"@openzeppelin/contracts-upgradeable": "4.6.0",
"@openzeppelin/hardhat-upgrades": "^1.17.0",
"@pancakeswap/pancake-swap-lib": "^0.0.4",
"@typechain/ethers-v5": "^10.1.0",
"@typechain/hardhat": "^6.1.4",
"@types/bn.js": "^5.1.0",
"@types/chai": "^4.3.1",
"@types/mocha": "^9.1.1",
"@types/node": "^16.18.7",
"chai": "^4.3.6",
"copyfiles": "^2.4.1",
"dotenv": "^8.2.0",
"ethereum-waffle": "^3.4.4",
"ethers": "5.7.2",
"hardhat": "^2.12.4",
"hardhat-abi-exporter": "^2.10.1",
"hardhat-dependency-compiler": "^1.1.3",
"hardhat-spdx-license-identifier": "^2.1.0",
"istanbul": "^0.4.5",
"lodash": "^4.17.21",
"mocha": "^8.3.2",
"prettier": "^2.2.1",
"prettier-plugin-solidity": "^1.0.0-beta.10",
"rimraf": "^3.0.0",
"solhint": "^3.3.6",
"solidity-coverage": "0.7.17",
"ts-generator": "^0.1.1",
"ts-node": "^10.9.1",
"typechain": "^8.1.1",
"typescript": "4.7.4"
},
"resolutions": {
"@nomiclabs/hardhat-solhint/solhint": "^3.3.2"
},
"scripts": {
"clean": "rimraf ./artifacts/ ./flatten/ ./coverage/ ./coverage.json ./cache/ ./dist",
"compile": "hardhat compile && yarn tsc",
"postcompile": "copyfiles -u 2 \"artifacts/typechain/**/*.d.ts\" dist",
"pretest": "yarn compile",
"test": "hardhat test",
"prepublishOnly": "yarn test",
"check": "hardhat check",
"solhint": "solhint \"contracts/**/*.sol\" -f unix",
"lint": "prettier --check \"contracts/**/*.{sol,ts,js}\"",
"prettier": "prettier --write \"contracts/**/*.{sol,ts,js}\"",
"coverage": "hardhat coverage && istanbul check-coverage ./coverage.json --statements 98 --branches 81 --functions 95 --lines 98",
"node:watch": "hardhat node --watch",
"deploy:devnet": "hardhat run --network bscdevnet scripts/create-wban.js",
"deploy:testnet": "hardhat run --network bsctestnet scripts/create-wban.js",
"audit:fix": "npm_config_yes=true npx yarn-audit-fix"
},
"dependencies": {
"@uniswap/v2-core": "^1.0.1",
"@uniswap/v2-periphery": "^1.1.0-beta.0"
}
}