-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
31 lines (31 loc) · 1005 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": "spaces-registry",
"version": "1.0.0",
"description": "Lamina1 Spaces Registry",
"main": "index.js",
"scripts": {
"start": "./local/start.sh",
"stop": "./local/stop.sh",
"deploy": "npx hardhat run scripts/deploy.ts",
"deploy:space": "npx hardhat --network betanet run scripts/deploy_space.ts",
"register:space": "npx hardhat --network betanet run scripts/register_space.ts",
"fund": "npx hardhat run scripts/fund.ts",
"compile": "npx hardhat compile",
"types": "npx hardhat typechain",
"test": "npx hardhat --network hardhat test",
"test:gas": "REPORT_GAS=true npx hardhat --network hardhat test",
"coverage": "CODE_COVERAGE=true npx hardhat coverage"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^3.0.0",
"chai": "^4.3.7",
"dotenv": "^16.3.1",
"hardhat": "^2.17.0",
"readline-sync": "^1.4.10"
},
"dependencies": {
"@openzeppelin/contracts": "^4.3.2"
}
}