-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 1.19 KB
/
package.json
File metadata and controls
25 lines (25 loc) · 1.19 KB
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
{
"name": "hardhat-project",
"scripts": {
"new-wallet": "npx @yerofey/cryptowallet-cli",
"node": "env-cmd -f .env npx hardhat node",
"deploy:local": "NODE_ENV=local env-cmd -f .env npx hardhat run scripts/deploy.ts --network localhost",
"deploy:polygon-test": "NODE_ENV=polygon-test env-cmd -f .env npx hardhat run scripts/deploy.ts --network polygon-test",
"deploy:polygon": "NODE_ENV=polygon env-cmd -f .env.prod npx hardhat run scripts/deploy.ts --network polygon",
"test:lotte": "env-cmd -f .env npx hardhat test --grep \"Lotte\"",
"test:mock-lotte": "env-cmd -f .env npx hardhat test --grep \"MockLotte\"",
"test:lotte-draw": "env-cmd -f .env npx hardhat test --grep \"Lotte: Draw\"",
"test:token": "env-cmd -f .env npx hardhat test --grep \"LfxToken\"",
"test:vault": "env-cmd -f .env npx hardhat test --grep \"LfxVault\"",
"test:airdrop": "env-cmd -f .env npx hardhat test --grep \"LfxAirdrop\"",
"test": "env-cmd -f .env npx hardhat test"
},
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^3.0.0",
"@openzeppelin/test-helpers": "^0.5.16",
"hardhat": "^2.16.1"
},
"dependencies": {
"@openzeppelin/contracts": "^4.9.2"
}
}