-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 2.45 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
{
"name": "treasury-staking-monorepo",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"build": "npm run clean && npm run compile",
"clean": "npx hardhat clean",
"compile": "npx hardhat compile",
"test": "npx hardhat test --network hardhat",
"test:bail": "npx hardhat test --network hardhat --bail",
"node": "npx hardhat node",
"coverage": "npx hardhat coverage --network hardhat --temp artifacts && npm run build",
"deploy:token": "npx hardhat run --network localhost deploy/1_KannaToken_deploy.ts",
"deploy:yield": "npx hardhat run --network localhost deploy/2_KannaYield_deploy.ts",
"deploy:presale": "npx hardhat run --network localhost deploy/3_KannaPreSale_deploy.ts",
"deploy:aggregator": "npx hardhat run --network goerli deploy/aggregatorv3-mock_deploy.ts",
"deploy:salel2": "npx hardhat run --network polygonMumbai deploy/kanna-go-live-salel2.ts",
"deploy:sop": "npx hardhat run --network mainnet deploy/kanna-go-live-stockoption.ts",
"deploy:sop-manager": "npx hardhat run --network mainnet deploy/kanna-go-live-stockoption-manager.ts",
"deploy:roles": "npx hardhat run --network polygon deploy/kanna-go-live-roles.ts",
"deploy": "npx hardhat run --network localhost deploy/kanna-go-live-sale.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kanna-coin/treasury-staking-monorepo.git"
},
"author": "@psavelis,@rwbazevedo",
"license": "MIT",
"bugs": {
"url": "https://github.com/kanna-coin/treasury-staking-monorepo/issues"
},
"homepage": "https://github.com/kanna-coin/treasury-staking-monorepo#readme",
"devDependencies": {
"@chainlink/contracts": "^0.5.1",
"@nomiclabs/hardhat-ethers": "^2.2.1",
"@nomiclabs/hardhat-etherscan": "^3.1.2",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@openzeppelin/contracts": "^4.7.1",
"@typechain/ethers-v5": "^10.1.1",
"@typechain/hardhat": "^6.1.4",
"@types/chai": "^4.2.18",
"@types/chai-as-promised": "^7.1.1",
"@types/mocha": "^10.0.1",
"@types/node": "^16.18.3",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"dotenv": "^9.0.2",
"ethereum-waffle": "^3.4.4",
"ethers": "^5.7.2",
"ganache-cli": "^6.12.2",
"hardhat": "^2.2.1",
"hardhat-gas-reporter": "^1.0.9",
"solc": "^0.8.21",
"solidity-coverage": "^0.8.2",
"ts-generator": "^0.1.1",
"ts-node": "^10.7.1",
"typechain": "^8.1.1",
"typescript": "^4.2.4"
}
}