-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 879 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
{
"name": "AtlanteanNotes",
"author": "Jamaltheatlantean",
"version": "1.0.0",
"description": "An erc20 contract with inbuilt faucet for users",
"main": "index.js",
"scripts": {
"test": "mocha --timeout 10000000",
"test:staging": "npx hardhat test --network goerli",
"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:hardhat-deploy-ethers@^0.3.0-beta.13",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"chai": "^4.3.6",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.6.1",
"hardhat": "^2.9.1"
},
"dependencies": {
"@chainlink/contracts": "^0.4.2",
"dotenv": "^16.0.1",
"hardhat-deploy": "^0.11.12"
}
}