forked from EmmanuelDevs-Software/Basic-React-Crypto-App
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.32 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
38
39
{
"name": "@joopal/pay",
"version": "0.1.0",
"private": true,
"workspaces": [
"./",
"./eth",
"./www",
"./newww"
],
"packageManager": "[email protected]",
"scripts": {
"www:dev": " yarn workspace @pay/www dev",
"www:build": "yarn workspace @pay/www build",
"www:preview": "yarn workspace @pay/www preview",
"www:format": "yarn workspace @pay/www prettier",
"www:start": "yarn workspace @pay/www start",
"hh:chain": "yarn workspace @pay/eth chain",
"hh:fork": "yarn workspace @pay/eth fork",
"hh:node": "yarn workspace @pay/eth chain",
"hh:test": "yarn workspace @pay/eth test",
"hh:compile": "yarn workspace @pay/eth compile",
"hh:deploy": "yarn workspace @pay/eth deploy",
"hh:watch": "yarn workspace @pay/eth watch",
"hh:accounts": "yarn workspace @pay/eth accounts",
"hh:balance": "yarn workspace @pay/eth balance",
"hh:send": "yarn workspace @pay/eth send",
"hh:generate": "yarn workspace @pay/eth generate",
"hh:account": "yarn workspace @pay/eth account",
"hh:wallet": "cd eth && npx hardhat wallet",
"hh:flatten": "cd eth && npx hardhat flatten",
"hh:clean": "cd eth && npx hardhat clean",
"hh:mineContractAddress": "cd eth && npx hardhat mineContractAddress"
},
"dependencies": {
"husky": "^7.0.4",
"lerna": "^4.0.0"
}
}