forked from SparkFi-Labs/contracts
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 2.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
{
"name": "vefi-token-launchpad-staking",
"version": "4.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "rm -rf artifacts && npx hardhat test",
"format": "prettier --write **/**/*.{js,json,sol,ts,md}",
"deploy:core:artio": "npx hardhat run scripts/DeployCore.ts --network beraArtio",
"deploy:core:bscTestnet": "npx hardhat run scripts/DeployCore.ts --network bscTestnet",
"deploy:gauges:bscTestnet": "npx hardhat run scripts/DeployGaugesAndPools.ts --network bscTestnet",
"deploy:governors:bscTestnet": "npx hardhat run scripts/DeployGovernors.ts --network bscTestnet",
"deploy:aggregator:bscTestnet": "npx hardhat run scripts/DeployAggregator.ts --network bscTestnet",
"deploy:gauges:artio": "npx hardhat run scripts/DeployGaugesAndPools.ts --network beraArtio",
"deploy:governors:artio": "npx hardhat run scripts/DeployGovernors.ts --network beraArtio",
"deploy:aggregator:artio": "npx hardhat run scripts/DeployAggregator.ts --network beraArtio"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Vefi-Ecosystem/token_launchpad_and_staking.git"
},
"files": [
"contracts",
"artifacts"
],
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Vefi-Ecosystem/token_launchpad_and_staking/issues"
},
"homepage": "https://github.com/Vefi-Ecosystem/token_launchpad_and_staking#readme",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@nomiclabs/hardhat-etherscan": "^3.1.0",
"@nomiclabs/hardhat-ganache": "^2.0.1",
"@nomiclabs/hardhat-truffle5": "^2.0.7",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/contracts": "4.9.0",
"@openzeppelin/test-helpers": "^0.5.15",
"@typechain/ethers-v5": "^11.1.2",
"@typechain/hardhat": "^9.1.0",
"@xyrusworx/hardhat-solidity-json": "^1.0.2",
"axios": "^1.1.3",
"bignumber.js": "^9.1.1",
"chai": "^4.3.6",
"dotenv": "^16.0.2",
"ethereum-waffle": "^3.4.4",
"ethers": "^5.7.0",
"hardhat": "^2.22.2",
"mocha": "^10.0.0",
"prettier-plugin-solidity": "^1.0.0-beta.24",
"solc": "^0.8.20",
"solidity-coverage": "^0.8.2",
"ts-node": "^10.9.2",
"typechain": "^8.3.2",
"typescript": "^5.4.4",
"web3": "^1.7.5"
},
"dependencies": {
"@opengsn/contracts": "^3.0.0-beta.6",
"solhint": "^5.0.1"
}
}