-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
50 lines (50 loc) · 1.34 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
{
"name": "ape-staking-public",
"version": "1.0.0",
"description": "Ape Coin Staking",
"directories": {
"test": "test"
},
"scripts": {
"node": "npx hardhat node",
"contracts:deploy:local": "npx hardhat run scripts/deploy-contracts.ts --network localhost",
"contracts:deploy:goerli": "npx hardhat run scripts/deploy-contracts.ts --network goerli",
"compile": "hardhat compile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HorizenLabs/ape-staking-public.git"
},
"keywords": [
"hardhat",
"ethereum"
],
"author": "HL",
"license": "MIT",
"bugs": {
"url": "https://github.com/HorizenLabs/ape-staking-public/issues"
},
"homepage": "https://github.com/HorizenLabs/ape-staking-public#readme",
"dependencies": {
"@openzeppelin/contracts": "4.7.1",
"solc": "0.8.10"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "2.1.0",
"@nomiclabs/hardhat-etherscan": "3.1.0",
"@nomiclabs/hardhat-waffle": "2.0.3",
"@types/chai": "4.3.1",
"@types/jest": "28.1.6",
"@types/mocha": "9.1.1",
"chai": "4.3.6",
"dotenv": "16.0.1",
"ethereum-waffle": "3.4.4",
"ethers": "5.6.9",
"hardhat": "2.10.1",
"mocha": "10.0.0",
"mocha-param": "^2.0.1",
"solidity-coverage": "^0.7.17",
"ts-node": "10.9.1",
"typescript": "4.7.4"
}
}