-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 921 Bytes
/
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
{
"name": "StakingContract",
"author": "Jamal The Atlantean",
"version": "1.0.0",
"description": "A minimal synthetix staking contract using ATNs as an ICO",
"main": "index.js",
"scripts": {
"test": "mocha --timeout 10000000",
"test:staging": "npx hardhat test --network rinkeby",
"lint": "npx solhint 'contracts/*sol'",
"lint:fix": "npx solhint 'contracts/*sol' --fix",
"format": "npx prettier --write .",
"coverage": "npx hardhat coverage"
},
"keywords": [],
"license": "ISC",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "npm:undefined@^0.1.0",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"chai": "^4.3.6",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.7.2",
"hardhat": "^2.9.1",
"hardhat-deploy": "^0.11.20",
"hardhat-deploy-ethers": "^0.3.0-beta.13"
},
"dependencies": {
"@chainlink/contracts": "^0.4.2",
"dotenv": "^16.0.1"
}
}