-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 1.13 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
{
"name": "pethreon",
"scripts": {
"preinstall": "npx only-allow npm",
"postinstall": "npm run build && npm run finstall",
"dev": "npx hardhat node",
"devd": "npx hardhat node & npm run deploylh",
"build": "npx hardhat clean && npx hardhat compile",
"clean": "npx hardhat clean",
"compile": "npx hardhat compile",
"coverage": "npm run build && npx hardhat coverage --temp artifacts --network coverage",
"deploylh": "npx hardhat ignition deploy ignition/modules/Pethreon.ts --network localhost",
"deploysp": "npx hardhat ignition deploy ignition/modules/Pethreon.ts --network sepolia",
"test": "npx hardhat test",
"node": "npx hardhat node",
"finstall": "cd ./frontend && pnpm install && cd -",
"fdev": "cd ./frontend && pnpm dev && cd -",
"flint": "cd ./frontend && pnpm lint && cd -",
"fbuild": "cd ./frontend && pnpm build && cd -",
"fpreview": "cd ./frontend && pnpm preview && cd -"
},
"devDependencies": {
"@nomicfoundation/hardhat-ignition-ethers": "^0.15.2",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"dotenv": "^16.4.5",
"hardhat": "^2.22.3"
}
}