-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (36 loc) · 1.11 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
{
"name": "stacchain-smart-contracts",
"version": "1.0.0",
"description": "Smart contracts for STAC token and access key functionality",
"main": "hardhat.config.js",
"scripts": {
"compile": "npx hardhat compile",
"test": "npx hardhat test",
"deploy:token:mumbai": "npx hardhat run scripts/deploySTACToken.js --network mumbai",
"deploy:access:mumbai": "npx hardhat run scripts/deploySTACAccessKey.js --network mumbai",
"deploy:access:polygon": "npx hardhat run scripts/deploySTACAccessKey.js --network polygon",
"verify": "npx hardhat verify --network mumbai"
},
"dependencies": {
"@openzeppelin/contracts": "^4.9.2",
"dotenv": "^16.0.3"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.3.3",
"@nomiclabs/hardhat-etherscan": "^3.1.2",
"chai": "^4.3.7",
"ethers": "^5.7.2",
"hardhat": "^2.17.0"
},
"keywords": [
"smart-contracts",
"hardhat",
"polygon",
"ethereum",
"erc20",
"access-key",
"stac"
],
"author": "Jonathan Healy",
"license": "Apache-2.0"
}