forked from Oriorz/based-finance-contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.27 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
{
"name": "basedmoneyfinance-contracts",
"version": "1.0.0",
"description": "TombFinance Fork Contracts",
"main": "migrations/2_deploy_contracts.js",
"dependencies": {
"@openzeppelin/contracts": "^4.4.1",
"@types/jest": "^26.0.24",
"@types/react": "^17.0.14",
"@types/react-dom": "^17.0.9",
"babel-polyfill": "6.26.0",
"babel-preset-env": "1.7.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-stage-2": "6.24.1",
"babel-preset-stage-3": "6.24.1",
"chai-as-promised": "7.1.1",
"chai-bignumber": "3.0.0",
"dotenv": "^11.0.0",
"identicon.js": "^2.3.3",
"solc": "^0.8.6"
},
"scripts": {
"deploy": "npx hardhat run scripts/deploy.ts",
"deploy-rinkeby": "npx hardhat run --network rinkeby scripts/deploy.ts",
"deploy-fantom": "npx hardhat run --network fantom scripts/deploy.ts",
"deploy-local": "npx hardhat run --network localhost scripts/deploy.ts",
"verify-fantom": "npx hardhat verify --contract contracts/BShareFtmZap.sol:BShareFtmZap --constructor-args scripts/verifyArgs.ts 0xf4bE342051d6A2139b5b10b6ac8c190eD07aba22 --network fantom",
"build": "npm run compile",
"compile": "npx builder compile",
"test": "npx builder test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/David-Guras/basedmoneyfinance-contracts.git"
},
"author": "Dave and Phil",
"license": "ISC",
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"bugs": {
"url": "https://github.com/David-Guras/basedmoneyfinance-contracts/issues"
},
"homepage": "https://github.com/David-Guras/basedmoneyfinance-contracts#readme",
"devDependencies": {
"@nomiclabs/buidler": "^1.4.8",
"@nomiclabs/hardhat-ethers": "^2.0.4",
"@nomiclabs/hardhat-etherscan": "^3.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@typechain/ethers-v5": "^9.0.0",
"@types/mocha": "^9.0.0",
"@types/node": "^17.0.9",
"chai": "^4.3.4",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.5.3",
"hardhat": "^2.8.2",
"hardhat-deploy-fake-erc20": "^0.0.3-alpha",
"hardhat-typechain": "^0.3.5",
"ts-generator": "^0.1.1",
"ts-node": "^10.4.0",
"typechain": "^4.0.3",
"typescript": "^4.5.4"
}
}